From e7122a58c91ffa01177e45e75ebb13c0c05bfae5 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Fri, 2 Nov 2012 12:20:30 +0100 Subject: [PATCH 01/15] Fixed translation stuff --- src/Mod/Plot/CMakeLists.txt | 34 ++- src/Mod/Plot/InitGui.py | 12 +- src/Mod/Plot/Makefile.am | 20 +- src/Mod/Plot/Plot.py | 7 +- src/Mod/Plot/PlotGui.py | 61 +++-- src/Mod/Plot/plotAxes/TaskPanel.py | 30 +-- src/Mod/Plot/plotLabels/TaskPanel.py | 12 +- src/Mod/Plot/plotPositions/TaskPanel.py | 8 +- src/Mod/Plot/plotSave/TaskPanel.py | 10 +- src/Mod/Plot/plotSeries/TaskPanel.py | 12 +- src/Mod/Plot/plotUtils/Paths.py | 12 +- .../Plot/{Icons => resources/icons}/Axes.svg | 0 .../Plot/{Icons => resources/icons}/Grid.svg | 0 .../Plot/{Icons => resources/icons}/Icon.svg | 0 .../{Icons => resources/icons}/Labels.svg | 0 .../{Icons => resources/icons}/Legend.svg | 0 .../{Icons => resources/icons}/Positions.svg | 0 .../Plot/{Icons => resources/icons}/Save.svg | 0 .../{Icons => resources/icons}/Series.svg | 0 src/Mod/Plot/resources/translations/Plot.qm | 1 + src/Mod/Plot/resources/translations/Plot.ts | 241 ++++++++++++++++++ .../Plot/resources/translations/Plot_es-ES.qm | Bin 0 -> 4804 bytes .../Plot/resources/translations/Plot_es-ES.ts | 241 ++++++++++++++++++ 23 files changed, 607 insertions(+), 94 deletions(-) rename src/Mod/Plot/{Icons => resources/icons}/Axes.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Grid.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Icon.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Labels.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Legend.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Positions.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Save.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Series.svg (100%) create mode 100644 src/Mod/Plot/resources/translations/Plot.qm create mode 100644 src/Mod/Plot/resources/translations/Plot.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_es-ES.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_es-ES.ts diff --git a/src/Mod/Plot/CMakeLists.txt b/src/Mod/Plot/CMakeLists.txt index f52bb5f70..8d0730181 100644 --- a/src/Mod/Plot/CMakeLists.txt +++ b/src/Mod/Plot/CMakeLists.txt @@ -6,17 +6,25 @@ SET(PlotMain_SRCS SOURCE_GROUP("" FILES ${PlotMain_SRCS}) SET(PlotIcons_SRCS - Icons/Axes.svg - Icons/Grid.svg - Icons/Icon.svg - Icons/Labels.svg - Icons/Legend.svg - Icons/Positions.svg - Icons/Save.svg - Icons/Series.svg + resources/icons/Axes.svg + resources/icons/Grid.svg + resources/icons/Icon.svg + resources/icons/Labels.svg + resources/icons/Legend.svg + resources/icons/Positions.svg + resources/icons/Save.svg + resources/icons/Series.svg ) SOURCE_GROUP("ploticons" FILES ${PlotIcons_SRCS}) +SET(PlotTranslations_SRCS + resources/translations/Plot.ts + resources/translations/Plot.qm + resources/translations/Plot_es-ES.ts + resources/translations/Plot_es-ES.qm +) +SOURCE_GROUP("plottranslations" FILES ${PlotTranslations_SRCS}) + SET(PlotAxes_SRCS plotAxes/__init__.py plotAxes/TaskPanel.py @@ -59,7 +67,7 @@ SET(PlotUtils_SRCS ) SOURCE_GROUP("plotutils" FILES ${PlotUtils_SRCS}) -SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotUtils_SRCS}) +SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotTranslations_SRCS} ${PlotUtils_SRCS}) ADD_CUSTOM_TARGET(Plot ALL SOURCES ${all_files} @@ -71,7 +79,13 @@ INSTALL( FILES ${PlotIcons_SRCS} DESTINATION - Mod/Plot/Icons + Mod/Plot/resources/icons +) +INSTALL( + FILES + ${PlotTranslations_SRCS} + DESTINATION + Mod/Plot/resources/translations ) INSTALL( FILES diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 35d9d465a..8038c0319 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -23,15 +23,14 @@ class PlotWorkbench ( Workbench ): """ @brief Workbench of Plot module. Here toolbars & icons are append. """ - from plotUtils import Paths, Translator + from plotUtils import Paths import PlotGui Icon = Paths.iconsPath() + "/Icon.svg" - MenuText = str(Translator.translate("Plot")) - ToolTip = str(Translator.translate("Plot")) + MenuText = "Plot" + ToolTip = "The Plot module is used to edit/save output plots performed by other tools" def Initialize(self): - from plotUtils import Translator # ToolBar list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] self.appendToolbar("Plot",list) @@ -44,7 +43,6 @@ try: import matplotlib Gui.addWorkbench(PlotWorkbench()) except ImportError: - from plotUtils import Translator - msg = Translator.translate("matplotlib not found, Plot module will be disabled.\n") - FreeCAD.Console.PrintMessage(msg) + msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, Plot module will be disabled") + FreeCAD.Console.PrintMessage(msg + '\n') diff --git a/src/Mod/Plot/Makefile.am b/src/Mod/Plot/Makefile.am index c0411b0d8..e1cf410d1 100644 --- a/src/Mod/Plot/Makefile.am +++ b/src/Mod/Plot/Makefile.am @@ -7,14 +7,18 @@ data_DATA = \ PlotGui.py nobase_data_DATA = \ - Icons/Axes.svg \ - Icons/Grid.svg \ - Icons/Icon.svg \ - Icons/Labels.svg \ - Icons/Legend.svg \ - Icons/Positions.svg \ - Icons/Save.svg \ - Icons/Series.svg \ + resources/icons/Axes.svg \ + resources/icons/Grid.svg \ + resources/icons/Icon.svg \ + resources/icons/Labels.svg \ + resources/icons/Legend.svg \ + resources/icons/Positions.svg \ + resources/icons/Save.svg \ + resources/icons/Series.svg \ + resources/translations/Plot.ts \ + resources/translations/Plot.qm \ + resources/translations/Plot_es-ES.ts \ + resources/translations/Plot_es-ES.qm \ plotAxes/__init__.py \ plotAxes/TaskPanel.py \ plotAxes/TaskPanel.ui \ diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py index fc8767799..29fdff663 100644 --- a/src/Mod/Plot/Plot.py +++ b/src/Mod/Plot/Plot.py @@ -24,9 +24,6 @@ # FreeCAD import FreeCAD -# Plot module -from plotUtils import Paths, Translator - # PyQt4 from PyQt4 import QtCore, QtGui @@ -38,8 +35,8 @@ try: from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg as NavigationToolbar from matplotlib.figure import Figure except ImportError: - msg = Translator.translate("matplotlib not installed, so Plot module is disabled.\n") - FreeCAD.Console.PrintError(msg) + msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, so Plot module can not be loaded") + FreeCAD.Console.PrintMessage(msg + '\n') raise ImportError("matplotlib not installed") def getMainWindow(): diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py index 7f220b90f..ad3b2da65 100644 --- a/src/Mod/Plot/PlotGui.py +++ b/src/Mod/Plot/PlotGui.py @@ -24,16 +24,29 @@ from PyQt4 import QtCore, QtGui import FreeCAD, FreeCADGui, os +# Setup tranlations +from plotUtils import Paths +path = Paths.translationsPath() +FreeCADGui.addLanguagePath(path) +import os +import FreeCAD +translator = QtCore.QTranslator() +dirList=os.listdir(path) +for fname in dirList: + valid = translator.load(os.path.join(path, fname)) + if valid: + QtGui.QApplication.installTranslator(translator) + class Save: def Activated(self): import plotSave plotSave.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Save.svg" - MenuText = str(Translator.translate('Save plot')) - ToolTip = str(Translator.translate('Save plot as image file.')) + MenuText = str(QtGui.QApplication.translate("plot", "Save plot").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Save plot as image file").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Axes: @@ -42,10 +55,10 @@ class Axes: plotAxes.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Axes.svg" - MenuText = str(Translator.translate('Configure axes')) - ToolTip = str(Translator.translate('Configure axes parameters.')) + MenuText = str(QtGui.QApplication.translate("plot", "Configure axes").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Configure axes parameters").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Series: @@ -54,48 +67,46 @@ class Series: plotSeries.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Series.svg" - MenuText = str(Translator.translate('Configure series')) - ToolTip = str(Translator.translate('Configure series drawing style and label.')) + MenuText = str(QtGui.QApplication.translate("plot", "Configure series").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Configure series drawing style and label").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Grid: def Activated(self): import Plot - from plotUtils import Translator plt = Plot.getPlot() if not plt: - msg = Translator.translate("Grid must be activated on top of a plot document.") + msg = str(QtGui.QApplication.translate("plot", "Grid must be activated on top of a plot document").toAscii()) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isGrid() Plot.grid(not flag) def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Grid.svg" - MenuText = str(Translator.translate('Show/Hide grid')) - ToolTip = str(Translator.translate('Show/Hide grid on selected plot')) + MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide grid").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide grid on selected plot").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Legend: def Activated(self): import Plot - from plotUtils import Translator plt = Plot.getPlot() if not plt: - msg = Translator.translate("Legend must be activated on top of a plot document.") + msg = str(QtGui.QApplication.translate("plot", "Legend must be activated on top of a plot document").toAscii()) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isLegend() Plot.legend(not flag) def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Legend.svg" - MenuText = str(Translator.translate('Show/Hide legend')) - ToolTip = str(Translator.translate('Show/Hide legend on selected plot')) + MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide legend").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide legend on selected plot").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Labels: @@ -104,10 +115,10 @@ class Labels: plotLabels.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Labels.svg" - MenuText = str(Translator.translate('Set labels')) - ToolTip = str(Translator.translate('Set title and axes labels')) + MenuText = str(QtGui.QApplication.translate("plot", "Set labels").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Set title and axes labels").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Positions: @@ -116,10 +127,10 @@ class Positions: plotPositions.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Positions.svg" - MenuText = str(Translator.translate('Set positions and sizes')) - ToolTip = str(Translator.translate('Set labels and legend positions and sizes.')) + MenuText = str(QtGui.QApplication.translate("plot", "Set positions and sizes").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Set labels and legend positions and sizes").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Plot_SaveFig', Save()) diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py index 848b9506a..fc18dfd69 100644 --- a/src/Mod/Plot/plotAxes/TaskPanel.py +++ b/src/Mod/Plot/plotAxes/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -127,19 +127,19 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Configure axes")) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) - self.form.all.setText(Translator.translate("Apply to all axes")) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) - self.form.findChild(QtGui.QLabel, "scalesLabel").setText(Translator.translate("Scales")) - self.form.xAuto.setText(Translator.translate("X auto")) - self.form.yAuto.setText(Translator.translate("Y auto")) - self.form.findChild(QtGui.QCheckBox, "allAxes").setText(Translator.translate("Apply to all axes")) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_axes", "Configure axes").toAscii())) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Active axes").toAscii())) + self.form.all.setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "scalesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Scales").toAscii())) + self.form.xAuto.setText(str(QtGui.QApplication.translate("plot_axes", "X auto").toAscii())) + self.form.yAuto.setText(str(QtGui.QApplication.translate("plot_axes", "Y auto").toAscii())) + self.form.findChild(QtGui.QCheckBox, "allAxes").setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) def onAxesId(self, value): """ Executed when axes index is modified. """ @@ -178,7 +178,7 @@ class TaskPanel: return # Don't remove first axes if not self.form.axId.value(): - msg = Translator.translate("Axes 0 can't be deleted") + msg = str(QtGui.QApplication.translate("plot_axes", "Axes 0 can not be deleted".toAscii())) App.Console.PrintError(msg+"\n") return # Remove axes diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py index fe47acbeb..b50262e61 100644 --- a/src/Mod/Plot/plotLabels/TaskPanel.py +++ b/src/Mod/Plot/plotLabels/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -106,11 +106,11 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set labels")) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) - self.form.findChild(QtGui.QLabel, "titleLabel").setText(Translator.translate("Title")) - self.form.findChild(QtGui.QLabel, "xLabel").setText(Translator.translate("X label")) - self.form.findChild(QtGui.QLabel, "yLabel").setText(Translator.translate("Y label")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_labels", "Set labels").toAscii())) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Active axes").toAscii())) + self.form.findChild(QtGui.QLabel, "titleLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Title").toAscii())) + self.form.findChild(QtGui.QLabel, "xLabel").setText(str(QtGui.QApplication.translate("plot_labels", "X label").toAscii())) + self.form.findChild(QtGui.QLabel, "yLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Y label").toAscii())) def onAxesId(self, value): """ Executed when axes index is modified. """ diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py index a5737d396..bf409fdea 100644 --- a/src/Mod/Plot/plotPositions/TaskPanel.py +++ b/src/Mod/Plot/plotPositions/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -97,9 +97,9 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set positions and sizes")) - self.form.findChild(QtGui.QLabel, "posLabel").setText(Translator.translate("Position")) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Size")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_positions", "Set positions and sizes").toAscii())) + self.form.findChild(QtGui.QLabel, "posLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Position").toAscii())) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Size").toAscii())) def onItem(self, row): """ Executed when selected item is modified. """ diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py index f545d9ff5..051184710 100644 --- a/src/Mod/Plot/plotSave/TaskPanel.py +++ b/src/Mod/Plot/plotSave/TaskPanel.py @@ -29,7 +29,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -38,7 +38,7 @@ class TaskPanel: def accept(self): plt = Plot.getPlot() if not plt: - msg = Translator.translate("Plot document must be selected in order to save it.") + msg = str(QtGui.QApplication.translate("plot_save", "Plot document must be selected in order to save it").toAscii()) App.Console.PrintError(msg+"\n") return False path = unicode(self.form.path.text()) @@ -102,9 +102,9 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Save figure")) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Inches")) - self.form.findChild(QtGui.QLabel, "dpiLabel").setText(Translator.translate("Dots per Inch")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_save", "Save figure").toAscii())) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_save", "Inches").toAscii())) + self.form.findChild(QtGui.QLabel, "dpiLabel").setText(str(QtGui.QApplication.translate("plot_save", "Dots per Inch").toAscii())) def updateUI(self): """ Setup UI controls values if possible """ diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py index 3d129ebf7..67b1950b4 100644 --- a/src/Mod/Plot/plotSeries/TaskPanel.py +++ b/src/Mod/Plot/plotSeries/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths # matplotlib import matplotlib from matplotlib.lines import Line2D @@ -110,11 +110,11 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set positions and sizes")) - self.form.isLabel.setText(Translator.translate("No label")) - self.form.remove.setText(Translator.translate("Remove serie")) - self.form.findChild(QtGui.QLabel, "styleLabel").setText(Translator.translate("Line style")) - self.form.findChild(QtGui.QLabel, "markerLabel").setText(Translator.translate("Marker")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_series", "Configure series").toAscii())) + self.form.isLabel.setText(str(QtGui.QApplication.translate("plot_series", "No label").toAscii())) + self.form.remove.setText(str(QtGui.QApplication.translate("plot_series", "Remove serie").toAscii())) + self.form.findChild(QtGui.QLabel, "styleLabel").setText(str(QtGui.QApplication.translate("plot_series", "Line style").toAscii())) + self.form.findChild(QtGui.QLabel, "markerLabel").setText(str(QtGui.QApplication.translate("plot_series", "Marker").toAscii())) def fillStyles(self): """ Fill style combo boxes. """ diff --git a/src/Mod/Plot/plotUtils/Paths.py b/src/Mod/Plot/plotUtils/Paths.py index 8549681c7..b03f3f64a 100644 --- a/src/Mod/Plot/plotUtils/Paths.py +++ b/src/Mod/Plot/plotUtils/Paths.py @@ -24,7 +24,7 @@ import FreeCAD, FreeCADGui, os def modulePath(): - """returns the current Ship design module path + """returns the current Plot module path @return Module path""" path1 = FreeCAD.ConfigGet("AppHomePath") + "Mod/Plot" path2 = FreeCAD.ConfigGet("UserAppData") + "Mod/Plot" @@ -34,9 +34,15 @@ def modulePath(): return path1 def iconsPath(): - """returns the current Ship design module icons path + """returns the current Plot module icons path @return Icons path""" - path = modulePath() + "/Icons" + path = modulePath() + "/resources/icons" + return path + +def translationsPath(): + """returns the current Plot module translations path + @return Icons path""" + path = modulePath() + "/resources/translations" return path def getPathFromFile(fileName): diff --git a/src/Mod/Plot/Icons/Axes.svg b/src/Mod/Plot/resources/icons/Axes.svg similarity index 100% rename from src/Mod/Plot/Icons/Axes.svg rename to src/Mod/Plot/resources/icons/Axes.svg diff --git a/src/Mod/Plot/Icons/Grid.svg b/src/Mod/Plot/resources/icons/Grid.svg similarity index 100% rename from src/Mod/Plot/Icons/Grid.svg rename to src/Mod/Plot/resources/icons/Grid.svg diff --git a/src/Mod/Plot/Icons/Icon.svg b/src/Mod/Plot/resources/icons/Icon.svg similarity index 100% rename from src/Mod/Plot/Icons/Icon.svg rename to src/Mod/Plot/resources/icons/Icon.svg diff --git a/src/Mod/Plot/Icons/Labels.svg b/src/Mod/Plot/resources/icons/Labels.svg similarity index 100% rename from src/Mod/Plot/Icons/Labels.svg rename to src/Mod/Plot/resources/icons/Labels.svg diff --git a/src/Mod/Plot/Icons/Legend.svg b/src/Mod/Plot/resources/icons/Legend.svg similarity index 100% rename from src/Mod/Plot/Icons/Legend.svg rename to src/Mod/Plot/resources/icons/Legend.svg diff --git a/src/Mod/Plot/Icons/Positions.svg b/src/Mod/Plot/resources/icons/Positions.svg similarity index 100% rename from src/Mod/Plot/Icons/Positions.svg rename to src/Mod/Plot/resources/icons/Positions.svg diff --git a/src/Mod/Plot/Icons/Save.svg b/src/Mod/Plot/resources/icons/Save.svg similarity index 100% rename from src/Mod/Plot/Icons/Save.svg rename to src/Mod/Plot/resources/icons/Save.svg diff --git a/src/Mod/Plot/Icons/Series.svg b/src/Mod/Plot/resources/icons/Series.svg similarity index 100% rename from src/Mod/Plot/Icons/Series.svg rename to src/Mod/Plot/resources/icons/Series.svg diff --git a/src/Mod/Plot/resources/translations/Plot.qm b/src/Mod/Plot/resources/translations/Plot.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts new file mode 100644 index 000000000..b74f108cd --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -0,0 +1,241 @@ + + + + plot + + + Save plot + + + + + Configure axes + + + + + Configure axes parameters + + + + + Configure series + + + + + Configure series drawing style and label + + + + + Grid must be activated on top of a plot document + + + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Legend must be activated on top of a plot document + + + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Set labels + + + + + Set title and axes labels + + + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + matplotlib not found, Plot module will be disabled + + + + + Save plot as image file + + + + + matplotlib not found, so Plot module can not be loaded + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + Plot document must be selected in order to save it + + + + + plot_series + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + + Configure series + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm new file mode 100644 index 0000000000000000000000000000000000000000..ccb2cc5a9d95fe4233dc0639f62b889d66c8dee3 GIT binary patch literal 4804 zcmcgvU5FKB7=Bmx{Oq2yXIGL`Shi17vXHdJLc}iA6}5C-JQBM|bE%*EedJNe!ZOZzYGJN4D&O++1|lsT0lDvi;ufgz&>K{MK~(&sWBvJs zMDxydct@@f_5C={{%Z@-{7dt0y!j;2g6>S`N8e!IZ<+p|-zCbf%M5(^08ys7_FT@a zJMlI4eUSO^ReV=impOavJk|r5b1(b&?o9UmeK&}DKh1vp+2ce#pJZ?T{xDJJ@!Yb- zWvtuvT0D_k{lx|7IhH%}E%4=z=3Y52A$KIdpvMOO$MQ~gE!JQ27k)YedA(h~TziM8 z`{{1)AaM6AEKE#aC!+84+Iyv-pYJW)dhIB1zg2u<1@Lv<)N66L`22Gf?Ej}Ywc}6N z`$kXS#XZpbNYC^otoeUS>x0vfM|$l(S*o8NhFzbR>SuVpReHSw{Pe5^l6KF>-E!JY zE;%$o7FDT19!U~pLQWyuNpTnchy6pxXEb1BBf=vM# zG!6lh4pRm9k+3>`c{EKmybExrRhalC)R(6ETB!^bE=ejBb;C1iGLT+M_xf4PFq9cS zba*fjra%|#Hh|6`))*Pr7wPh)XQj<^W-(8~SQdH}S3@x;=n$Uh=d3b-YGzbGp=MXZ zswloE8N_X1txUrbre{o9PF489AsdcxOko@2(oTBg7>z(MTPko>6bM%3;kT`x*6`nM z-ZMi2?F*B}}){s7WVC8g+b5qgZ(rm!q63!0i8H*x(LX zmGHzpn>IjO!7%%WqmsSE+)k^+1h*lBU1eiZDvpxWj3oBAe4LO0nHBh?ru@e`DzqP7 znvD6=!dpWV7;0P;Y7~YqteR1kV#2azQvdQ)dQ?C>TM9SRPC54-JWOPDw)5rH>_|i0(IZS_>hE-y ziJoe2xbG%xuNaP^1?JnXVWy2=jJl%cJHU?^j#q=iM()sP)Xib9i^+b0f2oOY4Q*7e z*4>}2=V^m&XE$;onr)C=u(4jZ525D^1MZnc{NRkCj#0L1zov3F1#KqP6!-^e2(ow> zbpTZlD~Pp_;_e{}1BlN}fYUX#yQFF|JCcW~XjiseF>Ku|Qac7fRzs1)<%?%R-p!f8 zBi3lBH#;hfM&P#5xg66E(;Dx9%mP;dUF+j=dLiea<%jL%9tDntz>TGtqtW}W z#YD{J#%?2~FYWcvg#1WzN?|KXipX%5Q2Dv(HeBA%QKg-3W<4CtLdczEj8e0~<@n|U zhnh&hd#j{!>9o<{)qyP()idME2;EQlDTM=?po2n2GceMI9i?3kl8cG`tt3*LK%J1iYo{X{=O)JM+VCI?rOr c`+=P2m70>EXV{RLP)2dLthpdrZJdGOKVp*oivR!s literal 0 HcmV?d00001 diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts new file mode 100644 index 000000000..033a50621 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -0,0 +1,241 @@ + + + + plot + + + matplotlib not found, Plot module will be disabled + No se puede encontrar matplotlib, el modulo de graficado sera desactivado + + + + Save plot + Guardar gráfica + + + + Save plot as image file + Guarda la gráfica como archivo de imagen + + + + Configure axes + Configure los ejes + + + + Configure axes parameters + Establezca los parámetros de cada eje + + + + Configure series + Configure las series trazadas + + + + Configure series drawing style and label + Establezca el título y el estilo de las curvas trazadas + + + + Grid must be activated on top of a plot document + Para activar la malla se requiere un documento de grafica seleccionado + + + + Show/Hide grid + Mostrar/Ocultar la malla + + + + Show/Hide grid on selected plot + Muestre/Oculte la malla del gráfico seleccionado + + + + Legend must be activated on top of a plot document + Para activar la legenda se requiere un documento de grafica seleccionado + + + + Show/Hide legend + Mostrar/Ocultar la legenda + + + + Show/Hide legend on selected plot + Muestre/Oculte la legenda del gráfico seleccionado + + + + Set labels + Establecer títulos + + + + Set title and axes labels + Establezca los tñitulos de ejes y series de datos + + + + Set positions and sizes + Modificar posiciones y tamaños + + + + Set labels and legend positions and sizes + Modifique la posición y tamaño de títulos y legenda + + + + matplotlib not found, so Plot module can not be loaded + No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado + + + + plot_axes + + + Configure axes + Configuración de los ejes + + + + Active axes + Ejes activos + + + + Apply to all axes + Aplicar a todos los ejes + + + + Dimensions + Dimensiones + + + + X axis position + Posición del eje X + + + + Y axis position + Posición del eje Y + + + + Scales + Escalas + + + + X auto + Automatica en X + + + + Y auto + + + + + plot_labels + + + Set labels + Selección de títulos + + + + Active axes + Ejes activos + + + + Title + Título + + + + X label + Título del eje X + + + + Y label + Título del eje Y + + + + plot_positions + + + Set positions and sizes + Selección de posiciones y tamaños + + + + Position + Posición + + + + Size + Tamaño + + + + plot_save + + + Save figure + Guardar figura + + + + Inches + Pulgadas + + + + Dots per Inch + Puntos por pulgada + + + + Plot document must be selected in order to save it + Debe seleccionar una grafica primero + + + + plot_series + + + Configure series + Configurar series de datos + + + + No label + Sin título + + + + Remove serie + Eliminar serie + + + + Line style + Estilo de línea + + + + Marker + Marcador + + + From bc96c13f374d8158623efaae53e3605c8473f43c Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Fri, 2 Nov 2012 12:21:54 +0100 Subject: [PATCH 02/15] Merged translation stuff --- src/Mod/Plot/plotUtils/Translator.py | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/Mod/Plot/plotUtils/Translator.py diff --git a/src/Mod/Plot/plotUtils/Translator.py b/src/Mod/Plot/plotUtils/Translator.py deleted file mode 100644 index fc6b562d5..000000000 --- a/src/Mod/Plot/plotUtils/Translator.py +++ /dev/null @@ -1,30 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* 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 Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library 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 * -#* * -#*************************************************************************** - -import FreeCAD, FreeCADGui, os -from PyQt4 import QtCore,QtGui - -def translate(text,context="plot"): - "convenience function for Qt translator" - return QtGui.QApplication.translate(context, text, None, - QtGui.QApplication.UnicodeUTF8) From 58c5669b397567df1292d8f0bbed74a7f22a81dd Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Fri, 2 Nov 2012 12:20:30 +0100 Subject: [PATCH 03/15] Fixed translation stuff --- src/Mod/Plot/CMakeLists.txt | 34 ++- src/Mod/Plot/InitGui.py | 12 +- src/Mod/Plot/Makefile.am | 20 +- src/Mod/Plot/Plot.py | 7 +- src/Mod/Plot/PlotGui.py | 61 +++-- src/Mod/Plot/plotAxes/TaskPanel.py | 30 +-- src/Mod/Plot/plotLabels/TaskPanel.py | 12 +- src/Mod/Plot/plotPositions/TaskPanel.py | 8 +- src/Mod/Plot/plotSave/TaskPanel.py | 10 +- src/Mod/Plot/plotSeries/TaskPanel.py | 12 +- src/Mod/Plot/plotUtils/Paths.py | 12 +- .../Plot/{Icons => resources/icons}/Axes.svg | 0 .../Plot/{Icons => resources/icons}/Grid.svg | 0 .../Plot/{Icons => resources/icons}/Icon.svg | 0 .../{Icons => resources/icons}/Labels.svg | 0 .../{Icons => resources/icons}/Legend.svg | 0 .../{Icons => resources/icons}/Positions.svg | 0 .../Plot/{Icons => resources/icons}/Save.svg | 0 .../{Icons => resources/icons}/Series.svg | 0 src/Mod/Plot/resources/translations/Plot.qm | 1 + src/Mod/Plot/resources/translations/Plot.ts | 241 ++++++++++++++++++ .../Plot/resources/translations/Plot_es-ES.qm | Bin 0 -> 4804 bytes .../Plot/resources/translations/Plot_es-ES.ts | 241 ++++++++++++++++++ 23 files changed, 607 insertions(+), 94 deletions(-) rename src/Mod/Plot/{Icons => resources/icons}/Axes.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Grid.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Icon.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Labels.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Legend.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Positions.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Save.svg (100%) rename src/Mod/Plot/{Icons => resources/icons}/Series.svg (100%) create mode 100644 src/Mod/Plot/resources/translations/Plot.qm create mode 100644 src/Mod/Plot/resources/translations/Plot.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_es-ES.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_es-ES.ts diff --git a/src/Mod/Plot/CMakeLists.txt b/src/Mod/Plot/CMakeLists.txt index f52bb5f70..8d0730181 100644 --- a/src/Mod/Plot/CMakeLists.txt +++ b/src/Mod/Plot/CMakeLists.txt @@ -6,17 +6,25 @@ SET(PlotMain_SRCS SOURCE_GROUP("" FILES ${PlotMain_SRCS}) SET(PlotIcons_SRCS - Icons/Axes.svg - Icons/Grid.svg - Icons/Icon.svg - Icons/Labels.svg - Icons/Legend.svg - Icons/Positions.svg - Icons/Save.svg - Icons/Series.svg + resources/icons/Axes.svg + resources/icons/Grid.svg + resources/icons/Icon.svg + resources/icons/Labels.svg + resources/icons/Legend.svg + resources/icons/Positions.svg + resources/icons/Save.svg + resources/icons/Series.svg ) SOURCE_GROUP("ploticons" FILES ${PlotIcons_SRCS}) +SET(PlotTranslations_SRCS + resources/translations/Plot.ts + resources/translations/Plot.qm + resources/translations/Plot_es-ES.ts + resources/translations/Plot_es-ES.qm +) +SOURCE_GROUP("plottranslations" FILES ${PlotTranslations_SRCS}) + SET(PlotAxes_SRCS plotAxes/__init__.py plotAxes/TaskPanel.py @@ -59,7 +67,7 @@ SET(PlotUtils_SRCS ) SOURCE_GROUP("plotutils" FILES ${PlotUtils_SRCS}) -SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotUtils_SRCS}) +SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotTranslations_SRCS} ${PlotUtils_SRCS}) ADD_CUSTOM_TARGET(Plot ALL SOURCES ${all_files} @@ -71,7 +79,13 @@ INSTALL( FILES ${PlotIcons_SRCS} DESTINATION - Mod/Plot/Icons + Mod/Plot/resources/icons +) +INSTALL( + FILES + ${PlotTranslations_SRCS} + DESTINATION + Mod/Plot/resources/translations ) INSTALL( FILES diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 35d9d465a..8038c0319 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -23,15 +23,14 @@ class PlotWorkbench ( Workbench ): """ @brief Workbench of Plot module. Here toolbars & icons are append. """ - from plotUtils import Paths, Translator + from plotUtils import Paths import PlotGui Icon = Paths.iconsPath() + "/Icon.svg" - MenuText = str(Translator.translate("Plot")) - ToolTip = str(Translator.translate("Plot")) + MenuText = "Plot" + ToolTip = "The Plot module is used to edit/save output plots performed by other tools" def Initialize(self): - from plotUtils import Translator # ToolBar list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] self.appendToolbar("Plot",list) @@ -44,7 +43,6 @@ try: import matplotlib Gui.addWorkbench(PlotWorkbench()) except ImportError: - from plotUtils import Translator - msg = Translator.translate("matplotlib not found, Plot module will be disabled.\n") - FreeCAD.Console.PrintMessage(msg) + msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, Plot module will be disabled") + FreeCAD.Console.PrintMessage(msg + '\n') diff --git a/src/Mod/Plot/Makefile.am b/src/Mod/Plot/Makefile.am index c0411b0d8..e1cf410d1 100644 --- a/src/Mod/Plot/Makefile.am +++ b/src/Mod/Plot/Makefile.am @@ -7,14 +7,18 @@ data_DATA = \ PlotGui.py nobase_data_DATA = \ - Icons/Axes.svg \ - Icons/Grid.svg \ - Icons/Icon.svg \ - Icons/Labels.svg \ - Icons/Legend.svg \ - Icons/Positions.svg \ - Icons/Save.svg \ - Icons/Series.svg \ + resources/icons/Axes.svg \ + resources/icons/Grid.svg \ + resources/icons/Icon.svg \ + resources/icons/Labels.svg \ + resources/icons/Legend.svg \ + resources/icons/Positions.svg \ + resources/icons/Save.svg \ + resources/icons/Series.svg \ + resources/translations/Plot.ts \ + resources/translations/Plot.qm \ + resources/translations/Plot_es-ES.ts \ + resources/translations/Plot_es-ES.qm \ plotAxes/__init__.py \ plotAxes/TaskPanel.py \ plotAxes/TaskPanel.ui \ diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py index fc8767799..29fdff663 100644 --- a/src/Mod/Plot/Plot.py +++ b/src/Mod/Plot/Plot.py @@ -24,9 +24,6 @@ # FreeCAD import FreeCAD -# Plot module -from plotUtils import Paths, Translator - # PyQt4 from PyQt4 import QtCore, QtGui @@ -38,8 +35,8 @@ try: from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg as NavigationToolbar from matplotlib.figure import Figure except ImportError: - msg = Translator.translate("matplotlib not installed, so Plot module is disabled.\n") - FreeCAD.Console.PrintError(msg) + msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, so Plot module can not be loaded") + FreeCAD.Console.PrintMessage(msg + '\n') raise ImportError("matplotlib not installed") def getMainWindow(): diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py index 7f220b90f..ad3b2da65 100644 --- a/src/Mod/Plot/PlotGui.py +++ b/src/Mod/Plot/PlotGui.py @@ -24,16 +24,29 @@ from PyQt4 import QtCore, QtGui import FreeCAD, FreeCADGui, os +# Setup tranlations +from plotUtils import Paths +path = Paths.translationsPath() +FreeCADGui.addLanguagePath(path) +import os +import FreeCAD +translator = QtCore.QTranslator() +dirList=os.listdir(path) +for fname in dirList: + valid = translator.load(os.path.join(path, fname)) + if valid: + QtGui.QApplication.installTranslator(translator) + class Save: def Activated(self): import plotSave plotSave.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Save.svg" - MenuText = str(Translator.translate('Save plot')) - ToolTip = str(Translator.translate('Save plot as image file.')) + MenuText = str(QtGui.QApplication.translate("plot", "Save plot").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Save plot as image file").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Axes: @@ -42,10 +55,10 @@ class Axes: plotAxes.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Axes.svg" - MenuText = str(Translator.translate('Configure axes')) - ToolTip = str(Translator.translate('Configure axes parameters.')) + MenuText = str(QtGui.QApplication.translate("plot", "Configure axes").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Configure axes parameters").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Series: @@ -54,48 +67,46 @@ class Series: plotSeries.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Series.svg" - MenuText = str(Translator.translate('Configure series')) - ToolTip = str(Translator.translate('Configure series drawing style and label.')) + MenuText = str(QtGui.QApplication.translate("plot", "Configure series").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Configure series drawing style and label").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Grid: def Activated(self): import Plot - from plotUtils import Translator plt = Plot.getPlot() if not plt: - msg = Translator.translate("Grid must be activated on top of a plot document.") + msg = str(QtGui.QApplication.translate("plot", "Grid must be activated on top of a plot document").toAscii()) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isGrid() Plot.grid(not flag) def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Grid.svg" - MenuText = str(Translator.translate('Show/Hide grid')) - ToolTip = str(Translator.translate('Show/Hide grid on selected plot')) + MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide grid").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide grid on selected plot").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Legend: def Activated(self): import Plot - from plotUtils import Translator plt = Plot.getPlot() if not plt: - msg = Translator.translate("Legend must be activated on top of a plot document.") + msg = str(QtGui.QApplication.translate("plot", "Legend must be activated on top of a plot document").toAscii()) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isLegend() Plot.legend(not flag) def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Legend.svg" - MenuText = str(Translator.translate('Show/Hide legend')) - ToolTip = str(Translator.translate('Show/Hide legend on selected plot')) + MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide legend").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide legend on selected plot").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Labels: @@ -104,10 +115,10 @@ class Labels: plotLabels.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Labels.svg" - MenuText = str(Translator.translate('Set labels')) - ToolTip = str(Translator.translate('Set title and axes labels')) + MenuText = str(QtGui.QApplication.translate("plot", "Set labels").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Set title and axes labels").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Positions: @@ -116,10 +127,10 @@ class Positions: plotPositions.load() def GetResources(self): - from plotUtils import Paths, Translator + from plotUtils import Paths IconPath = Paths.iconsPath() + "/Positions.svg" - MenuText = str(Translator.translate('Set positions and sizes')) - ToolTip = str(Translator.translate('Set labels and legend positions and sizes.')) + MenuText = str(QtGui.QApplication.translate("plot", "Set positions and sizes").toAscii()) + ToolTip = str(QtGui.QApplication.translate("plot", "Set labels and legend positions and sizes").toAscii()) return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Plot_SaveFig', Save()) diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py index 848b9506a..fc18dfd69 100644 --- a/src/Mod/Plot/plotAxes/TaskPanel.py +++ b/src/Mod/Plot/plotAxes/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -127,19 +127,19 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Configure axes")) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) - self.form.all.setText(Translator.translate("Apply to all axes")) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) - self.form.findChild(QtGui.QLabel, "scalesLabel").setText(Translator.translate("Scales")) - self.form.xAuto.setText(Translator.translate("X auto")) - self.form.yAuto.setText(Translator.translate("Y auto")) - self.form.findChild(QtGui.QCheckBox, "allAxes").setText(Translator.translate("Apply to all axes")) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_axes", "Configure axes").toAscii())) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Active axes").toAscii())) + self.form.all.setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "scalesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Scales").toAscii())) + self.form.xAuto.setText(str(QtGui.QApplication.translate("plot_axes", "X auto").toAscii())) + self.form.yAuto.setText(str(QtGui.QApplication.translate("plot_axes", "Y auto").toAscii())) + self.form.findChild(QtGui.QCheckBox, "allAxes").setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) def onAxesId(self, value): """ Executed when axes index is modified. """ @@ -178,7 +178,7 @@ class TaskPanel: return # Don't remove first axes if not self.form.axId.value(): - msg = Translator.translate("Axes 0 can't be deleted") + msg = str(QtGui.QApplication.translate("plot_axes", "Axes 0 can not be deleted".toAscii())) App.Console.PrintError(msg+"\n") return # Remove axes diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py index fe47acbeb..b50262e61 100644 --- a/src/Mod/Plot/plotLabels/TaskPanel.py +++ b/src/Mod/Plot/plotLabels/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -106,11 +106,11 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set labels")) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) - self.form.findChild(QtGui.QLabel, "titleLabel").setText(Translator.translate("Title")) - self.form.findChild(QtGui.QLabel, "xLabel").setText(Translator.translate("X label")) - self.form.findChild(QtGui.QLabel, "yLabel").setText(Translator.translate("Y label")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_labels", "Set labels").toAscii())) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Active axes").toAscii())) + self.form.findChild(QtGui.QLabel, "titleLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Title").toAscii())) + self.form.findChild(QtGui.QLabel, "xLabel").setText(str(QtGui.QApplication.translate("plot_labels", "X label").toAscii())) + self.form.findChild(QtGui.QLabel, "yLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Y label").toAscii())) def onAxesId(self, value): """ Executed when axes index is modified. """ diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py index a5737d396..bf409fdea 100644 --- a/src/Mod/Plot/plotPositions/TaskPanel.py +++ b/src/Mod/Plot/plotPositions/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -97,9 +97,9 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set positions and sizes")) - self.form.findChild(QtGui.QLabel, "posLabel").setText(Translator.translate("Position")) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Size")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_positions", "Set positions and sizes").toAscii())) + self.form.findChild(QtGui.QLabel, "posLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Position").toAscii())) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Size").toAscii())) def onItem(self, row): """ Executed when selected item is modified. """ diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py index f545d9ff5..051184710 100644 --- a/src/Mod/Plot/plotSave/TaskPanel.py +++ b/src/Mod/Plot/plotSave/TaskPanel.py @@ -29,7 +29,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths class TaskPanel: def __init__(self): @@ -38,7 +38,7 @@ class TaskPanel: def accept(self): plt = Plot.getPlot() if not plt: - msg = Translator.translate("Plot document must be selected in order to save it.") + msg = str(QtGui.QApplication.translate("plot_save", "Plot document must be selected in order to save it").toAscii()) App.Console.PrintError(msg+"\n") return False path = unicode(self.form.path.text()) @@ -102,9 +102,9 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Save figure")) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Inches")) - self.form.findChild(QtGui.QLabel, "dpiLabel").setText(Translator.translate("Dots per Inch")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_save", "Save figure").toAscii())) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_save", "Inches").toAscii())) + self.form.findChild(QtGui.QLabel, "dpiLabel").setText(str(QtGui.QApplication.translate("plot_save", "Dots per Inch").toAscii())) def updateUI(self): """ Setup UI controls values if possible """ diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py index 3d129ebf7..67b1950b4 100644 --- a/src/Mod/Plot/plotSeries/TaskPanel.py +++ b/src/Mod/Plot/plotSeries/TaskPanel.py @@ -28,7 +28,7 @@ import FreeCADGui as Gui from PyQt4 import QtGui,QtCore # Module import Plot -from plotUtils import Paths, Translator +from plotUtils import Paths # matplotlib import matplotlib from matplotlib.lines import Line2D @@ -110,11 +110,11 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(Translator.translate("Set positions and sizes")) - self.form.isLabel.setText(Translator.translate("No label")) - self.form.remove.setText(Translator.translate("Remove serie")) - self.form.findChild(QtGui.QLabel, "styleLabel").setText(Translator.translate("Line style")) - self.form.findChild(QtGui.QLabel, "markerLabel").setText(Translator.translate("Marker")) + self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_series", "Configure series").toAscii())) + self.form.isLabel.setText(str(QtGui.QApplication.translate("plot_series", "No label").toAscii())) + self.form.remove.setText(str(QtGui.QApplication.translate("plot_series", "Remove serie").toAscii())) + self.form.findChild(QtGui.QLabel, "styleLabel").setText(str(QtGui.QApplication.translate("plot_series", "Line style").toAscii())) + self.form.findChild(QtGui.QLabel, "markerLabel").setText(str(QtGui.QApplication.translate("plot_series", "Marker").toAscii())) def fillStyles(self): """ Fill style combo boxes. """ diff --git a/src/Mod/Plot/plotUtils/Paths.py b/src/Mod/Plot/plotUtils/Paths.py index 8549681c7..b03f3f64a 100644 --- a/src/Mod/Plot/plotUtils/Paths.py +++ b/src/Mod/Plot/plotUtils/Paths.py @@ -24,7 +24,7 @@ import FreeCAD, FreeCADGui, os def modulePath(): - """returns the current Ship design module path + """returns the current Plot module path @return Module path""" path1 = FreeCAD.ConfigGet("AppHomePath") + "Mod/Plot" path2 = FreeCAD.ConfigGet("UserAppData") + "Mod/Plot" @@ -34,9 +34,15 @@ def modulePath(): return path1 def iconsPath(): - """returns the current Ship design module icons path + """returns the current Plot module icons path @return Icons path""" - path = modulePath() + "/Icons" + path = modulePath() + "/resources/icons" + return path + +def translationsPath(): + """returns the current Plot module translations path + @return Icons path""" + path = modulePath() + "/resources/translations" return path def getPathFromFile(fileName): diff --git a/src/Mod/Plot/Icons/Axes.svg b/src/Mod/Plot/resources/icons/Axes.svg similarity index 100% rename from src/Mod/Plot/Icons/Axes.svg rename to src/Mod/Plot/resources/icons/Axes.svg diff --git a/src/Mod/Plot/Icons/Grid.svg b/src/Mod/Plot/resources/icons/Grid.svg similarity index 100% rename from src/Mod/Plot/Icons/Grid.svg rename to src/Mod/Plot/resources/icons/Grid.svg diff --git a/src/Mod/Plot/Icons/Icon.svg b/src/Mod/Plot/resources/icons/Icon.svg similarity index 100% rename from src/Mod/Plot/Icons/Icon.svg rename to src/Mod/Plot/resources/icons/Icon.svg diff --git a/src/Mod/Plot/Icons/Labels.svg b/src/Mod/Plot/resources/icons/Labels.svg similarity index 100% rename from src/Mod/Plot/Icons/Labels.svg rename to src/Mod/Plot/resources/icons/Labels.svg diff --git a/src/Mod/Plot/Icons/Legend.svg b/src/Mod/Plot/resources/icons/Legend.svg similarity index 100% rename from src/Mod/Plot/Icons/Legend.svg rename to src/Mod/Plot/resources/icons/Legend.svg diff --git a/src/Mod/Plot/Icons/Positions.svg b/src/Mod/Plot/resources/icons/Positions.svg similarity index 100% rename from src/Mod/Plot/Icons/Positions.svg rename to src/Mod/Plot/resources/icons/Positions.svg diff --git a/src/Mod/Plot/Icons/Save.svg b/src/Mod/Plot/resources/icons/Save.svg similarity index 100% rename from src/Mod/Plot/Icons/Save.svg rename to src/Mod/Plot/resources/icons/Save.svg diff --git a/src/Mod/Plot/Icons/Series.svg b/src/Mod/Plot/resources/icons/Series.svg similarity index 100% rename from src/Mod/Plot/Icons/Series.svg rename to src/Mod/Plot/resources/icons/Series.svg diff --git a/src/Mod/Plot/resources/translations/Plot.qm b/src/Mod/Plot/resources/translations/Plot.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts new file mode 100644 index 000000000..b74f108cd --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -0,0 +1,241 @@ + + + + plot + + + Save plot + + + + + Configure axes + + + + + Configure axes parameters + + + + + Configure series + + + + + Configure series drawing style and label + + + + + Grid must be activated on top of a plot document + + + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Legend must be activated on top of a plot document + + + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Set labels + + + + + Set title and axes labels + + + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + matplotlib not found, Plot module will be disabled + + + + + Save plot as image file + + + + + matplotlib not found, so Plot module can not be loaded + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + Plot document must be selected in order to save it + + + + + plot_series + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + + Configure series + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm new file mode 100644 index 0000000000000000000000000000000000000000..ccb2cc5a9d95fe4233dc0639f62b889d66c8dee3 GIT binary patch literal 4804 zcmcgvU5FKB7=Bmx{Oq2yXIGL`Shi17vXHdJLc}iA6}5C-JQBM|bE%*EedJNe!ZOZzYGJN4D&O++1|lsT0lDvi;ufgz&>K{MK~(&sWBvJs zMDxydct@@f_5C={{%Z@-{7dt0y!j;2g6>S`N8e!IZ<+p|-zCbf%M5(^08ys7_FT@a zJMlI4eUSO^ReV=impOavJk|r5b1(b&?o9UmeK&}DKh1vp+2ce#pJZ?T{xDJJ@!Yb- zWvtuvT0D_k{lx|7IhH%}E%4=z=3Y52A$KIdpvMOO$MQ~gE!JQ27k)YedA(h~TziM8 z`{{1)AaM6AEKE#aC!+84+Iyv-pYJW)dhIB1zg2u<1@Lv<)N66L`22Gf?Ej}Ywc}6N z`$kXS#XZpbNYC^otoeUS>x0vfM|$l(S*o8NhFzbR>SuVpReHSw{Pe5^l6KF>-E!JY zE;%$o7FDT19!U~pLQWyuNpTnchy6pxXEb1BBf=vM# zG!6lh4pRm9k+3>`c{EKmybExrRhalC)R(6ETB!^bE=ejBb;C1iGLT+M_xf4PFq9cS zba*fjra%|#Hh|6`))*Pr7wPh)XQj<^W-(8~SQdH}S3@x;=n$Uh=d3b-YGzbGp=MXZ zswloE8N_X1txUrbre{o9PF489AsdcxOko@2(oTBg7>z(MTPko>6bM%3;kT`x*6`nM z-ZMi2?F*B}}){s7WVC8g+b5qgZ(rm!q63!0i8H*x(LX zmGHzpn>IjO!7%%WqmsSE+)k^+1h*lBU1eiZDvpxWj3oBAe4LO0nHBh?ru@e`DzqP7 znvD6=!dpWV7;0P;Y7~YqteR1kV#2azQvdQ)dQ?C>TM9SRPC54-JWOPDw)5rH>_|i0(IZS_>hE-y ziJoe2xbG%xuNaP^1?JnXVWy2=jJl%cJHU?^j#q=iM()sP)Xib9i^+b0f2oOY4Q*7e z*4>}2=V^m&XE$;onr)C=u(4jZ525D^1MZnc{NRkCj#0L1zov3F1#KqP6!-^e2(ow> zbpTZlD~Pp_;_e{}1BlN}fYUX#yQFF|JCcW~XjiseF>Ku|Qac7fRzs1)<%?%R-p!f8 zBi3lBH#;hfM&P#5xg66E(;Dx9%mP;dUF+j=dLiea<%jL%9tDntz>TGtqtW}W z#YD{J#%?2~FYWcvg#1WzN?|KXipX%5Q2Dv(HeBA%QKg-3W<4CtLdczEj8e0~<@n|U zhnh&hd#j{!>9o<{)qyP()idME2;EQlDTM=?po2n2GceMI9i?3kl8cG`tt3*LK%J1iYo{X{=O)JM+VCI?rOr c`+=P2m70>EXV{RLP)2dLthpdrZJdGOKVp*oivR!s literal 0 HcmV?d00001 diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts new file mode 100644 index 000000000..033a50621 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -0,0 +1,241 @@ + + + + plot + + + matplotlib not found, Plot module will be disabled + No se puede encontrar matplotlib, el modulo de graficado sera desactivado + + + + Save plot + Guardar gráfica + + + + Save plot as image file + Guarda la gráfica como archivo de imagen + + + + Configure axes + Configure los ejes + + + + Configure axes parameters + Establezca los parámetros de cada eje + + + + Configure series + Configure las series trazadas + + + + Configure series drawing style and label + Establezca el título y el estilo de las curvas trazadas + + + + Grid must be activated on top of a plot document + Para activar la malla se requiere un documento de grafica seleccionado + + + + Show/Hide grid + Mostrar/Ocultar la malla + + + + Show/Hide grid on selected plot + Muestre/Oculte la malla del gráfico seleccionado + + + + Legend must be activated on top of a plot document + Para activar la legenda se requiere un documento de grafica seleccionado + + + + Show/Hide legend + Mostrar/Ocultar la legenda + + + + Show/Hide legend on selected plot + Muestre/Oculte la legenda del gráfico seleccionado + + + + Set labels + Establecer títulos + + + + Set title and axes labels + Establezca los tñitulos de ejes y series de datos + + + + Set positions and sizes + Modificar posiciones y tamaños + + + + Set labels and legend positions and sizes + Modifique la posición y tamaño de títulos y legenda + + + + matplotlib not found, so Plot module can not be loaded + No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado + + + + plot_axes + + + Configure axes + Configuración de los ejes + + + + Active axes + Ejes activos + + + + Apply to all axes + Aplicar a todos los ejes + + + + Dimensions + Dimensiones + + + + X axis position + Posición del eje X + + + + Y axis position + Posición del eje Y + + + + Scales + Escalas + + + + X auto + Automatica en X + + + + Y auto + + + + + plot_labels + + + Set labels + Selección de títulos + + + + Active axes + Ejes activos + + + + Title + Título + + + + X label + Título del eje X + + + + Y label + Título del eje Y + + + + plot_positions + + + Set positions and sizes + Selección de posiciones y tamaños + + + + Position + Posición + + + + Size + Tamaño + + + + plot_save + + + Save figure + Guardar figura + + + + Inches + Pulgadas + + + + Dots per Inch + Puntos por pulgada + + + + Plot document must be selected in order to save it + Debe seleccionar una grafica primero + + + + plot_series + + + Configure series + Configurar series de datos + + + + No label + Sin título + + + + Remove serie + Eliminar serie + + + + Line style + Estilo de línea + + + + Marker + Marcador + + + From 72fb3fdb3643959eac831744deb05fb0080b717d Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Fri, 2 Nov 2012 12:21:54 +0100 Subject: [PATCH 04/15] Merged translation stuff --- src/Mod/Plot/plotUtils/Translator.py | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/Mod/Plot/plotUtils/Translator.py diff --git a/src/Mod/Plot/plotUtils/Translator.py b/src/Mod/Plot/plotUtils/Translator.py deleted file mode 100644 index fc6b562d5..000000000 --- a/src/Mod/Plot/plotUtils/Translator.py +++ /dev/null @@ -1,30 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* 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 Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library 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 * -#* * -#*************************************************************************** - -import FreeCAD, FreeCADGui, os -from PyQt4 import QtCore,QtGui - -def translate(text,context="plot"): - "convenience function for Qt translator" - return QtGui.QApplication.translate(context, text, None, - QtGui.QApplication.UnicodeUTF8) From 7d11b0fb168c2128a099c71130f16875e535cc3c Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Sat, 3 Nov 2012 16:03:26 +0100 Subject: [PATCH 05/15] Improved translation stuff in order to support more languages --- src/Mod/Plot/InitGui.py | 4 +- src/Mod/Plot/Plot.py | 3 +- src/Mod/Plot/PlotGui.py | 34 ++--- src/Mod/Plot/plotAxes/TaskPanel.py | 42 ++++-- src/Mod/Plot/plotLabels/TaskPanel.py | 15 ++- src/Mod/Plot/plotPositions/TaskPanel.py | 9 +- src/Mod/Plot/plotSave/TaskPanel.py | 12 +- src/Mod/Plot/plotSeries/TaskPanel.py | 15 ++- src/Mod/Plot/resources/translations/Plot.ts | 116 +++++++++-------- .../Plot/resources/translations/Plot_es-ES.qm | Bin 4804 -> 4983 bytes .../Plot/resources/translations/Plot_es-ES.ts | 120 ++++++++++-------- 11 files changed, 211 insertions(+), 159 deletions(-) diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 8038c0319..59e65f8aa 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -43,6 +43,8 @@ try: import matplotlib Gui.addWorkbench(PlotWorkbench()) except ImportError: - msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, Plot module will be disabled") + from PyQt4 import QtCore, QtGui + msg = QtGui.QApplication.translate("plot_console", "matplotlib not found, Plot module will be disabled", + None,QtGui.QApplication.UnicodeUTF8) FreeCAD.Console.PrintMessage(msg + '\n') diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py index 29fdff663..59020ab22 100644 --- a/src/Mod/Plot/Plot.py +++ b/src/Mod/Plot/Plot.py @@ -35,7 +35,8 @@ try: from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg as NavigationToolbar from matplotlib.figure import Figure except ImportError: - msg = QtCore.QT_TRANSLATE_NOOP("plot", "matplotlib not found, so Plot module can not be loaded") + msg = QtGui.QApplication.translate("plot_console", "matplotlib not found, so Plot module can not be loaded", + None,QtGui.QApplication.UnicodeUTF8) FreeCAD.Console.PrintMessage(msg + '\n') raise ImportError("matplotlib not installed") diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py index ad3b2da65..cd71de2ae 100644 --- a/src/Mod/Plot/PlotGui.py +++ b/src/Mod/Plot/PlotGui.py @@ -45,8 +45,8 @@ class Save: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Save.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Save plot").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Save plot as image file").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot as image file") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Axes: @@ -57,8 +57,8 @@ class Axes: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Axes.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Configure axes").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Configure axes parameters").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes parameters") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Series: @@ -69,8 +69,8 @@ class Series: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Series.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Configure series").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Configure series drawing style and label").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series drawing style and label") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Grid: @@ -78,7 +78,8 @@ class Grid: import Plot plt = Plot.getPlot() if not plt: - msg = str(QtGui.QApplication.translate("plot", "Grid must be activated on top of a plot document").toAscii()) + msg = QtGui.QApplication.translate("plot_console", "Grid must be activated on top of a plot document", + None,QtGui.QApplication.UnicodeUTF8) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isGrid() @@ -87,8 +88,8 @@ class Grid: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Grid.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide grid").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide grid on selected plot").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid on selected plot") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Legend: @@ -96,7 +97,8 @@ class Legend: import Plot plt = Plot.getPlot() if not plt: - msg = str(QtGui.QApplication.translate("plot", "Legend must be activated on top of a plot document").toAscii()) + msg = QtGui.QApplication.translate("plot_console", "Legend must be activated on top of a plot document", + None,QtGui.QApplication.UnicodeUTF8) FreeCAD.Console.PrintError(msg+"\n") return flag = plt.isLegend() @@ -105,8 +107,8 @@ class Legend: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Legend.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Show/Hide legend").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Show/Hide legend on selected plot").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend on selected plot") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Labels: @@ -117,8 +119,8 @@ class Labels: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Labels.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Set labels").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Set title and axes labels").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set title and axes labels") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} class Positions: @@ -129,8 +131,8 @@ class Positions: def GetResources(self): from plotUtils import Paths IconPath = Paths.iconsPath() + "/Positions.svg" - MenuText = str(QtGui.QApplication.translate("plot", "Set positions and sizes").toAscii()) - ToolTip = str(QtGui.QApplication.translate("plot", "Set labels and legend positions and sizes").toAscii()) + MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set positions and sizes") + ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels and legend positions and sizes") return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Plot_SaveFig', Save()) diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py index fc18dfd69..35e49a434 100644 --- a/src/Mod/Plot/plotAxes/TaskPanel.py +++ b/src/Mod/Plot/plotAxes/TaskPanel.py @@ -127,19 +127,32 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_axes", "Configure axes").toAscii())) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Active axes").toAscii())) - self.form.all.setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) - self.form.findChild(QtGui.QLabel, "scalesLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Scales").toAscii())) - self.form.xAuto.setText(str(QtGui.QApplication.translate("plot_axes", "X auto").toAscii())) - self.form.yAuto.setText(str(QtGui.QApplication.translate("plot_axes", "Y auto").toAscii())) - self.form.findChild(QtGui.QCheckBox, "allAxes").setText(str(QtGui.QApplication.translate("plot_axes", "Apply to all axes").toAscii())) - self.form.findChild(QtGui.QLabel, "dimLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Dimensions").toAscii())) - self.form.findChild(QtGui.QLabel, "xPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "X axis position").toAscii())) - self.form.findChild(QtGui.QLabel, "yPosLabel").setText(str(QtGui.QApplication.translate("plot_axes", "Y axis position").toAscii())) + self.form.setWindowTitle(QtGui.QApplication.translate("plot_axes", "Configure axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(QtGui.QApplication.translate("plot_axes", "Active axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.all.setText(QtGui.QApplication.translate("plot_axes", "Apply to all axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(QtGui.QApplication.translate("plot_axes", "Dimensions", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(QtGui.QApplication.translate("plot_axes", "X axis position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(QtGui.QApplication.translate("plot_axes", "Y axis position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "scalesLabel").setText(QtGui.QApplication.translate("plot_axes", "Scales", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xAuto.setText(QtGui.QApplication.translate("plot_axes", "X auto", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yAuto.setText(QtGui.QApplication.translate("plot_axes", "Y auto", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QCheckBox, "allAxes").setText(QtGui.QApplication.translate("plot_axes", "Apply to all axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(QtGui.QApplication.translate("plot_axes", "Dimensions", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(QtGui.QApplication.translate("plot_axes", "X axis position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(QtGui.QApplication.translate("plot_axes", "Y axis position", + None,QtGui.QApplication.UnicodeUTF8)) def onAxesId(self, value): """ Executed when axes index is modified. """ @@ -178,7 +191,8 @@ class TaskPanel: return # Don't remove first axes if not self.form.axId.value(): - msg = str(QtGui.QApplication.translate("plot_axes", "Axes 0 can not be deleted".toAscii())) + msg = QtGui.QApplication.translate("plot_console", "Axes 0 can not be deleted", + None,QtGui.QApplication.UnicodeUTF8) App.Console.PrintError(msg+"\n") return # Remove axes diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py index b50262e61..db6150137 100644 --- a/src/Mod/Plot/plotLabels/TaskPanel.py +++ b/src/Mod/Plot/plotLabels/TaskPanel.py @@ -106,11 +106,16 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_labels", "Set labels").toAscii())) - self.form.findChild(QtGui.QLabel, "axesLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Active axes").toAscii())) - self.form.findChild(QtGui.QLabel, "titleLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Title").toAscii())) - self.form.findChild(QtGui.QLabel, "xLabel").setText(str(QtGui.QApplication.translate("plot_labels", "X label").toAscii())) - self.form.findChild(QtGui.QLabel, "yLabel").setText(str(QtGui.QApplication.translate("plot_labels", "Y label").toAscii())) + self.form.setWindowTitle(QtGui.QApplication.translate("plot_labels", "Set labels", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(QtGui.QApplication.translate("plot_labels", "Active axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "titleLabel").setText(QtGui.QApplication.translate("plot_labels", "Title", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "xLabel").setText(QtGui.QApplication.translate("plot_labels", "X label", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "yLabel").setText(QtGui.QApplication.translate("plot_labels", "Y label", + None,QtGui.QApplication.UnicodeUTF8)) def onAxesId(self, value): """ Executed when axes index is modified. """ diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py index bf409fdea..c32c6c6cd 100644 --- a/src/Mod/Plot/plotPositions/TaskPanel.py +++ b/src/Mod/Plot/plotPositions/TaskPanel.py @@ -97,9 +97,12 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_positions", "Set positions and sizes").toAscii())) - self.form.findChild(QtGui.QLabel, "posLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Position").toAscii())) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_positions", "Size").toAscii())) + self.form.setWindowTitle(QtGui.QApplication.translate("plot_positions", "Set positions and sizes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "posLabel").setText(QtGui.QApplication.translate("plot_positions", "Position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(QtGui.QApplication.translate("plot_positions", "Size", + None,QtGui.QApplication.UnicodeUTF8)) def onItem(self, row): """ Executed when selected item is modified. """ diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py index 051184710..2f3c65c46 100644 --- a/src/Mod/Plot/plotSave/TaskPanel.py +++ b/src/Mod/Plot/plotSave/TaskPanel.py @@ -38,7 +38,8 @@ class TaskPanel: def accept(self): plt = Plot.getPlot() if not plt: - msg = str(QtGui.QApplication.translate("plot_save", "Plot document must be selected in order to save it").toAscii()) + msg = QtGui.QApplication.translate("plot_console", "Plot document must be selected in order to save it", + None,QtGui.QApplication.UnicodeUTF8) App.Console.PrintError(msg+"\n") return False path = unicode(self.form.path.text()) @@ -102,9 +103,12 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_save", "Save figure").toAscii())) - self.form.findChild(QtGui.QLabel, "sizeLabel").setText(str(QtGui.QApplication.translate("plot_save", "Inches").toAscii())) - self.form.findChild(QtGui.QLabel, "dpiLabel").setText(str(QtGui.QApplication.translate("plot_save", "Dots per Inch").toAscii())) + self.form.setWindowTitle(QtGui.QApplication.translate("plot_save", "Save figure", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(QtGui.QApplication.translate("plot_save", "Inches", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "dpiLabel").setText(QtGui.QApplication.translate("plot_save", "Dots per Inch", + None,QtGui.QApplication.UnicodeUTF8)) def updateUI(self): """ Setup UI controls values if possible """ diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py index 67b1950b4..c214efcdd 100644 --- a/src/Mod/Plot/plotSeries/TaskPanel.py +++ b/src/Mod/Plot/plotSeries/TaskPanel.py @@ -110,11 +110,16 @@ class TaskPanel: def retranslateUi(self): """ Set user interface locale strings. """ - self.form.setWindowTitle(str(QtGui.QApplication.translate("plot_series", "Configure series").toAscii())) - self.form.isLabel.setText(str(QtGui.QApplication.translate("plot_series", "No label").toAscii())) - self.form.remove.setText(str(QtGui.QApplication.translate("plot_series", "Remove serie").toAscii())) - self.form.findChild(QtGui.QLabel, "styleLabel").setText(str(QtGui.QApplication.translate("plot_series", "Line style").toAscii())) - self.form.findChild(QtGui.QLabel, "markerLabel").setText(str(QtGui.QApplication.translate("plot_series", "Marker").toAscii())) + self.form.setWindowTitle(QtGui.QApplication.translate("plot_series", "Configure series", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.isLabel.setText(QtGui.QApplication.translate("plot_series", "No label", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.remove.setText(QtGui.QApplication.translate("plot_series", "Remove serie", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "styleLabel").setText(QtGui.QApplication.translate("plot_series", "Line style", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.findChild(QtGui.QLabel, "markerLabel").setText(QtGui.QApplication.translate("plot_series", "Marker", + None,QtGui.QApplication.UnicodeUTF8)) def fillStyles(self): """ Fill style combo boxes. """ diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index b74f108cd..e321cd435 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -28,70 +28,50 @@ - - Grid must be activated on top of a plot document - - - - + Show/Hide grid - + Show/Hide grid on selected plot - - Legend must be activated on top of a plot document - - - - + Show/Hide legend - + Show/Hide legend on selected plot - + Set labels - + Set title and axes labels - + Set positions and sizes - + Set labels and legend positions and sizes - - - matplotlib not found, Plot module will be disabled - - Save plot as image file - - - matplotlib not found, so Plot module can not be loaded - - plot_axes @@ -101,46 +81,79 @@ - + Active axes - + Apply to all axes - + Dimensions - + X axis position - + Y axis position - + Scales - + X auto - + Y auto + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + plot_labels @@ -149,22 +162,22 @@ - + Active axes - + Title - + X label - + Y label @@ -177,12 +190,12 @@ - + Position - + Size @@ -190,45 +203,40 @@ plot_save - + Save figure - + Inches - + Dots per Inch - - - Plot document must be selected in order to save it - - plot_series - + No label - + Remove serie - + Line style - + Marker diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm index ccb2cc5a9d95fe4233dc0639f62b889d66c8dee3..cfc4d6a2917c92bbb37b531f5ed24095c0f88020 100644 GIT binary patch delta 817 zcmb7AT}V@57=F%ne&%-0acd)#YMeBKx+sl;GKiuUQIbUwNJQCo%*pAT(>75E8H9*| zsPT!gn|@I0B2wb8@FI|EBtkb)K|#?5K{rJgCUsHNdp3#HT^BFU$Me14^Yay&zHJVdiog$a=pD4_v~R z7AMawlh9%D=G`q6;GOuR*hq#&siE!!VXlJ8Gij?cM}ZflfdT~DEX$inW8M6qE1u7SlfuBQz)Zo3`(nLwc zR0Wl*@|ja{N^Hx0ZPc85qXg$ql5w9>S|pSQ)z-`u38I41D%GAkN`)F!d)mdkIvl40 zIFh7qSoYFs1NOs$i7q7BA&=sWa*sIY7oX!q1rr2EIrJe>oQh1`Z{LXl_*o2A;=^R_jF=7?{>E7S+CCU=TRR zl=Iw`fr0rX)7L&z1_nVcR+f2(f%l>w$C@>$>Vb&(-OWiFx2xeXIrpZkAZ=A5!;^!$_xxF6WEm`f`POr zgyxyZuD^K)(4rpp+9N;*vbV6;Pe=tC9Ka#So5R4ssKt@TW&)&da_qRcgn@ydpY!Vb z$qWo!wp>LOK!@{+aHl=|%)r2K976NI;f9DubN_8?VMt|Q>*q041-g*)4}|9N@AFpiIa;t+a_Cc1#af&Kgcw>i>Gt*LBVZ|0NGNHng9R* diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts index 033a50621..00ef0c34b 100644 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -2,11 +2,6 @@ plot - - - matplotlib not found, Plot module will be disabled - No se puede encontrar matplotlib, el modulo de graficado sera desactivado - Save plot @@ -38,60 +33,45 @@ Establezca el título y el estilo de las curvas trazadas - - Grid must be activated on top of a plot document - Para activar la malla se requiere un documento de grafica seleccionado - - - + Show/Hide grid Mostrar/Ocultar la malla - + Show/Hide grid on selected plot Muestre/Oculte la malla del gráfico seleccionado - - Legend must be activated on top of a plot document - Para activar la legenda se requiere un documento de grafica seleccionado - - - + Show/Hide legend Mostrar/Ocultar la legenda - + Show/Hide legend on selected plot Muestre/Oculte la legenda del gráfico seleccionado - + Set labels Establecer títulos - + Set title and axes labels Establezca los tñitulos de ejes y series de datos - + Set positions and sizes Modificar posiciones y tamaños - + Set labels and legend positions and sizes Modifique la posición y tamaño de títulos y legenda - - - matplotlib not found, so Plot module can not be loaded - No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado - plot_axes @@ -101,44 +81,77 @@ Configuración de los ejes - + Active axes Ejes activos - + Apply to all axes Aplicar a todos los ejes - + Dimensions Dimensiones - + X axis position Posición del eje X - + Y axis position Posición del eje Y - + Scales Escalas - + X auto - Automatica en X + Automática en X - + Y auto - + Automática en Y + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado + + + + matplotlib not found, Plot module will be disabled + No se puede encontrar matplotlib, el modulo de graficado sera desactivado + + + + Plot document must be selected in order to save it + Debe seleccionar una grafica primero + + + + Axes 0 can not be deleted + El juego ejes 0 no puede ser eliminado + + + + Grid must be activated on top of a plot document + Para activar la malla seleccione primero una grafica + + + + Legend must be activated on top of a plot document + Para activar la legenda seleccione primero una grafica @@ -149,22 +162,22 @@ Selección de títulos - + Active axes Ejes activos - + Title Título - + X label Título del eje X - + Y label Título del eje Y @@ -177,12 +190,12 @@ Selección de posiciones y tamaños - + Position Posición - + Size Tamaño @@ -190,25 +203,20 @@ plot_save - + Save figure Guardar figura - + Inches Pulgadas - + Dots per Inch Puntos por pulgada - - - Plot document must be selected in order to save it - Debe seleccionar una grafica primero - plot_series @@ -218,22 +226,22 @@ Configurar series de datos - + No label Sin título - + Remove serie Eliminar serie - + Line style Estilo de línea - + Marker Marcador From f94924ec8e24be70977d66cdaba360863675755c Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Sun, 4 Nov 2012 16:08:24 +0100 Subject: [PATCH 06/15] Translated toolbar title --- src/Mod/Plot/InitGui.py | 15 ++++++++------- src/Mod/Plot/resources/translations/Plot.ts | 12 +++++++++++- .../Plot/resources/translations/Plot_es-ES.qm | Bin 4983 -> 5155 bytes .../Plot/resources/translations/Plot_es-ES.ts | 12 +++++++++++- 4 files changed, 30 insertions(+), 9 deletions(-) diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 59e65f8aa..4fc8b3dfb 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -31,13 +31,14 @@ class PlotWorkbench ( Workbench ): ToolTip = "The Plot module is used to edit/save output plots performed by other tools" def Initialize(self): - # ToolBar - list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] - self.appendToolbar("Plot",list) - - # Menu - list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] - self.appendMenu("Plot",list) + from PyQt4 import QtCore, QtGui + cmdlst = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] + self.appendToolbar(str(QtGui.QApplication.translate("plot", "Plot edition tools", + None,QtGui.QApplication.UnicodeUTF8)), + cmdlst) + self.appendMenu(str(QtGui.QApplication.translate("plot", "Plot", + None,QtGui.QApplication.UnicodeUTF8)), + cmdlst) try: import matplotlib diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index e321cd435..078132b9c 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -72,6 +72,16 @@ Save plot as image file + + + Plot edition tools + + + + + Plot + + plot_axes @@ -129,7 +139,7 @@ - + matplotlib not found, Plot module will be disabled diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm index cfc4d6a2917c92bbb37b531f5ed24095c0f88020..80bcd65ed7c5015ec93be6dfad616d83de2fbcff 100644 GIT binary patch delta 520 zcmXX?OK1~O6g@MUH#6zXyd-U9Wlv2ST7NqV<{Yz_6x)Grzi8K&1Av0p7Eddd6 zA(|2qbWy7*ZiH5vwgeHy4-}UoBJK=`E)-mp;zq%f#`n0K`|dsWbKdW+a(A({FahBw z0p&BqLjgqhVyI&Pun*y!6$j)qrEjqnXsRjs>7PKeqh`Jz2GkX`y6r0vexz>P>Sg@6 z&}QGTeo1Wqa0d{bqT_iBp#8_lvN$;N8i;)o_pXv>o)C|3E&>H}N-RwJBo@VLJrIuQ zcSkqa=$k(GWH%7GqW}4_69`QiJGP!7_BK$C8+$5M@)E}MTQ02Uj6yNR0k_SVlcAs< zGpirq;@xKT{XAgJg+Kl(0me{Meu6^e59>m09R*-*(?M*PwV87#@~45)^=w z^8Ql_R<$(0O`i!d)L9x-+bXllDj;h^g*@*VE+S1o wi-5il7fHTcT9WYu%|o{IK(@8}CJUj{n(GbSR5Bf;y{sE}UdFEshq|Kw02D!b_y7O^ delta 404 zcmZ3i@m+0#NPPwa>q1rr2L34w{&Fr14BYb>qPbNW82IEEt=5Y$FmSmt7S+CCU=S>1 z%6aa}z`!KQv_tv{0|O@;)7L&zp!ix=mU)L67zD&vWiC%)U|{KBmD?lCz`zWp`6XB_ zCLRK+vu2&y1XRbqj&)hjdLaFPbzOBa14BLY7uIbc0ghs}X$fC}26?e9Sgi+iz+JXK z50rrxK44dp2nNzKAvEt9cKyvefDS&+UV8-SVAd<_^%GKo`aW|A^5!rwFluq+v6%oJ z*u$~o;u4^TSU9h~pUl9(wwbG_0_YJwf9|x0pBWe!j)UoX27!KVh{QDRzill*AKd3L zR0X<}tq4N%cJjoAB?Dbtz*Fu6^f}{AUV;4~K#R+HAD#r#JS}`yC5wRuGC*i{A-;me zen1Z?@f9oq(OdaCl7Svz@XiDV!&hb?ONGIiA)g_SA&nt(at0Ic=5>q*88>sYNC*G` Dn1N;_ diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts index 00ef0c34b..9f1df7954 100644 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -72,6 +72,16 @@ Set labels and legend positions and sizes Modifique la posición y tamaño de títulos y legenda + + + Plot edition tools + Herramientas de edicion de graficas + + + + Plot + Grafica + plot_axes @@ -129,7 +139,7 @@ No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado - + matplotlib not found, Plot module will be disabled No se puede encontrar matplotlib, el modulo de graficado sera desactivado From 8f56cebde2a1c2224e5f10f38645f3df80c94fb1 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Sun, 4 Nov 2012 17:41:01 +0100 Subject: [PATCH 07/15] Addapted windows installer stuff --- src/WindowsInstaller/FreeCAD.wxs | 1 + src/WindowsInstaller/ModPlot.wxi | 33 ++++++++++++++++++++------------ 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/src/WindowsInstaller/FreeCAD.wxs b/src/WindowsInstaller/FreeCAD.wxs index 0caaa311c..3194e5c57 100644 --- a/src/WindowsInstaller/FreeCAD.wxs +++ b/src/WindowsInstaller/FreeCAD.wxs @@ -184,6 +184,7 @@ + diff --git a/src/WindowsInstaller/ModPlot.wxi b/src/WindowsInstaller/ModPlot.wxi index c9934cf35..a6b7d030f 100644 --- a/src/WindowsInstaller/ModPlot.wxi +++ b/src/WindowsInstaller/ModPlot.wxi @@ -28,17 +28,27 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -79,7 +89,6 @@ - From 81860bc6e41b93a2d18c61014f31922c41379614 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Sun, 4 Nov 2012 20:39:18 +0100 Subject: [PATCH 08/15] Moved to resources container --- src/Mod/Plot/CMakeLists.txt | 36 +- src/Mod/Plot/InitGui.py | 2 +- src/Mod/Plot/Makefile.am | 18 +- src/Mod/Plot/PlotGui.py | 49 +- src/Mod/Plot/Plot_rc.py | 1878 +++++++++++++++++ src/Mod/Plot/makeResources.sh | 16 + src/Mod/Plot/resources/Plot.qrc | 13 + src/Mod/Plot/resources/translations/Plot.ts | 32 +- .../Plot/resources/translations/Plot_es-ES.ts | 32 +- .../Plot/resources/translations/Plot_es.qm | Bin 0 -> 5155 bytes .../Plot/resources/translations/Plot_es.ts | 259 +++ 11 files changed, 2232 insertions(+), 103 deletions(-) create mode 100644 src/Mod/Plot/Plot_rc.py create mode 100755 src/Mod/Plot/makeResources.sh create mode 100644 src/Mod/Plot/resources/Plot.qrc create mode 100644 src/Mod/Plot/resources/translations/Plot_es.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_es.ts diff --git a/src/Mod/Plot/CMakeLists.txt b/src/Mod/Plot/CMakeLists.txt index 8d0730181..29b6acdbd 100644 --- a/src/Mod/Plot/CMakeLists.txt +++ b/src/Mod/Plot/CMakeLists.txt @@ -2,29 +2,10 @@ SET(PlotMain_SRCS Plot.py InitGui.py PlotGui.py + Plot_rc.py ) SOURCE_GROUP("" FILES ${PlotMain_SRCS}) -SET(PlotIcons_SRCS - resources/icons/Axes.svg - resources/icons/Grid.svg - resources/icons/Icon.svg - resources/icons/Labels.svg - resources/icons/Legend.svg - resources/icons/Positions.svg - resources/icons/Save.svg - resources/icons/Series.svg -) -SOURCE_GROUP("ploticons" FILES ${PlotIcons_SRCS}) - -SET(PlotTranslations_SRCS - resources/translations/Plot.ts - resources/translations/Plot.qm - resources/translations/Plot_es-ES.ts - resources/translations/Plot_es-ES.qm -) -SOURCE_GROUP("plottranslations" FILES ${PlotTranslations_SRCS}) - SET(PlotAxes_SRCS plotAxes/__init__.py plotAxes/TaskPanel.py @@ -63,11 +44,10 @@ SOURCE_GROUP("plotseries" FILES ${PlotSeries_SRCS}) SET(PlotUtils_SRCS plotUtils/__init__.py plotUtils/Paths.py - plotUtils/Translator.py ) SOURCE_GROUP("plotutils" FILES ${PlotUtils_SRCS}) -SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotTranslations_SRCS} ${PlotUtils_SRCS}) +SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotUtils_SRCS}) ADD_CUSTOM_TARGET(Plot ALL SOURCES ${all_files} @@ -75,18 +55,6 @@ ADD_CUSTOM_TARGET(Plot ALL fc_copy_sources(Mod/Plot "${CMAKE_BINARY_DIR}/Mod/Plot" ${all_files}) -INSTALL( - FILES - ${PlotIcons_SRCS} - DESTINATION - Mod/Plot/resources/icons -) -INSTALL( - FILES - ${PlotTranslations_SRCS} - DESTINATION - Mod/Plot/resources/translations -) INSTALL( FILES ${PlotAxes_SRCS} diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 4fc8b3dfb..2cf486d85 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -26,7 +26,7 @@ class PlotWorkbench ( Workbench ): from plotUtils import Paths import PlotGui - Icon = Paths.iconsPath() + "/Icon.svg" + Icon = 'Icon.svg' MenuText = "Plot" ToolTip = "The Plot module is used to edit/save output plots performed by other tools" diff --git a/src/Mod/Plot/Makefile.am b/src/Mod/Plot/Makefile.am index e1cf410d1..d1bbe46b4 100644 --- a/src/Mod/Plot/Makefile.am +++ b/src/Mod/Plot/Makefile.am @@ -4,21 +4,10 @@ datadir = $(prefix)/Mod/Plot data_DATA = \ Plot.py \ InitGui.py \ - PlotGui.py + PlotGui.py \ + Plot_rc.py nobase_data_DATA = \ - resources/icons/Axes.svg \ - resources/icons/Grid.svg \ - resources/icons/Icon.svg \ - resources/icons/Labels.svg \ - resources/icons/Legend.svg \ - resources/icons/Positions.svg \ - resources/icons/Save.svg \ - resources/icons/Series.svg \ - resources/translations/Plot.ts \ - resources/translations/Plot.qm \ - resources/translations/Plot_es-ES.ts \ - resources/translations/Plot_es-ES.qm \ plotAxes/__init__.py \ plotAxes/TaskPanel.py \ plotAxes/TaskPanel.ui \ @@ -35,8 +24,7 @@ nobase_data_DATA = \ plotSeries/TaskPanel.py \ plotSeries/TaskPanel.ui \ plotUtils/__init__.py \ - plotUtils/Paths.py \ - plotUtils/Translator.py + plotUtils/Paths.py CLEANFILES = $(BUILT_SOURCES) diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py index cd71de2ae..00d916e08 100644 --- a/src/Mod/Plot/PlotGui.py +++ b/src/Mod/Plot/PlotGui.py @@ -24,6 +24,12 @@ from PyQt4 import QtCore, QtGui import FreeCAD, FreeCADGui, os +# Load resources +import Plot_rc +FreeCADGui.addLanguagePath(":/Plot/translations") +FreeCADGui.addIconPath(":/Plot/icons") + +""" # Setup tranlations from plotUtils import Paths path = Paths.translationsPath() @@ -36,6 +42,7 @@ for fname in dirList: valid = translator.load(os.path.join(path, fname)) if valid: QtGui.QApplication.installTranslator(translator) +""" class Save: def Activated(self): @@ -43,11 +50,11 @@ class Save: plotSave.load() def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Save.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Save.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot as image file") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Save', 'MenuText': MenuText, 'ToolTip': ToolTip} class Axes: def Activated(self): @@ -55,11 +62,11 @@ class Axes: plotAxes.load() def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Axes.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Axes.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes parameters") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Axes', 'MenuText': MenuText, 'ToolTip': ToolTip} class Series: def Activated(self): @@ -67,11 +74,11 @@ class Series: plotSeries.load() def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Series.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Series.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series drawing style and label") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Series', 'MenuText': MenuText, 'ToolTip': ToolTip} class Grid: def Activated(self): @@ -86,11 +93,11 @@ class Grid: Plot.grid(not flag) def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Grid.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Grid.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid on selected plot") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Grid', 'MenuText': MenuText, 'ToolTip': ToolTip} class Legend: def Activated(self): @@ -105,11 +112,11 @@ class Legend: Plot.legend(not flag) def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Legend.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Legend.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend on selected plot") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Legend', 'MenuText': MenuText, 'ToolTip': ToolTip} class Labels: def Activated(self): @@ -117,11 +124,11 @@ class Labels: plotLabels.load() def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Labels.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Labels.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set title and axes labels") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Labels', 'MenuText': MenuText, 'ToolTip': ToolTip} class Positions: def Activated(self): @@ -129,11 +136,11 @@ class Positions: plotPositions.load() def GetResources(self): - from plotUtils import Paths - IconPath = Paths.iconsPath() + "/Positions.svg" + # from plotUtils import Paths + # IconPath = Paths.iconsPath() + "/Positions.svg" MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set positions and sizes") ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels and legend positions and sizes") - return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + return {'Pixmap' : 'Positions', 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Plot_SaveFig', Save()) FreeCADGui.addCommand('Plot_Axes', Axes()) diff --git a/src/Mod/Plot/Plot_rc.py b/src/Mod/Plot/Plot_rc.py new file mode 100644 index 000000000..33df2de3e --- /dev/null +++ b/src/Mod/Plot/Plot_rc.py @@ -0,0 +1,1878 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created: Sun Nov 4 20:38:22 2012 +# by: The Resource Compiler for PyQt (Qt v4.8.1) +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore + +qt_resource_data = "\ +\x00\x00\x14\x23\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x01\xd9\x00\x05\xa1\x05\ +\x00\x00\x10\x30\x00\x4f\x1e\x44\x00\x00\x0c\x3b\x00\x5b\x0b\x25\ +\x00\x00\x0e\xba\x01\x3a\xaf\x14\x00\x00\x0a\xe1\x01\x72\x7d\xec\ +\x00\x00\x12\x0d\x02\x6c\xe7\x45\x00\x00\x02\xb5\x02\xb8\x1b\xe4\ +\x00\x00\x09\xa2\x02\xf5\x8e\x35\x00\x00\x12\x49\x05\x04\x9e\xc3\ +\x00\x00\x10\xb2\x05\x1c\xd3\x94\x00\x00\x05\x24\x05\x1e\xbc\x13\ +\x00\x00\x04\x24\x05\x1e\xbc\x13\x00\x00\x0f\xb4\x05\x38\x91\xc2\ +\x00\x00\x11\xd7\x05\x99\x82\xc3\x00\x00\x08\x4a\x05\xa6\x8c\xaf\ +\x00\x00\x08\x7c\x05\xae\x7b\x73\x00\x00\x04\x90\x05\xb6\x8c\xaf\ +\x00\x00\x09\x0f\x06\x96\x60\xf5\x00\x00\x10\xe6\x06\xa0\xab\x2e\ +\x00\x00\x0f\x79\x06\xfc\xe0\x23\x00\x00\x03\x7c\x07\x22\x18\x53\ +\x00\x00\x03\x35\x07\x22\x18\x53\x00\x00\x0e\x68\x07\x2f\xb3\xb8\ +\x00\x00\x10\x63\x07\x7d\xc4\x44\x00\x00\x06\x70\x07\x7f\x90\x65\ +\x00\x00\x11\x8f\x08\x11\x0d\x6c\x00\x00\x01\x2a\x08\x6e\x06\x34\ +\x00\x00\x0a\x28\x08\xb8\xd1\xa4\x00\x00\x0b\xa0\x09\xd5\xef\x93\ +\x00\x00\x07\x4f\x0a\x72\x78\xec\x00\x00\x0e\xeb\x0b\x66\xe1\xf3\ +\x00\x00\x00\xc7\x0b\x66\xe1\xf3\x00\x00\x11\x2b\x0b\x72\x78\xec\ +\x00\x00\x0f\x32\x0b\xfd\x86\x84\x00\x00\x05\x7b\x0c\x31\x25\xc3\ +\x00\x00\x07\x0e\x0c\x31\x25\xc3\x00\x00\x0e\x25\x0c\x5d\x56\x63\ +\x00\x00\x08\x0c\x0c\x77\x4c\xe4\x00\x00\x02\x75\x0d\x10\xbf\x54\ +\x00\x00\x06\x13\x0d\xe1\xc9\x54\x00\x00\x0d\x20\x0e\x3a\x74\xa3\ +\x00\x00\x00\x00\x0e\x3a\x74\xa3\x00\x00\x07\xae\x0e\x70\xa3\x4e\ +\x00\x00\x08\xbe\x0e\x70\xa4\x4e\x00\x00\x09\x51\x0e\x88\x63\x53\ +\x00\x00\x00\x4b\x0e\x9a\xb0\x73\x00\x00\x02\x04\x69\x00\x00\x12\ +\x91\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ +\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\ +\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ +\x4a\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\ +\x78\x65\x73\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\ +\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x3a\x00\x43\x00\ +\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x7a\x00\ +\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\ +\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x6e\ +\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\ +\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x74\x00\xed\ +\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x79\x00\x20\x00\x65\ +\x00\x6c\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\ +\x00\x63\x00\x75\x00\x72\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x6f\x6e\x66\x69\x67\x75\x72\ +\x65\x20\x73\x65\x72\x69\x65\x73\x20\x64\x72\x61\x77\x69\x6e\x67\ +\x20\x73\x74\x79\x6c\x65\x20\x61\x6e\x64\x20\x6c\x61\x62\x65\x6c\ +\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x47\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x50\x6c\x6f\x74\x07\x00\x00\x00\x04\ +\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x46\x00\x48\x00\x65\x00\x72\ +\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x64\x00\x69\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x6c\x6f\x74\x20\x65\ +\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x1e\x00\x47\x00\x75\x00\ +\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x67\x00\x72\x00\ +\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\ +\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\x00\ +\x61\x00\x72\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\x00\ +\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\x61\ +\x73\x20\x69\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\x00\ +\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\ +\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\ +\x65\x6c\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\ +\x00\x66\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x71\ +\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\ +\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x79\ +\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\x00\x6c\x00\x65\x00\x67\ +\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x29\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x20\x61\x6e\x64\ +\x20\x6c\x65\x67\x65\x6e\x64\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ +\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x04\ +\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x3c\x00\x4d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x70\ +\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ +\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\ +\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\ +\x01\x03\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\ +\x00\x73\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6a\ +\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\x00\x72\ +\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\ +\x00\x61\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\x64\x20\ +\x61\x78\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x04\ +\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x30\x00\x4d\x00\x6f\x00\x73\ +\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\ +\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x67\x72\ +\x69\x64\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ +\x60\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\x65\x00\ +\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\ +\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\ +\x66\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x53\x68\x6f\x77\x2f\ +\x48\x69\x64\x65\x20\x67\x72\x69\x64\x20\x6f\x6e\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x04\x70\ +\x6c\x6f\x74\x01\x03\x00\x00\x00\x34\x00\x4d\x00\x6f\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\ +\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ +\x20\x6c\x65\x67\x65\x6e\x64\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\ +\x01\x03\x00\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\ +\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\ +\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\ +\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\ +\x67\x65\x6e\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\ +\x00\x00\x00\x18\x00\x45\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x41\x63\x74\x69\x76\x65\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ +\x03\x00\x00\x00\x30\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\ +\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\ +\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x41\ +\x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6c\x6c\x20\x61\x78\x65\x73\ +\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\ +\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\ +\x00\x75\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\ +\x00\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\ +\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ +\x00\x16\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x0e\ +\x00\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x53\x63\x61\x6c\x65\x73\x07\x00\ +\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ +\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x58\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x58\x20\x61\x75\x74\x6f\ +\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\ +\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\ +\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\ +\x00\x6a\x00\x65\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x58\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ +\x03\x00\x00\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ +\xe1\x00\x74\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\ +\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x59\x20\x61\ +\x75\x74\x6f\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\ +\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\ +\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ +\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x59\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\ +\x65\x73\x01\x03\x00\x00\x00\x4c\x00\x45\x00\x6c\x00\x20\x00\x6a\ +\x00\x75\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x65\x00\x6a\x00\x65\ +\x00\x73\x00\x20\x00\x30\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\ +\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x78\ +\x65\x73\x20\x30\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\ +\x64\x65\x6c\x65\x74\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\ +\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x68\x00\x50\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\ +\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\ +\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\ +\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x47\x72\x69\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\ +\x69\x76\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\ +\x20\x61\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\ +\x65\x01\x03\x00\x00\x00\x6c\x00\x50\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\ +\x6e\x00\x64\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\x00\ +\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\ +\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x67\ +\x65\x6e\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\ +\x76\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\ +\x61\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\ +\x01\x03\x00\x00\x00\x48\x00\x44\x00\x65\x00\x62\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ +\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x50\x6c\x6f\x74\x20\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\ +\x74\x6f\x20\x73\x61\x76\x65\x20\x69\x74\x07\x00\x00\x00\x0c\x70\ +\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\ +\x92\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\ +\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\x00\x69\x00\ +\x62\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\ +\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x6d\x61\x74\ +\x70\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ +\x64\x2c\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x07\ +\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\ +\x01\x03\x00\x00\x00\xae\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\ +\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\ +\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\ +\x00\x6c\x00\x69\x00\x62\x00\x2c\x00\x20\x00\x79\x00\x20\x00\x70\ +\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\ +\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\ +\x00\x67\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x6d\x61\ +\x74\x70\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x73\x6f\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\ +\x6c\x65\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x6c\x6f\ +\x61\x64\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\ +\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x45\x00\x6a\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\ +\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x63\x74\ +\x69\x76\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\ +\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x28\x00\x53\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\ +\x00\x6c\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x70\ +\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x0c\ +\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x54\x69\x74\x6c\x65\x07\x00\x00\x00\x0b\ +\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\ +\x20\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\ +\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x58\x20\x6c\x61\x62\ +\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\ +\x6c\x73\x01\x03\x00\x00\x00\x20\x00\x54\x00\xed\x00\x74\x00\x75\ +\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\ +\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x59\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\ +\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x10\x00\ +\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x6f\x73\x69\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\ +\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\ +\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\ +\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\ +\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x61\x00\x6d\x00\x61\x00\xf1\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x7a\x65\ +\x07\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\ +\x70\x00\x75\x00\x6c\x00\x67\x00\x61\x00\x64\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x44\x6f\x74\x73\x20\x70\x65\x72\x20\ +\x49\x6e\x63\x68\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\ +\x76\x65\x01\x03\x00\x00\x00\x10\x00\x50\x00\x75\x00\x6c\x00\x67\ +\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x49\x6e\x63\x68\x65\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\ +\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\x1c\x00\x47\x00\x75\ +\x00\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x66\x00\x69\ +\x00\x67\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x53\x61\x76\x65\x20\x66\x69\x67\x75\x72\x65\x07\x00\x00\ +\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\ +\x34\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\ +\x72\x00\x61\x00\x72\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\ +\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\x00\ +\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\ +\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\ +\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\ +\x03\x00\x00\x00\x1e\x00\x45\x00\x73\x00\x74\x00\x69\x00\x6c\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\ +\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\ +\x65\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ +\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x10\x00\x4d\x00\ +\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x4d\x61\x72\x6b\x65\x72\x07\x00\x00\ +\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\ +\x00\x00\x14\x00\x53\x00\x69\x00\x6e\x00\x20\x00\x74\x00\xed\x00\ +\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x4e\x6f\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\ +\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x1c\x00\ +\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x73\x65\x72\x69\ +\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\ +\x73\x01\ +\x00\x00\x09\xc0\ +\x00\ +\x00\x37\x31\x78\x9c\xed\x5a\xeb\x6f\xe3\xc6\x11\xff\xee\xbf\x82\ +\xe5\x7d\x39\xa3\xe2\x6a\x9f\xe4\x52\xb6\x1c\x14\x49\xaf\x08\x70\ +\x41\x80\xe6\x0e\x6d\x3f\x05\x34\xb9\x92\xd9\xa3\x48\x81\xa4\x2c\ +\xe9\xfe\xfa\xce\x52\x7c\x5a\x94\x2d\x4a\x3a\xfb\x12\x54\xca\xc5\ +\xe2\xce\xec\x63\x7e\xf3\xd8\xd9\xe5\xdc\xfe\xb0\x59\x44\xc6\xa3\ +\x4a\xb3\x30\x89\xa7\x26\x41\xd8\x34\x54\xec\x27\x41\x18\xcf\xa7\ +\xe6\xe7\x4f\x1f\x2c\x69\x1a\x59\xee\xc5\x81\x17\x25\xb1\x9a\x9a\ +\x71\x62\xfe\x70\x77\x75\xfb\x17\xcb\x32\x7e\x4c\x95\x97\xab\xc0\ +\x58\x87\xf9\x83\xf1\x73\xfc\x25\xf3\xbd\xa5\x32\xde\x3f\xe4\xf9\ +\x72\x32\x1e\xaf\xd7\x6b\x14\x96\x8d\x28\x49\xe7\xe3\x6b\xc3\xb2\ +\xee\xae\xae\x6e\xb3\xc7\xf9\x95\x61\x18\x30\x6f\x9c\x4d\x92\xec\ +\x7e\x6a\xb6\x7a\x24\x4b\x15\x67\x6b\x2f\xf7\x1f\xee\x93\xe4\x4b\ +\xd1\x6f\x95\x86\x63\x8a\xb1\x3b\x06\x5e\xb3\xe9\x19\xf8\x75\xc7\ +\xe5\x2a\x8d\x0a\xd6\xc0\x1f\xab\x48\x2d\x54\x9c\x67\x63\x82\xc8\ +\xb8\xc5\xee\x37\xec\xbe\x5e\x77\xf8\xa8\xfc\x64\xb1\x48\xe2\xac\ +\xe8\x19\x67\xef\x5a\xcc\x69\x30\xeb\xac\x6a\xcd\x0a\x26\xe2\xba\ +\xee\x18\xd3\x31\xa5\x16\x70\x58\xd9\x36\xce\xbd\x8d\xd5\xed\x0a\ +\xd2\xf5\x75\x05\x01\xf0\x18\x68\x0d\xe7\x71\x5c\x93\x4d\x04\x20\ +\x1e\x5c\x4c\x41\x6d\xcf\x0e\x8a\x5b\xc2\xbf\xba\x43\xd5\x80\xb2\ +\x64\x95\xfa\x6a\x06\x3d\x15\x8a\x55\x3e\xfe\xe9\xd3\x4f\x35\xd1\ +\xc2\x28\xc8\x83\xd6\x30\x95\xde\x3a\xf3\x76\x94\x19\x7b\x0b\x95\ +\x2d\x3d\x5f\x65\xe3\xaa\xbd\xe8\xbf\x0e\x83\xfc\x61\x6a\xda\x7c\ +\xb9\x29\x9e\x1f\x54\x38\x7f\xc8\x5b\x0d\x61\x30\x35\x41\x42\xea\ +\x38\xb4\x78\xae\xd6\x30\xa9\x6d\x10\x23\xb6\x23\x55\x03\xb7\x49\ +\x5c\x22\x86\x88\x91\xba\x52\xda\xdd\xfe\x41\xe2\xeb\x45\x4d\xcd\ +\x8f\x6a\xae\xe2\x00\x55\x30\xd6\xa3\x24\xab\x7c\xb9\xca\x7f\x57\ +\x9b\x1c\x4c\xac\x18\x0e\x04\x69\x49\x55\x90\x75\x37\xd4\x91\xa8\ +\xe5\x1b\xc4\xbc\x83\x96\xdb\x40\xcd\x32\x4d\xd9\x09\xa3\x9f\x40\ +\x1a\x5e\xd0\x80\xba\xf0\xd2\x2f\x2a\xdd\xd1\x5b\xb3\x67\x79\xe2\ +\x7f\xd1\xfc\x7f\x5f\x2c\xf3\xed\xa7\x34\xf4\xe2\x79\xa4\x7e\x5d\ +\xe5\x1f\xcd\x8a\x37\x49\x43\xb0\xdc\xa9\xe9\xad\xf2\xa4\x6e\x4c\ +\xd5\xec\x3f\x5a\x70\xdc\x6e\xf9\x77\xb7\xe5\xf9\x61\xb3\x7c\x1b\ +\x01\x2c\x09\x08\x32\x8b\x92\xf5\xe4\x31\xcc\xc2\xfb\x48\x95\xeb\ +\x85\x15\x2f\xbd\xfc\xa1\x62\xde\x0d\xa6\x5b\x38\x25\xc2\x6c\x9a\ +\xa1\xf5\x17\x43\x20\xc7\x19\xc1\xcc\xc6\x47\xc3\xa2\x48\xca\x91\ +\x68\xfd\xb6\x76\x0f\x35\xcf\x57\xa3\xd5\xbd\x5c\xc4\x2c\x8c\x22\ +\x2b\x5d\x45\x6a\xa2\x1e\x55\x9c\x04\xc1\x8d\x6e\x99\xbc\xfb\x50\ +\x7c\x6e\xb2\x3c\x4d\xbe\xa8\xc9\x3b\x5c\x7c\xca\x47\xab\xb0\xa9\ +\x09\x84\xa6\x65\xde\x1a\x31\x4f\xbd\x38\x03\x7b\x5e\x80\x3d\xf9\ +\x5e\xa4\xde\x63\x24\xaf\x77\xad\x11\x84\xa5\xf7\x96\x3d\xc2\xd7\ +\xa6\x31\x2e\xd5\x32\xde\xe9\xa5\x7c\x02\xb7\x51\x5e\xfa\x8f\xd4\ +\x0b\x34\xe4\x6d\x1c\xbb\x14\x81\x45\x03\x02\xc4\x9f\xc9\xd2\x0b\ +\xb5\x8a\xb2\x24\x0a\x83\x06\x41\x50\xee\x72\x4f\x56\xdd\x68\xf9\ +\x49\x94\xa4\x93\x77\xb3\x59\x29\x10\x34\x25\xe0\x36\x61\xbe\x9d\ +\x90\x9b\x96\x34\xc9\x6c\x96\x29\x18\x18\x9b\x5d\x4d\xe8\x1e\xb0\ +\x08\xa7\x25\x48\x77\x85\x47\x5a\xdd\xdf\xd2\x34\x59\x93\x5f\xc0\ +\x31\x2e\x63\x6e\x3d\xe3\x1d\xb0\xb3\x9b\x17\x0d\x0d\xdb\xfc\xa9\ +\xa1\xc1\x74\xa5\x9d\x81\x51\x55\x96\x65\x11\x8a\x44\xab\x79\xd7\ +\x5a\xb1\x1e\x67\x6e\x2f\x5a\xd8\xcd\xf3\x26\xc6\xaf\x8d\x34\xc9\ +\xb5\x7d\x11\x89\xdb\xe6\x46\xf0\x33\xe6\x76\x94\x76\xe8\xc7\xcb\ +\x6a\xa7\x3b\xde\xe9\xda\x71\xec\xe3\x81\x2d\x91\xc4\xc8\xa6\xa2\ +\x83\xb0\x36\xda\xff\x26\x61\x3c\x49\x93\x55\x1c\xdc\x3c\xd5\xb7\ +\x44\x0e\x91\x42\x3a\x72\xc4\x11\x66\xcc\x61\x82\xee\xe2\x0a\xc5\ +\x0e\x95\x6e\xa1\x75\x62\x63\xc2\xa8\xb0\x81\x50\xb2\x4b\x3e\xb2\ +\x80\x1f\x13\x07\x3b\xd2\xf8\xd1\xb0\x91\xeb\x30\xec\x62\xb0\x18\ +\x02\x2b\x70\x6d\x6e\xbb\xba\x51\x32\xc2\x1d\x7b\x04\x6d\x44\x38\ +\x9c\x93\xde\xe9\x3a\xf6\xb3\xa7\x79\x08\xfe\x07\x35\x7f\xae\xe2\ +\xc9\x85\x15\x4f\x2e\xa4\x78\x21\xff\x30\x6e\x29\x0f\x2a\xa7\x58\ +\xdb\xd9\xfb\x00\x27\xc4\x1d\x14\xee\xf5\xe7\xc4\x70\xcf\x09\x25\ +\xf5\x7a\x8f\x99\xcd\x27\xfa\x7b\xc4\x6c\xa4\x7f\x36\xf6\xd2\xe6\ +\x72\x2c\x4a\x4c\x12\x3a\x00\xa5\x5a\xd9\xa7\xa0\x04\x73\xf1\xc3\ +\x28\x35\x5c\x14\xf7\x0d\x88\xc4\xbe\x55\xbe\xb4\x34\xb0\x32\xca\ +\x20\x1a\xba\x37\x83\xb4\xd3\x3b\xd4\xb1\xda\x01\x29\xed\x8b\x69\ +\xc7\xc5\x43\x6c\xd8\x56\xe7\x68\xc7\x25\xc3\x6c\xf8\xe8\x04\xa9\ +\x17\x25\x97\x5c\xd0\x86\x61\xbf\x3b\xd3\xd3\x8f\x36\x61\x47\x0e\ +\x02\x49\x51\xfd\x7d\x79\xb2\x7e\x4b\x92\xf8\x25\x8c\xf4\x93\x17\ +\xed\x61\x54\xed\x5a\xb0\x8a\x48\xf9\x7a\x6b\x8a\xd6\xde\x36\xab\ +\x27\x29\x0e\xa1\x93\x07\xd8\x91\xa6\xe6\xbb\x27\x68\x12\xce\x3b\ +\x1b\x54\x77\x0a\x4a\x49\x03\xcc\xbc\x6c\xfc\x1c\x87\x39\x9c\x8e\ +\x57\x99\x4a\x7f\xd3\x27\xcc\x5f\xe3\xcf\x99\xda\xe3\xfa\xd4\x6c\ +\x02\x0b\x2f\x4f\xc3\x8d\xde\x87\xf5\x17\xd9\xae\x14\xd4\xe5\xf0\ +\x9b\x62\x38\x98\x50\x69\xb3\xeb\xba\xbb\xbf\x99\x9a\x94\x0a\x44\ +\x6d\x8e\x69\xd3\xba\x85\x13\xaa\x43\x91\x03\xf9\x43\x93\xed\xcc\ +\x7a\x79\x67\xbd\xbc\xe9\xd4\x64\x1c\x31\x2e\x88\x6c\x74\xfa\x16\ +\x80\xb6\x56\xfa\x7f\x40\x2f\x00\x28\x71\xf9\x9f\x19\xd0\x03\x61\ +\xf1\x25\x40\x7b\xe2\xa6\xc6\xf1\x95\x32\x24\x98\xcb\x1e\xb8\xbb\ +\xec\xcf\x76\xfc\x1e\x4c\xb8\xfc\xfe\x22\x27\x71\xff\xd4\x8e\x5e\ +\x43\xb7\x54\x69\xb6\x04\xec\xc2\x47\x55\x9f\x68\xaa\x2b\xbf\x7c\ +\xab\xaf\x28\xbb\xac\xac\x39\xf9\x34\xf7\x87\xcb\xdf\x61\x41\xd8\ +\x98\x18\x8c\xc2\xff\x48\x2f\xc7\x76\xc7\x41\x20\x0d\x81\x3f\xb8\ +\x97\xe7\xab\xbe\xc8\x7c\x66\x98\x72\x05\x16\x9c\xe1\xe6\x61\x0c\ +\x82\x69\x3e\x4a\x10\x2b\x3e\xdd\x3e\xfa\x98\xd5\xc8\x46\x9d\xf6\ +\xf6\x7c\xa2\x57\x3e\x67\x4e\x3a\xf9\x7b\x2e\x37\x6c\x5d\xf6\x6d\ +\x08\x38\x02\xa4\xc8\xc2\x16\x4e\xd3\x69\x0b\xad\x8c\x20\x17\x72\ +\x60\xbb\xc5\x4b\xa7\xa6\x60\x08\x4b\x86\x59\xa3\xe9\x2d\xed\xe3\ +\x3d\xdb\x4c\x11\x21\x44\x60\x7d\x1b\x00\xdf\xe6\x09\x0e\xfb\xc4\ +\x71\x08\x9c\xe7\x47\x96\x8d\x30\xa6\x5c\x38\xe4\xfa\x0d\xd1\xe4\ +\x18\x5f\x70\xd3\x18\x26\xf5\xb7\x52\xe2\xb7\xdc\x82\xf5\xb1\xf1\ +\x70\xa8\x03\xb2\xec\x44\x21\x08\x17\xae\x4d\x98\xe0\x9d\x28\x44\ +\x5d\x44\x38\xd1\x29\x75\x3b\x0a\xed\xf3\xce\x7a\x79\x21\x0a\x51\ +\x8e\x08\x75\x38\x75\x8e\x8e\x98\x44\x5f\x4a\x71\xaa\x03\xa6\x85\ +\x11\x77\xa4\x4d\x1d\x62\x5f\x1f\xa9\xfa\xb7\x44\x94\x5d\x7a\xf3\ +\x78\x09\x8a\x57\xd1\xdb\x5b\x22\xca\x2f\x9d\x26\x7e\x5f\x88\x0e\ +\x38\x3e\x3b\x83\xae\x80\x98\xab\xc4\xc9\x57\x40\x10\xd9\x86\xa4\ +\x81\x20\xa6\x73\x54\xd2\x79\xe0\x00\x4d\x2e\x77\xc9\x60\x0f\x49\ +\x96\x3d\xe6\xb1\xd3\x93\x65\x69\x0f\x4b\x96\xf5\x45\x8c\xe0\x27\ +\xa3\x64\xbf\x98\x2c\x1f\x8f\x92\x1c\x62\x4b\xd2\xb7\xdd\x33\xae\ +\x13\xe5\x30\x5b\x9a\xcd\xfc\x19\x3d\xdd\x96\xdc\x53\x6d\xe9\xac\ +\xac\xa5\xb5\xe7\xf7\x66\x2d\xee\xc0\x18\xa6\x93\x0c\x4e\x90\x2d\ +\x18\xc6\x4d\x04\x29\x92\x0c\x86\x20\xf7\x17\x82\x75\x93\x0c\x1b\ +\x49\xc6\x88\xf3\x24\xc9\xa8\x79\x87\x87\x1b\x2d\xd2\xf1\x4a\x13\ +\x8e\xfe\x9e\x7c\xa7\x69\x3b\xc3\x4c\x44\xe8\xef\xc9\x77\x9a\xb6\ +\x7b\x31\x47\x22\x64\x88\x23\x9d\x87\x92\x7e\x53\xf2\x7a\x28\xb5\ +\xdf\x95\x9c\x8d\x12\x1d\x12\x94\xcf\x44\x89\x0e\xbc\xc1\x38\x13\ +\xa5\xcb\x05\x65\xc2\xc8\xeb\xa1\xc4\xd8\x6b\xa2\xc4\xc4\x05\x51\ +\x92\xaf\x87\x12\xc7\xaf\x89\x12\xa7\x97\x7c\xd7\x62\x0d\x89\x4c\ +\xe7\xbe\x6d\xb1\x86\x85\xa6\x73\xdf\xb7\x58\x97\x43\xca\xc5\xae\ +\x35\x24\x3a\x9d\xfd\xf6\xce\x1a\x7a\xc3\x7a\xe6\xfb\x3b\xeb\xc5\ +\xdd\xee\xf2\x87\xba\xe2\xad\x7e\x1b\xf4\xee\x14\x9c\xd0\x26\x5f\ +\xd2\xc7\x2d\x41\x11\x13\x42\xb6\xea\x22\xf4\x71\x8b\x0b\x44\x85\ +\xeb\xb2\xe6\xde\x60\xd6\xcb\x3b\xeb\xe5\x85\xe3\x16\xb1\x11\x64\ +\xae\x94\x35\xb9\xd2\xe1\xb3\xa1\x05\x47\x33\xe6\x50\xe9\xb0\x11\ +\x45\x0e\x96\x70\x4c\x2b\xae\x82\x04\x81\x1c\x4c\x5f\x05\xc1\xb4\ +\x84\x4b\xe1\xf0\x11\x63\x2e\xd2\xef\x83\x24\x1c\x25\x05\xa7\x8c\ +\xb8\x74\xd8\xd5\xc4\xed\x58\xd7\x36\x16\xbf\xea\x2b\x57\x5d\x62\ +\x19\x3c\x86\x6a\x7d\x55\x83\x76\xef\xd5\x19\xe1\xd2\x9b\xab\xc2\ +\x20\x00\xea\x9d\xaf\x96\x84\xfb\x24\x0d\x54\x5a\x91\xec\xe2\xd3\ +\x21\x95\x36\xb3\xab\x40\xbe\xea\x6a\x56\x8f\x5a\xd3\x71\x3f\x3d\ +\x7b\xf0\x82\x64\x0d\x47\xd7\xa7\xc4\xaf\x49\x02\xe8\x09\xc8\x51\ +\x6d\x29\x38\x7b\x4a\xd6\x6a\x05\xfc\x5d\x82\xa9\x23\xf6\x88\xdb\ +\xe2\x06\x0c\x80\xc3\xf5\x85\x75\x43\x5c\xa5\x29\x00\x68\x45\xde\ +\x56\x81\x50\xc5\x9f\xca\xb8\xb3\x87\x64\x3d\x4f\x35\x38\x79\xba\ +\x52\x4f\x7b\x06\x89\xbf\xd2\x35\xca\xd6\x6a\x07\x7e\x59\x19\xdb\ +\xe2\xd0\x7d\xad\xfb\xfb\x64\xd3\x3f\xc0\x3a\x8c\x41\x58\xab\xac\ +\xb5\x25\xcc\xde\x83\xa4\xe4\xa8\xaa\x6f\x9d\xfa\x06\xed\x29\xc7\ +\xa6\x89\x00\x4f\x49\xdb\xc3\xa4\x85\xb7\x09\x17\xe1\x57\x15\x68\ +\x7f\x2e\x8d\x65\xa1\x72\x2f\xf0\x72\xaf\x31\x8c\xaa\x85\x3a\xf5\ +\x9d\xc0\x6d\x1a\xcc\x26\xff\xfc\xe9\x43\x1d\x58\x7c\x7f\xf2\xaf\ +\x24\xfd\xd2\xc4\x04\xcd\xe0\xdd\x27\x2b\x58\x75\x1d\xee\x74\xcd\ +\xad\x3f\xd1\x7e\xe0\xe5\x77\xe1\x02\xd4\xad\x8b\xa4\xff\xba\x59\ +\x44\x60\xa2\x35\xa1\xc3\xac\x5f\x0d\x34\x83\xee\x86\x4d\xd5\xae\ +\x08\xba\xb7\x6e\x3c\xf0\x17\xa1\xee\x34\xfe\x2d\x0f\xa3\xe8\x67\ +\x3d\x49\x2b\x00\x96\x83\x86\x79\xa4\xee\x8a\x39\x77\x3f\x2b\x29\ +\xc6\xa5\x18\x55\xfc\x6a\x49\x79\x3b\xae\x60\x28\x9e\xe6\x0d\x3c\ +\x1d\x8b\xa9\x11\x8e\xbc\x7b\x15\x4d\xcd\x8f\x9a\x68\xec\x51\xe7\ +\x69\xb2\x5a\x2e\x92\x40\x95\xdd\x2b\x58\xe7\xed\x28\x36\x17\x5c\ +\x36\xb7\x3c\xad\x6a\xa9\x56\x71\x2c\xd5\x45\x51\xf5\xfa\xe7\x0d\ +\x54\xad\x12\x2d\x38\x52\x53\xfd\x2d\x6a\x74\x5b\x51\xbd\x2a\xd6\ +\x2a\xa9\x65\xb1\x56\xdf\x06\xd9\x3b\x37\x1f\xf1\xeb\x27\x9b\x00\ +\xac\xd8\x91\x6d\x75\x77\x4b\xd2\x5a\xaf\x7c\x62\x90\x5d\xab\x09\ +\xdc\xc6\xd7\x1f\xb3\xcd\xd5\xda\x0b\xe2\x18\xf6\x82\x24\xb5\xc0\ +\x4b\x1f\xbd\x7c\x95\xaa\xee\x4e\xd7\x94\xb9\x01\x56\x5d\x82\x36\ +\x5c\x83\x10\x44\xb9\x0b\x9f\x91\x70\x90\x70\x19\xc7\xd2\xd0\x05\ +\x6f\x0c\x31\x09\x91\x84\x72\xc3\x62\x08\x63\x01\xe1\xd5\x1e\xb9\ +\xc8\xa1\x14\x5c\x8c\x1b\x65\x98\x61\xf6\x08\xeb\xe2\x45\x5b\x10\ +\xf8\x6f\x64\x01\x03\xc6\x36\x25\xbc\x33\xd1\xc9\x48\xef\xca\xe2\ +\xea\x47\xbd\xa7\x81\xd4\x65\x65\x65\x7f\xbd\x65\xd9\x0a\x26\xae\ +\xd2\x08\x5c\x37\x9f\xf0\x3d\xbd\x55\x0d\x81\x07\xc1\x34\x4d\xbd\ +\x2d\x80\x1d\x3f\x71\x82\x57\xd5\x0b\xdd\xd7\x4b\x15\xc7\xe9\x48\ +\xbf\xaf\x60\xae\xe4\xc2\xa8\x94\x42\xa4\x46\xbd\x52\xc6\xa8\x52\ +\x10\x33\x74\x49\xe2\xae\x9b\x51\x69\x62\x54\x6b\xe7\x8f\xad\x92\ +\xdb\xf1\xbc\xcf\x89\x2b\x9f\xe2\xcf\xfa\x54\x5b\x58\x8c\xa5\x0f\ +\xf9\xdb\x01\x61\x4b\xea\x9b\x08\xfb\x26\xbe\xd9\x58\xa1\xe0\x96\ +\x73\xb2\x31\x1f\x76\x8f\xe7\xbd\xaa\xad\x99\x32\xb3\x3e\xa0\x99\ +\x3a\xef\xfe\x1e\x34\xf3\x8d\xbd\xb3\xad\x94\x6f\xaa\x92\xda\xab\ +\xca\x1f\xc5\x9f\x5b\x9d\x73\xdc\x5d\xfd\x0f\x31\xc2\xfd\xed\ +\x00\x00\x0c\xe4\ +\x00\ +\x00\x66\x8d\x78\x9c\xed\x5c\x5b\x73\xe2\x46\x16\x7e\x9f\x5f\xc1\ +\x32\x2f\x33\xb5\x48\xf4\xe9\x7b\x33\xf6\xe4\x61\x53\xd9\x4a\x55\ +\xb6\xb6\x6a\x93\xd4\x3e\xa6\x64\x10\x98\x0d\x20\x4a\x88\x31\x9e\ +\x5f\xbf\xa7\x85\x2e\x2d\x21\x30\x02\xec\x71\x18\x5b\x99\x58\xa8\ +\xbb\xd5\x7d\xbe\x73\xfa\x5c\x1b\xdf\xfc\xb0\x99\xcf\x3a\x5f\xc2\ +\x78\x35\x8d\x16\xb7\x5d\xf0\x49\xb7\x13\x2e\x86\xd1\x68\xba\x98\ +\xdc\x76\x7f\xff\xed\x27\x4f\x77\x3b\xab\x24\x58\x8c\x82\x59\xb4\ +\x08\x6f\xbb\x8b\xa8\xfb\xc3\xe7\x77\x37\x7f\xf3\xbc\xce\x3f\xe2\ +\x30\x48\xc2\x51\xe7\x61\x9a\xdc\x77\x7e\x5e\xfc\xb9\x1a\x06\xcb\ +\xb0\xf3\xe1\x3e\x49\x96\x83\x7e\xff\xe1\xe1\xc1\x9f\x66\x0f\xfd\ +\x28\x9e\xf4\x3f\x76\x3c\xef\xf3\xbb\x77\x37\xab\x2f\x93\x77\x9d\ +\x4e\x07\xe7\x5d\xac\x06\xa3\xe1\x6d\x37\x1b\xb0\x5c\xc7\xb3\xb4\ +\xe3\x68\xd8\x0f\x67\xe1\x3c\x5c\x24\xab\x3e\xf8\xd0\xef\x96\xdd\ +\x87\x65\xf7\xa1\x9d\x7d\xfa\x25\x1c\x46\xf3\x79\xb4\x58\xa5\x23\ +\x17\xab\xf7\x4e\xe7\x78\x34\x2e\x7a\xdb\xd5\x3c\xb0\xb4\x13\x18\ +\x63\xfa\x84\xf6\x29\xf5\xb0\x87\xb7\x7a\x5c\x24\xc1\xc6\xab\x0e\ +\xc5\x35\x36\x0d\xa5\x84\x90\x3e\xb6\x95\x3d\x8f\xeb\x35\xd8\xcc\ +\x10\x8a\xbd\x8b\x49\x5b\xdd\xd9\x11\xfe\x25\xfe\x2b\x06\xe4\x0f\ +\xfc\x55\xb4\x8e\x87\xe1\x18\x47\x86\xfe\x22\x4c\xfa\x3f\xfe\xf6\ +\x63\xd1\xe8\x11\x7f\x94\x8c\x9c\xd7\xe4\xe8\x57\xe6\xad\xb0\x64\ +\x11\xcc\xc3\xd5\x32\x18\x86\xab\x7e\xfe\x3c\x1d\xff\x30\x1d\x25\ +\xf7\xb7\x5d\xc9\x97\x9b\xf4\xf3\x7d\x38\x9d\xdc\x27\xce\x83\xe9\ +\xe8\xb6\x8b\x14\x52\xa5\x68\xfa\x39\x5f\xc3\xa0\x90\x24\xe2\xb3\ +\x6d\x53\xfe\x62\xb7\x89\x6b\x9f\xf9\xd0\x89\x8d\xd6\xb2\x3a\x7e\ +\x14\x0d\xed\xa2\x6e\xbb\xbf\x84\x93\x70\x31\xf2\x73\x18\x8b\xb7\ +\x44\xeb\x64\xb9\x4e\xfe\x08\x37\x49\xb8\xd8\xbe\x0e\x09\x71\xa8\ +\x4a\x9b\xed\x30\xbf\x42\x91\x23\xe1\xd0\xfd\x8c\x4f\x6e\x46\xe1\ +\x78\x65\x5b\xb6\xc4\xd8\x4f\x48\x0d\x4f\xdb\xb0\x15\x39\x12\x06\ +\xf1\x3f\xe3\x60\x34\x45\x39\xdc\xf6\xdb\xf6\xac\xb6\x70\x00\x93\ +\x8d\xc1\x51\xab\x24\x5a\xe6\x7d\x91\xa8\xe4\x71\x86\x94\xd8\x87\ +\xde\x30\x9a\x45\xf1\xe0\xfd\x38\xfd\xf9\x94\x3e\x8a\x10\xf8\x69\ +\xf2\x38\x80\x4f\xdd\x72\x4c\x34\x1e\xaf\x42\x44\x9a\x38\xcf\x52\ +\xb0\x71\x04\x07\x0a\xdd\x4e\xff\xf8\xd9\x86\x60\xaf\x23\x66\x83\ +\xe6\xd9\x58\x31\xdb\x4d\xbf\x4a\x76\x4b\x94\x98\x06\xda\x02\x25\ +\x92\xfe\x9c\x88\x12\xce\xc5\xf7\xa3\x54\xf6\xa2\xa4\xe9\x85\xbe\ +\xe8\xb6\x5e\x1a\xf1\x35\x65\x44\x49\xf3\xa9\x15\x77\x1a\x5f\x75\ +\x2c\x77\x90\x4a\x79\x31\xee\x18\xd2\x46\x86\x65\x78\x0e\x77\x0c\ +\xb4\x93\xe1\xf1\xf8\xc8\xd9\x1a\x51\x32\x70\x41\x19\x56\xf2\xdc\ +\x9d\x7e\xb4\x08\x2b\xdd\x0a\xa4\x90\xda\xeb\xe9\xc9\x9a\x25\x49\ +\x93\xa7\x30\xb2\x9f\x82\xd9\x0e\x46\xb9\x4e\xc6\x55\xcc\xc2\x21\ +\xbe\x3f\x98\x3d\x04\x8f\xab\x62\x92\xd4\xae\x0d\xee\xe3\x10\xed\ +\xf0\xfb\x1a\x9a\xc0\x79\xd7\x05\xbb\x3a\x05\xa5\x50\x02\x33\xc9\ +\x1e\xfe\xbe\x98\x26\x68\x70\xd7\xab\x30\xfe\xd5\x1a\xad\x7f\x2f\ +\x7e\x5f\x85\x3b\xbd\x7e\x8b\x83\xc5\x0a\x2d\xe4\xfc\xb6\x3b\x0f\ +\x92\x78\xba\xf9\x00\x3d\x62\x2f\x5f\x1a\x2d\xa8\xe1\x78\x4f\x09\ +\xc5\x3d\xab\x25\xfb\x58\x0c\x1f\x6e\x6e\xbb\x94\x0a\x9f\x4a\x4e\ +\x68\xf9\xf4\x11\x8d\x9e\xa2\xbe\x32\x8a\xc9\xe2\xe9\xb8\xb1\xef\ +\xb8\xb1\x6f\x7c\xdb\x65\xdc\x67\x5c\x80\x2e\x79\xfa\x2d\x00\x75\ +\x56\xfa\x06\xe8\x05\x00\x05\xc3\xaf\x19\xd0\x3d\x6a\xf1\x29\x40\ +\x1b\xf4\xa6\xc5\xf1\x85\x3c\x24\x9c\x4b\xb6\xb4\x2e\xbb\xb3\x1d\ +\x6f\x83\x81\xeb\xd7\xa7\x39\xc1\x5c\xf5\x46\x2f\xa0\x5b\xa2\x47\ +\xbf\x44\xec\x30\x04\xcc\x47\x14\x51\x44\xf2\x68\xa3\x9e\x6a\x57\ +\x36\xea\xee\xc0\xff\x65\xf9\x07\x2e\x88\x74\x06\x1d\x46\xf1\x7f\ +\xd0\xd8\xe3\x71\xdb\x03\xd0\x0d\xc1\x5f\xa4\xb1\xcf\x57\x1b\x1b\ +\x1d\x78\x4d\xb6\x02\x2f\x8a\xa7\x93\x29\x46\x21\x69\x3f\x0a\x3e\ +\x4b\x7f\xaa\x63\x90\xa5\x0e\x6d\x54\xb9\xe6\xf9\xc4\x5d\x79\x48\ +\x9c\xac\xf3\x77\xc8\x37\x84\xd2\x23\xde\x00\x6e\x04\x74\x91\x85\ +\x14\xaa\x1c\xf4\x88\x4f\x19\xf8\x06\x7d\x60\xe9\xf4\xa5\xb7\x5d\ +\xc1\x7c\xa2\x19\x61\x25\xa7\x1f\x69\x53\xdf\xb3\xc5\xd4\x07\x00\ +\x41\x8c\x48\xc5\xb5\xfc\xe4\xe1\xad\x52\x20\xb4\xea\x79\xd2\x27\ +\x84\x72\xa1\xe0\xe3\x37\x44\x93\x13\x72\x41\xa3\xd1\x8e\xea\xe7\ +\x62\xe2\x73\x9a\x60\x1b\x36\xee\x57\x75\xd8\xac\x2b\x5a\x08\xd5\ +\x85\x91\xc0\x04\xaf\x68\x21\x6a\x7c\xe0\x60\x5d\x6a\x57\x0b\xed\ +\xf6\x1d\x37\xf6\x45\x2d\x44\xb9\x0f\x54\x71\xaa\x8e\xd6\x98\xe0\ +\x13\x90\x9c\x5a\x85\xe9\x11\x9f\x2b\x2d\xa9\x02\xf9\xf1\x48\xd6\ +\x7f\x4b\x44\xd9\xa5\x8d\xc7\x53\x50\xbc\x08\xdf\xbe\x25\xa2\xfc\ +\xd2\x6e\xe2\xeb\x42\xb4\x45\xf8\xac\x5a\xa5\x80\x98\x09\xc5\xc9\ +\x29\x20\xd4\x6c\x6d\xdc\x40\x24\x53\x1d\xe5\x74\xee\x09\xa0\xe1\ +\x72\x49\x06\xd9\xc6\x59\x0e\x58\xc0\x4e\x77\x96\xb5\x6c\xe7\x2c\ +\xdb\x44\x8c\xe0\x27\xa3\x24\x9f\x74\x96\x8f\x47\x49\xb7\x91\x25\ +\x3d\x94\xe6\x8c\x74\xa2\x6e\x27\x4b\xe3\xf1\x70\x4c\x4f\x97\x25\ +\x73\xaa\x2c\x9d\xe5\xb5\x38\x36\xbf\xd1\x6b\x31\x2d\x75\x98\x75\ +\x32\x38\xf8\x52\x30\x42\x4a\x0d\x92\x3a\x19\xcc\x47\xdf\x5f\x08\ +\x56\x75\x32\xa4\xaf\x19\x03\x55\x73\x32\x8a\xbe\xed\xd5\x8d\x25\ +\xe9\x78\xa6\x09\x65\xaf\x93\x73\x9a\x52\xb5\x13\x11\x61\xaf\x93\ +\x73\x9a\xd2\x5c\x6c\x23\x01\xb4\xd9\x48\xe7\xa1\x64\x2b\x25\x2f\ +\x87\x92\x5b\x2b\x39\x1b\x25\xda\x46\x29\x9f\x89\x12\x6d\x99\xc1\ +\x38\x13\xa5\xcb\x29\x65\x60\xf0\x72\x28\x31\xf6\x92\x28\x31\x71\ +\x41\x94\xf4\xcb\xa1\xc4\xc9\x4b\xa2\xc4\xe9\x37\xc8\x86\x69\x25\ +\x3d\x55\x31\x5e\x35\x07\x9c\x98\xcb\x55\x12\x3c\xea\x4b\x05\x84\ +\x13\x8a\x5e\xb8\xa6\x1c\x45\x9e\xd9\x78\x5b\x03\x01\x8d\x91\x37\ +\x36\x0b\x22\x41\xeb\x1e\x25\xca\x27\x86\xda\x67\xda\x57\x68\xda\ +\x0c\x54\x3d\x74\xae\x7d\xa1\x85\xa0\xd5\x8c\x19\x58\x3b\x48\x34\ +\x29\xcd\xf1\xb8\xb1\xef\xb8\xb1\x6f\xe6\xa1\x13\xae\x08\x3f\xc9\ +\x43\xb7\x50\xbe\x5c\x89\xcb\x6b\x67\x0f\xce\x2d\x72\x79\x4f\x8a\ +\xe7\xf3\xe4\x83\xbc\x6a\xba\xb6\xd6\x81\x5c\x32\x5d\xfb\xb2\x19\ +\xa1\x12\xe8\x3d\x19\xa1\x36\x05\x68\xaf\x8d\x89\x3d\xbb\x04\xed\ +\xb5\x2d\x13\x9c\x59\x84\xf6\x9e\x74\xd9\x2e\xaf\x1a\xd3\xa3\x29\ +\xfb\x15\x23\x07\x2a\x2a\x1a\x49\x50\x9f\x09\xd4\x33\xba\xa2\x91\ +\xb8\xf0\xa9\x30\x86\xa9\x8a\x46\xda\xed\x3b\x6e\xec\x1b\xa7\x6a\ +\x0a\xc3\x2f\xca\xd8\x31\xfa\x15\xb5\x17\x53\x54\x2b\xd6\xa3\xbe\ +\x22\x9a\x2a\x9e\x4a\xaf\x00\x0c\x24\xac\xf4\xe2\xb4\xc0\xb5\x50\ +\xbc\xc7\x98\xf1\x6d\x51\x53\xa3\x9c\x0b\x4e\x51\xc1\xd2\x57\x90\ +\x5f\x7b\x12\xf3\x0b\x66\xbd\x2f\x05\xd6\x8b\xf0\x7e\x8b\xf9\x4d\ +\xdf\x9e\xb3\x4a\xef\x8a\x5a\x8d\x3d\xee\x35\xfa\x32\x0d\x1f\xde\ +\x15\xa0\xdd\x05\x05\x00\xcb\x60\x12\xa6\x9b\x10\xa1\xde\xda\x9b\ +\xac\xe1\x2e\x8a\x47\x61\x9c\x37\xc9\xf4\xa7\xd2\x94\xed\xd3\xed\ +\x99\xc6\x77\x55\xce\xda\xb7\x16\xed\xa4\xb9\x7d\x75\x1f\x8c\xa2\ +\x07\xb4\xa8\xf5\xc6\xaf\x51\x84\x4c\x10\x68\xea\xa5\x16\x9c\xd5\ +\x9b\xd3\x72\x98\x75\x0e\x50\xf5\xaa\x9d\xc6\xc7\x54\x51\x4a\x90\ +\x52\xf3\x9d\xc6\x75\x1c\x23\xa7\xbd\x59\xf0\x18\x22\x51\xe9\xaf\ +\x5c\xa1\xac\xee\xa3\x87\x49\x6c\xc1\x49\xe2\x75\x58\x1f\x39\x8a\ +\x86\x6b\x7b\x5e\xd2\x5b\x6f\x65\x29\x3b\xa5\xe7\xf4\xb0\x63\xbd\ +\xbb\xbb\x68\xd3\xfc\x82\x87\xe9\x02\x89\xf5\xb2\x73\x7f\xc0\xe4\ +\x0e\x24\x59\x8f\xfc\x24\xa0\x2a\x52\xef\xf5\x1e\x9b\x52\xeb\xd6\ +\x9b\x1e\xf7\x37\xcd\x83\xcd\x74\x3e\xfd\x1a\x8e\xac\x0e\xcd\x84\ +\x65\x1e\x26\xc1\x28\x48\x82\x52\x30\xf2\x27\x54\x15\xc9\xc4\x9b\ +\x78\x34\x1e\xfc\xe7\xc7\x9f\x0a\x65\x3e\x1c\x0e\xfe\x1b\xc5\x7f\ +\x96\x7a\xd8\x76\x08\xee\xa2\x35\xae\xba\x30\x31\xf6\xfc\xdf\x70\ +\x60\xb7\x53\x90\x7c\x9e\xce\x91\xdd\xf6\xc0\xe6\xdf\x37\xf3\x19\ +\x8a\x68\xd1\x50\xe9\x6c\x6b\x8a\xe5\x4b\xb7\xaf\x8d\xc3\xed\x81\ +\xcc\xc6\x33\xac\xa3\xe1\x7c\x6a\x07\xf5\x7f\x4d\xa6\xb3\xd9\xcf\ +\x76\x12\xc7\xe8\x64\x2f\x9d\x26\xb3\xf0\x73\x3a\xe7\xf6\x36\xa7\ +\xa2\x9f\x91\x91\xdb\x0c\x87\xca\x9b\x7e\x0e\x43\xfa\x69\x52\xc2\ +\x53\x91\x98\x02\xe1\x59\x70\x17\xce\x6e\xbb\xbf\xd8\xc6\xce\x4e\ +\xeb\x24\x8e\xd6\xcb\x79\x34\x0a\xb3\xe1\x39\xac\x13\x57\x8b\x4d\ +\x18\x71\xd2\xd8\x49\xa9\x8a\xd2\xdb\x59\x90\x84\x1f\x3c\xe2\x4b\ +\x69\x28\x7a\x9e\x36\x2b\x2d\xd0\x41\xa0\xa8\x63\x0a\x7a\x26\x25\ +\x74\x8d\xc3\x69\xcf\xd1\x48\x85\x0d\x1e\x23\x70\x83\xf7\x9a\xda\ +\xeb\x93\xfd\xe0\x58\xdf\x55\x12\x47\x7f\x86\x45\xeb\xf6\x63\xa3\ +\x63\xb8\xa5\x00\x9d\x13\x97\xfd\x31\x6a\x76\x97\x9d\x56\x85\xf9\ +\x5a\x48\x8c\x62\xdc\x23\x80\xa8\xed\x53\xe7\x48\x2b\xa3\x9d\x8a\ +\xb5\xfd\xc9\xb7\x02\x7a\xe7\x4a\x21\xed\x50\x69\xcd\xb6\x12\x57\ +\xbe\xd1\x54\x3a\x09\xb4\x7c\x45\x76\x01\xb8\xa8\xea\x64\x17\xa0\ +\xbb\x22\x62\xcb\x20\xb9\xaf\x4c\x5c\xda\xb6\xc5\x02\x17\x10\xc5\ +\x1e\x6a\x9d\x2f\x41\xb2\x8e\xc3\xaa\xb7\x94\x15\xa2\x71\x3c\x2e\ +\x52\x55\x1a\xec\x46\xec\x00\xaa\xd5\xd4\x61\xec\x21\x6c\x92\x00\ +\xfe\xd7\x21\x3d\xc1\xd1\xfc\xa0\xd3\xc9\xcd\x65\xc8\x4a\x51\x1c\ +\xc0\x72\x93\x3f\xb0\xe6\x16\x09\x18\xdc\xad\x93\xc4\x7d\xf6\xbf\ +\x68\xba\x18\xe0\x7e\x0b\xe3\x97\x41\xc4\xec\x22\x22\x7c\x66\x8c\ +\x42\xbd\xdf\x43\x07\x19\x3d\x6c\xa9\xa1\x63\xef\x34\x35\x18\xbc\ +\xf5\xc8\x75\x23\xc2\xa0\x41\x46\xb4\x2f\x39\x18\x22\x1d\x44\x48\ +\x8f\xf9\x14\xd2\xa3\xcc\xd7\x8d\x07\xdb\xc5\x83\xa2\x3b\xc4\xec\ +\x95\xe2\xc1\x34\x33\xfc\xfb\xc1\x43\xec\xe2\xc1\x50\x5b\x60\xe8\ +\x47\x8c\xc5\xc3\x6e\x2a\x66\xbe\x1f\x3c\x1a\x74\x2a\xa7\x29\x1e\ +\x90\xc3\xf1\x1d\x49\x47\x93\x3e\x25\x35\xe9\xf8\x7e\xe0\xe0\x4d\ +\xca\x14\x7a\x18\x63\x71\x0b\x08\x74\x3c\x96\x61\x03\xd7\x6e\x57\ +\x78\x83\x1e\x45\x7f\xcc\x28\x45\x31\xf0\x65\x0a\x63\x5c\x8d\x57\ +\x89\x08\xbf\x7a\x44\x1a\x34\xa9\xf5\xc6\x28\x55\x18\xe0\x53\x8c\ +\xf4\x95\xbd\xbe\x27\x44\xf6\xf8\xa7\x16\x11\xd5\xa3\x50\x47\x44\ +\xeb\xab\x47\xa4\x41\x9f\x96\xbb\x06\xd8\x5f\x46\x46\x6e\xfa\x93\ +\xe2\xb6\x1a\xb2\xed\x09\xd8\xf6\x84\x6b\x87\x82\xb5\x03\xa1\x5a\ +\x11\xa8\x11\xa3\x9d\xc7\x2e\x3a\x18\xf1\x7f\x78\xbf\x5b\x73\xfa\ +\xb8\x07\xae\x45\xb4\x70\xd3\x00\x6e\x60\x5c\x24\x9e\xb7\xb8\xde\ +\x71\x7b\x55\x71\x25\x68\x00\xd2\x9f\xfc\x7d\x5e\x8a\xe0\x6c\x8a\ +\xbf\x06\x7c\x07\xc8\xfc\xc1\x28\x58\xdd\x07\x71\x1c\x3c\x6e\xa7\ +\xaf\x85\xc6\x1c\x78\x25\x34\x9e\x34\x08\xc2\x4b\x2e\x2a\x5f\x16\ +\x51\xc4\x59\x56\xc3\xde\x68\xb7\x3b\xca\xfd\x81\xcb\x85\x5a\x53\ +\x11\xaf\x58\xff\x9c\xa7\x1e\x47\x7a\x8b\x2e\x87\x67\xcb\x6f\xdc\ +\x5e\xac\x36\xc8\x15\x03\x4b\xc3\xa7\x76\x28\x1d\xbf\x33\x4e\xc1\ +\xd3\xd5\x2a\x17\xc6\xce\x93\x4d\xe8\x61\x74\x23\x10\x23\xa2\xd3\ +\xe8\x06\x04\xc6\x7b\x2e\x7a\x35\x87\xf7\x7b\x46\xcf\x34\xc1\x67\ +\x83\x21\x4a\x18\xc8\xad\xbb\x8b\x1d\x59\x45\xf8\xf4\x1b\x7c\x19\ +\x7c\x5e\x23\x7e\x18\x3c\x61\x48\x4d\xb7\xb9\x06\x0e\x46\x54\xe0\ +\x63\x6f\xf0\x95\xf0\x79\x8d\xda\xcf\xc6\x5b\x12\x04\xdd\xe6\xaf\ +\x24\xee\x5f\x7e\x1d\xfb\xd7\xf1\x21\x5e\x91\x75\x03\x26\x9f\xcb\ +\xba\xa9\x3a\xab\x0a\x8f\x98\x4b\xad\x84\x8d\x23\xa9\xd4\x9a\x42\ +\x07\x7d\x1e\x1b\x3d\x69\xda\xab\xbf\xed\x2f\xc3\xdd\x0b\x23\xd7\ +\xbc\x37\x2c\x76\x12\xb4\x31\x36\xe2\xa4\x9a\xa1\xa1\x7b\xc3\xae\ +\x01\xbb\xba\x96\x2d\xc0\x63\xb6\x8a\x90\x05\xa7\x94\x88\x37\xf0\ +\x1a\xc0\xf3\xea\xcd\xe5\xb6\xd5\x46\x40\x1a\xc8\x6a\x69\x98\x7e\ +\x43\xaf\x11\x3d\xe7\xa0\x55\x0d\x3f\x45\x84\xd1\xdb\xb0\x57\xc2\ +\x75\xe0\xe7\x06\xc6\xce\xad\x63\xdd\xb2\x20\x8a\xa8\xee\xc5\xd3\ +\x0b\xb0\x93\x70\xf9\x57\x07\xd1\x05\xa0\x8c\x61\xf0\x84\xe6\x45\ +\x31\x26\xa1\x43\x11\x67\x06\xc0\x79\x2f\xbd\x93\xa8\x37\x3b\x56\ +\x81\x4a\x8a\x8e\x46\x8f\x49\xbc\x53\x02\x74\x47\xa0\x5e\xb0\x82\ +\xdd\x53\x3e\x1a\x28\x46\x6a\xbe\xc6\x5e\xa6\x34\xa6\x1e\xb2\x63\ +\x6f\x9c\x3f\x63\x56\x66\xdf\x8a\xd2\x64\xc0\xee\x09\xbf\x8f\xcf\ +\xb3\xc4\x5d\x1e\x40\xc1\x03\x56\xf0\x40\x14\x3c\x10\x05\x0f\x44\ +\xc1\x03\x5e\xf0\x40\x65\x3c\x10\x8d\x3c\x28\x99\x4f\x6a\x0d\x4f\ +\x48\x50\x73\x2e\xa7\x2e\xa7\xcc\x48\x7d\x48\x4e\xf7\x8a\x40\xf1\ +\x57\x74\x2e\x97\x7d\x6a\xcc\x25\x1e\x5d\xeb\x2e\x80\x22\x40\x4f\ +\x04\xea\xb5\xd1\xdf\xaa\xb2\xed\xd0\xcf\xaf\x84\xfe\x16\x75\x6c\ +\x87\x7a\x79\x25\xd4\xb7\xa8\x5a\xbb\xd4\x7b\xe2\x4a\xe8\x6f\x51\ +\xa5\xae\xd0\x7f\x2d\xbb\xff\xe8\xaa\x74\x85\x7a\x76\x25\xd4\x1f\ +\x5f\x85\xae\x0a\x3f\x5c\x09\xfd\xc7\x95\x9d\x4b\xda\xc5\xa9\xde\ +\xc1\xab\x23\xbc\x4d\x91\xd9\xa5\xff\x6a\x14\x5f\xab\xa2\x72\x05\ +\x01\x72\x65\x08\x1c\x55\x44\xae\x20\x70\x35\xdb\xbf\x4d\xd1\xb8\ +\x82\xc0\xa9\xee\x4f\x11\x25\x94\x37\xd5\xb3\xc8\x1c\x1c\xe5\xda\ +\x7c\x16\x19\x7c\x0e\x9c\x02\x13\xe9\x59\x64\x8c\x65\xec\xd7\xd0\ +\x9d\xd3\xc8\xd5\x4a\xf2\x11\xb5\xee\xf4\x63\xbc\x9e\xa5\xf5\xdb\ +\xaf\x61\x1c\x1d\x0c\x41\x71\xce\x3a\x13\xe2\x68\xbd\x18\xed\x70\ +\xa1\xf2\xf4\xfc\x4a\xae\x25\x0b\xcd\x92\xab\x81\xb3\xda\x36\xa3\ +\xbe\xd6\x84\x4b\x97\x29\x79\x49\x1c\x43\x73\x4e\x08\xd3\xee\x30\ +\xfb\x67\x41\x88\xcf\x25\x90\x4a\xdd\xc9\x7e\x7b\x01\x43\x47\x4e\ +\xb4\x90\x7b\x8a\xd8\x79\x72\xdb\x1c\x3a\x6c\xfd\x44\xfd\xdc\x7e\ +\x4d\x66\xa7\x7e\xbe\x9f\x05\x4d\xfb\xe0\x5b\xb0\xc0\x61\x02\x51\ +\xd5\xd8\xe7\x00\x1b\x0e\x33\x22\x65\x05\xd5\xbb\xac\xd8\x32\x83\ +\xed\x32\xa3\x5e\xe2\xc8\x18\x42\x4d\xb5\xda\x50\x67\x49\xce\x5c\ +\x23\x18\xd0\x7a\x81\x6d\xb3\xfd\x7a\x9f\x90\x8c\x88\x5a\x53\xb1\ +\x78\x1f\x30\x2e\xe2\xf5\xca\x70\x46\x38\xf5\x99\x94\xc0\x64\x3d\ +\x3f\xec\x00\x56\x1f\x59\xd9\x95\x19\x8b\xcf\x14\x09\x2a\x95\x34\ +\x4a\xef\x64\xeb\x9e\x49\x32\x9e\x2f\xdd\xd9\x98\x66\x47\x37\x45\ +\x0a\xc6\x99\xb4\x89\x35\xcb\x46\x29\x3b\x60\x7c\x65\x34\x5e\xc7\ +\x27\x3a\x8b\xef\x3a\x5e\xce\xaa\xd4\x80\x68\x14\x3d\xf4\xae\x8d\ +\x40\x5b\x5b\x2f\xbf\x6c\xd2\x5d\x83\xea\x5b\xd7\xd2\x29\x97\x14\ +\xbd\x9d\xcc\xf1\x9b\xf0\x1d\x10\xbe\xe6\xfa\x3b\x8a\x9f\x4d\xb3\ +\xdb\x24\x11\xb7\xac\x64\xc0\x4f\x11\xbf\x46\xa7\xe6\xd9\xd3\xeb\ +\xac\xd7\x61\xee\xd3\xed\xf7\x79\x07\xe4\x28\xd1\xb5\xd5\x04\x23\ +\x8c\xac\x0b\x60\x26\xba\x42\x0b\x56\x3f\x39\x74\x41\xd1\xad\x6f\ +\x98\x37\xd1\x3d\x24\xba\x75\x1d\x52\x88\xae\x10\x52\x8a\x1e\xd7\ +\xc8\x4a\x89\x46\xb8\x10\xdd\xba\x97\x7f\x50\x74\xa5\x01\x78\x71\ +\xcd\xc9\x21\xd5\xf6\x3b\x32\x96\x19\x6d\x45\xdc\x3f\x18\x7b\x71\ +\xf1\x3b\x74\xae\xe6\x4d\xfc\xea\xe2\x57\xe7\x51\x61\xb8\x25\x06\ +\x56\xb2\xc7\xe9\xd6\x70\xeb\x53\x35\x67\xfa\xe7\x38\x5e\x9f\xe6\ +\x6c\x2a\x56\x66\x37\xe9\xaf\x1b\xfb\xed\xdb\xcf\xef\xfe\x0f\xa8\ +\x7d\x5a\x61\ +\x00\x00\x07\x9b\ +\x00\ +\x00\x37\x3a\x78\x9c\xed\x5a\x5b\x8f\xe2\xb8\x12\x7e\xef\x5f\x91\ +\xcd\xbc\x4c\xeb\x10\xe3\x5b\x6c\x87\x86\xde\x87\x1d\xed\x6a\xa5\ +\x95\x56\x3a\x3b\xa3\xf3\xb8\x4a\x13\x03\x39\x03\x09\x4a\x42\x03\ +\xf3\xeb\xb7\x1c\x72\x6d\x42\x0f\x4c\x33\x0b\x1a\x01\xea\x26\x71\ +\x55\xd9\xae\xaf\x6e\x4e\xec\xe1\xcf\x9b\xc5\xdc\x7a\xd6\x49\x1a\ +\xc6\xd1\xc8\x26\x08\xdb\x96\x8e\xc6\x71\x10\x46\xd3\x91\xfd\xe9\ +\xe3\xaf\x8e\xb2\xad\x34\xf3\xa3\xc0\x9f\xc7\x91\x1e\xd9\x51\x6c\ +\xff\xfc\x78\x37\xfc\xc9\x71\xac\x5f\x12\xed\x67\x3a\xb0\xd6\x61\ +\x36\xb3\x7e\x8f\x3e\xa7\x63\x7f\xa9\xad\xf7\xb3\x2c\x5b\x0e\xfa\ +\xfd\xf5\x7a\x8d\xc2\xa2\x11\xc5\xc9\xb4\x7f\x6f\x39\xce\xe3\xdd\ +\xdd\x30\x7d\x9e\xde\x59\x96\x05\xe3\x46\xe9\x20\x18\x8f\xec\x42\ +\x60\xb9\x4a\xe6\x39\x63\x30\xee\xeb\xb9\x5e\xe8\x28\x4b\xfb\x04\ +\x91\xbe\x5d\xb3\x8f\x6b\xf6\xb1\x19\x3d\x7c\xd6\xe3\x78\xb1\x88\ +\xa3\x34\x97\x8c\xd2\x77\x0d\xe6\x24\x98\x54\xdc\x66\x36\x6b\x96\ +\x33\x11\xcf\xf3\xfa\x98\xf6\x29\x75\x80\xc3\x49\xb7\x51\xe6\x6f\ +\x9c\xb6\x28\xcc\xb1\x4b\x94\x62\x8c\xfb\x40\xab\x39\x8f\xe3\x1a\ +\x6c\xe6\x00\xc5\xc1\xc9\xe4\xd4\xe6\xe8\x00\xff\x12\xfe\x2a\x81\ +\xb2\x01\xa5\xf1\x2a\x19\xeb\x09\x48\x6a\x14\xe9\xac\xff\xe1\xe3\ +\x87\x8a\xe8\x60\x14\x64\x41\xa3\x9b\x12\xfd\xd6\xb8\x2d\x93\x44\ +\xfe\x42\xa7\x4b\x7f\xac\xd3\x7e\xd9\x9e\xcb\xaf\xc3\x20\x9b\x8d\ +\x6c\xc1\x97\x9b\xfc\x7e\xa6\xc3\xe9\x2c\x6b\x34\x84\xc1\xc8\x06\ +\x0d\xa9\x94\x34\xbf\x2f\xe7\x30\xa8\x3c\x09\x23\xb6\x23\x95\x1d\ +\x37\x49\x5c\x21\x86\x88\x95\x78\x4a\x89\xb6\x7c\x10\x8f\xcd\xa4\ +\x46\xf6\x6f\x49\x18\xa0\x12\xc4\xaa\x8f\x78\x95\x2d\x57\xd9\xdf\ +\x7a\x93\xe9\x68\xd7\x19\xa8\xd1\xd0\x29\x27\x1b\x31\xd4\xd2\xa7\ +\xe1\xdf\xc4\x7e\x84\x96\x61\xa0\x27\xa9\xa1\xec\x54\x31\x77\xa0\ +\x0b\xcf\x69\x40\x05\x7b\x68\x3f\xf9\x2d\xf1\x83\x10\xbc\x70\xc7\ +\xb7\xe3\x6c\x53\x98\x22\xb4\x90\x01\xa9\x34\x8b\x97\x25\x2f\xa8\ +\x94\x6d\xe7\xa0\x87\x69\x74\xc6\xf1\x3c\x4e\x06\xef\x70\xfe\x79\ +\xc8\x9b\x62\x80\x3d\xcc\xb6\x03\xf2\x60\xd7\x32\xf1\x64\x92\x6a\ +\xc0\x19\x37\xda\x72\xa8\x41\x02\xc6\xe2\xb6\xd5\x3f\x30\x5a\xcd\ +\x45\x71\x57\x87\xc8\xb5\x4f\x9e\x1a\x46\x8a\x32\x2c\x85\xf7\x70\ +\x78\xdc\x63\xbb\xea\xd2\x92\x74\x6b\x29\xaa\xd1\x86\xfd\x36\xdc\ +\xa7\x5a\xc7\xc3\xde\x09\xd6\x11\xfa\x2d\xd6\xf1\x08\x39\x09\xa5\ +\xc9\xe4\xc8\xd1\x3a\x51\xf2\x08\x3b\x1b\x4a\x4a\x8a\x13\x50\x9a\ +\xe4\x9f\x17\xf3\x3e\xda\x85\xa5\x3a\x09\x24\x4d\xcd\xf7\xeb\x83\ +\x75\x7b\x92\xc2\x5f\xc3\xc8\xdc\xf9\xf3\x3d\x8c\xca\x6c\x03\xb3\ +\x98\xeb\x31\xf4\xef\xcf\xd7\xfe\x36\xad\x06\xc9\xf3\xf5\x60\x96\ +\x68\xa8\x2f\xef\x5e\xa0\x49\x38\xb7\x9b\x60\xb7\x87\xa0\x94\xd4\ +\xc0\x4c\x8b\xc6\x4f\x51\x98\x41\x21\x59\xa5\x3a\xf9\xcb\x24\xe3\ +\x3f\xa3\x4f\xa9\xde\xe3\xfa\x98\xf8\x51\x0a\x99\x7f\x31\xb2\x17\ +\x7e\x96\x84\x9b\xf7\xa4\x87\xcd\x17\x09\x4f\xb9\xd4\xe3\x70\x4d\ +\x31\x85\x98\x55\x82\xdd\x57\xe2\xe3\xcd\xc8\xa6\xd4\x45\x54\x70\ +\x4c\xeb\xd6\x2d\x24\x73\x49\x91\xf4\x24\x13\x55\xeb\xa4\x93\x77\ +\xd2\xc9\x9b\x8c\x6c\xc6\x11\xe3\x2e\x51\xb5\x4d\x2f\x01\x68\x63\ +\xa6\x37\x40\xcf\x00\x28\xf1\xf8\x8f\x0c\xe8\x81\xb4\xf8\x35\x40\ +\x3b\xf2\xa6\xc1\xf1\x8d\x79\xf3\xe8\xea\x42\xb8\x38\xb1\xba\xec\ +\x8f\x76\x7c\x0d\x26\x5c\x5d\x5f\xe6\x24\xde\x0f\x1d\xe8\x15\x74\ +\x4b\x58\xab\x2e\x01\x3b\x78\xb4\x29\x25\xaa\xd5\x71\xb6\x35\xab\ +\xf9\x36\x2b\x0b\xec\x3d\xf8\x9f\x97\x7f\xc3\x84\xb0\x35\xb0\x18\ +\x85\x7f\xa4\x93\x63\xbb\xe3\x20\xb0\x0c\x81\x1f\xdc\xc9\xf3\xc5\ +\xac\xf9\x5f\xe9\xa6\x98\x81\x13\x27\xe1\x34\x84\xf5\x75\xce\x47\ +\x09\x62\xf9\xa7\x2d\x03\x26\x6d\xe8\x46\x65\xb3\x3c\x7f\x63\x54\ +\xbe\xe6\x4e\x66\xf1\xf7\xda\xda\x90\xd4\x2b\xe2\x0d\x81\x40\x80\ +\x25\xb2\x2b\x5c\x59\x0b\x6d\xa1\x95\x11\xe4\xc1\x1a\x58\x34\x78\ +\xe9\xc8\x76\x19\xc2\x8a\x61\x56\x5b\x7a\x4b\xbb\x78\xdf\xec\xa6\ +\x88\x10\xe2\x62\xcf\xcd\xdd\xb5\xbe\x73\xe0\x52\x4a\xe2\x2a\xd9\ +\x73\x04\xc2\x98\x72\x57\x92\xfb\xef\x5a\x34\xcc\x22\xf1\x70\x70\ +\x32\x4f\x88\xb3\x69\xed\x50\x24\x24\xc1\x10\x48\xa0\xb2\xa2\x9c\ +\x30\xc2\x8c\xca\x8a\x60\xa2\x40\x79\x20\xbb\x58\x40\xf0\x40\xd0\ +\x4a\x84\x3d\x6a\xda\x14\x92\x8c\x11\x8f\xb4\xc3\x17\x9e\x33\x5d\ +\xe5\xba\xb4\x1d\xbe\x44\x20\xb0\x9e\xc2\x6e\x2b\x7c\xf7\x79\x27\ +\x9d\xbc\x10\xbe\x94\x23\x98\x9f\xc4\xfc\x82\x0e\xcc\x31\x3e\x63\ +\x9d\x3e\xcd\xd1\xbe\x57\xdc\x5c\x12\x4d\x42\x7e\x58\x34\xbf\x47\ +\x3a\x20\xf4\xb5\x74\xa0\x88\x6a\xc5\x21\xd4\x3b\x4f\x10\xe6\xf2\ +\x56\x1c\x52\x0f\x11\x4e\xcc\x33\x61\x33\x0e\xf7\x79\x27\x9d\xbc\ +\x45\x1c\x52\xc9\xa9\x3c\xba\xe4\x13\x84\x89\xe0\xd4\x54\x7c\x07\ +\x23\x2e\x95\xa0\x92\x88\xfb\x23\x4d\x7f\x49\x44\xe9\xb9\x57\x3f\ +\x5f\x83\xe2\x5f\xb1\xdb\x45\x11\x3d\xf7\x73\xce\x0d\xd1\xf3\x2d\ +\x02\x6e\x88\xee\x10\x55\x37\x44\xcf\x8b\x28\x3b\xf7\xfb\xb7\x1b\ +\xa2\xb7\xca\x74\x6e\x44\x6f\x95\xe9\xdc\x88\xde\x2a\xd3\xb9\x11\ +\xbd\x55\xa6\x33\x23\xca\x6f\x95\xe9\xdc\x88\xde\x2a\xd3\xb9\x11\ +\xfd\x81\x2b\xd3\xb0\x6f\x8e\x81\xe4\x57\xd5\x0b\x77\x73\x16\x25\ +\x78\x0e\xf5\xfa\xae\x82\xe4\xc9\xaf\xd4\x5b\xfa\x53\x9d\x6f\xb8\ +\x00\x90\xbb\x1d\x97\x82\xf0\x14\x27\x81\x4e\x4a\x92\xc8\x3f\x2d\ +\x52\xb1\x27\xb3\x3b\x70\x75\xd7\xb6\x9b\xe9\xb5\xa2\xe3\x6e\x7a\ +\x3a\xf3\x83\x78\x0d\x3a\xbc\x24\x7e\x89\x63\x80\xd8\x45\xc2\x15\ +\xca\xe5\xec\x25\xd9\xc0\xe9\x98\xf7\x46\x82\x09\x6f\x4f\xd8\xc0\ +\xca\x18\x22\x98\x12\xba\x4f\x5c\x25\x09\x18\xd2\x99\xfb\x5b\x0d\ +\x5a\xe5\x3f\xe5\x3b\xb3\x74\x16\xaf\xa7\x89\x41\x27\x4b\x56\xfa\ +\xa5\x64\x10\x8f\x57\xe6\x34\x97\xb3\xda\xb9\x4a\x71\x86\xa8\xc1\ +\x61\x64\x9d\xa7\xa7\x78\xd3\xdd\xc1\x3a\x8c\x40\x5b\xa7\x38\x95\ +\x44\x98\xd8\xc3\xa4\xe0\x28\xcf\x29\xc9\xea\xfd\xd3\x4b\x8e\x4d\ +\xbd\xc1\xf6\x92\xb4\x3d\x4c\x5a\xf8\x9b\x70\x11\x7e\xd1\x81\xd9\ +\x30\x2b\xbc\x65\xa1\x33\x3f\xf0\x33\xbf\xf6\x8c\xb2\x85\x4a\x29\ +\xcb\x93\x44\x49\x30\x19\xfc\xf7\xc3\xaf\xd5\xce\xdd\x78\x3c\xf8\ +\x5f\x9c\x7c\x2e\xdd\x10\x1c\x11\x18\xfc\xa7\x78\x05\xb3\xae\x76\ +\x13\xcd\xf9\xa4\xf1\xc0\x44\x8b\x9f\x3d\x86\x0b\xb0\xb7\x39\x4e\ +\xf6\x9f\xcd\x62\x0e\x3e\x5a\x11\x5a\xcc\x66\x67\xa8\xee\x74\xd7\ +\x6d\xa2\x77\xc7\xc5\x3a\x4f\xd8\x05\xe3\x45\x68\x84\xfa\x7f\x65\ +\xe1\x7c\xfe\xbb\x19\xa4\xb1\xc3\x58\x74\x1a\x66\x73\xdd\xd8\x76\ +\xec\x17\xb3\x2f\x77\x06\x1b\xca\x0d\xfb\xa5\xf6\xf9\xdd\xb4\x46\ +\xa5\xe5\x28\x15\xb0\x73\xff\x49\xcf\x47\xf6\x1f\x86\x68\xed\x51\ +\xa7\x49\xbc\x5a\x2e\xe2\x40\x17\xe2\x25\x9a\xd3\x66\x6e\x9a\x72\ +\x52\x39\x78\x63\x13\x34\x89\x3f\xeb\x01\x28\xfa\xfe\xdd\xfe\x4b\ +\xc9\xfb\x87\x1d\x7d\xe7\x4a\x03\x52\xde\x02\x14\x3a\x99\x83\x89\ +\xb3\x01\x2f\xdb\xea\x4d\xda\xa2\x21\xf0\x21\xea\x92\xc4\xdf\x0e\ +\xa2\x38\xaa\x33\x5c\xd6\xf5\xfe\xd7\x73\x15\xe4\xa0\xf2\xfd\x6f\ +\x71\xe7\x78\x88\x2a\xe2\xba\xca\xec\x61\x10\xae\x3c\x97\xa9\xfb\ +\x7a\x0b\x79\x5a\xdb\x6f\xa7\x1e\x96\xcd\xbd\xe0\x23\x14\x64\xf4\ +\x9c\x0a\x36\x7c\x61\xe9\x67\xb3\xa6\x77\x15\x73\x99\x80\xe7\xe4\ +\xbc\x0f\xaf\xcd\x8a\x1e\x9c\x95\x29\x3e\x60\xef\xc1\xd3\x2a\xcb\ +\x9a\x6d\xff\x8f\xc3\x68\x90\x4f\xf9\x1c\x06\x32\x1f\x13\x9d\x16\ +\x51\x08\xd2\x1e\x13\xbc\xe7\x32\xc4\xf2\x4b\x0b\xca\x8e\xd9\xf8\ +\xe1\xe6\xcb\x5a\x22\xf9\x7e\x25\xe8\xcd\x31\x26\x6d\x42\x5d\x60\ +\x23\x98\x7f\x16\x27\x0e\xe4\xc6\x67\x3f\x5b\x25\xda\xa4\x90\x56\ +\x14\xbd\x0d\x39\x7e\x25\xc8\x51\x81\x5c\xc0\x07\x2b\x83\x1c\x07\ +\x17\x96\x2d\xe4\x98\x3c\x88\x9c\x23\x2e\x85\x9d\xb8\x12\xec\x60\ +\x45\xe2\x52\xcc\x88\xc8\xbd\xce\x03\x4c\x58\xcb\xeb\xd4\x2b\xd8\ +\x79\x97\x02\xef\x60\xa6\xfc\x97\xc1\xe3\x14\x71\x63\xcb\xdc\xef\ +\x38\x24\xd2\x16\x76\xec\x35\xec\x9c\x4b\x81\xc7\xf0\x95\x80\xe7\ +\x62\xe4\x0a\xe2\x52\x37\x47\x4f\x40\xd4\xf2\xa3\xa3\xd6\xf1\x9c\ +\x6f\xcd\x7a\xc3\xfe\xf4\x70\x4d\x23\x4c\x9c\x56\xd3\xf8\xc1\x1c\ +\x78\xc9\x9a\xc6\xae\x25\x33\x13\x78\x80\xe0\x42\x49\xb7\xc7\xcd\ +\xe9\x23\xa5\x28\xb1\xb8\x44\xb0\xd6\x21\x8a\xf6\xf0\x01\x0b\x4b\ +\x79\xa9\xd8\xb8\x96\xac\x6c\x70\x13\x44\x79\x5e\x8f\x49\x58\x95\ +\x31\x28\x6f\x47\xe1\xf6\xcd\x51\xf1\x66\xe4\xae\x25\x25\x1b\xe4\ +\x18\xf3\xa8\xec\xc1\x53\x35\x95\x94\x62\xf7\x48\xe4\xd4\x85\xa0\ +\xe3\xd7\x92\x90\xf3\x60\x85\x65\x3f\xe9\x51\x02\x4e\x27\x3c\xa6\ +\x8e\x84\xce\xc1\x97\xc2\xee\x6a\x16\xef\x80\x9d\xc4\xae\xa7\x7a\ +\x84\x81\xdb\x09\x72\x02\x76\x0e\x7f\x6b\x29\x2b\x2e\xf2\x9f\xa1\ +\x79\x18\x7f\xbc\xfb\x07\x5c\xb2\x48\x97\ +\x00\x00\x0d\x61\ +\x00\ +\x00\x66\xac\x78\x9c\xed\x5c\xeb\x8f\x9b\x48\x12\xff\x9e\xbf\x82\ +\x73\xbe\x64\x74\x06\xf7\xfb\xe1\x19\x67\x75\xda\xd5\x9e\x56\xca\ +\x6a\xa5\xdb\xac\xee\xee\xd3\x8a\x31\xd8\xc3\xc5\x06\x0b\xe3\x79\ +\xe4\xaf\xbf\x6a\xc0\xd0\xd8\x78\xc6\xd8\x8e\x93\x75\xc6\x28\x19\ +\xe8\xae\x7e\xd4\xaf\xaa\xab\xab\xba\x1b\x6e\x7e\x78\x9c\xcf\x9c\ +\xfb\x30\x5d\x46\x49\x3c\xea\x61\x0f\xf5\x9c\x30\x1e\x27\x41\x14\ +\x4f\x47\xbd\x3f\x3e\xfe\xec\xaa\x9e\xb3\xcc\xfc\x38\xf0\x67\x49\ +\x1c\x8e\x7a\x71\xd2\xfb\xe1\xfd\x9b\x9b\xbf\xb9\xae\xf3\x63\x1a\ +\xfa\x59\x18\x38\x0f\x51\x76\xe7\xfc\x12\x7f\x5a\x8e\xfd\x45\xe8\ +\xbc\xbb\xcb\xb2\xc5\x70\x30\x78\x78\x78\xf0\xa2\x32\xd1\x4b\xd2\ +\xe9\xe0\xca\x71\xdd\xf7\x6f\xde\xdc\x2c\xef\xa7\x6f\x1c\xc7\x81\ +\x76\xe3\xe5\x30\x18\x8f\x7a\x65\x81\xc5\x2a\x9d\xe5\x84\xc1\x78\ +\x10\xce\xc2\x79\x18\x67\xcb\x01\xf6\xf0\xa0\x57\x93\x8f\x6b\xf2\ +\xb1\x69\x3d\xba\x0f\xc7\xc9\x7c\x9e\xc4\xcb\xbc\x64\xbc\x7c\x6b\ +\x11\xa7\xc1\xa4\xa2\x36\xbd\x79\xa0\x39\x11\xd6\x5a\x0f\x10\x19\ +\x10\xe2\x02\x85\xbb\x7c\x8a\x33\xff\xd1\x6d\x16\x85\x3e\xb6\x15\ +\x25\x08\xa1\x01\xe4\xd5\x94\xfb\x51\x0d\x1f\x67\x00\xc5\xce\xce\ +\xe4\xb9\x76\xeb\x00\xff\x02\xfe\x55\x05\xd6\x09\xde\x32\x59\xa5\ +\xe3\x70\x02\x25\x43\x2f\x0e\xb3\xc1\x4f\x1f\x7f\xaa\x32\x5d\xe4\ +\x05\x59\x60\x55\xb3\x46\xbf\xd1\x6e\x43\x24\xb1\x3f\x0f\x97\x0b\ +\x7f\x1c\x2e\x07\xeb\xf4\xbc\xfc\x43\x14\x64\x77\xa3\x9e\x60\x8b\ +\xc7\xfc\xf9\x2e\x8c\xa6\x77\x99\x95\x10\x05\xa3\x1e\x70\x48\xa4\ +\x24\xf9\xf3\xba\x0f\xc3\x4a\x93\x90\x47\x8b\xac\x75\xc5\x76\x16\ +\x53\x1e\xf5\xb0\x93\x6a\xa5\x44\xb3\x7c\x90\x8c\x4d\xa7\x46\xbd\ +\x0f\xfe\x6d\x38\x5b\x7a\x6b\x18\xab\x5a\x92\x55\xb6\x58\x65\x7f\ +\x86\x8f\x59\x18\x17\xd5\x01\x23\x16\x57\x79\xb6\x29\xe6\x35\x38\ +\xb2\x34\x1c\xf7\xde\x43\xca\x4d\x10\x4e\x96\x26\xa7\x60\xc6\x3c\ +\x01\x37\x2c\xcf\x83\xdc\xb9\x9f\x7e\x0a\xd3\x22\xdf\x6a\x7d\x99\ +\x25\xe3\x4f\x86\xfe\x63\x1a\xf9\xf1\x74\x16\xfe\xb6\xca\x3e\xf4\ +\xd6\x64\x49\x1a\x81\xd2\x8e\x7a\xfe\x2a\x4b\xaa\xc4\x34\x9c\xfc\ +\xd7\xf0\x8c\xec\x94\xff\x34\x53\x76\xd6\xb8\xcc\x9e\x66\x00\x46\ +\x02\xdd\x9f\xcc\x92\x87\xe1\x7d\xb4\x8c\x6e\x67\x61\xd9\x4b\xe8\ +\xe7\xc2\xcf\xee\xd6\xc4\x45\x3d\x26\x85\x21\x82\x7b\x75\x32\xa4\ +\xfe\xea\x70\x4f\xca\x3e\x34\xea\x7c\x70\x5c\xe2\x29\xd5\xe7\xd6\ +\xbd\x5b\x3c\x54\x34\x9f\x1d\xab\x78\xd9\x89\x49\x34\x9b\xb9\xe9\ +\x6a\x16\x0e\xc3\xfb\x30\x4e\x82\xe0\x7a\x99\xa5\xc9\xa7\x70\xf8\ +\x16\xe5\xbf\xf2\xd1\xcd\x95\x67\x08\x96\x64\x91\x59\x95\x64\xa9\ +\x1f\x2f\x41\x71\xe7\xa0\x38\x63\x7f\x16\xbe\x43\x9e\xba\xea\x39\ +\x83\x12\xef\x41\x01\x78\x47\xf4\x7f\x89\x4f\x0c\xbe\x5d\xe1\xc1\ +\xd8\x63\xf2\xad\x63\xef\x1e\x03\xfe\x3f\xd2\x34\x79\x20\xbf\xc2\ +\xa4\x90\x66\xa7\x41\xbf\xb5\xc6\x03\xe1\xa7\x1a\xd1\xfd\xf1\x2b\ +\x01\x43\x9e\x20\xbc\x01\x24\x58\xe4\xf0\x7f\x49\x14\x0f\xd3\x64\ +\x15\x07\x9b\xf2\x54\x9e\xc4\x8a\x2b\xa9\xfa\xcc\x43\x94\x4a\xca\ +\x49\x21\x4e\x82\x24\x51\x9a\x1b\x39\x62\x81\x30\x25\x5c\x40\x46\ +\x49\xae\x58\xdf\x05\x7a\x84\x25\x92\xca\xf9\xd1\x11\x9e\x96\x14\ +\x69\x84\xfa\x2e\x86\x0e\x68\xc1\x84\x36\x89\x8a\x62\x26\x45\x1f\ +\xd2\x30\x97\x8c\xe1\xd6\xe6\x1a\x5a\xd2\x32\xb8\xc4\x55\x91\x3a\ +\x83\x29\xfa\x1d\xea\xa3\x23\xc5\xfd\xe1\xe4\xe2\xfe\x70\x1a\x71\ +\x2b\x2d\x5f\xc5\x0d\x93\x9a\x2d\x6e\xfc\x8c\xb8\x0d\xa7\x7e\xfa\ +\xcf\xd4\x0f\x8c\x04\x6d\xb1\x34\x73\x00\x58\x54\x83\x0f\xda\xb0\ +\xd8\x42\xd9\x24\xba\xe3\x64\x96\xa4\xc3\xb7\x93\xc9\x58\x70\x79\ +\x9d\x27\x25\xe0\x51\x44\xd9\xd3\x10\x5f\x5b\x7d\x4e\x26\x93\x65\ +\x08\x1a\x83\x7a\x4d\x21\x9a\x12\xd0\x16\xa9\xfa\xbb\x4f\x6b\xb7\ +\x81\x0c\x72\xe1\xbd\xd4\x1a\x6e\x6f\x8d\x59\xe8\x34\xd9\xee\x8c\ +\x92\xe4\x9d\x50\x32\xbf\x83\x51\x92\xb2\x13\x4a\xfe\xc4\x5c\x07\ +\xa3\xa4\xc8\xa9\x50\x62\x18\xeb\x73\xa1\xc4\x30\xb8\x3e\x5d\x50\ +\x1a\x63\x73\x1d\x88\x12\xb4\x46\x4f\xa7\x4b\xe0\x38\xec\xdf\xef\ +\x6a\xe2\x3f\x4c\x97\x30\xdb\x8d\x52\x4d\x45\x50\x5b\x85\x1e\xdf\ +\x36\xb9\x2f\x75\x0d\x3c\x0e\x42\x91\x14\xfa\xba\x93\x74\x5a\xab\ +\xda\x5f\x87\xb1\x38\x99\x74\x34\xea\xa2\xc3\x22\x3c\x46\x3a\x1a\ +\x77\xd3\xe1\xc9\x64\xcf\xd6\x5a\x51\xd2\xf8\x84\x3a\x2c\xc5\xb1\ +\x23\x7d\x7f\x73\xa8\x3a\x81\x14\x12\x73\xbd\xdc\xd8\x0e\x6b\x88\ +\x5e\xc2\xc8\x3c\xf9\xb3\x2d\x8c\xd6\x0e\x15\xf4\x62\x16\x8e\x8d\ +\xcf\x34\x7b\xf0\x9f\x96\x55\x23\x79\xf0\x3f\xbc\x03\x57\x69\xd4\ +\x7b\xbb\x81\x26\x66\xac\xe1\x39\x35\x9b\x20\x04\xd7\xc0\x4c\xcb\ +\xc4\x3f\xe2\x28\x5b\x8e\x7a\xab\x65\x98\xfe\x6e\x22\xfb\xdf\xe2\ +\x3f\x96\xe1\x16\xd5\xc7\xda\x83\x98\xfb\x59\x1a\x3d\x1a\x9f\xc1\ +\x5c\x9e\xd0\x8a\x13\xcd\xe0\x9e\x20\x08\x4f\x88\x12\xf4\xaa\x2a\ +\x3e\x7e\x1c\xf5\x08\xe1\x1e\x11\x10\x61\xd6\xa9\x4f\xa3\x9e\x90\ +\xc4\x93\xe0\xdf\x88\x2a\x75\xd2\x4a\x3b\x69\xa5\x4d\x47\x3d\xca\ +\x3c\xca\x38\x56\xb5\x4c\xbf\x06\xa0\x56\x4f\x5f\x01\x3d\x01\xa0\ +\x58\xb3\x4b\x06\x74\x87\x59\x7c\x09\xd0\x16\xbb\x69\x70\x3c\x97\ +\x1f\x89\x99\xe8\x38\xbb\x6c\xb7\xb6\xff\x1c\x8c\x99\xfa\xf6\x2c\ +\x27\xd6\x17\x3d\xd0\x2b\xe8\x16\x61\xba\x5c\x00\x76\xd1\x7d\xb8\ +\x2e\x51\x2d\xb5\x66\x4f\x66\x69\xb8\x49\x4a\xeb\xd8\xb7\x5e\xb7\ +\x5d\xfc\x09\x1d\x42\xce\xd0\xa1\x04\xfe\xc3\xad\x14\x4f\x05\x05\ +\x06\x37\x04\xfe\xa0\x56\x9a\xcf\x66\x01\xf9\x99\x6a\xca\x1e\xb8\ +\x49\x1a\x4d\xa3\x18\x18\x33\x74\x04\x7b\x34\xff\x35\xcb\x98\xf0\ +\xbf\xe6\x8d\x48\x7b\x7a\x3e\x70\x54\x3e\xa7\x4e\xc6\xf9\x7b\xce\ +\x37\xc4\xb5\x47\xfc\x88\x61\x20\x80\x8b\xcc\x21\x1e\xae\x0b\x3d\ +\x41\x2a\xc5\x9e\x06\x1f\x58\x58\xb4\x64\xd4\xe3\xd4\x43\x8a\x22\ +\x5a\x4b\xfa\x89\xb4\xd1\x1e\xad\xa6\x1e\xc6\x98\x23\xb3\x5a\x01\ +\x57\xfd\xe4\xc2\xad\x94\x98\x2b\xd9\x77\x85\x87\x10\x61\x5c\xe2\ +\xab\xaf\x88\x26\x43\xe8\x84\x93\x46\x37\xae\xbf\x94\x10\xbf\xe4\ +\x14\xac\xac\xf5\xe6\x6d\x53\x07\xd9\xaa\x61\x85\xc0\x5c\x68\x81\ +\x29\x67\x0d\x2b\x44\xb4\x87\x19\x36\x2e\xb5\x6d\x85\xb6\x69\x27\ +\xad\xb4\x60\x85\x08\xf3\x30\x91\x8c\xc8\x7d\x84\x52\x0a\x03\x61\ +\xc1\x88\x31\x98\x2e\xf2\x98\x54\x82\x48\x2c\xae\xf6\x14\xfd\xd7\ +\x44\x94\x9e\x7a\xf2\x78\x09\x8a\xb3\xc8\xed\x6b\x22\xca\x4e\xed\ +\x26\x7e\x5b\x88\x76\x08\x9f\x65\xa7\x25\x20\xaa\x43\x7e\xf8\x72\ +\xa2\xee\xe4\x06\x02\x9b\x72\x2f\xa7\x73\x47\x00\x8d\x4f\xb7\xc8\ +\x20\xba\x38\xcb\x3e\xf5\xe9\x11\x8b\xae\xa2\x9b\xb3\x6c\x16\x62\ +\x38\x3b\x18\x25\xf1\xa2\xb3\xbc\x3f\x4a\xaa\x8b\x2e\xa9\xb1\xd0\ +\x47\x2c\x27\xaa\x6e\xba\x34\x99\x8c\x27\xe4\x70\x5d\xd2\x87\xea\ +\xd2\x51\x5e\x8b\x35\xe7\xb7\x7a\x2d\xba\xa3\x0d\x33\x4e\x06\xc3\ +\x9e\xe0\x14\xa1\xda\x82\xe4\x4e\x06\xf5\xc0\xf7\xe7\xbc\xde\xc9\ +\xcc\x9d\x0c\xe1\x29\x4a\xb1\xdc\x70\x32\x2a\xda\xee\xe6\xc6\xb0\ +\xb4\xbf\xd0\xb8\x34\xd7\xc1\x6b\x9a\xa2\xdb\xee\xc5\x84\x9b\xeb\ +\xe0\x35\x4d\xa1\x4f\x36\x90\x30\xee\x32\x90\x8e\x43\xc9\xec\x94\ +\x9c\x0f\x25\x7b\xaf\xe4\x68\x94\x48\x17\xa3\x7c\x24\x4a\xa4\xe3\ +\x0a\xc6\x91\x28\x9d\xce\x28\x63\x8a\xcf\x87\x12\xa5\xe7\x44\x89\ +\xf2\x13\xa2\xa4\xce\x87\x12\x43\xe7\x44\x89\xbd\xb8\xab\xfa\x25\ +\xdc\x6f\x29\x5c\xd9\x98\xbc\x36\x1c\x70\xa4\x4f\xb7\x93\xe0\x12\ +\x4f\x48\x8c\x18\x22\xe0\x85\x2b\xc2\x40\xe5\xa9\x89\xb7\x15\x46\ +\x58\x41\xe4\x0d\xd9\x1c\x09\xac\x54\x9f\x20\xe9\x21\x4d\x4c\x9a\ +\xf2\x24\x4c\x6d\x1a\x37\x3d\x74\xa6\x3c\xae\x38\x27\xcd\x15\x33\ +\x6c\xe6\x41\xa4\x50\x3d\x1d\x4f\x5a\x69\x27\xad\xb4\xa5\x87\x8e\ +\x98\x44\xec\x20\x0f\xdd\x40\x79\xbe\x2d\x2e\xb7\xdb\x7c\x70\xec\ +\x26\x97\x7b\xe8\xa6\xff\x91\xeb\x41\x6e\x73\xb9\x76\x83\x00\x9d\ +\x72\xb9\xf6\xbc\x2b\x42\x35\xd0\x3b\x56\x84\xba\x6c\x40\xbb\x5d\ +\xa6\xd8\xa3\xb7\xa0\xdd\xae\xdb\x04\x47\x6e\x42\xbb\x2f\xba\x6c\ +\xa7\x37\x8d\xf9\xd1\x94\xdd\x86\x91\x61\xc2\x1b\x16\x89\x13\x8f\ +\x72\xb0\x33\xaa\x61\x91\x18\xf7\x08\xd7\x9a\xca\x86\x45\xda\xa6\ +\x9d\xb4\xd2\xa6\xb9\x99\x82\xf0\x8b\x50\xba\x8f\x7d\x05\xeb\x45\ +\x25\x51\x92\xf6\x89\x27\x91\x22\x92\xe5\xda\xcb\x31\x04\x12\x46\ +\x7b\xa1\x59\xcc\x14\x97\xac\x4f\xa9\xf6\xcc\xa6\xa6\x02\x3d\xe7\ +\x8c\x80\x81\x25\xdd\xd6\xd7\x6e\x06\xe6\x60\x74\x7e\x57\xed\x1b\ +\x98\xf3\xd9\xc1\x7d\x14\x3e\xbc\xa9\x40\xbb\xf5\xab\xa1\xb7\xf0\ +\xa7\x61\xae\x10\x00\x75\x61\xfb\xca\x8c\xdb\x24\x0d\xc2\x74\x9d\ +\x25\xf2\x5f\x23\xab\xd4\x99\xe2\x25\x84\x37\x4d\xc9\x9a\x5a\xab\ +\x7c\xd4\x9e\xbf\xbc\xf3\x83\xe4\x01\xac\xfb\x66\xe6\xe7\x24\x01\ +\xf4\x30\x06\x58\xa8\xac\x22\xad\x5a\x6b\xcc\x76\x8b\xc1\x9f\x29\ +\xa2\xb7\x32\xcd\x2a\x0f\xf1\x88\xc0\x26\xa2\xd8\xcc\x5c\xa5\x29\ +\x00\xe8\xce\xfc\xa7\x10\x98\xca\xff\xac\x95\x7b\x79\x97\x3c\x4c\ +\x53\x03\x4e\x96\xae\xc2\xcd\x92\x41\x32\x5e\x99\x17\x1c\xdc\x55\ +\x01\x7e\x79\xac\xde\xa2\x30\x65\xdd\xdb\xdb\xe4\xb1\xbd\x82\x87\ +\x28\x06\x66\xdd\xf2\xa0\x3e\xa6\x62\x0b\x92\x92\x62\x7d\x74\x5f\ +\xe2\x2d\xc6\x4b\x8a\xc7\xda\x02\x6c\x66\x3d\xed\xce\x9a\xfb\x8f\ +\xd1\x3c\xfa\x1c\x06\x66\x3c\x97\xca\x32\x0f\x33\x3f\xf0\x33\xbf\ +\x56\x8c\x75\x0a\x91\xd5\xc2\xd6\x4d\x1a\x4c\x86\xff\xfa\xe9\xe7\ +\xca\xb0\x8c\xc7\xc3\x7f\x27\xe9\xa7\xda\x26\x18\x02\xff\x36\x59\ +\x41\xaf\x2b\x73\x67\x0e\xec\x8f\x87\x66\x1c\xf8\xd9\xfb\x68\x0e\ +\xe2\x36\x6f\x58\xfc\xfd\x71\x3e\x03\x15\xad\x32\x1a\xc4\x66\x7f\ +\xab\xae\xb4\xa8\x36\x0d\x8b\x37\x28\x5a\x5f\x3a\x09\xc6\xf3\xc8\ +\x14\x1a\xfc\x9e\x45\xb3\xd9\x2f\xa6\x11\xcb\x00\x96\x95\x46\xd9\ +\x2c\x7c\x9f\xb7\x59\xdc\xae\xb9\x18\x94\x6c\xac\xed\x97\xc5\xe5\ +\xcd\x60\x0d\x43\xfe\x34\xad\xe1\x69\x68\x4c\x85\xf0\xcc\xbc\xfa\ +\x60\xde\x80\x80\x4c\x67\x2b\x77\x9a\x26\xab\xc5\x3c\x09\xc2\xb2\ +\xf8\x1a\xd6\xa9\x6d\xc5\xa6\x14\x59\x4b\xaa\xd6\x79\xd1\xfa\x90\ +\xa8\x8b\x3c\x21\x34\x01\x2f\xc8\xac\x90\x72\x98\xac\x08\x18\x87\ +\x8a\x9f\x69\x0d\x5d\x6b\x71\xd2\xb7\x4c\x49\xe3\xe0\xed\xf0\xad\ +\x22\xe6\xba\xce\x4f\xe1\xd6\x33\xc1\xfa\xc4\x7a\x99\x5b\x9e\xbc\ +\x6d\x73\x52\x0a\x0e\x60\xa2\xb4\xc5\x9f\x82\x65\xb7\xc5\x69\x4c\ +\xa9\xa7\xb8\x00\x8f\xda\x3e\x8e\x06\xd6\x3e\x9f\xa8\x95\xd4\x0a\ +\x91\x46\xc6\x7a\x28\x80\xa7\x28\x25\xf0\x8e\x1b\xb9\xe5\x50\x62\ +\xd2\xd3\x8a\x08\x6b\x31\x67\xdd\x23\xd3\x01\xe8\x54\xb3\xb1\x13\ +\xf0\xdd\x50\xb1\xe6\x29\xe7\xc6\xdc\x16\xc7\xd0\x81\x24\x75\xc1\ +\xea\xdc\xfb\xd9\x2a\x0d\x9b\x33\xb7\x7d\x04\x9e\xc8\x46\x86\x19\ +\x88\x0e\xd8\x3f\x94\x3b\x2f\x7d\x80\x4d\xe4\xe7\x95\x1d\xd4\xe7\ +\x0c\xe6\x0d\x70\x80\x98\x3e\x0d\x5b\xe5\x0b\x08\x8b\x47\xfb\x64\ +\x35\x30\x30\xbc\x5d\x65\xd9\xd6\x69\x6b\x18\x6f\x61\x7a\x1e\x44\ +\xf4\x36\x22\xdc\xa3\x5a\x4b\xf0\xf3\xfa\xe0\xac\x81\xb7\x27\x14\ +\x76\xcc\x1d\x4c\x03\x10\x48\xf4\xd1\x65\x23\x42\x71\x8b\x8e\x28\ +\x4f\x30\xac\x91\xb0\x10\x41\x7d\xea\x11\x9c\x1f\xab\xbd\x6c\x3c\ +\xe8\x36\x1e\xc6\x2d\xa0\xe6\xca\xf1\xa0\x8a\x6a\xf6\xfd\xe0\xc1\ +\xb7\xf1\xa0\x60\x2d\x20\x0c\x41\xda\xe0\x61\x06\x15\xd5\xdf\x0f\ +\x1e\x2d\x36\x95\x91\x1c\x0f\xbc\x86\xe3\x3b\xd2\x8e\x36\x7b\x8a\ +\x36\xb4\xe3\xfb\x81\x83\xb5\x19\x53\xdc\x87\x58\x8f\x19\x40\xb0\ +\xe3\xd2\x12\x1b\x7c\xe9\xf3\x0a\x6b\xb1\xa3\xe0\x8f\x69\x29\x09\ +\x44\xac\x54\x42\x14\xa6\xe0\xaa\x11\x61\x17\x8f\x48\x8b\x25\x35\ +\xde\x18\x21\x10\xc5\xf7\x09\x84\xe8\xd2\x5c\xdf\x13\x22\x3b\xfc\ +\x53\x83\x88\xec\x13\xbc\x89\x88\x52\x17\x8f\x48\x8b\x3d\xad\x47\ +\x0d\xa6\x7f\x19\x1d\xb9\x19\x4c\xab\xdb\x66\xc8\xb6\x23\x60\xdb\ +\x11\xae\x3d\x17\xac\x3d\x13\xaa\x55\x81\x1a\xd2\xca\x4a\xb6\xd1\ +\x81\x88\xff\xdd\xdb\xed\xfd\x8f\xab\x1d\x70\xc5\x49\x6c\x2f\x03\ +\xd8\x81\x71\xb5\x08\x5a\xe0\x7a\xcb\xcc\xb5\xf9\xaa\x29\x2b\x5e\ +\x61\x5a\xd7\xe7\xe6\x08\xce\x22\xf8\x33\x64\x5b\x40\xae\x13\x02\ +\x7f\x79\xe7\xa7\xa9\xff\x54\x34\xbf\x11\x1a\x33\xcc\x1a\xa1\xf1\ +\xb4\x45\x11\xce\xd9\xa9\x75\xb7\x90\x44\x56\xb7\x5a\xc6\x46\xb7\ +\xd1\x51\x8f\x0f\xe8\x2e\xde\xc8\xaa\xe2\x15\xe3\x9f\xb3\xdc\xe3\ +\xc8\x6f\xc1\xe5\x70\xcd\x56\x10\x33\x17\xdd\x28\x64\xab\x81\xe1\ +\xe1\xba\x1b\x4a\xfb\x8f\x8c\x43\xf0\xb4\xad\xca\x89\xb1\x73\x45\ +\x1b\x7a\x10\xdd\x70\xc0\x08\xa9\x3c\xba\xc1\x1c\xe2\x3d\x1b\xbd\ +\x0d\x87\xf7\x7b\x46\x4f\xb7\xc1\x67\x82\x21\x82\x28\x16\x85\xbb\ +\x0b\x84\xb4\xa1\x7c\xea\x15\xbe\x12\x3e\xb7\x15\x3f\x08\x9e\x20\ +\xa4\x26\xc5\x5a\x03\xc3\x9a\x37\xe0\xa3\xaf\xf0\xd5\xf0\xb9\xad\ +\xd6\xcf\xc4\x5b\x02\x73\x52\xac\x5f\x09\x18\xbf\xec\x32\xc6\xaf\ +\xe5\x43\x7c\x43\xb3\x1b\xa6\xe2\x4b\xcd\x6e\x72\x53\x54\x95\x47\ +\xcc\x84\x92\xdc\xc4\x91\x44\x28\x45\xb0\x03\x3e\x8f\x89\x9e\x14\ +\xe9\x6f\xd6\xf6\x97\x91\xee\x89\x91\x6b\x1f\x1b\x06\x3b\x81\x95\ +\xd6\x26\xe2\x24\x8a\xc2\x44\xf7\x8a\x5d\x0b\x76\x9b\x56\xb6\x02\ +\x8f\x9a\x5d\x84\x32\x38\x25\x88\xbf\x82\xd7\x02\x9e\xbb\x99\x5d\ +\x0f\x5b\xa5\x39\xce\x03\x59\x25\x34\x55\xaf\xe8\xb5\xa2\x67\x1d\ +\xfa\xd9\xc0\x4f\x22\xae\x55\x11\xf6\x0a\x7c\x19\xf8\xd9\x81\xb1\ +\x75\x6b\xcd\x6e\x65\x10\x85\x64\xef\xe4\xcb\x0b\x78\x6b\xc1\xe5\ +\x57\x07\xd0\xc5\x98\x50\x0a\xc1\x13\x4c\x2f\x92\x52\x81\x1d\x02\ +\x38\x53\x8c\x19\xeb\xe7\x77\x02\xec\xa6\x63\x0c\xa8\x20\xe0\x68\ +\xf4\xa9\x80\x3b\xc9\xb1\x72\x38\xd8\x05\xa3\xd8\x7d\xe9\xc1\x04\ +\x45\xd1\x86\xaf\xb1\x53\x28\xad\x4b\x0f\xe5\x11\x2c\xc6\xbe\xe0\ +\xaa\xcc\xae\x1e\xe5\x8b\x01\xdb\xa7\xcd\xae\xbe\x4c\x17\xb7\x65\ +\x80\x2b\x19\xd0\x4a\x06\xbc\x92\x01\xaf\x64\xc0\x2b\x19\xb0\x4a\ +\x06\xb2\x94\x01\x6f\x95\x81\xf5\x41\xb4\x8d\x8c\x17\x34\xa8\x7d\ +\x2d\x67\x53\x4f\xa9\x16\xea\x39\x3d\xdd\xa9\x02\xad\x1f\xac\x3b\ +\x29\xac\x1d\xf7\xba\x2b\xa0\x9a\x1f\xee\xeb\x02\xd4\xb7\xc6\x7f\ +\xa7\x9d\x6d\x8b\x7f\x76\x21\xfc\x77\xd8\xc7\xb6\xb8\x17\x17\xc2\ +\x7d\x87\x5d\x6b\x9b\x7b\x97\x5f\x08\xff\x1d\x76\xa9\x1b\xfc\x5f\ +\xca\xe8\xdf\x7b\x57\xba\xc1\x3d\xbd\x10\xee\xf7\xdf\x85\x6e\x2a\ +\x3f\xbe\x10\xfe\xf7\xdb\x76\xae\x79\xe7\x87\x7a\x07\xdf\x1c\xe3\ +\x5d\x36\x99\x6d\xfe\x2f\xc6\xf0\x75\xda\x54\x6e\x20\x80\x2e\x0c\ +\x81\xbd\x36\x91\x1b\x08\x5c\xcc\xf0\xef\xb2\x69\xdc\x40\xe0\x50\ +\xf7\xa7\x8a\x12\xea\x9b\xe6\x59\x64\x66\x7f\x92\xb9\xf5\x30\x31\ +\x48\x4d\x53\xae\x09\x31\x5f\xbc\x35\xaf\x8e\x49\xd1\x7e\x14\x79\ +\x5d\x9f\x3d\x62\xb3\x96\x57\x7c\xa0\x3a\x8c\xb5\x5e\x7f\x0a\xa2\ +\x7c\x72\x99\x67\xce\x3d\x72\xc9\xfb\xae\xf4\x18\x21\x4a\x2b\x76\ +\x75\xea\x68\x9b\x6d\x06\x5c\xc5\xa4\x2c\x3c\xb3\x92\x4b\x95\x47\ +\x38\x4c\x48\x78\xcf\x80\xb9\x4d\x65\xcc\xa7\xa6\x8a\xdf\x59\x56\ +\x31\xae\x8b\xef\x07\xbb\xf9\xf7\x9a\x8b\x80\xd9\xfa\x5c\xfa\xd5\ +\x3a\x3b\x8c\x83\x66\xa6\xf9\x90\xfd\xd5\xe9\xcf\x4a\x30\x8d\x5a\ +\xce\x4a\x00\xbc\x9a\x16\xf8\x2a\x5c\x20\x0c\x41\x90\xdc\x7d\x58\ +\xfb\xe5\x81\xe9\xc9\x22\x99\x9f\x7b\xad\x68\x47\xd8\xbd\xad\xe7\ +\x0d\xdd\xb6\x95\x5e\x4b\x4f\x73\x84\x35\x35\x7a\xce\xb9\xe6\xd4\ +\xe8\xf9\xd6\x30\xc2\xf8\x64\x11\xfc\x5f\x4a\x27\x3b\x0e\xce\x5a\ +\xf3\xf0\x57\x73\x92\xcf\xac\x8c\x87\x8d\x2f\x0b\xa8\x43\x5d\xaa\ +\xcd\xc9\x24\xff\x73\x63\xde\xf5\x79\xff\xe6\xff\x79\x76\x53\x9e\ +\ +\x00\x00\x0e\x62\ +\x00\ +\x00\x6b\xef\x78\x9c\xed\x5c\x5b\x73\xdb\x36\x16\x7e\xcf\xaf\xe0\ +\x2a\x2f\xc9\xac\x08\xe1\x7e\x51\xec\xf4\x61\x3b\xed\x74\x66\x77\ +\x76\x66\xdb\xce\x3e\x76\x68\x89\x94\xb5\x95\x45\x0d\x45\xc5\x76\ +\x7e\xfd\x1e\x40\xbc\x80\x14\x65\x8b\x92\xec\xa4\x4a\xc4\xa6\xa6\ +\x80\x03\x02\xf8\x70\x70\xae\xa0\xae\x7e\x78\xb8\x5b\x04\x9f\xe2\ +\x6c\x3d\x4f\x97\xd7\x03\x82\xf0\x20\x88\x97\x93\x74\x3a\x5f\xce\ +\xae\x07\xbf\xff\xf6\x53\xa8\x07\xc1\x3a\x8f\x96\xd3\x68\x91\x2e\ +\xe3\xeb\xc1\x32\x1d\xfc\xf0\xf1\xcd\xd5\xdf\xc2\x30\xf8\x47\x16\ +\x47\x79\x3c\x0d\xee\xe7\xf9\x6d\xf0\xcb\xf2\xcf\xf5\x24\x5a\xc5\ +\xc1\xbb\xdb\x3c\x5f\x8d\x47\xa3\xfb\xfb\x7b\x34\x2f\x0a\x51\x9a\ +\xcd\x46\xef\x83\x30\xfc\xf8\xe6\xcd\xd5\xfa\xd3\xec\x4d\x10\x04\ +\xd0\xef\x72\x3d\x9e\x4e\xae\x07\x45\x83\xd5\x26\x5b\x38\xc2\xe9\ +\x64\x14\x2f\xe2\xbb\x78\x99\xaf\x47\x04\x91\xd1\xa0\x26\x9f\xd4\ +\xe4\x13\xdb\xfb\xfc\x53\x3c\x49\xef\xee\xd2\xe5\xda\xb5\x5c\xae\ +\xdf\x7a\xc4\xd9\x34\xa9\xa8\xed\x68\xee\x99\x23\x22\xc6\x98\x11\ +\xa6\x23\x4a\x43\xa0\x08\xd7\x8f\xcb\x3c\x7a\x08\x9b\x4d\x61\x8c\ +\x5d\x4d\x29\xc6\x78\x04\x75\x35\xe5\x61\x54\xe3\x87\x05\x40\xb1\ +\x77\x30\xae\xd6\xef\x1d\xe0\x5f\xc1\xbf\xaa\x41\x59\x80\xd6\xe9\ +\x26\x9b\xc4\x09\xb4\x8c\xd1\x32\xce\x47\x3f\xfe\xf6\x63\x55\x19\ +\x62\x34\xcd\xa7\xde\x63\x4a\xf4\x1b\xfd\x36\x96\x64\x19\xdd\xc5\ +\xeb\x55\x34\x89\xd7\xa3\xb2\xdc\xb5\xbf\x9f\x4f\xf3\xdb\xeb\x81\ +\xe4\xab\x07\xf7\xfd\x36\x9e\xcf\x6e\x73\xaf\x60\x3e\xbd\x1e\xc0\ +\x0c\xa9\x52\xd4\x7d\x2f\xc7\x30\xae\x38\x09\x23\xb6\xad\x2a\x1f\ +\xec\x57\x71\x8d\x18\x22\x41\x66\xb4\x96\xcd\xf6\xd3\x74\x62\x07\ +\x75\x3d\xf8\x67\x74\x13\x2f\xd6\xa8\x84\xb1\x7a\x4a\xba\xc9\x57\ +\x9b\xfc\x8f\xf8\x21\x8f\x97\xdb\xc7\xc1\x44\xbc\x59\xb9\x6a\xdb\ +\x0c\x35\x66\xe4\x71\x38\x19\x7c\x84\x92\xab\x69\x9c\xac\x6d\xcd\ +\x76\x32\xf6\x1b\xcc\x86\xbb\x3a\xa8\x85\x15\x89\xa3\xec\xe7\x2c\ +\x9a\xce\x81\x0f\xb7\x74\x5b\xca\x66\x0d\xd3\x06\x17\x6d\xa0\xd5\ +\x3a\x4f\x57\x25\x2d\x4c\x2a\x7f\x5c\xc0\x4c\x6c\x61\x38\x49\x17\ +\x69\x36\x7e\x9b\x24\x13\x29\xd4\x07\x57\x94\x02\xf0\xf3\xfc\x71\ +\x4c\x3e\x0c\xea\x36\x69\x92\xac\x63\x40\x1a\x7b\x65\x0e\x6c\x68\ +\x01\x7d\xd1\x41\x30\x3a\xbc\xb7\x9b\xa9\x9a\x62\x7c\x40\x6f\xa4\ +\xbb\x37\x5e\xf5\x76\x35\x6a\x4e\xbb\x37\x4a\x4a\xf4\x42\xc9\x7e\ +\x8e\x46\x49\xa9\x5e\x28\x45\x89\xbd\x8e\x46\x49\xd3\x73\xa1\xc4\ +\x09\x31\xaf\x85\x12\x27\x94\xf4\x42\x69\x42\xec\x75\x24\x4a\xd0\ +\x1b\x3b\x1f\x2f\x11\xda\x03\x25\xec\x3e\x47\xf3\x12\xe1\xfb\x51\ +\xaa\xa9\x28\xee\x7a\x20\x12\x83\xde\x43\xc3\x48\x53\x86\x95\x34\ +\x1f\x7a\xad\x4e\xe7\xa3\x0e\xe7\x61\x22\xcf\xb6\x3a\x06\xf7\xe1\ +\x61\x19\x9f\xb2\x3a\x86\xf4\xe3\xe1\x24\x39\xb0\xb7\x4e\x94\x0c\ +\x39\x23\x0f\x2b\x79\xea\x4e\x3f\x5c\x1c\xea\x5e\x20\xc5\xd4\x5e\ +\xcf\x77\xb6\x47\x1a\xe2\xe7\x30\xb2\xdf\xa2\xc5\x0e\x46\xa5\x7e\ +\x87\x51\x2c\xe2\x09\x3c\x3f\x5a\xdc\x47\x8f\xeb\xaa\x13\x67\x23\ +\x8d\x6f\xb3\x18\x6c\xba\xb7\x2d\x34\x09\xe7\x03\x1f\xec\x66\x17\ +\x94\x92\x1a\x98\x59\x51\xf8\xfb\x72\x9e\x83\xf1\xb6\x59\xc7\xd9\ +\xaf\xd6\x00\xfa\xf7\xf2\xf7\x75\xbc\x43\xf5\x5b\x16\x2d\xd7\x60\ +\x6d\xdd\x5d\x0f\xee\xa2\x3c\x9b\x3f\xbc\x23\x43\x6c\x2f\x24\x8d\ +\x16\xd4\x70\xb8\xa7\x98\xc2\x9e\xd5\x92\xbd\xaf\x9a\x4f\x1e\xae\ +\x07\x94\x0a\x44\x25\xc7\xb4\x2e\x7d\x04\x03\x4a\x51\xa4\x8c\x62\ +\xb2\x2a\x4d\x3a\x69\x93\x4e\xda\xec\x7a\xc0\x38\x62\x5c\x10\x5d\ +\xaf\xe9\x97\x00\xd4\x1b\xe9\x77\x40\xcf\x00\x28\x31\xfc\x92\x01\ +\xdd\x23\x16\x9f\x03\xb4\x43\x6e\x5a\x1c\x5f\xcb\x8e\x24\x5c\xf6\ +\xd4\x2e\xbb\xbd\x1d\xae\x83\x09\xd7\x5f\x9f\xe4\x24\xe6\xa2\x37\ +\x7a\x05\xdd\x0a\xbc\xc3\x15\x60\x37\xff\x14\x97\x2d\x2a\x8f\x34\ +\x7f\xb4\x1e\x74\x93\x94\x4d\x07\x3b\xf0\x7f\x5a\xfd\x01\x03\xc2\ +\xc1\x38\x60\x14\xfe\x47\x3a\x29\x1e\xb7\x14\x04\xcc\x10\xf8\x83\ +\x3b\x69\x3e\x5b\x3f\xfb\x89\xc7\x14\x23\x08\xd3\x6c\x3e\x9b\x83\ +\x47\xeb\xe8\x28\x41\xcc\x7d\x9a\x6d\x60\x49\xbd\xb9\x51\xe5\xab\ +\xe7\x23\x77\xe5\x53\xec\x64\x8d\xbf\xa7\x6c\x43\x52\x5b\xc4\x0f\ +\x04\x36\x02\x98\xc8\x02\xfc\xe1\xba\xd1\x23\x94\x32\x82\x0c\xd8\ +\xc0\xd2\xa3\xa5\xd7\x03\xc1\x10\xd6\x0c\xb3\x7a\xa5\x1f\x69\x17\ +\xed\xc9\x6c\x8a\x08\x21\x02\x1b\xe1\xd8\xb5\xfe\x16\xc2\xad\x52\ +\x44\x68\x35\x0c\x25\xc2\x98\x72\xa1\xc8\xfb\x2f\x88\x26\xc7\xf8\ +\x8c\x4a\xa3\xdf\xac\x5f\x6a\x11\x5f\x52\x05\x5b\xb7\x71\xbf\xa8\ +\x83\x6a\xdd\x90\x42\x20\x2e\x8c\x24\x4c\xf0\x86\x14\xa2\x06\x11\ +\x4e\xac\x49\xed\x4b\xa1\x5d\xda\xa4\x93\x16\xa4\x10\xe5\x88\x50\ +\xc5\xa9\x3a\x58\x62\x12\x84\x89\xe4\xd4\x0a\xcc\x10\x23\xae\xb4\ +\xa4\x8a\xc8\xf7\x07\x2e\xfd\x97\x44\x94\x9d\x5b\x79\x3c\x07\xc5\ +\xab\xac\xdb\x97\x44\x94\x9f\xdb\x4c\xfc\xba\x10\xed\xe1\x3e\xab\ +\x5e\x21\x20\x66\x62\x71\x7c\x38\xd1\xf4\x32\x03\x61\x9a\xea\x20\ +\xa3\x73\x8f\x03\x4d\xce\x17\x64\x90\x7d\x8c\xe5\x88\x45\xec\x84\ +\xa0\xab\xec\x67\x2c\xdb\x40\x8c\xe0\x47\xa3\x24\x9f\x35\x96\x0f\ +\x47\x49\xf7\xe1\x25\x3d\x91\xe6\x84\x70\xa2\xee\xc7\x4b\x49\x32\ +\x49\xe8\xf1\xbc\x64\x8e\xe5\xa5\x93\xac\x16\x4f\xe7\x77\x5a\x2d\ +\xa6\xa7\x0c\xb3\x46\x06\x27\x48\x0a\x86\x71\x2d\x41\x9c\x91\xc1\ +\x10\xd8\xfe\x42\xb0\xa6\x91\x21\x91\x66\x8c\xa8\x96\x91\x51\xd1\ +\xf6\x17\x37\x76\x4a\x87\x2f\x9a\x50\xf6\x3a\x3a\xa6\x29\xfb\x65\ +\x2f\x12\x61\xaf\xa3\x63\x9a\xd2\x9c\x6d\x23\x11\xd2\x67\x23\x9d\ +\x86\x92\xcd\x94\xbc\x1e\x4a\x7e\xae\xe4\x64\x94\x68\x1f\xa1\x7c\ +\x22\x4a\xb4\x67\x04\xe3\x44\x94\xce\x27\x94\x09\x23\xaf\x87\x12\ +\x63\xaf\x89\x12\x13\x67\x44\x49\xbf\x1e\x4a\x1c\xbf\x26\x4a\xfc\ +\xd9\xac\xea\x4b\x98\xdf\x4a\x86\xaa\xa1\xbc\x5a\x06\x38\x36\xe7\ +\xcb\x24\x84\x14\x49\x45\x30\xc7\x14\xac\x70\x4d\x39\xb0\x3c\xb3\ +\xfe\xb6\x26\x98\x68\xf0\xbc\xa1\x5a\x60\x49\xb4\x1e\x52\xac\x10\ +\x36\xd4\x96\x69\xa4\x40\xb5\x19\xd2\xb4\xd0\xb9\x46\x42\x0b\x41\ +\x9b\x11\x33\x62\xf5\x20\xd6\xb8\x56\xc7\x49\x27\x6d\xd2\x49\x5b\ +\x58\xe8\x98\x2b\xcc\x8f\xb2\xd0\x2d\x94\xaf\x97\xe2\x0a\xfb\xe9\ +\x83\x53\x93\x5c\xe1\xb1\x49\xff\x13\xe3\x41\x61\x33\x5c\xdb\x22\ +\xc0\xe7\x0c\xd7\xbe\x6e\x44\xa8\x06\x7a\x4f\x44\xa8\x4f\x02\x3a\ +\xec\xa3\x62\x4f\x4e\x41\x87\x7d\xd3\x04\x27\x26\xa1\xc3\x67\x4d\ +\xb6\xf3\x8b\x46\x77\x34\x65\xbf\x60\xe4\x84\x8a\x86\x44\x12\x14\ +\x31\x01\x72\x46\x37\x24\x12\x17\x88\x0a\x63\x98\x6a\x48\xa4\x5d\ +\xda\xa4\x93\x36\x73\x62\x0a\xdc\x2f\xca\xd8\x21\xf2\x15\xa4\x17\ +\x53\x54\x2b\x36\xa4\x48\x61\x4d\x15\x77\xdc\x2b\x08\x38\x12\x96\ +\x7b\xa1\x5b\xc2\xb5\x50\x7c\xc8\x98\x41\x36\xa9\xa9\x81\xcf\x05\ +\xa7\x20\x60\xe9\x57\x11\x5f\xf3\xb4\x4d\x87\x32\x32\xbd\x3d\xa9\ +\x27\xc0\x22\x88\x53\x01\x8f\x94\x36\x0e\x04\xda\x81\x31\x2e\x0c\ +\xc0\xc1\x41\xb6\x0a\xc0\x8d\x23\x2c\x41\x2f\x71\x3a\x14\x02\x31\ +\x29\x09\x50\x52\xbb\x72\xb4\x95\xbd\x11\x18\x29\x62\x04\xa3\xed\ +\x95\x07\x23\x1a\xb7\xa2\x45\xbb\xb4\x49\x27\x2d\xac\xbc\x44\x8a\ +\x63\xc5\xd4\x0b\xc7\x88\x95\x78\x12\x71\x42\xce\x86\x38\x43\x9a\ +\x4b\x2d\xa9\x71\x3a\x1f\x4b\xcd\x01\x66\x0a\xc2\x50\x03\xff\x0d\ +\x39\xe2\x80\x3f\x87\xd5\xa0\xdc\x00\x48\x42\x00\xc3\x1a\x8e\x40\ +\xac\xd2\x76\xbe\x0c\x08\x0c\x67\x00\x4e\x03\x71\x58\x1b\x58\x45\ +\x6d\x9a\xf9\xb2\x5d\xda\xa4\x93\x16\x10\x17\x08\x83\xaf\x62\x4c\ +\x69\xd4\x5f\x8d\xec\x19\x49\x77\x57\xe5\xc6\xec\x51\xcd\xe9\xa7\ +\x79\x7c\xff\xa6\x82\xec\x26\xaa\xa6\xbf\x8a\x66\xb1\x13\x7a\x00\ +\xf4\x56\xbf\x17\x15\x37\x69\x36\x8d\xb3\xb2\x4a\xba\x4f\xa3\xaa\ +\x90\x8b\xdb\xf3\xc8\x6f\x9a\xeb\x6a\x9f\x5a\xd5\xe3\xee\xfa\xf5\ +\x6d\x34\x4d\xef\xc1\x82\x69\x57\x7e\x4e\x53\x58\x02\xde\x2e\x76\ +\x61\x4e\x64\x14\xf0\x77\x15\x99\xaf\x2b\xb7\xf6\x91\x01\xcf\x9c\ +\x89\x9d\xca\x4d\x96\xc1\xfa\x86\x8b\xe8\x31\x86\xc9\xb8\x3f\x25\ +\x93\xac\x6f\xd3\xfb\x59\x66\x41\xc9\xb3\x4d\xdc\x6e\x39\x4d\x27\ +\x1b\x7b\xc6\x39\xdc\x6c\x39\xa8\x38\x59\xeb\x51\xd8\xb6\xe1\xcd\ +\x4d\xfa\xd0\xfd\x80\xfb\xf9\x12\x26\x19\x16\x67\x75\x09\x93\x3b\ +\x50\x14\x14\xe5\xe9\x5d\x55\xa5\x38\xda\x14\x0f\xb5\x76\x6b\x57\ +\x3d\xee\xaf\xba\x8b\x1e\xe6\x77\xf3\xcf\xf1\xd4\xea\xaa\x82\x49\ +\xee\xe2\x3c\x9a\x46\x79\x54\x33\x44\x59\x42\x55\x15\xb4\xbd\xca\ +\xa6\xc9\xf8\x3f\x3f\xfe\x54\x29\xcd\xc9\x64\xfc\xdf\x34\xfb\xb3\ +\xd6\x77\x96\x20\xba\x49\x37\x30\xea\x4a\x95\xdb\x33\xbb\x93\xb1\ +\xdd\x44\x51\xfe\x71\x7e\x07\xcb\x6c\x0f\x59\xff\xfd\xe1\x6e\x01\ +\xac\x59\x55\x34\x88\x6d\xee\xb6\x7e\xe8\xf6\xb1\x59\xbc\x3d\x44\ +\xdd\x79\xee\x7c\x3a\xb9\x9b\xdb\x46\xa3\x5f\xf3\xf9\x62\xf1\x8b\ +\xed\xc4\x53\xee\xc5\x43\xe7\xf9\x22\xfe\xe8\xfa\xdc\xde\x96\xb3\ +\x18\x15\xd3\x28\x75\xb3\x37\xcb\xab\x51\x09\x83\xfb\x36\xab\xe1\ +\x69\x70\x4c\x85\xf0\xc2\x9e\x7e\xb6\x87\xa0\xa1\x32\xd8\xa9\x9d\ +\x65\xe9\x66\x75\x97\x4e\xe3\xa2\x79\x09\xeb\xcc\x97\x5d\x33\x86\ +\xbd\x74\x41\x5e\x0b\x20\x77\xbb\x88\xf2\xf8\x1d\x88\x7a\x29\x0d\ +\x05\x0b\xdf\x49\x7d\x30\xc4\x28\x28\xbe\x6a\x3e\xb3\x1a\xba\xce\ +\xe6\x74\xe8\xa9\xc9\xca\xd6\x49\x00\xb8\xf1\x5b\x4d\xed\xf5\xc1\ +\x7e\xf1\xac\x9c\x75\x9e\xa5\x7f\xc6\x55\xed\xf6\x6b\xa7\x01\xbe\ +\x9d\x01\x18\x81\xfe\xf2\x67\x20\xcf\xfd\xe5\xb4\xca\x02\x69\x21\ +\xc1\x5b\xf4\x8f\x5a\x82\x8c\x77\x46\xa8\x56\x46\x7b\x27\x03\xec\ +\xa7\xdc\x0a\xe0\x05\x29\x05\x73\x27\x8d\xda\x62\x2b\x71\x85\x8c\ +\xa6\xd2\x53\xaf\xe5\x88\xec\x00\x60\x50\xcd\xce\xce\x30\xef\x06\ +\x8b\xad\xa2\xfc\xb6\xd1\x71\xad\xd1\x96\x4b\x18\x40\x9a\x85\x20\ +\x75\x3e\x45\xf9\x26\x8b\x9b\x56\x69\x91\xf0\x87\xf6\x30\x48\xd5\ +\xa8\xb0\x1b\x31\x20\x20\x4e\x9d\x61\x0e\xfa\x45\x83\x3a\x87\xff\ +\x02\x3c\x14\xa0\x56\xac\x71\xcf\xcd\x79\xa6\xe5\x50\x1c\x93\xd5\ +\x43\x59\x60\x95\x2c\x4c\x60\x7c\xb3\xc9\x73\xbf\xec\x7f\xe9\x7c\ +\x39\x86\xfd\x16\x67\xaf\x83\x88\xd9\x45\x04\x6c\x19\x63\x14\xf8\ +\x30\x43\x70\x44\xc0\x93\x91\x9a\x04\xf6\x4e\x53\x63\xcd\x1e\x7c\ +\xd9\x88\x30\xd2\xc1\x23\x1a\x49\x4e\xac\x21\x58\x23\x82\x87\x0c\ +\x51\xe2\x8e\x8c\x5f\x36\x1e\x6c\x17\x0f\x0a\x2e\x07\xb3\x97\xc3\ +\x83\x69\x66\xf8\xb7\x83\x87\xd8\xc5\x83\x81\xb4\x00\xcf\x03\x1b\ +\x8b\x87\xdd\x54\xcc\x7c\x3b\x78\x74\xc8\x54\x4e\x1d\x1e\xa4\x84\ +\xe3\x1b\xe2\x8e\x2e\x79\x8a\x5b\xdc\xf1\xed\xc0\xc1\xbb\x84\x29\ +\x78\x72\x02\x71\x0b\x08\x09\x42\x56\x60\x43\x2e\x5d\xaf\xf0\x0e\ +\x39\x0a\xf6\x98\x51\x8a\x2a\x36\x64\x0a\x31\xa2\xe1\xaa\x11\xe1\ +\x17\x8f\x48\x87\x24\xb5\xd6\x18\xb8\x9b\x54\x0f\xa9\x41\xf0\x17\ +\xae\x6f\x09\x91\x3d\xf6\xa9\x45\x44\x0d\x29\x69\x23\xa2\xf5\xc5\ +\x23\xd2\x21\x4f\xeb\x5d\x43\xd8\x5f\x86\x47\xae\x46\xb3\xea\xb6\ +\xe9\xb2\xed\x71\xd8\xf6\xb8\x6b\x4f\x39\x6b\x4f\xb8\x6a\x95\xa3\ +\x86\x8d\xf6\x8a\x7d\x74\xc0\xe3\x7f\xf7\x76\x37\xb7\xf7\x7e\x0f\ +\x5c\xcb\x74\xe9\x87\x01\x7c\xc7\xb8\x0a\xf0\x6f\x71\xbd\xe1\xf6\ +\x6a\xe2\x8a\x41\x01\xb8\x4f\xf9\xbc\xd0\x21\xb8\x98\xc3\x9f\x31\ +\xdf\x01\xb2\x2c\x98\x46\xeb\xdb\x28\xcb\xa2\xc7\x6d\xf7\x2d\xd7\ +\x98\x13\xde\x70\x8d\x67\x1d\x8c\xf0\x9a\x83\x2a\x87\x85\x15\xf6\ +\x86\xd5\xb1\x37\xfa\xed\x8e\x7a\x7f\xc0\x70\x49\xab\xaa\xf2\x57\ +\xac\x7d\xce\x9d\xc5\xe1\x6e\xc1\xe4\x08\x6d\x9a\x93\xdb\x8b\xb5\ +\x1a\xf9\x6c\x60\xe7\xf0\xa1\x1f\x4a\x87\xef\x8c\x63\xf0\xf4\xa5\ +\xca\x99\xb1\x0b\x65\x17\x7a\xe0\xdd\x08\xc0\x08\x6b\xe7\xdd\xd8\ +\x30\x73\x03\xbd\x96\xc1\xfb\x2d\xa3\x67\xba\xe0\xb3\xce\x10\xc5\ +\x8c\xc8\xad\xb9\x0b\x84\xac\xc1\x7c\xfa\x3b\x7c\x05\x7c\x61\x27\ +\x7e\xe0\x3c\x81\x4b\x4d\xb7\xb1\x06\x6e\x53\x41\x0d\xee\xfb\x0e\ +\x5f\x0d\x5f\xd8\x29\xfd\xac\xbf\x25\x89\xa0\xdb\xf8\x95\x84\xfd\ +\xcb\x2f\x63\xff\x7a\x36\xc4\x57\xa4\xdd\x08\x93\x2f\xa5\xdd\x54\ +\x7b\xa9\x2a\x8b\x98\x4b\xad\x84\xf5\x23\xa9\xd4\x9a\x92\x00\x6c\ +\x1e\xeb\x3d\x69\x3a\x6c\x3f\xed\x2f\xb3\xba\x67\x46\xae\x7b\x6f\ +\x58\xec\x24\xd1\xc6\x58\x8f\x93\x6a\x06\x8a\xee\x3b\x76\x1d\xd8\ +\xb5\xa5\x6c\x05\x1e\xb3\x59\x84\xc2\x39\xa5\x58\x7c\x07\xaf\x03\ +\xbc\xb0\x5d\x5d\x6f\x5b\x6d\x04\x71\x8e\xac\x96\x86\xe9\xef\xe8\ +\x75\xa2\xe7\x1d\x68\x6b\xe1\xa7\xb0\x30\x7a\xeb\xf6\x4a\x72\x19\ +\xf8\xf9\x8e\xb1\x77\xeb\x69\xb7\xc2\x89\xc2\x6a\x70\xf6\xf0\x02\ +\xd9\x09\xb8\xfc\x2b\x00\x74\x09\xb1\x67\x7d\xec\xa9\x1e\xaa\x18\ +\x93\x24\xa0\x80\x33\x23\x84\xf3\xa1\xbb\x93\x20\x37\x03\x2b\x40\ +\x25\x05\x43\x63\xc8\x24\xdc\x29\x41\x74\x20\x40\x2e\x58\xc6\x1e\ +\x2a\x04\x0a\x8a\xe1\x96\xad\xb1\x77\x51\x3a\x43\x0f\xc5\xf1\x42\ +\xce\x5f\x30\x2a\xb3\x6f\x44\x2e\x18\xb0\x7b\x92\xf2\xfd\xcb\x0c\ +\x71\x77\x0d\x48\xb5\x06\xac\x5a\x03\x51\xad\x81\xa8\xd6\x40\x54\ +\x6b\xc0\xab\x35\x50\xc5\x1a\x88\xce\x35\xa8\x17\x1f\xb7\x2a\x9e\ +\xe1\xa0\xee\x58\x4e\x9b\x4f\x99\x91\xfa\x29\x3e\xdd\xcb\x02\xd5\ +\xaf\x15\x9d\x2f\xfa\xd4\x19\x4b\x3c\x38\xd7\x5d\x01\x85\x09\x3d\ +\x12\xa8\xaf\x6d\xfe\xbd\x32\xdb\xde\xfc\xf9\x85\xcc\xbf\x47\x1e\ +\xdb\x9b\xbd\xbc\x90\xd9\xf7\xc8\x5a\xfb\xb3\x0f\xc5\x85\xcc\xbf\ +\x47\x96\xba\x31\xff\x4b\xd9\xfd\x07\x67\xa5\x1b\xb3\x67\x17\x32\ +\xfb\xc3\xb3\xd0\x4d\xe6\x27\x17\x32\xff\xc3\xd2\xce\xf5\xdc\xc5\ +\xb1\xd6\xc1\x57\x37\xf1\x3e\x49\x66\x7f\xfe\x17\x23\xf8\x7a\x25\ +\x95\x1b\x08\xe0\x0b\x43\xe0\xa0\x24\x72\x03\x81\x8b\xd9\xfe\x7d\ +\x92\xc6\x0d\x04\x8e\x35\x7f\x2a\x2f\xa1\xbe\xa9\x9c\x85\x7c\xe7\ +\xd5\x07\x8c\x14\xa5\x94\x68\x29\xec\xb1\x63\x69\x88\x94\x5c\x93\ +\x61\xe3\xb6\xa6\xa0\xf6\x25\x11\x2e\xb4\x93\x69\x36\x8a\xc7\x54\ +\x7d\xea\xb8\xf0\x43\x48\xad\xb9\xce\x70\x1a\xb7\x9a\x55\x73\x55\ +\x4f\x4c\xaf\xbf\x76\xe0\xa1\x1e\x78\x69\x11\x50\x6e\xc0\x20\x94\ +\xd4\x69\x06\x6b\x0d\x5b\x6c\xa5\xb6\xaf\x48\x05\x12\x40\x06\x97\ +\x92\xdb\x97\xfa\xdc\x9d\x80\x22\xb0\x1f\x8d\x24\xc3\xf2\x06\x5a\ +\x50\x1b\x98\x51\x5c\x07\x9f\x5b\x09\xe9\x22\xc6\xe0\x8b\xd1\xc3\ +\xc3\x14\xf5\xfb\x24\xe9\x34\xb6\xc7\xef\xd7\xd7\x83\x89\xfb\xf8\ +\x3c\xd6\x3c\x4a\x70\xc0\x6a\xb8\xaf\xd9\x66\xe1\x12\xf8\x9f\xe3\ +\x2c\x3d\x72\x7d\xb2\x74\xb3\x9c\xee\x2c\x50\xa3\xf4\xf4\x8c\xfe\ +\xf6\x68\x79\x23\x48\x53\x9c\x71\x30\x48\x36\x4e\x4b\x94\xc7\x22\ +\x88\x40\x42\x31\xd1\x48\x1c\xd8\x57\x7c\x7c\x0f\xae\x7c\x91\xce\ +\xc7\xb1\xc5\xd5\xcd\xdf\xb9\x8b\xb2\xc9\x9e\x33\x13\x97\x00\x72\ +\xc1\xa5\xa6\x8b\xf7\xdc\xab\x54\x0a\x04\x8f\x51\x58\x76\x12\x00\ +\x98\x60\x56\x48\x89\xa9\x12\x5d\x04\x99\x3d\xc7\x82\x28\x53\x9c\ +\xc9\xce\x2e\xb2\xc7\x6e\x82\xed\x06\xd5\xc8\x48\x90\x74\xce\x76\ +\xd9\x76\x12\x4c\x02\xf7\x8b\x89\x9a\x71\x02\x22\xdc\xbe\x56\xbb\ +\x7d\x5d\x7c\xfb\x88\x20\x2c\xee\x94\x57\x54\x90\x83\xa2\xf3\xaa\ +\x8b\xa6\xc4\xf8\x65\x55\x1b\xf7\xdb\x4f\xdb\x56\x41\x49\x58\x55\ +\xab\x60\xa7\x85\x0a\xca\x31\x41\x27\x55\x6d\xd5\x45\x7b\x50\xaa\ +\x21\x2c\x3a\xdf\x24\xa9\x40\xb1\x92\x1f\x2b\x82\xa5\xd2\xde\x6f\ +\xeb\x55\x4a\xc5\x67\xdd\x43\xc5\x8b\x77\xc0\xaa\xde\x19\xa5\x48\ +\x94\x5c\x09\x30\x8c\x99\x41\x82\x31\x4a\x2c\xe2\x21\xc8\x47\x90\ +\x70\xca\xbd\x13\x63\x94\x35\x25\x82\x90\x23\xc3\x0d\x94\xda\xb7\ +\x46\x31\x03\x77\x12\xca\x24\xc2\xf6\xf5\x7d\x40\xda\xbe\xb5\xc7\ +\x1c\xb6\x58\x62\x29\x87\xd4\xbe\xc0\x68\x49\x00\x13\x86\x19\x1b\ +\xda\xb7\x27\x85\x96\xe0\x86\x20\x2a\x05\x01\xb5\x26\x90\x14\x52\ +\x0b\x5b\xa2\x8c\xe0\x46\xd8\x57\x4f\x41\x3d\x1b\xdb\xc8\x3d\x0e\ +\xc4\xae\xc6\x50\xc4\x76\x4b\x3a\x95\xdd\xf3\x41\xd6\x5d\x33\xe3\ +\x80\x4d\xb7\x1b\x5c\x6d\xbf\x66\x64\x70\x0d\xf6\xc9\xca\x9e\x20\ +\xc5\x29\x03\xcf\x8d\xdb\x58\x15\x31\x9a\xbf\xdf\xab\x8f\xf7\x6b\ +\x8d\x63\x94\x50\xc5\x27\x04\xb3\x57\x54\x9e\xcf\x1d\x4b\x03\x9e\ +\xd8\x77\x2c\xed\x6d\x92\xdc\x18\xa6\xbe\x96\xfc\x46\xc7\x59\x3f\ +\xa7\x7a\xf6\x6b\xa7\xa7\x34\xd9\x1e\xe5\x57\xa9\x4a\xad\x58\x1f\ +\x14\x09\xd9\x41\x71\xbf\xe6\x4a\x92\x84\x4d\xe5\x17\xd6\x5c\x7b\ +\x35\x76\x0f\x09\xfa\x6d\xaa\x98\x67\xf5\xed\xe1\x1a\xfb\x59\x9d\ +\xbf\xcf\x6a\xa8\xa4\x89\xde\x7b\x08\xb5\xfc\xcd\x93\x1e\x6c\xd9\ +\x67\xbb\xbf\xb8\x41\xd5\x61\x39\x3e\xad\xb1\x4f\x75\x8a\x7b\x69\ +\xab\xa6\xa6\xc7\x95\xa6\x57\x7f\x4d\x4d\xef\x59\x31\xde\x4f\x84\ +\x1e\xe4\xa0\xbb\xc5\xb8\xb2\xef\x4a\x7f\x7c\xf3\x7f\xaf\x11\xab\ +\x1f\ +\x00\x00\x09\x01\ +\x00\ +\x00\x40\x1f\x78\x9c\xed\x5b\x5b\x73\xda\x48\x16\x7e\xf7\xaf\xd0\ +\xca\x2f\x71\x0d\x12\x7d\xef\x16\x31\x9e\x87\x4d\xcd\x56\xaa\x76\ +\x6b\xaa\x76\x92\xda\xc7\x29\x19\x35\x58\x1b\x90\x28\x49\x18\xc8\ +\xaf\xdf\xd3\x42\x57\x24\x0c\x76\x9c\xf5\x82\x17\x25\x41\xea\x73\ +\xfa\x72\xbe\x3e\xd7\x16\xb9\xfd\x75\xb3\x98\x5b\x8f\x3a\x49\xc3\ +\x38\x1a\xdb\xd8\x45\xb6\xa5\xa3\x49\x1c\x84\xd1\x6c\x6c\x7f\xfd\ +\xf2\x9b\xa3\x6c\x2b\xcd\xfc\x28\xf0\xe7\x71\xa4\xc7\x76\x14\xdb\ +\xbf\xde\x5d\xdd\xfe\xc5\x71\xac\xbf\x26\xda\xcf\x74\x60\xad\xc3\ +\xec\xc1\xfa\x1c\x7d\x4b\x27\xfe\x52\x5b\x1f\x1e\xb2\x6c\x39\x1a\ +\x0e\xd7\xeb\xb5\x1b\x16\x8d\x6e\x9c\xcc\x86\x37\x96\xe3\xdc\x5d\ +\x5d\xdd\xa6\x8f\xb3\x2b\xcb\xb2\x60\xde\x28\x1d\x05\x93\xb1\x5d\ +\x74\x58\xae\x92\x79\xce\x18\x4c\x86\x7a\xae\x17\x3a\xca\xd2\x21\ +\x76\xf1\xd0\xae\xd9\x27\x35\xfb\xc4\xcc\x1e\x3e\xea\x49\xbc\x58\ +\xc4\x51\x9a\xf7\x8c\xd2\xeb\x06\x73\x12\x4c\x2b\x6e\xb3\x9a\x35\ +\xcd\x99\xb0\xe7\x79\x43\x44\x86\x84\x38\xc0\xe1\xa4\xdb\x28\xf3\ +\x37\x4e\xbb\x2b\xac\xb1\xaf\x2b\x41\x08\x0d\x81\x56\x73\x9e\xc6\ +\x35\xda\xcc\x01\x8a\x83\x8b\xc9\xa9\xcd\xd9\x01\xfe\x25\xfc\xad\ +\x3a\x94\x0d\x6e\x1a\xaf\x92\x89\x9e\x42\x4f\xed\x46\x3a\x1b\x7e\ +\xfa\xf2\xa9\x22\x3a\xc8\x0d\xb2\xa0\x31\x4c\x89\x7e\x6b\xde\xd6\ +\x96\x44\xfe\x42\xa7\x4b\x7f\xa2\xd3\x61\xd9\x9e\xf7\x5f\x87\x41\ +\xf6\x30\xb6\x05\x5b\x6e\xf2\xe7\x07\x1d\xce\x1e\xb2\x46\x43\x18\ +\x8c\x6d\x90\x90\x48\x49\xf2\xe7\x72\x0d\xa3\x4a\x93\x90\x4b\x77\ +\xa4\x72\xe0\x26\x89\x29\x97\xba\xd8\x4a\x3c\xa5\x44\xbb\x7f\x10\ +\x4f\xcc\xa2\xc6\xf6\xe7\x49\x1c\xb9\x25\x88\xd5\x18\xf1\x2a\x5b\ +\xae\xb2\x3f\xf5\x26\xd3\xd1\x6e\x30\x10\xa3\x21\x53\x4e\x36\xdd\ +\xdc\x96\x3c\x0d\xfd\xc6\xf6\x1d\xb4\xdc\x06\x7a\x9a\x1a\xca\x4e\ +\x14\xf3\x04\xb2\xb0\x9c\x06\x54\xd8\x0f\xed\x27\x7f\x4b\xfc\x20\ +\x04\x2d\xdc\xf1\xed\x38\xdb\x14\xea\x21\xaf\xe8\x03\xbd\xd2\x2c\ +\x5e\x96\xbc\x20\x52\xb6\x9d\x83\x1c\xa6\xd1\x99\xc4\xf3\x38\x19\ +\x5d\x0b\x0d\x9a\x81\x3e\xe6\x4d\x31\xc0\x1e\x66\xdb\x11\xfe\x68\ +\xd7\x7d\xe2\xe9\x34\xd5\x80\x33\x6a\xb4\xe5\x50\x43\x0f\xea\x61\ +\x6c\x5b\xc3\xd3\x67\x9b\x4e\x4f\x9c\x0d\xf7\xcf\x46\xab\xd9\x6e\ +\x87\x6d\xb1\x9f\x8b\x92\x92\xe2\x19\x28\x4d\xf3\xcf\xde\xba\x4f\ +\x05\x49\x49\xf5\x2c\x90\x34\x31\xd7\xf1\xc9\x7a\x31\x52\x0a\x1d\ +\xc3\xc8\x3c\xf9\xf3\x0e\x46\xa5\x3e\xc3\x2a\xe6\x7a\x02\xe3\xfb\ +\xf3\xb5\xbf\x4d\xab\x49\x72\x8f\x30\x7a\x48\x34\x78\xb0\xeb\x3d\ +\x34\x31\x63\x76\x13\xec\xf6\x14\x84\xe0\x1a\x98\x59\xd1\xf8\x35\ +\x0a\x33\x70\x55\xab\x54\x27\x7f\x18\x73\xff\x3d\xfa\x9a\xea\x0e\ +\xd7\x97\xc4\x8f\x52\xf0\x2d\x8b\xb1\xbd\xf0\xb3\x24\xdc\x7c\xc0\ +\x03\x64\x2e\x57\x78\x8a\x13\x8f\xc1\x3d\x41\xc4\x55\x44\x09\x7a\ +\x53\x75\x9f\x6c\xc6\x36\x21\xdc\x25\x82\x21\x52\xb7\x6e\xc1\x5d\ +\x48\xe2\x4a\x4f\x52\x51\xb5\x4e\x7b\x79\xa7\xbd\xbc\xc9\xd8\xa6\ +\xcc\xa5\x8c\x63\x55\xef\xe9\x5b\x00\xda\x58\xe9\xff\x01\x7d\x05\ +\x40\xb1\xc7\x2e\x19\xd0\x03\x6e\xf1\x18\xa0\x3d\x7e\xd3\xe0\xf8\ +\x83\x7e\xf3\xe4\xe8\x82\x99\x78\x66\x74\xe9\xce\x86\x4e\x8e\x2e\ +\x98\xa9\xff\x3d\xcf\x89\xbd\x8b\x36\xf4\x0a\xba\x25\x64\x43\x4b\ +\xc0\x0e\x92\xe7\xb2\x47\x95\x7f\x65\x5b\x93\x2f\xb6\x59\x69\x60\ +\x77\xe0\x7f\x5c\xfe\x09\x0b\x42\xd6\xc8\xa2\x04\xfe\xc1\xbd\x1c\ +\xdb\x1d\x07\x86\x34\x04\xbe\x50\x2f\xcf\x77\x93\x55\x3e\x31\x4c\ +\xb1\x02\x27\x4e\xc2\x59\x08\x19\x5c\xce\x47\xb0\x4b\xf3\x4f\xbb\ +\x0f\x6c\x69\x43\x36\x22\x9b\xe1\xf9\x85\x56\xf9\x94\x3a\x99\xe4\ +\xef\xa9\xdc\x10\xf3\x7a\x18\x0c\x86\x80\x5c\xce\x05\x97\x75\xa7\ +\x2d\xb4\x52\xec\x7a\x84\x22\xd1\xe0\x25\x63\x9b\x53\x17\x29\x8a\ +\x68\xbd\xd3\x5b\xd2\xc7\xfb\xc3\x6a\xea\x62\x8c\x39\xf2\x78\xae\ +\xae\xf5\x93\x03\xb7\x52\x62\xae\xe4\xc0\x11\x2e\x42\x84\x71\x89\ +\x6f\x7e\x6a\xd0\x30\x49\xe2\x61\xe3\xa4\x9e\x10\xaf\x26\xb5\x43\ +\x5c\x21\x31\x02\x43\x02\x91\x15\x61\x98\x62\x6a\x44\x56\x18\x61\ +\x05\xc2\x03\x99\x23\x01\xc6\x03\x46\x2b\x5d\xe4\x11\xd3\xa6\x5c\ +\x49\x29\xf6\x70\xdb\x7c\xa1\x92\xe1\x8a\x73\xd2\x36\x5f\x2c\x5c\ +\xd8\x3d\x85\x78\xcb\x7c\xbb\xbc\xd3\x5e\x5e\x30\x5f\xc2\x5c\x58\ +\x9f\x44\xec\x0d\x15\x98\x21\xf4\x8a\x71\xfa\x79\x8a\xf6\xb3\xec\ +\xe6\x2d\xd1\xc4\xf8\x32\xd1\xbc\x1d\x9a\xf2\x39\xbf\xab\xc2\x88\ +\xa9\xe1\x83\xc7\x50\xaf\xaf\x2a\x38\xee\xfd\x4a\xb4\xa5\x3f\xd3\ +\x79\x1a\x01\x20\xee\xf2\x88\x82\x70\x1f\x27\x81\x4e\x4a\x92\xc8\ +\x3f\x2d\x52\x91\x69\xec\x0e\xaa\xae\xda\x7b\x66\x46\xad\xe8\xa8\ +\x9f\x9e\x3e\xf8\x41\xbc\x06\xfb\xda\x27\x7e\x8f\x63\x80\x97\x83\ +\xe1\x0b\xc5\x19\xdd\x27\x1b\x53\x07\x3b\x95\x4c\x8a\x2e\x0d\xa6\ +\xa3\xc2\x25\xb0\x05\x9c\x75\x88\xab\x24\x81\x2d\x74\xe6\xfe\x56\ +\x83\x4c\xf9\x57\xa9\x07\xe9\x43\xbc\x9e\x25\x06\x9b\x2c\x59\xe9\ +\xfd\x9e\x41\x3c\x59\x99\x33\x30\x67\xb5\x53\x92\xe2\xe4\xa5\xc1\ +\x61\xfa\x3a\xf7\xf7\xf1\xa6\x7f\x80\x75\x18\x81\xac\x4e\x71\x96\ +\x83\xa9\xe8\x20\x52\x70\x94\xa7\x3b\x12\xab\x03\x1c\x9b\x3a\x69\ +\xdc\x27\x6d\x0f\x93\x16\xfe\x26\x5c\x84\xdf\x75\x60\x92\xc0\x42\ +\x57\x16\x3a\xf3\x03\x3f\xf3\x6b\xbd\x28\x5b\x88\x94\xb2\x3c\x7f\ +\x49\x82\xe9\xe8\x9f\x9f\x7e\xab\xb2\xd1\xc9\x64\xf4\xaf\x38\xf9\ +\x56\x27\x92\x86\xc1\xbf\x8f\x57\xb0\xea\x2a\x43\x36\xa7\x3a\x93\ +\x91\xb1\x13\x3f\xbb\x0b\x17\xb0\xdb\xe6\x10\xee\x97\xcd\x62\x0e\ +\x1a\x5a\x11\x5a\xcc\x26\xdb\xa9\x07\xdd\x0d\x9b\xe8\xdd\x21\x5b\ +\xef\xb9\x64\x30\x59\x84\xa6\xd3\xf0\x8f\x2c\x9c\xcf\x3f\x9b\x49\ +\x1a\x59\x73\x31\x68\x98\xcd\xf5\x5d\x3e\xe7\xee\xb6\x94\x62\x58\ +\x88\x51\xa6\xbd\x0d\x29\x6f\x87\x25\x0c\xf9\xd3\xac\x86\xa7\xa5\ +\x31\x15\xc2\x73\xff\x5e\xcf\xc7\xf6\xdf\x0d\xd1\xea\x50\x67\x49\ +\xbc\x5a\x2e\xe2\x40\x17\xdd\x4b\x58\x67\x4d\xf7\x34\xa3\x60\xc5\ +\x95\x61\x17\x19\xfe\x14\xa4\x1a\x5d\x43\x9a\x0a\xd7\x47\xf3\xd0\ +\xa8\x24\xd2\x2c\x89\xbf\xe9\x8a\xba\x7b\xec\x39\x34\xc9\x6a\x77\ +\x95\xdf\xce\xfd\x4c\x7f\x20\x03\x72\x53\xd7\x32\x09\xf8\xd6\x4e\ +\x75\xf1\x1a\x73\x17\xa9\x03\x0c\x0f\xd2\xf1\x46\x73\x61\x05\x4c\ +\xba\x9e\x22\xa2\xe1\xa9\xeb\xc3\x4d\x08\xcf\x52\x0a\xe1\x35\x47\ +\xdb\xe4\x0e\x53\x49\x4f\x35\x92\x6e\x70\x83\xc0\xed\x2a\x2e\x30\ +\x23\xbc\x59\x35\x2d\xfd\xec\xe1\x15\xe4\xca\x17\x3b\xc2\xcb\x4d\ +\xd9\x60\x42\x09\xec\xec\xe8\x7e\x95\x65\xcd\xb6\x7f\xc7\x61\x34\ +\x02\x8d\xd4\xc9\x53\x90\x18\x23\xb3\x30\x78\xcc\xdc\xef\x0f\x60\ +\xe5\x02\x61\xf8\x63\xa1\x01\x67\x2e\x37\xb1\x83\x79\x7b\x10\x1a\ +\x49\x00\x42\xd9\x6c\xae\x83\x63\x04\xcb\xc9\xe2\xc4\x01\xef\xf6\ +\xe8\x67\xab\x44\x1b\x27\x70\x1e\x38\x70\x97\x7a\x9e\x84\xc0\x38\ +\x80\xe8\x06\xe1\x51\x28\x6c\x99\x3b\x45\xa0\x52\x83\x78\xda\x8f\ +\x83\x77\x71\x38\x60\xe5\x0a\x86\x3d\x24\x1a\x38\xa0\x01\x85\x30\ +\xc6\x30\xd9\x37\xa8\x1d\x0a\x14\x5f\x1c\x0a\x44\xb8\x82\x9a\x2b\ +\x47\x81\x2a\xea\xb1\xa3\x28\xd0\x8b\x43\x81\x82\x17\x80\xec\x15\ +\x79\x06\x05\xa3\xed\xd4\x3b\x8a\x02\xbf\x38\x14\x18\xc9\x51\xc0\ +\x25\x08\xc7\x35\xe1\x02\xbd\x23\xda\xd3\x84\xe3\x20\x5c\xa0\x6b\ +\xc4\x03\xc6\x5d\x66\x60\xc0\x96\x43\x0b\x44\xf0\x81\xd8\xc0\x2e\ +\xcf\x2b\x42\xca\xe3\x49\x49\x24\x1d\x50\xe9\x52\xac\xe0\xaa\x71\ +\x60\x87\x70\xb8\x3c\xbf\x68\x72\x26\x42\x24\x51\x03\xe2\xb9\xf0\ +\x0d\xd7\x09\x38\x5c\x9e\x67\x2c\x71\x90\x03\x82\xf7\x71\x50\xea\ +\x10\x0e\x97\xe7\x1d\x6b\xbb\xc0\xf4\x74\x7d\x78\x89\x83\xbc\x1d\ +\xce\xca\x52\xb8\x51\x2a\x35\xc1\x80\xa2\xf4\xc3\x75\xf7\x8c\xf4\ +\xe6\x00\x3a\x51\x1c\xd5\x07\x4b\x55\x8d\x84\x3c\x55\x35\x1e\xac\ +\x90\x0e\xd7\x47\xbd\xd5\x51\x6f\x6d\xb4\x57\x7a\x32\xcc\x3a\xa5\ +\x67\xb9\x8d\xf7\xcc\x5c\x9d\xbd\x68\xef\x2b\x72\x2b\x8e\x7c\xeb\ +\xe6\x21\x7c\x8d\xaa\xb6\xc0\x4f\x1f\xfc\x24\xf1\xb7\x3b\xb9\x2b\ +\xdd\x9a\xb5\x37\x68\xc6\x90\x6c\x6e\xda\x7f\x6f\x25\x1d\x3d\x6f\ +\x6f\xae\xe1\xfd\xd8\xbf\x8c\xce\xac\x2f\xd0\xeb\x67\x2c\xb8\xb9\ +\xc2\xaa\x6e\x30\x19\x33\xcb\x33\x84\xfc\x16\x52\x04\xc7\x9c\x6d\ +\x33\x73\xd1\x56\x97\xd2\x0c\x18\x42\xb8\x4d\x38\xd9\x21\xbc\x09\ +\x54\x7d\xc8\x74\xe0\x3b\x06\x15\x14\x17\x1c\x00\x41\x2a\x2f\x2e\ +\x30\x87\x22\xab\x09\x55\x2b\x7d\x6c\x43\xe5\x88\x77\x07\x96\xa9\ +\x41\x08\xa2\x58\xec\x32\x4f\x00\x81\xb6\xf4\x4a\x3d\x01\x96\xf7\ +\xee\xd0\x82\x5a\x05\xaa\x55\xb2\x2b\xde\xa1\x8c\xe7\x2d\xb0\xe8\ +\x53\x60\x39\xef\x0f\x2d\x53\xd5\x08\xcc\xc9\xee\xcc\x47\x80\x21\ +\xb2\x93\x0d\xd1\xf1\x9c\x97\x7a\xae\x2a\x88\xf7\x45\x1e\x4c\xc5\ +\xfb\x89\x3c\xaf\xb2\x8b\x26\x0b\x65\x42\x49\x6e\xaa\x33\x22\x94\ +\x22\xd8\x82\x6c\xc5\x54\x27\x8a\xb4\x92\xaf\xe6\x1e\x4a\xf9\xee\ +\xd4\xdd\x00\x25\xb0\xf2\x3c\x53\xbe\x11\x45\x21\x08\x9d\x04\xd4\ +\x8b\x15\xfd\xbc\xa1\xa2\xe6\x9c\xbb\xa8\xf0\x08\xe2\x27\x42\xa5\ +\xde\x25\x56\x4c\x79\x1c\xe7\x55\xa0\x12\x1e\x55\x27\x62\xe5\xa0\ +\x77\x09\x96\x44\xdc\x53\xbb\x52\x51\xe0\x67\x80\xe5\xb0\x1f\x0d\ +\x38\xf5\xcd\x5e\xdd\x85\x90\xb4\x4f\xa8\xb4\x5b\xc0\xf6\xd6\xd5\ +\xc5\x4f\x0e\x18\x7b\xc5\x02\xfb\x1f\x16\x60\x85\x31\xa1\x14\x8a\ +\x0b\x70\xf1\x92\x52\x81\x2d\x02\xa8\x51\x8c\x19\x1b\xe4\x77\x02\ +\xdc\x99\x65\xfc\x9a\x20\x10\xd2\x07\xe6\xc5\xbb\x90\x1c\x2b\x8b\ +\x83\x01\x1b\x9d\x1c\x48\x17\x82\x04\x45\xed\xd3\xd9\xaa\x1c\xc7\ +\xaf\x72\x2c\x71\xac\x63\xdf\xcc\x48\x76\xc4\xc5\x95\xb8\xb4\x12\ +\x97\x57\xe2\xf2\x4a\x5c\x5e\x89\xcb\x2a\x71\x65\x21\x2e\xef\x11\ +\xf7\xd0\x5e\xe6\x87\x06\xdd\xdf\xa5\xdc\xfc\x9c\xcd\xed\x1e\x66\ +\xec\xbf\x80\x16\xea\x90\x36\xbe\x00\x60\x84\x49\x1b\xe0\x67\xbd\ +\xf4\x3c\xa8\xfe\x08\x15\xff\x8d\xe2\xf5\x8e\x95\x5e\x53\xad\x10\ +\x66\xfb\x52\x3f\xe3\x15\xe7\xf9\x4a\x2d\x3a\x7b\x7d\xea\x0b\xcd\ +\x33\x96\xd9\xe1\xfb\x52\x9f\xfc\x02\xf3\x9c\xa5\xee\xd8\xf5\xc9\ +\x2f\x2c\xcf\x59\x6a\xba\x2f\xf5\x89\x2f\x28\xcf\x59\x66\xfe\xe2\ +\x37\x92\x67\x2b\x35\x97\xdd\xa8\x75\xfc\xfd\xe3\x19\x8b\xdb\x75\ +\x62\xcf\x78\xdf\x78\xce\x72\xa3\xbe\xf4\xe4\xc4\xf7\x8b\xe7\x2c\ +\xf7\x8f\xbc\x4f\x3c\x67\xb9\xbb\x29\xca\xe9\xef\x0f\xdf\x42\xee\ +\x22\x4f\xcf\xbf\x6e\xcd\x6f\x67\xef\xae\xfe\x03\xc2\xaf\x45\xbd\ +\ +\x00\x00\x0c\xb4\ +\x00\ +\x00\x68\x17\x78\x9c\xed\x5c\x59\x73\xe2\x48\x12\x7e\xf7\xaf\xd0\ +\xd2\x2f\xed\x58\x24\xea\x3e\x68\xd3\xf3\xb0\x13\xbb\x31\x11\xbb\ +\xb1\x11\x3b\x33\xb1\x8f\x13\x32\x08\xcc\x0e\x20\x42\x08\x1b\xfa\ +\xd7\x6f\x96\xd0\x55\xa2\x38\xe4\xc6\x6d\x37\x6e\x34\x3d\x88\x3a\ +\x54\x95\x5f\x65\xe5\x51\x99\xf2\xdd\x4f\x9b\xf9\xcc\x7b\x8c\x92\ +\xd5\x34\x5e\x0c\x3a\x38\x40\x1d\x2f\x5a\x0c\xe3\xd1\x74\x31\x19\ +\x74\x7e\xff\xed\xef\xbe\xea\x78\xab\x34\x5c\x8c\xc2\x59\xbc\x88\ +\x06\x9d\x45\xdc\xf9\xe9\xf3\xcd\xdd\x5f\x7c\xdf\xfb\x5b\x12\x85\ +\x69\x34\xf2\x9e\xa6\xe9\x83\xf7\xcb\xe2\xcf\xd5\x30\x5c\x46\xde\ +\xc7\x87\x34\x5d\xf6\x7b\xbd\xa7\xa7\xa7\x60\x9a\x17\x06\x71\x32\ +\xe9\xdd\x7a\xbe\xff\xf9\xe6\xe6\x6e\xf5\x38\xb9\xf1\x3c\x0f\xc6\ +\x5d\xac\xfa\xa3\xe1\xa0\x93\x77\x58\xae\x93\x59\xd6\x70\x34\xec\ +\x45\xb3\x68\x1e\x2d\xd2\x55\x0f\x07\xb8\xd7\xa9\x9a\x0f\xab\xe6\ +\x43\x33\xfa\xf4\x31\x1a\xc6\xf3\x79\xbc\x58\x65\x3d\x17\xab\x0f\ +\xb5\xc6\xc9\x68\x5c\xb6\x36\xb3\x79\xa2\x59\x23\xac\xb5\xee\x21\ +\xd2\x23\xc4\x87\x16\xfe\x6a\xbb\x48\xc3\x8d\x6f\x77\x85\x39\xba\ +\xba\x12\x84\x50\x0f\xea\xaa\x96\xe7\xb5\xea\x6f\x66\x00\xc5\xc1\ +\xc9\x64\xb5\xf5\xd1\x01\xfe\x25\xfc\x2b\x3b\x14\x05\xc1\x2a\x5e\ +\x27\xc3\x68\x0c\x3d\xa3\x60\x11\xa5\xbd\x9f\x7f\xfb\xb9\xac\xf4\ +\x51\x30\x4a\x47\xb5\xc7\x14\xe8\x5b\xe3\x5a\x4b\xb2\x08\xe7\xd1\ +\x6a\x19\x0e\xa3\x55\xaf\x28\xcf\xfa\x3f\x4d\x47\xe9\xc3\xa0\x23\ +\xd8\x72\x93\xfd\x7e\x88\xa6\x93\x87\xb4\x56\x30\x1d\x0d\x3a\x40\ +\x21\x91\x92\x64\xbf\x8b\x39\xf4\x4b\x4e\x42\x01\xdd\x55\x15\x0f\ +\xae\x57\x31\x15\xd0\x00\x7b\x89\x56\x4a\xd8\xfd\x47\xf1\xd0\x4c\ +\x6a\xd0\xf9\x35\x7c\x8c\x82\x02\xc4\xf2\x19\xf1\x3a\x5d\xae\xd3\ +\x3f\xa2\x4d\x1a\x2d\x76\x0f\x03\x32\x6a\x34\x65\xd5\xa6\x5b\x60\ +\xd1\x53\xe3\x6f\xdc\xf9\x0c\x25\x77\xa3\x68\xbc\x32\x35\x3b\x52\ +\xcc\x2f\xa0\x85\x65\x75\x50\x0b\xeb\x11\x85\xc9\x3f\x92\x70\x34\ +\x05\x2e\xdc\xb5\xdb\xb5\xb4\x6b\xa8\x16\x3c\xef\x03\xbd\x56\x69\ +\xbc\x2c\xda\x02\x49\xe9\x76\x06\x74\x98\x42\x7f\x18\xcf\xe2\xa4\ +\xff\x81\x4b\x73\x7d\xca\x8a\x62\x80\x7d\x9a\x6e\xfb\xf8\x53\xa7\ +\xea\x13\x8f\xc7\xab\x08\x70\x46\xb5\xb2\x0c\x6a\xe8\x01\x63\xc9\ +\x8e\xd7\x3b\x7f\xb4\x31\x37\xd7\x19\xa3\x61\xf7\x68\xba\x1c\xed\ +\xae\x67\x93\xdd\x16\x25\xa5\x64\x0b\x94\xd4\x50\x68\x84\x9e\x8b\ +\x92\x52\xba\x1d\x4a\xe3\xe1\x98\x8c\x9f\x8b\x92\xd2\xf8\x72\x28\ +\xc9\x36\x28\x21\x44\x75\x74\xce\xea\xba\x51\x92\xed\x50\x52\x52\ +\xc9\xf1\xf3\x51\x52\x17\x44\x49\xb0\x16\x28\x85\x34\xa4\x67\xcd\ +\xdb\x8d\x92\x10\xad\x50\x02\xb9\x8f\x38\x7b\x36\x4a\x42\x5d\x0c\ +\x25\x8d\x74\x0b\x94\x44\x64\x66\xfe\x6c\xb9\x84\x71\xcb\x1d\x77\ +\xe6\x68\x6e\xb9\x84\xe9\x05\x77\x9c\x68\x81\xd2\x38\xfb\x34\xe6\ +\x7d\xfe\x86\x53\xad\x40\x8a\x88\xb9\x4e\x0f\x76\x60\xbf\xa1\x53\ +\x18\x99\x5f\xe1\x6c\x0f\xa3\x42\xcf\xc2\x2c\x66\xd1\x10\x9e\x1f\ +\xce\x9e\xc2\xed\xaa\x1c\x24\xb3\x54\xfa\x0f\x49\x04\x96\xd5\x87\ +\x06\x9a\x98\xb1\x4e\x1d\x6c\x7b\x08\x42\x70\x05\xcc\x24\x2f\xfc\ +\x7d\x31\x4d\xc1\x84\x5a\xaf\xa2\xe4\x57\x63\x86\xfc\x7b\xf1\xfb\ +\x2a\xda\x6b\xf5\x5b\x12\x2e\x56\x60\xf3\xcc\x07\x9d\x79\x98\x26\ +\xd3\xcd\x47\xdc\x45\xe6\x0a\x84\x56\x9c\x68\x06\xf7\x04\x91\x40\ +\x11\x25\xe8\x6d\xd9\x7d\xb8\x19\x74\x08\xe1\x01\x11\x0c\x91\xaa\ +\x74\x0b\x66\x8c\x24\x81\xd4\x92\x8a\xb2\x74\xec\x6c\x3b\x76\xb6\ +\x4d\x06\x1d\xca\x02\xca\x38\x56\xb5\x0d\xfb\x0a\x80\xd6\x66\xfa\ +\x03\xd0\x0b\x00\x8a\x35\xbb\x66\x40\x0f\x88\xc5\x53\x80\x3a\xe4\ +\xa6\xc1\xf1\x2b\xe5\xe6\xd9\xda\x05\xb3\x76\x3a\xd8\x35\x1a\x3a\ +\x5b\xbb\x60\x76\x52\x07\xbf\x06\x5f\x5e\xf5\x46\x2f\xa1\x5b\x82\ +\x97\xb6\x04\xec\xc0\xa9\x2f\x7a\x94\x7e\x61\xba\x35\x7e\xac\xdd\ +\x94\x8e\x3a\x7b\xf0\x3f\x2e\xff\x80\x09\x21\xaf\xef\x51\x02\xff\ +\xc3\xce\x16\xdb\x5d\x0b\x0c\x66\x08\x7c\x21\x67\x9b\x2f\xc6\xdb\ +\x3d\xf2\x98\x7c\x06\x7e\x9c\x4c\x27\x53\xf0\x2c\xb3\x76\x04\x07\ +\x34\xfb\xd8\x7d\x60\x49\x6b\xb4\x11\x59\x57\xcf\xcf\xdc\x95\xc7\ +\xd8\xc9\x18\x7f\xc7\x6c\x43\xcc\xab\xc7\x60\xd8\x08\x28\xe0\x5c\ +\x70\x59\x75\xda\x42\x29\xc5\x81\x26\x14\x89\x5a\x5b\x32\xe8\x70\ +\x1a\x20\x45\x11\xad\x56\x7a\x4b\x5c\x6d\xbf\x9a\x4d\x03\x8c\x31\ +\x47\x9a\x67\xec\x5a\xfd\xf2\xe1\x56\x4a\xcc\x95\xec\xfa\x22\x40\ +\x88\x30\x2e\xf1\xed\x2b\xa2\xc9\x10\xba\xa0\xd2\x68\x47\xf5\x4b\ +\x2d\xe2\x4b\xaa\x60\x63\x72\x1f\x16\x75\x14\xe9\xcb\x19\x89\x3e\ +\x09\x84\xc4\x08\xc4\x12\x40\xa9\x08\xc3\x14\x53\x03\xa5\xc2\x08\ +\x2b\x00\x15\xaa\x39\x12\x20\x8a\x40\x04\xca\x00\x69\x62\xca\x54\ +\x20\x29\xc5\x1a\xdb\xc2\x90\xa9\x80\x2b\xce\x89\x2d\x0c\xb1\x08\ +\x00\x46\x85\xb8\x25\x0c\xf7\xdb\x8e\x9d\x6d\x41\x18\x12\x16\xc0\ +\xfc\x24\x70\xd0\x2b\x8a\x03\x74\x49\xed\xf2\xc6\x18\xf8\x05\xd0\ +\x34\xe7\x0f\x47\x5d\x4a\x66\x91\x45\x49\x40\x14\x02\x96\xb2\xc8\ +\x12\x08\x08\x90\x02\x61\x8b\x2c\x28\x55\x5a\x30\x26\x2c\xb2\x0c\ +\x4b\x6a\x85\xc9\xb9\x62\xe6\x45\x89\x97\xf2\x28\xf1\x8a\x5e\x33\ +\xf1\xea\x38\xf1\xba\x41\xbc\x08\x80\x1a\x4a\xa4\x45\x3c\xd7\x01\ +\x91\x98\x10\xdd\x64\x68\x06\x8d\x89\xcd\xd0\x8c\x05\x60\x96\x69\ +\x22\x2e\xb6\x3f\x51\xa0\x61\x4b\x22\xc9\xe5\x6e\x83\x76\x19\x2c\ +\x90\xc6\x94\x83\x21\x18\x50\x4e\x39\xa7\x54\xbf\xb0\x3a\xad\xed\ +\x65\x97\x71\x22\x6d\xe3\x84\x61\x90\xd2\x14\x21\x65\x8b\x05\x1a\ +\x80\xb9\x09\xb3\xb5\x51\x34\x32\x96\x62\xd9\x10\x0b\x7b\x6d\x5f\ +\x8f\x85\x4e\x12\x2f\x5b\x2e\xf5\xa5\x21\x7a\x55\xe2\xf5\x3b\x26\ +\x5e\xe1\xf7\x4c\xfc\xb9\x7b\xf3\x7b\x24\xfe\x84\xce\xd4\xad\x0f\ +\x9d\x2e\xad\x59\x5f\xd1\x5a\xd2\xba\xad\x6e\xfb\xae\x88\x3f\x6e\ +\x30\x68\xad\x5a\x12\xff\xd5\x8a\xfd\xa5\xec\x93\xd7\x13\x1e\xe0\ +\x7f\xb7\xf5\x18\xbf\x27\xe1\x71\x92\xf8\xb6\xbe\xdb\x55\x11\xdf\ +\xf6\xbc\xe9\xaa\x88\x7f\xbf\xa6\x22\x10\xff\x36\x4c\xc5\xbb\x9e\ +\x49\x1c\xca\xee\xca\x83\x6a\x93\xbd\x34\x7a\x9c\x46\x4f\x37\xe5\ +\xec\xef\xc3\x72\x26\xcb\x70\x12\x65\x81\x0a\xa0\x79\x17\xa9\xc8\ +\x2b\xee\xe3\x64\x14\x25\x45\x95\xc8\x3e\x56\x55\x1e\xcb\xd8\xa5\ +\xe8\xdd\xd8\x10\x9b\xa7\x96\xf5\xc8\x5d\xbf\x7a\x08\x47\xf1\x13\ +\xa8\xbe\x66\xe5\x97\x38\x06\x3d\x92\xc5\x00\x18\x88\xfe\x66\xb5\ +\x39\xfe\xf2\x01\x0e\x41\x04\x2e\xf5\x59\x55\xbb\x3b\xda\xe2\x08\ +\x31\xb5\xf7\xe4\xe1\x3a\x49\x60\x65\xfc\x59\xb8\x8d\x80\xaa\xec\ +\xab\x78\xfe\xea\x21\x7e\x9a\x24\x06\x9d\x34\x59\x47\xcd\x9e\xa3\ +\x78\xb8\x36\xf9\x7f\xfe\x7a\xb7\xaa\x79\xd6\x59\xad\x85\xe9\xeb\ +\xdf\xdf\xc7\x1b\xf7\x03\x9e\xa6\x0b\xa0\xd6\xcf\xf3\xd8\x30\x15\ +\x7b\x98\xe4\x2d\x8a\xcc\x36\x89\xd5\x81\x16\x9b\x2a\x30\xd5\xac\ +\xda\x1e\xae\x9a\x87\x9b\xe9\x7c\xfa\x25\x1a\x99\x40\x53\xce\x2d\ +\xf3\x28\x0d\x47\x61\x1a\x56\x9c\x51\x94\x10\x59\xe6\xfe\xdc\x25\ +\xa3\x71\xff\x3f\x3f\xff\xbd\x8c\x78\x0d\x87\xfd\xff\xc6\xc9\x9f\ +\x05\x1f\x7a\x9e\x69\x10\xde\xc7\x6b\x98\x75\x19\x85\x33\x19\x6d\ +\xc3\xbe\x31\x09\xc2\xf4\xf3\x74\x0e\xeb\x6d\x12\x10\xff\xba\x99\ +\xcf\x80\x47\xcb\x0a\xab\xb1\x89\xa8\x54\x0f\xdd\x3d\x36\x89\x76\ +\x09\x86\xce\x9c\xcc\xd1\x70\x3e\x35\x9d\x7a\xbf\xa6\xd3\xd9\xec\ +\x17\x33\x48\x2d\x32\x97\x3f\x74\x9a\xce\xa2\x5a\xb8\xae\x97\xcf\ +\xbe\x88\xa8\xd5\x88\xbb\xeb\x15\xd4\x67\xbf\x26\x15\x2a\x16\xa3\ +\x94\xc0\xce\xc2\xfb\x68\x36\xe8\xfc\xd3\x54\x7a\x7b\xb5\x93\x24\ +\x5e\x2f\xe7\xf1\x28\xca\xbb\x17\x68\x4e\xea\x62\x64\x42\x51\x2d\ +\xd2\x96\x56\x56\x54\x76\x3b\x0b\xd3\xe8\xa3\xcf\x02\x26\x99\x92\ +\x54\x76\x7d\x1a\x80\x8a\x21\x88\xaa\xdb\x2a\xda\x39\xa9\x20\x73\ +\xf6\x27\x5d\x52\x99\x59\x65\x80\x72\x0c\x80\xf5\x3f\xc0\x0e\x83\ +\xeb\x93\xf9\x51\x0b\x84\xae\xd2\x24\xfe\x33\x2a\x6b\x77\x3f\x9d\ +\x39\x1f\x3b\x12\x34\xa1\xf5\x65\x4f\x40\xb6\xd6\x97\x11\x78\x12\ +\xcc\x32\x2e\x30\x23\xbc\x53\xaf\xd8\x64\x67\xac\x0a\xec\xde\x9a\ +\xd1\x60\x3e\xc5\x16\x60\x60\x14\x4b\x21\x34\xb6\x6a\xf3\x2d\xc4\ +\x64\xa0\x15\x11\x35\xc1\x5b\xcc\xc8\x4c\x00\x26\x65\x0f\x76\x01\ +\xba\x2d\xd6\x5a\x86\xe9\x83\x35\x70\xa5\x5d\x16\x0b\x98\x40\x9c\ +\xf8\x20\x6d\x1e\xc3\x74\x9d\x44\x76\x20\x39\x0f\xbf\x41\x7f\x98\ +\xa4\xb4\x2a\xcc\x06\xf4\x30\xc8\xd3\xec\xdc\xb9\x6b\xac\x59\x84\ +\xe1\x3f\x0f\x75\x39\x0b\xb8\x39\xbb\x66\xfa\x32\x64\x65\x28\xf6\ +\xf1\x72\x53\x14\x18\x8d\x06\x04\xf4\xef\xd7\x69\x5a\x2f\xfb\x5f\ +\x3c\x5d\xf4\x61\x9f\x45\xc9\xb7\x41\x44\xef\x23\xc2\x03\x70\x4d\ +\x24\x61\xbc\x6b\xcc\x7e\x2e\x85\xc2\x9e\xb9\x53\x44\x2b\xce\xbb\ +\xe8\xba\x11\xa1\xd8\xc1\x23\x0a\xf4\x3e\xd6\x48\xd4\x10\x41\x5d\ +\x1a\x10\xcc\x30\xc1\x57\x8e\x07\xdd\xc7\x83\x80\x39\x40\xcd\x95\ +\xe1\x41\x15\xd5\xec\xfd\xe0\xc1\xf7\xf1\xa0\x20\x2d\x34\x82\xcb\ +\xe0\x61\x36\x15\xd5\xef\x07\x0f\x87\x4c\x65\x24\xc3\x03\x17\x70\ +\xbc\x23\xee\x70\xc9\x53\xd4\xe0\x8e\xf7\x03\x07\x73\x09\x53\xdc\ +\x65\x3c\x60\x06\x10\xec\x81\x8d\xb5\xc3\x06\x5f\xbb\x5e\x61\x0e\ +\x39\x0a\xf6\x98\x96\x92\x48\xda\xa5\x32\xa0\x58\xc1\x55\x21\xc2\ +\xae\x1e\x11\x87\x24\x35\xd6\x18\x21\x92\xa8\x2e\x31\x07\x91\xe6\ +\x7a\x4f\x88\x1c\xb0\x4f\x0d\x22\xb2\x4b\x70\x13\x11\xa5\xae\x1e\ +\x11\x87\x3c\xad\x76\x0d\xa6\xdf\x0d\x8f\xdc\xf5\x26\xe5\xad\xed\ +\xb2\x1d\x70\xd8\x0e\xb8\x6b\xc7\x9c\xb5\x23\xae\x5a\xe9\xa8\xa1\ +\x5a\xd0\xc1\x46\x07\x3c\xfd\x8f\x1f\xf6\xd3\xb1\x6e\x0f\xc0\xb5\ +\x88\x17\x75\xf7\xbf\xee\x18\x97\x59\xb9\x3b\x5c\xef\x99\xb9\x6c\ +\x5c\x51\x60\x0e\xee\xe1\x53\x3c\xcf\xcf\x10\x9c\x4d\xe1\xab\xcf\ +\xf6\x80\x2c\x0a\x46\xe1\xea\x21\x4c\x92\x70\xbb\x1b\xbe\xe1\x1a\ +\x33\xcc\x2c\xd7\x78\xe2\x60\x84\x6f\x39\xa9\x62\x5a\x48\xa2\xda\ +\xb4\x1c\x7b\xa3\xdd\xee\xa8\xf6\x07\x4c\x17\x37\xaa\x4a\x7f\xc5\ +\xd8\xe7\x2c\xb3\x38\xb2\x5b\x30\x39\x7c\x93\x99\xc6\xcc\x45\x1b\ +\x9d\xea\x6c\x60\x68\xf8\xd4\x0e\xa5\xf3\x77\xc6\x73\xf0\xac\x4b\ +\x95\x0b\x63\xe7\x0b\x17\x7a\xe0\xdd\x70\xc0\x08\xa9\xcc\xbb\xc1\ +\x1c\xfc\xbd\x3a\x7a\x0d\x83\xf7\x3d\xa3\xa7\x5d\xf0\x19\x67\x88\ +\x20\x8a\xc5\xce\xdc\x85\x86\xd4\x62\x3e\xf5\x03\xbe\x1c\x3e\xdf\ +\x89\x1f\x38\x4f\xe0\x52\x93\xdd\x59\x03\xc3\x9a\x5b\xf0\xd1\x1f\ +\xf0\x55\xf0\xf9\x4e\xe9\x67\xfc\x2d\x81\x39\xd9\x9d\x5f\x09\xd8\ +\xbf\xec\x3a\xf6\x6f\xcd\x86\x78\x43\xda\x0d\x53\xf1\x52\xda\x4d\ +\x36\x97\xaa\xb4\x88\x99\x50\x92\x1b\x3f\x92\x08\xa5\x08\xf6\xc0\ +\xe6\x31\xde\x93\x22\xdd\xe6\xd3\xbe\x9b\xd5\xbd\x30\x72\xee\xbd\ +\x61\xb0\x13\x58\x69\x6d\x3c\x4e\xa2\x28\x28\xba\x1f\xd8\x39\xb0\ +\x6b\x4a\xd9\x12\x3c\x6a\xa2\x08\xb9\x73\x4a\x10\xff\x01\x9e\x03\ +\x3c\xbf\x59\x5d\x6d\x5b\xa5\x39\xce\x1c\x59\x25\x34\x55\x3f\xd0\ +\x73\xa2\xe7\xb3\x43\xf8\x49\xc4\xb5\xda\xb9\xbd\x02\x5f\x07\x7e\ +\x75\xc7\xb8\x76\x5b\xd3\x6e\xb9\x13\x85\x64\xe7\xe2\xc7\x0b\x78\ +\xef\xc0\xe5\x5f\x1e\xa0\x8b\x31\xa1\x14\x9c\x27\x50\x2f\x92\x52\ +\x81\x3d\x02\x38\x53\x8c\x19\xeb\x66\x77\x02\xe4\xa6\x67\x04\xa8\ +\x49\x8a\xe0\x5d\x2a\xe0\x4e\x72\xac\x3c\x93\x3d\x67\x18\xbb\x2b\ +\x03\x50\x50\x14\x35\x6c\x8d\x83\x8b\xe2\x3c\x7a\xc8\xdf\x9e\x61\ +\xec\x05\x4f\x65\x0e\xcd\x28\x3b\x0c\xd8\x7f\x51\xe8\xf6\x65\xa6\ +\xb8\xbf\x06\xb8\x5c\x03\x5a\xae\x01\x2f\xd7\x80\x97\x6b\xc0\xcb\ +\x35\x60\xe5\x1a\xc8\x7c\x0d\xb8\x73\x0d\xaa\xc5\x47\x8d\x8a\x13\ +\x1c\xe4\x3e\xcb\x69\xf2\x29\xd5\x42\x1d\xe3\xd3\x83\x2c\xb0\xdb\ +\x80\x17\x3d\x7d\x72\x9e\x25\x9e\x1d\xeb\x2e\x81\x42\x98\x3c\x13\ +\xa8\xb7\x46\x7f\xab\xc8\x76\x8d\x7e\x76\x25\xf4\xb7\x88\x63\xd7\ +\xa8\x17\x57\x42\x7d\x8b\xa8\x75\x9d\x7a\x9f\x5f\x09\xfd\x2d\xa2\ +\xd4\x16\xfd\xd7\xb2\xfb\xcf\x8e\x4a\x5b\xd4\xd3\x2b\xa1\xfe\xfc\ +\x28\xb4\xcd\xfc\xf8\x4a\xe8\x3f\x2f\xec\x5c\xd1\xce\x9f\x6b\x1d\ +\xbc\x39\xc2\xdb\x04\x99\xeb\xf4\x5f\x8d\xe0\x6b\x15\x54\xb6\x10\ +\x40\x57\x86\xc0\x59\x41\x64\x0b\x81\xab\xd9\xfe\x6d\x82\xc6\x16\ +\x02\xcf\x35\x7f\x4a\x2f\xa1\xba\xb1\x93\x91\x19\xaa\x85\x2b\x1d\ +\xf1\xd3\x0b\x26\x0d\x33\x84\xeb\x65\x07\x32\x97\xd1\xed\x51\xcf\ +\xa5\x7c\xc3\x21\x1e\x45\x26\x0f\x7c\x35\xe8\x0c\xb3\x4f\x2b\x80\ +\x5c\x38\xc3\xf4\x1c\xd9\x31\xe6\x35\x3f\xde\x15\x08\x74\x14\xa5\ +\x4a\x99\x33\x7c\x02\xbe\xb9\xe4\x4c\x72\x4f\x06\x9a\x83\xaf\x25\ +\xba\xbe\x0a\x08\xe1\x0c\x53\x8f\x80\x86\x63\x02\x51\xda\x45\x46\ +\xb5\x61\xb0\xf1\xa0\xe1\x97\x8b\xa6\x03\xbc\xc2\xf9\x88\x2b\xc1\ +\x9b\x05\x92\x62\xca\x6c\xcb\x6c\x93\xbd\xd3\x47\x19\xe2\xca\x3e\ +\xbe\x2c\x72\x06\x30\xf8\xcd\x04\xf3\x86\x3b\x93\x67\x0d\x00\x7a\ +\xe0\x34\xe3\x46\x7a\x63\x91\x37\x00\x2b\x74\xa1\x04\xef\xe2\xc4\ +\x09\xc6\x52\x48\x4a\x5d\x7c\x64\x13\xda\x24\x5e\x2f\x46\x7b\xd8\ +\x5a\xa5\x5f\x8d\xad\x2b\x86\x72\x99\x6d\x67\x6d\x32\xeb\x6f\x6f\ +\x99\x3f\x85\x42\x99\x46\x0c\xac\x2f\x24\x15\x36\x7f\x76\x06\xdc\ +\x71\x4d\x04\x46\xea\x76\x0f\x7d\xb3\x77\xa5\x1d\x60\x69\x72\xc4\ +\x59\x53\xcf\x7e\x26\xeb\x59\x96\xb9\xf1\x25\x4a\xe2\x56\xc4\x58\ +\x9c\xd0\x0c\x5b\xe6\x1c\xa4\xc0\x91\xe6\x44\x35\x3b\x96\xdc\x67\ +\xfe\xe8\x18\xd3\xcd\xce\x1b\xd7\x8b\x59\xbb\xcf\x36\x7b\x51\x97\ +\x68\xf3\x62\x6b\xf3\xcc\xf5\x95\x31\x20\xcd\xaa\x1c\x03\x6a\xb4\ +\x0c\x93\xa2\x3d\x08\x9c\x04\x8a\x73\xa1\x9b\x67\xbf\x6f\x19\x84\ +\x66\x1e\x49\x0e\x02\x37\xc7\x82\x94\xeb\x66\x76\x45\x01\x02\xf8\ +\x61\xe6\x10\xa2\xb9\xdc\x86\x13\x74\xa0\xa0\x82\x36\xc7\xac\x81\ +\xa0\xdf\x1a\x08\xfc\x05\x40\x90\x14\xac\xd5\x26\x93\x6c\x77\xef\ +\x6c\x4b\xa4\x29\x69\x79\x84\xee\x54\xf8\x46\x9f\xd6\xe5\x4d\x7e\ +\x7e\xa9\xf8\xb9\xe7\x97\xae\x43\x62\xad\xd9\xa1\x8c\x31\x77\x73\ +\xd1\x3c\x53\xfe\x36\x2a\xf6\x9b\x58\x1b\x95\x1d\xa9\xdb\x1d\x21\ +\x9e\x69\x77\x1d\xb5\x13\x4e\xaf\x94\x3a\xb4\x52\x1f\xc2\x7b\x23\ +\x8f\xdd\x2a\x5b\x7d\x23\x45\xed\x32\x43\x60\x61\xf8\xf9\xc6\xcb\ +\x71\xbb\xe7\xa0\xb9\x64\x19\x58\x87\xcd\x85\x7c\xbb\xf0\x8b\x6b\ +\xfd\x13\x0b\x67\xde\x7e\x3e\x9a\x94\x79\x42\x3a\x5a\x0a\xe5\x6c\ +\x5d\x7c\x42\x81\x1d\x37\x01\xaa\xe5\xd3\x4d\x69\x79\x9a\xd8\xfd\ +\x0c\xd4\x83\xc2\xdb\x15\x9c\x6d\x0b\xc0\x21\x3d\x7c\x1e\x00\x87\ +\xf4\x7f\x1d\x81\xbd\xf0\xf8\x69\x0c\xc8\x0b\x62\xe0\x32\xc8\x0e\ +\xa8\xe1\x13\xba\xeb\x84\xe6\xb3\x31\xf0\x8f\xa5\x61\xb9\x51\xe0\ +\x2f\x80\x42\xa5\x51\xcf\xd6\xc3\x97\x45\xe1\x19\x38\xc8\xaf\xc0\ +\xc1\x65\x2b\xe4\x37\xd9\xd7\x9d\x79\x6f\xfc\xf3\xcd\xff\x01\x98\ +\xfc\x65\xbe\ +\x00\x00\x0a\x8f\ +\x00\ +\x00\x3a\x67\x78\x9c\xed\x5a\x5b\x6f\xe3\xc6\x15\x7e\xf7\xaf\x60\ +\xb5\x2f\x31\x2a\x8e\xe6\x7e\x91\xed\x0d\x8a\xa6\x29\x02\x6c\x10\ +\xa0\xd9\xa0\xed\x53\x40\x8b\x23\x99\x5d\x8a\x14\x48\xca\x92\xf6\ +\xd7\xf7\x0c\x25\xf1\x62\x53\xb6\x28\x69\xbd\x49\x5a\x09\xbb\x16\ +\x67\xce\xdc\xbe\x73\xe6\x9b\x73\x86\xe7\xf6\xdb\xf5\x3c\xf6\x1e\ +\x6d\x96\x47\x69\x72\x37\x20\x08\x0f\x3c\x9b\x4c\xd2\x30\x4a\x66\ +\x77\x83\x5f\x3e\x7e\xef\xeb\x81\x97\x17\x41\x12\x06\x71\x9a\xd8\ +\xbb\x41\x92\x0e\xbe\x7d\x7f\x75\xfb\x27\xdf\xf7\xfe\x9a\xd9\xa0\ +\xb0\xa1\xb7\x8a\x8a\x07\xef\x87\xe4\x53\x3e\x09\x16\xd6\xfb\xe6\ +\xa1\x28\x16\xe3\xd1\x68\xb5\x5a\xa1\x68\x57\x88\xd2\x6c\x36\xba\ +\xf6\x7c\xff\xfd\xd5\xd5\x6d\xfe\x38\xbb\xf2\x3c\x0f\xc6\x4d\xf2\ +\x71\x9a\xdf\xdf\x0d\x1a\x2d\xd2\x85\x4d\xf2\x55\x50\x4c\x1e\xee\ +\xd3\xf4\x53\xd9\x6e\x99\x45\x23\x8a\xb1\x19\x81\xec\xa0\x6e\x19\ +\x4e\xaa\x86\x8b\x65\x16\x97\xa2\xe1\x64\x64\x63\x3b\xb7\x49\x91\ +\x8f\x08\x22\xa3\x86\xf8\xa4\x16\x9f\xb8\x79\x47\x8f\x76\x92\xce\ +\xe7\x69\x92\x97\x2d\x93\xfc\x5d\x43\x38\x0b\xa7\xad\x59\xad\x58\ +\x29\x44\x8c\x31\x23\x4c\x47\x94\xfa\x20\xe1\xe7\x9b\xa4\x08\xd6\ +\x7e\xbb\x29\xac\xae\xab\x29\x2c\x00\x8f\xa0\xae\x96\x3c\x4e\x6a\ +\xbc\x8e\x01\xc4\x83\x93\x29\x6b\x9b\xa3\x83\xe2\x16\xf0\xaf\x6a\ +\xb0\x2f\x40\x79\xba\xcc\x26\x76\x0a\x2d\x2d\x4a\x6c\x31\xfa\xee\ +\xe3\x77\x55\xa5\x8f\x51\x58\x84\x8d\x6e\xf6\x7a\x6b\x8d\xdb\x52\ +\x66\x12\xcc\x6d\xbe\x08\x26\x36\x1f\xed\xcb\xcb\xf6\xab\x28\x2c\ +\x1e\xee\x06\x92\x2f\xd6\xe5\xf3\x83\x8d\x66\x0f\x45\xa3\x20\x0a\ +\xef\x06\xb0\x42\xaa\x14\x2d\x9f\xf7\x73\x18\x57\x36\x88\x11\xdb\ +\x56\xed\x3b\x6e\x56\x71\x8d\x18\x22\x5e\x66\xb4\x96\xed\xf6\x61\ +\x3a\x71\x93\xba\x1b\xfc\x6c\xb3\xc8\xe6\x68\x0f\x63\xd5\x4b\xba\ +\x2c\x16\xcb\xe2\x57\xbb\x2e\xc0\xc4\xca\xee\x60\x21\x8d\x55\x95\ +\xd5\xae\x19\x6a\xad\xa8\xb1\x37\xc8\xe0\x3d\x94\xdc\x86\x76\x9a\ +\xbb\x9a\xed\x62\xdc\x13\xac\x86\x97\x75\x50\x3b\x0f\xb2\x4f\x36\ +\xdb\xd6\x37\x46\xcf\x8b\x74\xf2\xc9\xc9\xff\x6d\xbe\x28\x36\x1f\ +\xb3\x28\x48\x66\xb1\xfd\x69\x59\x7c\x18\xec\x65\x53\x98\x77\x02\ +\x58\x05\xcb\x22\xad\x0a\x33\x3b\xfd\xb7\x5b\x38\x6e\x96\xfc\xab\ +\x5d\xf2\x72\xb7\x79\xb1\x89\x01\x96\x14\x16\x32\x8d\xd3\xd5\xf8\ +\x31\xca\xa3\xfb\xd8\xee\xe6\x0b\x33\x5e\x04\xc5\xc3\x5e\x78\xdb\ +\x99\x2b\xe1\x94\x88\x41\x5d\x0c\xa5\x3f\x7a\x02\x29\x35\x84\x91\ +\xbd\x0f\x9e\x4f\x91\xd6\x43\xd1\xf8\xed\x6f\x1f\x2a\x99\xcf\x5e\ +\xa3\xf9\x6e\x12\xd3\x28\x8e\xfd\x6c\x19\xdb\xb1\x7d\xb4\x49\x1a\ +\x86\x37\xae\x64\xfc\xee\xfb\xf2\x73\x93\x17\x59\xfa\xc9\x8e\xdf\ +\xe1\xf2\xb3\x7b\xf4\x4b\x9b\x1a\x03\x35\x2d\x8a\x46\x8f\x45\x16\ +\x24\x39\xd8\xf3\x1c\xec\x69\x12\xc4\xf6\x1b\x8c\xf4\xf5\xb6\x34\ +\x06\x5a\xfa\xc6\x97\x43\x7c\x3d\xf0\x46\x3b\xb5\x8c\xb6\x7a\xd9\ +\x3d\xc1\xb6\xb1\x41\xf6\xf7\x2c\x08\x1d\xe4\x4d\x1c\xdb\x35\x02\ +\x8b\x1a\x04\xe0\x9f\xf1\x22\x88\x9c\x8a\xf2\x34\x8e\xc2\x1a\x41\ +\x50\xee\xe2\xd9\x5a\x5d\xa1\x3f\x49\xe3\x34\x1b\xbf\x9b\x4e\x77\ +\x0b\x82\xa2\x14\xb6\x4d\x54\x6c\xc6\xe4\xa6\xb1\x9a\x74\x3a\xcd\ +\x2d\x74\x8c\x07\x6d\x4d\xb8\x16\x30\x09\xd5\x58\x48\x7b\x86\x47\ +\x5a\xdd\x5f\xb2\x2c\x5d\x91\x1f\x6d\x12\x5e\xc6\xdc\x3a\xfa\x3b\ +\x60\x67\x37\xaf\x1a\x1a\x96\xfc\xa9\xa1\xc1\x70\x3b\x3b\x03\xa3\ +\xda\x5b\x96\x4f\x28\x12\x8d\xe2\x6d\xe9\x5e\xf4\x38\x73\x7b\xd5\ +\xc2\x6e\x5e\x36\x31\x7e\xed\x65\x69\xe1\xec\x8b\x68\xdc\x34\x37\ +\x82\x5f\x30\xb7\xa3\xb4\x43\x3f\x5c\x56\x3b\xed\xfe\x4e\xd7\x8e\ +\x92\xc7\x03\xbb\x43\x12\x23\x49\x45\x0b\x61\x67\xb4\xff\x49\xa3\ +\x64\x9c\xa5\xcb\x24\xbc\x79\xaa\x6f\x8d\x14\xd1\x42\x2b\x3d\xe4\ +\x08\x33\xa6\x98\xa0\x5b\x5e\xa1\x58\x51\x6d\x4a\xad\x13\x89\x09\ +\xa3\x42\x42\xc5\x4e\x5c\xf3\xa1\x0f\xf2\x98\x28\xac\xb4\xf7\x57\ +\x4f\x22\xa3\x18\x36\x18\x2c\x86\xc0\x0c\x8c\xe4\xd2\xb8\x42\xcd\ +\x08\x57\x72\x08\x65\x44\x28\xce\x49\xe7\x70\x2d\xfb\x79\xa6\x79\ +\x20\xff\x83\x9a\x3f\x57\xf1\xe4\xc2\x8a\x27\x17\x52\xbc\xd0\xbf\ +\x9b\x6d\xa9\x0f\x2a\xa7\x9c\xdb\xd9\xe7\x00\x27\xc4\xf4\xa2\x7b\ +\xf7\x39\x91\xee\x39\xa1\xa4\x9a\xef\x31\xa3\x4d\x88\xfb\x1e\x31\ +\x1a\xe9\x1e\x8d\xbd\x76\xb8\x1c\x8b\x12\xd3\x84\xf6\x40\xa9\x52\ +\xf6\x29\x28\xc1\x58\xfc\x30\x4a\xb5\x14\xc5\x5d\x1d\x22\xf1\xdc\ +\x2a\x5f\x9b\x1a\x58\x19\x65\xc0\x86\xe6\xa6\x97\x76\x3a\xbb\x3a\ +\x56\x3b\xb0\x4a\x79\x31\xed\x18\xdc\xc7\x86\xa5\x3d\x47\x3b\x86\ +\xf4\xb3\xe1\xa3\x1d\xa4\x4e\x94\x0c\xb9\xa0\x0d\xc3\x79\x77\xe6\ +\x4e\x3f\xda\x84\x95\xee\x05\x92\xa5\xee\xfb\xfa\x60\xdd\x96\xa4\ +\xf1\x6b\x18\xb9\xa7\x20\x7e\x86\xd1\xfe\xd4\x82\x59\xc4\x76\xe2\ +\x8e\xa6\x78\x15\x6c\xf2\x6a\x90\x32\x08\x1d\x3f\xc0\x89\x74\x37\ +\x78\xf7\x04\x4d\xc2\x79\xeb\x80\x6a\x0f\x41\x29\xa9\x81\x99\xed\ +\x0a\x7f\x49\xa2\x02\xa2\xe3\x65\x6e\xb3\x9f\x5d\x84\xf9\x53\xf2\ +\x4b\x6e\x9f\x49\x7d\xac\x0f\x81\x79\x50\x64\xd1\xda\x9d\xc3\xee\ +\x8b\xa4\xd1\x82\x1a\x0e\xbf\x29\x86\xc0\x84\x6a\xc9\xae\xab\xe6\ +\x93\xf5\xdd\x80\x52\x81\xa8\xe4\x98\xd6\xa5\x1b\x88\x50\x15\x45\ +\x0a\xfc\x87\xda\xdb\x99\x76\xca\x4e\x3b\x65\xb3\xbb\x01\xe3\x88\ +\x71\x41\x74\xad\xd3\xaf\x01\x68\x63\xa6\xff\x07\xf4\x02\x80\x12\ +\xc3\xff\xc8\x80\x1e\xa0\xc5\xd7\x00\xed\xe0\x4d\x87\xe3\x1b\x79\ +\x48\x30\x96\xec\x79\xba\x3c\x1f\xed\xf8\x33\x98\x70\xfd\xdb\x63\ +\x4e\x62\xfe\xd0\x1b\xbd\x82\x6e\x61\xb3\x7c\x01\xd8\x45\x8f\xb6\ +\x8a\x68\xf6\x57\x7e\xc5\xc6\x5d\x51\xb6\x45\x59\x1d\xf9\xd4\xf7\ +\x87\x8b\x5f\x61\x42\xd8\x1b\x7b\x8c\xc2\x7f\xa4\x53\x62\xb3\x95\ +\x20\xe0\x86\xc0\x1f\xdc\x29\xf3\xd9\x5d\x64\xbe\xd0\xcd\x6e\x06\ +\x3e\xc4\x70\xb3\x28\x81\x85\x39\x39\x4a\x10\x2b\x3f\xed\x36\x2e\ +\xcc\xaa\xd7\x46\x55\xf3\x78\x3e\x71\x57\xbe\x64\x4e\xce\xf9\x7b\ +\xc9\x37\x6c\x5c\xf6\xad\x09\x6c\x04\x70\x91\x85\x14\xaa\x6e\xb4\ +\x81\x52\x46\x90\x01\x1f\x58\x36\x64\xe9\xdd\x40\x30\x84\x35\xc3\ +\xac\xd6\xf4\x86\x76\xc9\x9e\x6d\xa6\x88\x10\x22\xb0\xbb\x0d\x80\ +\x6f\xfd\x04\xc1\x3e\x51\x8a\x40\x3c\x3f\xf4\x25\xc2\x98\x72\xa1\ +\xc8\xf5\x57\x44\x93\x63\x7c\xc1\x43\xa3\xdf\xaa\xbf\x94\x12\xbf\ +\xe4\x11\xec\xc2\xc6\xc3\x54\x07\xd5\xba\xc5\x42\x40\x17\x46\x12\ +\x26\x78\x8b\x85\xa8\x41\x84\x13\xe7\x52\x37\x59\xe8\xb9\xec\xb4\ +\x53\x16\x58\x88\x72\x44\xa8\xe2\x54\x1d\xcd\x98\xc4\x5d\x4a\x71\ +\xea\x08\xd3\xc7\x88\x2b\x2d\xa9\x22\xf2\xfa\x48\xd5\x7f\x4d\x44\ +\xd9\xa5\x0f\x8f\xd7\xa0\x78\x13\xbd\x7d\x4d\x44\xf9\xa5\xdd\xc4\ +\xdf\x16\xa2\x3d\xc2\x67\xd5\xeb\x0a\x88\x19\x2b\x4e\xbe\x02\x02\ +\x66\xeb\xe3\x06\xc2\x32\xd5\x51\x4e\xe7\x81\x00\x9a\x5c\xee\x92\ +\x41\xf6\x71\x96\x03\x16\xb0\xd3\x9d\x65\x2d\xfb\x39\xcb\xee\x22\ +\x46\xf0\x93\x51\x92\xaf\x3a\xcb\xc7\xa3\xa4\xfb\xd8\x92\x9e\x48\ +\x73\xc6\x75\xa2\xee\x67\x4b\xd3\xe9\x64\x4a\x4f\xb7\x25\x73\xaa\ +\x2d\x9d\xe5\xb5\x34\xce\xfc\x4e\xaf\xc5\xf4\xe4\x30\xe7\x64\x70\ +\x82\xa4\x60\x18\xd7\x0c\x52\x3a\x19\x0c\x81\xef\x2f\x04\x6b\x3b\ +\x19\x12\x69\xc6\x88\x7a\xe2\x64\x54\xb2\xfd\xe9\xc6\x2d\xe9\x78\ +\xa5\x09\xe5\xbe\x27\xdf\x69\x4a\xd5\xcf\x44\x84\xfb\x9e\x7c\xa7\ +\x29\xcd\xc5\x36\x12\x21\x7d\x36\xd2\x79\x28\xb9\x37\x25\x6f\x87\ +\x52\xf3\x5d\xc9\xd9\x28\xd1\x3e\xa4\x7c\x26\x4a\xb4\xe7\x0d\xc6\ +\x99\x28\x5d\x8e\x94\x09\x23\x6f\x87\x12\x63\x6f\x89\x12\x13\x17\ +\x44\x49\xbf\x1d\x4a\x1c\xbf\x25\x4a\x9c\x5e\xf2\x5d\x8b\xdf\x87\ +\x99\xce\x7d\xdb\xe2\xf7\xa3\xa6\x73\xdf\xb7\xf8\x97\x43\xca\x60\ +\xe3\xf7\x61\xa7\xb3\xdf\xde\xf9\x7d\x6f\x58\xcf\x7c\x7f\xe7\xbf\ +\x7a\xda\x5d\x3e\xa8\x2b\xdf\xea\x37\x41\x6f\x0f\xc1\x09\xad\xfd\ +\x25\x17\x6e\x09\x8a\x98\x10\xba\x91\x17\xe1\xc2\x2d\x2e\x10\x15\ +\xc6\xb0\xfa\xde\x60\xda\x29\x3b\xed\x94\x85\x70\x8b\x48\x04\x9e\ +\x2b\x65\xb5\xaf\x74\x38\x36\xf4\x21\x34\x63\x8a\x6a\xc5\x86\x14\ +\x29\xac\x21\x4c\x2b\xaf\x82\x04\x01\x1f\xcc\x5d\x05\xc1\xb0\x84\ +\x6b\xa1\xf8\x90\x31\x83\xdc\xfb\x20\x0d\xa1\xa4\xe0\x94\x11\x43\ +\xfb\x5d\x4d\xdc\x8e\x5c\x6e\x63\xf9\xab\xba\x72\x75\x29\x96\xe1\ +\x63\x64\x57\x57\x15\x68\xf7\x41\xe5\x11\x2e\x82\x99\x2d\x0d\x02\ +\xa0\xde\xee\xd5\x5d\xc5\x7d\x9a\x85\x36\xdb\x57\xc9\xf2\xd3\xaa\ +\xda\xd9\xcc\x36\x03\xf9\xaa\xad\x59\xd7\x6b\x55\x8f\xbb\xeb\xf3\ +\x87\x20\x4c\x57\x10\xba\x3e\xad\xfc\x9c\xa6\x80\x9e\x00\x1f\x55\ +\x6a\xc1\xd9\xd3\x6a\xa7\x56\x89\x84\x56\xc2\x54\xb6\x50\x57\x6e\ +\xca\x1b\x30\x00\x0e\x57\x17\xd6\x75\xe5\x32\xcb\x00\x40\x3f\x0e\ +\x36\x16\x16\x55\xfe\xd9\x1b\x77\xfe\x90\xae\x66\x99\x03\xa7\xc8\ +\x96\xf6\x69\xcb\x30\x9d\x2c\x5d\x8e\xb2\xbf\xdc\x82\xbf\xcb\x8c\ +\x6d\x48\xb8\xb6\xfe\xfd\x7d\xba\xee\xee\x60\x15\x25\xb0\x58\x7f\ +\x97\x6b\x4b\x98\x7c\x06\xc9\x4e\x62\x9f\x7d\xab\xaa\x1b\xb4\xa7\ +\x12\xeb\x9a\x01\x9e\x56\x6d\x0e\x57\xcd\x83\x75\x34\x8f\x3e\xdb\ +\xd0\xed\xe7\x9d\xb1\xcc\x6d\x11\x84\x41\x11\xd4\x86\xb1\x2f\xa1\ +\xaa\xba\x13\xb8\xcd\xc2\xe9\xf8\x1f\xdf\x7d\x5f\x11\xcb\x64\x32\ +\xfe\x67\x9a\x7d\xaa\x39\xc1\x09\x04\xf7\xe9\x12\x66\x5d\xd1\x9d\ +\xcb\xb9\x9d\x8c\xdd\x3e\x08\x8a\xf7\xd1\x1c\xd4\xed\x92\xa4\xff\ +\xbc\x9e\xc7\x60\xa2\x55\x45\x4b\xd8\xbd\x1a\xa8\x3b\xdd\x76\x9b\ +\xd9\x6d\x12\x74\x67\xde\x78\x38\x99\x47\xae\xd1\xe8\xe7\x22\x8a\ +\xe3\x1f\xdc\x20\x0d\x02\xdc\x75\x1a\x15\xb1\x7d\x5f\x8e\xb9\xfd\ +\xb9\x5f\xc5\x68\xb7\x8c\x3d\x7f\x35\x56\x79\x3b\xda\xc3\x50\x3e\ +\xcd\x6a\x78\x5a\x16\x53\x21\x1c\x07\xf7\x36\xbe\x1b\x7c\x70\x95\ +\xde\xb3\xda\x59\x96\x2e\x17\xf3\x34\xb4\xbb\xe6\x7b\x58\x67\x4d\ +\x16\x9b\x41\x78\x59\x47\x58\x8d\x6c\xa9\x3a\x2d\x8a\x02\x51\x5c\ +\xd7\xc7\xc9\xac\x86\xaa\xe2\xf6\x6d\x42\x96\xa6\xee\xbb\x4f\xc8\ +\xea\x3a\x04\x0f\xf4\xdf\xe0\x9a\x6a\x56\x9a\x37\x55\xda\x4e\x3b\ +\x6b\x31\x79\x92\x00\x93\xa7\x99\x0f\x7b\xec\x31\x28\x96\x99\x6d\ +\x9f\x53\x75\x92\x1a\xdb\xa7\x81\xef\x3f\x65\x9a\x1a\x47\x58\x0a\ +\x2d\xf9\x90\x33\xa4\x39\x30\xa4\x2a\x93\x03\x89\x86\x7d\xc0\xd9\ +\x10\xb6\x34\x57\xc0\x96\xba\x51\x46\x80\x98\xb1\x91\x8c\x79\xf0\ +\x4b\x08\xc9\xb8\x19\x12\x86\xa8\x14\x58\x1b\x8f\x72\x64\xa8\x10\ +\x84\x0f\x09\x41\x8c\x62\xc1\x85\x47\xb4\x4b\x4e\x34\xc6\x0c\xa9\ +\x02\x02\x81\xe8\x99\x78\x54\x23\x03\x67\x99\xd2\x43\x2a\x10\x97\ +\x54\x6a\xe2\x01\x0b\x2b\xc5\x95\x90\x43\xca\x10\xe3\xb0\x5b\x3d\ +\x41\x90\x32\x42\x28\x32\x14\xc0\xe6\x8c\x49\xd2\x51\xd4\x5a\x56\ +\x23\x71\x6e\x9c\xa4\x89\xbd\xe9\xd6\xcf\x3e\x61\x4e\x34\xd3\x2e\ +\x01\xd3\xf1\xfd\xb2\x28\x9e\xa5\x62\x82\xc1\xdb\x6c\x5f\x5a\x3e\ +\xc4\xb0\xab\x8b\x31\x7f\xa6\xee\x7d\x41\x18\x00\xcf\x66\x59\xb0\ +\x71\x63\x0c\xbd\xc6\x40\xae\x66\x7b\xc4\x8f\x71\x7b\xdf\x5c\x48\ +\xcd\xba\x4b\xcd\x9c\x18\x4e\xe0\x28\x14\x70\x2a\x30\x2e\x39\x01\ +\x3d\x13\x8c\x94\x66\x4e\x07\xdc\x9d\x7b\x06\xf0\x76\x49\x80\x82\ +\x10\x38\x29\x1d\x9b\x13\x23\x98\x70\x6f\xe5\x14\x67\x82\x81\x39\ +\x30\xe8\x47\x49\x46\xbd\x89\x67\x1c\xd9\xc3\x68\x70\xb8\x52\xa3\ +\xb1\x51\x4e\x8e\x12\x50\x39\x1f\x4a\xc4\x24\x44\xe5\xa0\x51\x18\ +\x4d\xc0\x91\xa0\x5d\xf6\x29\xe5\x14\xc6\x3d\x43\x59\x8b\x75\x7f\ +\x65\xd5\xfb\xf0\x0b\x40\x6d\xf0\x53\xa8\xe7\x00\xb5\xe1\x06\xac\ +\x98\x0f\x85\x42\x46\x1b\x61\xa8\x03\xda\x48\x4c\x04\x77\x99\xb5\ +\x02\x1c\x54\x43\x00\x3f\x26\x0d\x91\xe0\x92\x80\xd5\x53\x0a\x7b\ +\xcb\x23\x1c\xf6\xa0\x01\x98\x86\xbb\x6d\xc9\x5c\x11\x44\x11\xb0\ +\x13\x86\x3e\x43\x8a\x80\x6b\x72\x3a\x7e\xf4\xcb\x9b\xba\x1c\x7a\ +\x7c\xe8\x51\xf8\xff\x15\x6b\xbf\x1d\xcd\xba\x28\x75\xc7\x7e\xca\ +\xbc\xc4\x7e\x07\x17\xdd\x9d\x12\xfb\x95\x77\xf8\xff\x00\xe5\x56\ +\x1b\xa2\x9d\x00\xff\xfa\xae\x7a\x71\x4b\x1e\x54\x73\x15\x40\x5d\ +\x8e\x1b\x7e\x37\x84\x59\x73\x8f\xc2\x6f\x00\xb5\x03\xba\xbc\x45\ +\xf8\x4d\xd1\xc8\xd7\xe5\xdc\x86\x0a\xe8\x89\x2a\xa8\xd8\x6f\xf7\ +\xa3\xfc\x73\xeb\x3c\xf5\xf7\x57\xff\x05\x83\x51\xbc\x7c\ +" + +qt_resource_name = "\ +\x00\x04\ +\x00\x05\x73\x64\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x0c\ +\x0d\xfc\x11\x13\ +\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x0d\ +\x0c\x77\x2f\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x65\x00\x73\x00\x2d\x00\x45\x00\x53\x00\x2e\x00\x71\x00\x6d\ +\x00\x08\ +\x0e\xc6\x53\xc7\ +\x00\x41\ +\x00\x78\x00\x65\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x0c\x4d\x0d\x67\ +\x00\x4c\ +\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x08\ +\x08\xf7\x53\x07\ +\x00\x47\ +\x00\x72\x00\x69\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0d\ +\x0c\x82\x4e\x07\ +\x00\x50\ +\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x0c\x40\x15\xc7\ +\x00\x4c\ +\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x08\ +\x0a\x61\x53\x27\ +\x00\x49\ +\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x08\ +\x08\xc8\x51\xe7\ +\x00\x53\ +\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x0f\xd1\x63\xc7\ +\x00\x53\ +\x00\x65\x00\x72\x00\x69\x00\x65\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +" + +qt_resource_struct = "\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x05\ +\x00\x00\x00\x1e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\xf2\x00\x01\x00\x00\x00\x01\x00\x00\x57\x42\ +\x00\x00\x00\x8c\x00\x01\x00\x00\x00\x01\x00\x00\x2a\xd3\ +\x00\x00\x00\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x4e\x3d\ +\x00\x00\x00\xc2\x00\x01\x00\x00\x00\x01\x00\x00\x3f\xd7\ +\x00\x00\x00\x72\x00\x01\x00\x00\x00\x01\x00\x00\x1d\xeb\ +\x00\x00\x00\xa2\x00\x01\x00\x00\x00\x01\x00\x00\x32\x72\ +\x00\x00\x00\x5c\x00\x01\x00\x00\x00\x01\x00\x00\x14\x27\ +\x00\x00\x01\x08\x00\x01\x00\x00\x00\x01\x00\x00\x63\xfa\ +" + +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/src/Mod/Plot/makeResources.sh b/src/Mod/Plot/makeResources.sh new file mode 100755 index 000000000..c1458d026 --- /dev/null +++ b/src/Mod/Plot/makeResources.sh @@ -0,0 +1,16 @@ +#!/bin/bash +## Create resources stuff for Plot module. + +# Perform trnaslations +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot.ts +lrelease resources/translations/Plot.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es-ES.ts +lrelease resources/translations/Plot_es-ES.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es.ts +lrelease resources/translations/Plot_es.ts + +# Create resources +rm -f Plot_rc.py +cd resources +pyrcc4 Plot.qrc -o ../Plot_rc.py +cd .. diff --git a/src/Mod/Plot/resources/Plot.qrc b/src/Mod/Plot/resources/Plot.qrc new file mode 100644 index 000000000..c28a3fd64 --- /dev/null +++ b/src/Mod/Plot/resources/Plot.qrc @@ -0,0 +1,13 @@ + + + icons/Axes.svg + icons/Grid.svg + icons/Icon.svg + icons/Labels.svg + icons/Legend.svg + icons/Positions.svg + icons/Save.svg + icons/Series.svg + translations/Plot_es-ES.qm + + diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index 078132b9c..f1952dc34 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -3,72 +3,72 @@ plot - + Save plot - + Configure axes - + Configure axes parameters - + Configure series - + Configure series drawing style and label - + Show/Hide grid - + Show/Hide grid on selected plot - + Show/Hide legend - + Show/Hide legend on selected plot - + Set labels - + Set title and axes labels - + Set positions and sizes - + Set labels and legend positions and sizes - + Save plot as image file @@ -154,12 +154,12 @@ - + Grid must be activated on top of a plot document - + Legend must be activated on top of a plot document diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts index 9f1df7954..d48ffa177 100644 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -3,72 +3,72 @@ plot - + Save plot Guardar gráfica - + Save plot as image file Guarda la gráfica como archivo de imagen - + Configure axes Configure los ejes - + Configure axes parameters Establezca los parámetros de cada eje - + Configure series Configure las series trazadas - + Configure series drawing style and label Establezca el título y el estilo de las curvas trazadas - + Show/Hide grid Mostrar/Ocultar la malla - + Show/Hide grid on selected plot Muestre/Oculte la malla del gráfico seleccionado - + Show/Hide legend Mostrar/Ocultar la legenda - + Show/Hide legend on selected plot Muestre/Oculte la legenda del gráfico seleccionado - + Set labels Establecer títulos - + Set title and axes labels Establezca los tñitulos de ejes y series de datos - + Set positions and sizes Modificar posiciones y tamaños - + Set labels and legend positions and sizes Modifique la posición y tamaño de títulos y legenda @@ -154,12 +154,12 @@ El juego ejes 0 no puede ser eliminado - + Grid must be activated on top of a plot document Para activar la malla seleccione primero una grafica - + Legend must be activated on top of a plot document Para activar la legenda seleccione primero una grafica diff --git a/src/Mod/Plot/resources/translations/Plot_es.qm b/src/Mod/Plot/resources/translations/Plot_es.qm new file mode 100644 index 0000000000000000000000000000000000000000..80bcd65ed7c5015ec93be6dfad616d83de2fbcff GIT binary patch literal 5155 zcmb_gTWB0r82*!Hcav+D-}%pMo;6o~cj>LyzF*yY;o#}df89dVG))=bE zM1@bAHl1Hi)IQhb9siqXX=k(j=Qg6|kDF(2{hg@oo#rbqZshwrGc9j_#p^%F^#1rN zQKmoB_t`R{micSfN16Lieo55xbLNd___@|ynRj0}&(~v_b4PuC?nLGj{BG;YzJBlu z+xa7V>b-l2x@NNf{&ok^l4H5sSB~*@qrMg!jI<6m>U*-Gx|6O!$})Y{W& zb3S*qI@t{z_uAIkAI=ixPqqDY=@p{f-ga-A^CUzR2;@Lxnfr_j!Gb#h{&B!gu;c+>G{blFeYgzRH4qi-P@}8EDk{7WBZx)9TAL0_n4U3Z zIVIr-Gd35(F@N&o#RDijrb zNfJc7Y9Et#Iun>ZWfUNi%w;cKrociI5S6j$+>hHKyB`WZjW3Tk$KIw0TWQCrsZ!;;Yla zTqX6D%)T0r37C`)dP!PvDo@0|#h`8^czOtEmBH0`0gST&HL^ zOmD3{LzRj>!)hrE+g`~0VBI!{C~FE)+g-Gyw1WnFcPjW>Xqatbdv-Wft@TXLkVfsp zR#`eei@FlB)arujT&M%OAzGCkD;l+zGoxK2Ij0)`dN8*dc3{n3f)y3Iu5o;$FJneOz~6{gTSIzNyji-H0&9GjIEZ&?J( zn>m#?@(t9(Ge{V6%NU;;777=eG$cw5-;8^$5ug}0&$8+q9-8VLb_3p`S$}pq#Yx!I zdp@K{We?zD3*(apR>UWba7}OGz=)oT-giXPdR`s=^!tqljyE(IzF-RN8@*l7l&(K) zG<>_D$)(>msO0+Qk3Z=b1{WDW89P|Ck64b>F8~l}ot+HKs(vMgp18M#m$v?DC$X7S_e^KY5HtApigX literal 0 HcmV?d00001 diff --git a/src/Mod/Plot/resources/translations/Plot_es.ts b/src/Mod/Plot/resources/translations/Plot_es.ts new file mode 100644 index 000000000..d48ffa177 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_es.ts @@ -0,0 +1,259 @@ + + + + plot + + + Save plot + Guardar gráfica + + + + Save plot as image file + Guarda la gráfica como archivo de imagen + + + + Configure axes + Configure los ejes + + + + Configure axes parameters + Establezca los parámetros de cada eje + + + + Configure series + Configure las series trazadas + + + + Configure series drawing style and label + Establezca el título y el estilo de las curvas trazadas + + + + Show/Hide grid + Mostrar/Ocultar la malla + + + + Show/Hide grid on selected plot + Muestre/Oculte la malla del gráfico seleccionado + + + + Show/Hide legend + Mostrar/Ocultar la legenda + + + + Show/Hide legend on selected plot + Muestre/Oculte la legenda del gráfico seleccionado + + + + Set labels + Establecer títulos + + + + Set title and axes labels + Establezca los tñitulos de ejes y series de datos + + + + Set positions and sizes + Modificar posiciones y tamaños + + + + Set labels and legend positions and sizes + Modifique la posición y tamaño de títulos y legenda + + + + Plot edition tools + Herramientas de edicion de graficas + + + + Plot + Grafica + + + + plot_axes + + + Configure axes + Configuración de los ejes + + + + Active axes + Ejes activos + + + + Apply to all axes + Aplicar a todos los ejes + + + + Dimensions + Dimensiones + + + + X axis position + Posición del eje X + + + + Y axis position + Posición del eje Y + + + + Scales + Escalas + + + + X auto + Automática en X + + + + Y auto + Automática en Y + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado + + + + matplotlib not found, Plot module will be disabled + No se puede encontrar matplotlib, el modulo de graficado sera desactivado + + + + Plot document must be selected in order to save it + Debe seleccionar una grafica primero + + + + Axes 0 can not be deleted + El juego ejes 0 no puede ser eliminado + + + + Grid must be activated on top of a plot document + Para activar la malla seleccione primero una grafica + + + + Legend must be activated on top of a plot document + Para activar la legenda seleccione primero una grafica + + + + plot_labels + + + Set labels + Selección de títulos + + + + Active axes + Ejes activos + + + + Title + Título + + + + X label + Título del eje X + + + + Y label + Título del eje Y + + + + plot_positions + + + Set positions and sizes + Selección de posiciones y tamaños + + + + Position + Posición + + + + Size + Tamaño + + + + plot_save + + + Save figure + Guardar figura + + + + Inches + Pulgadas + + + + Dots per Inch + Puntos por pulgada + + + + plot_series + + + Configure series + Configurar series de datos + + + + No label + Sin título + + + + Remove serie + Eliminar serie + + + + Line style + Estilo de línea + + + + Marker + Marcador + + + From 5b14baf714ef6828ab25ff7bd6f2e99536085a19 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 08:35:14 +0100 Subject: [PATCH 09/15] Fixed Autotranlation of menu texts and tooltips --- src/Mod/Plot/PlotGui.py | 28 +- src/Mod/Plot/Plot_rc.py | 646 +++++++++--------- src/Mod/Plot/makeResources.sh | 2 - src/Mod/Plot/resources/translations/Plot.ts | 73 +- .../Plot/resources/translations/Plot_es-ES.qm | Bin 5155 -> 5249 bytes .../Plot/resources/translations/Plot_es-ES.ts | 85 ++- .../Plot/resources/translations/Plot_es.qm | Bin 5155 -> 0 bytes .../Plot/resources/translations/Plot_es.ts | 259 ------- 8 files changed, 440 insertions(+), 653 deletions(-) delete mode 100644 src/Mod/Plot/resources/translations/Plot_es.qm delete mode 100644 src/Mod/Plot/resources/translations/Plot_es.ts diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py index 00d916e08..0f7a3c639 100644 --- a/src/Mod/Plot/PlotGui.py +++ b/src/Mod/Plot/PlotGui.py @@ -52,8 +52,8 @@ class Save: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Save.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Save plot as image file") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_SaveFig", "Save plot") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_SaveFig", "Save plot as image file") return {'Pixmap' : 'Save', 'MenuText': MenuText, 'ToolTip': ToolTip} class Axes: @@ -64,8 +64,8 @@ class Axes: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Axes.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure axes parameters") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Axes", "Configure axes") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Axes", "Configure axes parameters") return {'Pixmap' : 'Axes', 'MenuText': MenuText, 'ToolTip': ToolTip} class Series: @@ -76,8 +76,8 @@ class Series: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Series.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Configure series drawing style and label") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Series", "Configure series") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Series", "Configure series drawing style and label") return {'Pixmap' : 'Series', 'MenuText': MenuText, 'ToolTip': ToolTip} class Grid: @@ -95,8 +95,8 @@ class Grid: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Grid.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide grid on selected plot") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Grid", "Show/Hide grid") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Grid", "Show/Hide grid on selected plot") return {'Pixmap' : 'Grid', 'MenuText': MenuText, 'ToolTip': ToolTip} class Legend: @@ -114,8 +114,8 @@ class Legend: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Legend.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Show/Hide legend on selected plot") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Legend", "Show/Hide legend") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Legend", "Show/Hide legend on selected plot") return {'Pixmap' : 'Legend', 'MenuText': MenuText, 'ToolTip': ToolTip} class Labels: @@ -126,8 +126,8 @@ class Labels: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Labels.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set title and axes labels") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Labels", "Set labels") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Labels", "Set title and axes labels") return {'Pixmap' : 'Labels', 'MenuText': MenuText, 'ToolTip': ToolTip} class Positions: @@ -138,8 +138,8 @@ class Positions: def GetResources(self): # from plotUtils import Paths # IconPath = Paths.iconsPath() + "/Positions.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP("plot", "Set positions and sizes") - ToolTip = QtCore.QT_TRANSLATE_NOOP("plot", "Set labels and legend positions and sizes") + MenuText = QtCore.QT_TRANSLATE_NOOP("Plot_Positions", "Set positions and sizes") + ToolTip = QtCore.QT_TRANSLATE_NOOP("Plot_Positions", "Set labels and legend positions and sizes") return {'Pixmap' : 'Positions', 'MenuText': MenuText, 'ToolTip': ToolTip} FreeCADGui.addCommand('Plot_SaveFig', Save()) diff --git a/src/Mod/Plot/Plot_rc.py b/src/Mod/Plot/Plot_rc.py index 33df2de3e..7321d376e 100644 --- a/src/Mod/Plot/Plot_rc.py +++ b/src/Mod/Plot/Plot_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Sun Nov 4 20:38:22 2012 +# Created: Mon Nov 5 08:32:59 2012 # by: The Resource Compiler for PyQt (Qt v4.8.1) # # WARNING! All changes made in this file will be lost! @@ -10,52 +10,131 @@ from PyQt4 import QtCore qt_resource_data = "\ -\x00\x00\x14\x23\ +\x00\x00\x14\x81\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x01\xd9\x00\x05\xa1\x05\ -\x00\x00\x10\x30\x00\x4f\x1e\x44\x00\x00\x0c\x3b\x00\x5b\x0b\x25\ -\x00\x00\x0e\xba\x01\x3a\xaf\x14\x00\x00\x0a\xe1\x01\x72\x7d\xec\ -\x00\x00\x12\x0d\x02\x6c\xe7\x45\x00\x00\x02\xb5\x02\xb8\x1b\xe4\ -\x00\x00\x09\xa2\x02\xf5\x8e\x35\x00\x00\x12\x49\x05\x04\x9e\xc3\ -\x00\x00\x10\xb2\x05\x1c\xd3\x94\x00\x00\x05\x24\x05\x1e\xbc\x13\ -\x00\x00\x04\x24\x05\x1e\xbc\x13\x00\x00\x0f\xb4\x05\x38\x91\xc2\ -\x00\x00\x11\xd7\x05\x99\x82\xc3\x00\x00\x08\x4a\x05\xa6\x8c\xaf\ -\x00\x00\x08\x7c\x05\xae\x7b\x73\x00\x00\x04\x90\x05\xb6\x8c\xaf\ -\x00\x00\x09\x0f\x06\x96\x60\xf5\x00\x00\x10\xe6\x06\xa0\xab\x2e\ -\x00\x00\x0f\x79\x06\xfc\xe0\x23\x00\x00\x03\x7c\x07\x22\x18\x53\ -\x00\x00\x03\x35\x07\x22\x18\x53\x00\x00\x0e\x68\x07\x2f\xb3\xb8\ -\x00\x00\x10\x63\x07\x7d\xc4\x44\x00\x00\x06\x70\x07\x7f\x90\x65\ -\x00\x00\x11\x8f\x08\x11\x0d\x6c\x00\x00\x01\x2a\x08\x6e\x06\x34\ -\x00\x00\x0a\x28\x08\xb8\xd1\xa4\x00\x00\x0b\xa0\x09\xd5\xef\x93\ -\x00\x00\x07\x4f\x0a\x72\x78\xec\x00\x00\x0e\xeb\x0b\x66\xe1\xf3\ -\x00\x00\x00\xc7\x0b\x66\xe1\xf3\x00\x00\x11\x2b\x0b\x72\x78\xec\ -\x00\x00\x0f\x32\x0b\xfd\x86\x84\x00\x00\x05\x7b\x0c\x31\x25\xc3\ -\x00\x00\x07\x0e\x0c\x31\x25\xc3\x00\x00\x0e\x25\x0c\x5d\x56\x63\ -\x00\x00\x08\x0c\x0c\x77\x4c\xe4\x00\x00\x02\x75\x0d\x10\xbf\x54\ -\x00\x00\x06\x13\x0d\xe1\xc9\x54\x00\x00\x0d\x20\x0e\x3a\x74\xa3\ -\x00\x00\x00\x00\x0e\x3a\x74\xa3\x00\x00\x07\xae\x0e\x70\xa3\x4e\ -\x00\x00\x08\xbe\x0e\x70\xa4\x4e\x00\x00\x09\x51\x0e\x88\x63\x53\ -\x00\x00\x00\x4b\x0e\x9a\xb0\x73\x00\x00\x02\x04\x69\x00\x00\x12\ -\x91\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ -\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\ -\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\ -\x65\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ -\x4a\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ -\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\ -\x70\x00\x61\x00\x72\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ -\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\ -\x64\x00\x61\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x19\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\ -\x78\x65\x73\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\ -\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x3a\x00\x43\x00\ -\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\ -\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\ -\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x7a\x00\ -\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x10\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\ -\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x6e\ +\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x06\xd0\x00\x05\xa1\x05\ +\x00\x00\x10\x8e\x00\x4f\x1e\x44\x00\x00\x0c\x99\x00\x5b\x0b\x25\ +\x00\x00\x0f\x18\x01\x3a\xaf\x14\x00\x00\x0b\x3f\x01\x72\x7d\xec\ +\x00\x00\x12\x6b\x02\x6c\xe7\x45\x00\x00\x05\x26\x02\xb8\x1b\xe4\ +\x00\x00\x0a\x00\x02\xf5\x8e\x35\x00\x00\x12\xa7\x05\x04\x9e\xc3\ +\x00\x00\x11\x10\x05\x1c\xd3\x94\x00\x00\x00\xcb\x05\x1e\xbc\x13\ +\x00\x00\x04\x68\x05\x1e\xbc\x13\x00\x00\x10\x12\x05\x38\x91\xc2\ +\x00\x00\x12\x35\x05\x99\x82\xc3\x00\x00\x08\xa8\x05\xa6\x8c\xaf\ +\x00\x00\x08\xda\x05\xae\x7b\x73\x00\x00\x02\x12\x05\xb6\x8c\xaf\ +\x00\x00\x09\x6d\x06\x96\x60\xf5\x00\x00\x11\x44\x06\xa0\xab\x2e\ +\x00\x00\x0f\xd7\x06\xfc\xe0\x23\x00\x00\x03\xb6\x07\x22\x18\x53\ +\x00\x00\x01\xc4\x07\x22\x18\x53\x00\x00\x0e\xc6\x07\x2f\xb3\xb8\ +\x00\x00\x10\xc1\x07\x7d\xc4\x44\x00\x00\x03\x11\x07\x7f\x90\x65\ +\x00\x00\x11\xed\x08\x11\x0d\x6c\x00\x00\x06\x1a\x08\x6e\x06\x34\ +\x00\x00\x0a\x86\x08\xb8\xd1\xa4\x00\x00\x0b\xfe\x09\xd5\xef\x93\ +\x00\x00\x07\xad\x0a\x72\x78\xec\x00\x00\x0f\x49\x0b\x66\xe1\xf3\ +\x00\x00\x05\xae\x0b\x66\xe1\xf3\x00\x00\x11\x89\x0b\x72\x78\xec\ +\x00\x00\x0f\x90\x0b\xfd\x86\x84\x00\x00\x01\x27\x0c\x31\x25\xc3\ +\x00\x00\x07\x6c\x0c\x31\x25\xc3\x00\x00\x0e\x83\x0c\x5d\x56\x63\ +\x00\x00\x08\x6a\x0c\x77\x4c\xe4\x00\x00\x04\xde\x0d\x10\xbf\x54\ +\x00\x00\x02\xad\x0d\xe1\xc9\x54\x00\x00\x0d\x7e\x0e\x3a\x74\xa3\ +\x00\x00\x00\x00\x0e\x3a\x74\xa3\x00\x00\x08\x0c\x0e\x70\xa3\x4e\ +\x00\x00\x09\x1c\x0e\x70\xa4\x4e\x00\x00\x09\xaf\x0e\x88\x63\x53\ +\x00\x00\x00\x4a\x0e\x9a\xb0\x73\x00\x00\x06\xfb\x69\x00\x00\x12\ +\xef\x03\x00\x00\x00\x1e\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ +\x00\x67\x00\x75\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6a\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\ +\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x09\x50\x6c\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x4a\ +\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\ +\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x6f\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\ +\x00\x61\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\ +\x65\x73\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\x00\ +\x00\x09\x50\x6c\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\ +\x30\x00\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\ +\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\ +\x48\x69\x64\x65\x20\x67\x72\x69\x64\x07\x00\x00\x00\x09\x50\x6c\ +\x6f\x74\x5f\x47\x72\x69\x64\x01\x03\x00\x00\x00\x60\x00\x4d\x00\ +\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\ +\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\ +\x63\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ +\x20\x67\x72\x69\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\ +\x47\x72\x69\x64\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\x74\ +\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\x20\ +\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\x65\ +\x6c\x73\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\ +\x6c\x73\x01\x03\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\ +\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\ +\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x64\x00\x61\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\ +\x64\x20\x61\x78\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\ +\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\x00\ +\x00\x00\x34\x00\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\ +\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\ +\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\ +\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\ +\x64\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\x6e\ +\x64\x01\x03\x00\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\ +\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\ +\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\ +\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\ +\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\ +\x65\x67\x65\x6e\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\ +\x4c\x65\x67\x65\x6e\x64\x01\x03\x00\x00\x00\x66\x00\x4d\x00\x6f\ +\x00\x64\x00\x69\x00\x66\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\ +\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ +\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x00\x20\ +\x00\x79\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x53\x65\x74\x20\ +\x6c\x61\x62\x65\x6c\x73\x20\x61\x6e\x64\x20\x6c\x65\x67\x65\x6e\ +\x64\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\x64\x20\ +\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\x5f\x50\ +\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x3c\x00\x4d\ +\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\ +\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ +\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ +\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\ +\x50\x6c\x6f\x74\x5f\x50\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\ +\x00\x00\x00\x1e\x00\x47\x00\x75\x00\x61\x00\x72\x00\x64\x00\x61\ +\x00\x72\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x61\x76\x65\ +\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x0c\x50\x6c\x6f\x74\x5f\x53\ +\x61\x76\x65\x46\x69\x67\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\ +\x00\x61\x00\x72\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\ +\x00\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\ +\x61\x73\x20\x69\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\ +\x00\x0c\x50\x6c\x6f\x74\x5f\x53\x61\x76\x65\x46\x69\x67\x01\x03\ +\x00\x00\x00\x3c\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\ +\x00\x75\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x72\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x66\x69\x67\ +\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\x00\x00\x00\x0b\x50\ +\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x6e\ \x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\ \x00\x63\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x74\x00\xed\ \x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x79\x00\x20\x00\x65\ @@ -66,275 +145,202 @@ qt_resource_data = "\ \x00\x00\x00\x06\x00\x00\x00\x28\x43\x6f\x6e\x66\x69\x67\x75\x72\ \x65\x20\x73\x65\x72\x69\x65\x73\x20\x64\x72\x61\x77\x69\x6e\x67\ \x20\x73\x74\x79\x6c\x65\x20\x61\x6e\x64\x20\x6c\x61\x62\x65\x6c\ -\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x0e\x00\ -\x47\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x50\x6c\x6f\x74\x07\x00\x00\x00\x04\ -\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x46\x00\x48\x00\x65\x00\x72\ -\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\ -\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x64\x00\x69\ -\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ -\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x6c\x6f\x74\x20\x65\ -\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ -\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x1e\x00\x47\x00\x75\x00\ -\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x67\x00\x72\x00\ -\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\ -\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\x00\ -\x61\x00\x72\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ -\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\x00\ -\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ -\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\x61\ -\x73\x20\x69\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\x00\ -\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\ -\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\ -\x20\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\ -\x65\x6c\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\ -\x00\x66\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x71\ -\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\ -\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x79\ -\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x20\ +\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\ +\x01\x03\x00\x00\x00\x0e\x00\x47\x00\x72\x00\x61\x00\x66\x00\x69\ +\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x6c\ +\x6f\x74\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ +\x46\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x65\x00\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x6c\x6f\x74\x20\x65\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\ +\x00\x18\x00\x45\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x41\x63\x74\x69\x76\x65\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\ +\x00\x00\x30\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\ +\x72\x00\x20\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\ +\x73\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6a\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x41\x70\x70\ +\x6c\x79\x20\x74\x6f\x20\x61\x6c\x6c\x20\x61\x78\x65\x73\x07\x00\ +\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ +\x00\x32\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ +\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6a\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\ +\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x16\ +\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x09\x70\ +\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x0e\x00\x45\ +\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x53\x63\x61\x6c\x65\x73\x07\x00\x00\x00\ +\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x1e\ +\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\x74\x00\x69\ +\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x58\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x58\x20\x61\x75\x74\x6f\x07\x00\ +\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ +\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\ +\x00\x65\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x58\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\ +\x00\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\ +\x74\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x59\x20\x61\x75\x74\ +\x6f\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ +\x03\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x65\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x59\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\ +\x01\x03\x00\x00\x00\x4c\x00\x45\x00\x6c\x00\x20\x00\x6a\x00\x75\ +\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\ +\x00\x20\x00\x30\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x75\ +\x00\x65\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\ +\x00\x65\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x78\x65\x73\ +\x20\x30\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x64\x65\ +\x6c\x65\x74\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\ +\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x68\x00\x50\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\ +\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\ +\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\ +\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\ +\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x47\x72\ +\x69\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\x76\ +\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\x61\ +\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\ +\x03\x00\x00\x00\x6c\x00\x50\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\ +\x64\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x67\x65\x6e\ +\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\x76\x61\ +\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\x61\x20\ +\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\ +\x00\x00\x00\x48\x00\x44\x00\x65\x00\x62\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x67\ +\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x32\x50\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\ +\x20\x73\x61\x76\x65\x20\x69\x74\x07\x00\x00\x00\x0c\x70\x6c\x6f\ +\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x92\x00\ +\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\x00\ +\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ +\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\x00\x69\x00\x62\x00\ +\x2c\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\ +\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\x00\x6f\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x64\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x6d\x61\x74\x70\x6c\ +\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\ +\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x07\x00\x00\ +\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\ +\x00\x00\x00\xae\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\ +\x00\x6d\x00\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\ +\x00\x69\x00\x62\x00\x2c\x00\x20\x00\x79\x00\x20\x00\x70\x00\x6f\ +\x00\x72\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\ +\x00\x65\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x67\ +\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x6d\x61\x74\x70\ +\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x73\x6f\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\ +\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x6c\x6f\x61\x64\ +\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\ +\x6f\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x45\x00\x6a\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x63\x74\x69\x76\ +\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\ +\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x28\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ \x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\ -\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\x00\x6c\x00\x65\x00\x67\ -\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x29\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x20\x61\x6e\x64\ -\x20\x6c\x65\x67\x65\x6e\x64\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ -\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x04\ -\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x3c\x00\x4d\x00\x6f\x00\x64\ -\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x70\ -\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\ -\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ -\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\ -\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\ -\x01\x03\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\ -\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\ -\x00\x73\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\x00\x6c\ -\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6a\ -\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\x00\x72\ -\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\ -\x00\x61\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x19\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\x64\x20\ -\x61\x78\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x04\ -\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\x30\x00\x4d\x00\x6f\x00\x73\ -\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\ -\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\ -\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x67\x72\ -\x69\x64\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ -\x60\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\x65\x00\ -\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\x20\x00\ -\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\ -\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\ -\x66\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ -\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x53\x68\x6f\x77\x2f\ -\x48\x69\x64\x65\x20\x67\x72\x69\x64\x20\x6f\x6e\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x04\x70\ -\x6c\x6f\x74\x01\x03\x00\x00\x00\x34\x00\x4d\x00\x6f\x00\x73\x00\ -\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\ -\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ -\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x10\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ -\x20\x6c\x65\x67\x65\x6e\x64\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\ -\x01\x03\x00\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\ -\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\ -\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\ -\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\ -\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\ -\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\ -\x67\x65\x6e\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\ -\x00\x00\x00\x18\x00\x45\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x61\ -\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x41\x63\x74\x69\x76\x65\x20\x61\x78\x65\ -\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ -\x03\x00\x00\x00\x30\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\ -\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\ -\x6f\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\ -\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x41\ -\x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6c\x6c\x20\x61\x78\x65\x73\ -\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\ -\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\ -\x00\x75\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ -\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\ -\x00\x6a\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ -\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\ -\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ -\x00\x16\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ -\x00\x6f\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\ -\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x0e\ -\x00\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x53\x63\x61\x6c\x65\x73\x07\x00\ -\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ -\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\x74\ -\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x58\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x58\x20\x61\x75\x74\x6f\ -\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\ -\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\ -\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\ -\x00\x6a\x00\x65\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0f\x58\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\x6f\ -\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ -\x03\x00\x00\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ -\xe1\x00\x74\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\ -\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x59\x20\x61\ -\x75\x74\x6f\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\ -\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\ -\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ -\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x59\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\ -\x74\x69\x6f\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\ -\x65\x73\x01\x03\x00\x00\x00\x4c\x00\x45\x00\x6c\x00\x20\x00\x6a\ -\x00\x75\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x65\x00\x6a\x00\x65\ -\x00\x73\x00\x20\x00\x30\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\ -\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\ -\x00\x20\x00\x65\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\ -\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x78\ -\x65\x73\x20\x30\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\ -\x64\x65\x6c\x65\x74\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\ -\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x68\x00\x50\ -\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ -\x00\x76\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\ -\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ -\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\ -\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\ -\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ -\x47\x72\x69\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\ -\x69\x76\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\ -\x20\x61\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\ -\x65\x01\x03\x00\x00\x00\x6c\x00\x50\x00\x61\x00\x72\x00\x61\x00\ -\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\ -\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\ -\x6e\x00\x64\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ -\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\x00\ -\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\ -\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x67\ -\x65\x6e\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\ -\x76\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\ -\x61\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ -\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\ -\x01\x03\x00\x00\x00\x48\x00\x44\x00\x65\x00\x62\x00\x65\x00\x20\ -\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\ -\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ -\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\ -\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x32\x50\x6c\x6f\x74\x20\x64\x6f\x63\ -\x75\x6d\x65\x6e\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\ -\x74\x6f\x20\x73\x61\x76\x65\x20\x69\x74\x07\x00\x00\x00\x0c\x70\ -\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\ -\x92\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\ -\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ -\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6d\x00\ -\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\x00\x69\x00\ -\x62\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ -\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\x00\ -\x6f\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\ -\x65\x00\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\ -\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x6d\x61\x74\ -\x70\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ -\x64\x2c\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\ -\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x07\ -\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\ -\x01\x03\x00\x00\x00\xae\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\ -\x00\x20\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\ -\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\ -\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\ -\x00\x6c\x00\x69\x00\x62\x00\x2c\x00\x20\x00\x79\x00\x20\x00\x70\ -\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x6f\ -\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\ -\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\ -\x00\x67\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\ -\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\ -\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x6d\x61\ -\x74\x70\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\ -\x6e\x64\x2c\x20\x73\x6f\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\ -\x6c\x65\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x6c\x6f\ -\x61\x64\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\ -\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x45\x00\x6a\x00\ -\x65\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\ -\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x63\x74\ -\x69\x76\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\ -\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x28\x00\x53\ -\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\ -\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\ -\x00\x6c\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x70\ -\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x0c\ -\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x54\x69\x74\x6c\x65\x07\x00\x00\x00\x0b\ -\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\ -\x20\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\ -\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\ -\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x58\x20\x6c\x61\x62\ -\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\ -\x6c\x73\x01\x03\x00\x00\x00\x20\x00\x54\x00\xed\x00\x74\x00\x75\ -\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\ -\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x07\x59\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\ -\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x10\x00\ -\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x6f\x73\x69\x74\x69\x6f\ -\x6e\x07\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\ -\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ -\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\ -\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\ -\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\ -\x6f\x6e\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\ -\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\ -\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x61\x00\x6d\x00\x61\x00\xf1\ -\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x7a\x65\ -\x07\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\ -\x6f\x6e\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x75\x00\x6e\x00\ -\x74\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\ -\x70\x00\x75\x00\x6c\x00\x67\x00\x61\x00\x64\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x44\x6f\x74\x73\x20\x70\x65\x72\x20\ -\x49\x6e\x63\x68\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\ -\x76\x65\x01\x03\x00\x00\x00\x10\x00\x50\x00\x75\x00\x6c\x00\x67\ -\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x49\x6e\x63\x68\x65\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\ -\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\x1c\x00\x47\x00\x75\ -\x00\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x66\x00\x69\ -\x00\x67\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x53\x61\x76\x65\x20\x66\x69\x67\x75\x72\x65\x07\x00\x00\ -\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\ -\x34\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\ -\x72\x00\x61\x00\x72\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\ -\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\x00\ -\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\ -\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\ -\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\ -\x03\x00\x00\x00\x1e\x00\x45\x00\x73\x00\x74\x00\x69\x00\x6c\x00\ -\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\ -\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\ -\x65\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ -\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x10\x00\x4d\x00\ -\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x72\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x06\x4d\x61\x72\x6b\x65\x72\x07\x00\x00\ +\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\ +\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\ +\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x0c\x00\x54\ +\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x54\x69\x74\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\ +\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x20\x00\ +\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\x58\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x58\x20\x6c\x61\x62\x65\x6c\ +\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\ +\x01\x03\x00\x00\x00\x20\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\ +\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x59\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ +\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x10\x00\x50\x00\ +\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x50\x6f\x73\x69\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\ +\x6e\x73\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ +\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ +\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\ +\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\ +\x00\x00\x00\x0c\x00\x54\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x7a\x65\x07\x00\ +\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\ +\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x75\x00\x6e\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x75\x00\x6c\x00\x67\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x44\x6f\x74\x73\x20\x70\x65\x72\x20\x49\x6e\ +\x63\x68\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\ +\x01\x03\x00\x00\x00\x10\x00\x50\x00\x75\x00\x6c\x00\x67\x00\x61\ +\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x49\x6e\x63\x68\x65\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\ +\x73\x61\x76\x65\x01\x03\x00\x00\x00\x1c\x00\x47\x00\x75\x00\x61\ +\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x66\x00\x69\x00\x67\ +\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x53\x61\x76\x65\x20\x66\x69\x67\x75\x72\x65\x07\x00\x00\x00\x09\ +\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\x34\x00\ +\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\ +\x61\x00\x72\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\x00\x74\x00\ +\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\ +\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\x00\x00\ \x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\ -\x00\x00\x14\x00\x53\x00\x69\x00\x6e\x00\x20\x00\x74\x00\xed\x00\ -\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x08\x4e\x6f\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\ -\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x1c\x00\ -\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\ -\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x73\x65\x72\x69\ -\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\ -\x73\x01\ +\x00\x00\x1e\x00\x45\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\ +\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\ +\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x61\x00\ +\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x4d\x61\x72\x6b\x65\x72\x07\x00\x00\x00\x0b\ +\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\ +\x14\x00\x53\x00\x69\x00\x6e\x00\x20\x00\x74\x00\xed\x00\x74\x00\ +\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x4e\ +\x6f\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ +\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x1c\x00\x45\x00\ +\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ +\x73\x00\x65\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x73\x65\x72\x69\x65\x07\ +\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\ +\ \x00\x00\x09\xc0\ \x00\ \x00\x37\x31\x78\x9c\xed\x5a\xeb\x6f\xe3\xc6\x11\xff\xee\xbf\x82\ @@ -1859,14 +1865,14 @@ qt_resource_struct = "\ \x00\x00\x00\x0e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x05\ \x00\x00\x00\x1e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\xf2\x00\x01\x00\x00\x00\x01\x00\x00\x57\x42\ -\x00\x00\x00\x8c\x00\x01\x00\x00\x00\x01\x00\x00\x2a\xd3\ -\x00\x00\x00\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x4e\x3d\ -\x00\x00\x00\xc2\x00\x01\x00\x00\x00\x01\x00\x00\x3f\xd7\ -\x00\x00\x00\x72\x00\x01\x00\x00\x00\x01\x00\x00\x1d\xeb\ -\x00\x00\x00\xa2\x00\x01\x00\x00\x00\x01\x00\x00\x32\x72\ -\x00\x00\x00\x5c\x00\x01\x00\x00\x00\x01\x00\x00\x14\x27\ -\x00\x00\x01\x08\x00\x01\x00\x00\x00\x01\x00\x00\x63\xfa\ +\x00\x00\x00\xf2\x00\x01\x00\x00\x00\x01\x00\x00\x57\xa0\ +\x00\x00\x00\x8c\x00\x01\x00\x00\x00\x01\x00\x00\x2b\x31\ +\x00\x00\x00\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x4e\x9b\ +\x00\x00\x00\xc2\x00\x01\x00\x00\x00\x01\x00\x00\x40\x35\ +\x00\x00\x00\x72\x00\x01\x00\x00\x00\x01\x00\x00\x1e\x49\ +\x00\x00\x00\xa2\x00\x01\x00\x00\x00\x01\x00\x00\x32\xd0\ +\x00\x00\x00\x5c\x00\x01\x00\x00\x00\x01\x00\x00\x14\x85\ +\x00\x00\x01\x08\x00\x01\x00\x00\x00\x01\x00\x00\x64\x58\ " def qInitResources(): diff --git a/src/Mod/Plot/makeResources.sh b/src/Mod/Plot/makeResources.sh index c1458d026..1d333a0e6 100755 --- a/src/Mod/Plot/makeResources.sh +++ b/src/Mod/Plot/makeResources.sh @@ -6,8 +6,6 @@ pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot.ts lrelease resources/translations/Plot.ts pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es-ES.ts lrelease resources/translations/Plot_es-ES.ts -pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es.ts -lrelease resources/translations/Plot_es.ts # Create resources rm -f Plot_rc.py diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index f1952dc34..23f055959 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -1,12 +1,7 @@ - plot - - - Save plot - - + Plot_Axes Configure axes @@ -17,16 +12,9 @@ Configure axes parameters - - - Configure series - - - - - Configure series drawing style and label - - + + + Plot_Grid Show/Hide grid @@ -37,16 +25,9 @@ Show/Hide grid on selected plot - - - Show/Hide legend - - - - - Show/Hide legend on selected plot - - + + + Plot_Labels Set labels @@ -57,6 +38,22 @@ Set title and axes labels + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions Set positions and sizes @@ -67,11 +64,35 @@ Set labels and legend positions and sizes + + + Plot_SaveFig + + + Save plot + + Save plot as image file + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot Plot edition tools diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm index 80bcd65ed7c5015ec93be6dfad616d83de2fbcff..1b0583f389848f6a8f5e372a1884c776147a2f1e 100644 GIT binary patch delta 697 zcmZvYT}V@59LAq>cHVQ&c0TrD7m_ll(A7;5D1-%3*`kn=7TrYD(&IX|wsB@Dh>bpw zg0RIK!MccKqoU9iq6`e85+S-NB7z7>2)Ze}2(S8}|2Bh-x_bCO@BicZz4`U$H)NYK z@@ueh2KdHsAlM1$IULbi0B@tvQCtOR+XZLjD-bv(#=qbpP$wNt{G)*V+0W9s%p+Fo2E(>_?a>?M}b{_C6l#i?wjg2;()wb zO~`E&a8xb5DGq z$FY04uJGD&UfQW^mD#T72`irFYvgNzT0JFDSvk{Z`CM^m0MX)f)!O zd(Fzm?qu2?u#<^2pJuUtJXzXm=#{=m^sE)OV>~Pkhw7Zl?QQrUb4m=aoQ+tHP1LjE OgLZNX|i1_u60 zwm%P)85o#r*p(!LfwU=v=F4E$-@F5;E}6ad2++Z71?=?`Qh^rqa|rV0FfcG`apbX? z03EKuvE$+r1_tg0oLApZW?*3V=PIfIdW7#aciO|x3=9m%L3BM(qc%5Kg5QYyZ(9q{ z2h}`=sz8^r^Fe4nRi4f}gvH>ldx?5m)xM2>}%OW4eyyzOk& zP*y0j6O`r7x){p($(qiMupw#kLq_?@Cz!LKvN23SP}UBn$xxOZO9YaRl*#*;R41Qh L$=m#cqmvr|E`ORD diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts index d48ffa177..fc7229498 100644 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -1,37 +1,20 @@ - plot - - - Save plot - Guardar gráfica - - - - Save plot as image file - Guarda la gráfica como archivo de imagen - + Plot_Axes Configure axes - Configure los ejes + Configurar ejes Configure axes parameters Establezca los parámetros de cada eje - - - Configure series - Configure las series trazadas - - - - Configure series drawing style and label - Establezca el título y el estilo de las curvas trazadas - + + + Plot_Grid Show/Hide grid @@ -42,16 +25,9 @@ Show/Hide grid on selected plot Muestre/Oculte la malla del gráfico seleccionado - - - Show/Hide legend - Mostrar/Ocultar la legenda - - - - Show/Hide legend on selected plot - Muestre/Oculte la legenda del gráfico seleccionado - + + + Plot_Labels Set labels @@ -62,6 +38,22 @@ Set title and axes labels Establezca los tñitulos de ejes y series de datos + + + Plot_Legend + + + Show/Hide legend + Mostrar/Ocultar la legenda + + + + Show/Hide legend on selected plot + Muestre/Oculte la legenda del gráfico seleccionado + + + + Plot_Positions Set positions and sizes @@ -72,6 +64,35 @@ Set labels and legend positions and sizes Modifique la posición y tamaño de títulos y legenda + + + Plot_SaveFig + + + Save plot + Guardar gráfica + + + + Save plot as image file + Guarda la gráfica como archivo de imagen + + + + Plot_Series + + + Configure series + Configurar las series trazadas + + + + Configure series drawing style and label + Establezca el título y el estilo de las curvas trazadas + + + + plot Plot edition tools diff --git a/src/Mod/Plot/resources/translations/Plot_es.qm b/src/Mod/Plot/resources/translations/Plot_es.qm deleted file mode 100644 index 80bcd65ed7c5015ec93be6dfad616d83de2fbcff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5155 zcmb_gTWB0r82*!Hcav+D-}%pMo;6o~cj>LyzF*yY;o#}df89dVG))=bE zM1@bAHl1Hi)IQhb9siqXX=k(j=Qg6|kDF(2{hg@oo#rbqZshwrGc9j_#p^%F^#1rN zQKmoB_t`R{micSfN16Lieo55xbLNd___@|ynRj0}&(~v_b4PuC?nLGj{BG;YzJBlu z+xa7V>b-l2x@NNf{&ok^l4H5sSB~*@qrMg!jI<6m>U*-Gx|6O!$})Y{W& zb3S*qI@t{z_uAIkAI=ixPqqDY=@p{f-ga-A^CUzR2;@Lxnfr_j!Gb#h{&B!gu;c+>G{blFeYgzRH4qi-P@}8EDk{7WBZx)9TAL0_n4U3Z zIVIr-Gd35(F@N&o#RDijrb zNfJc7Y9Et#Iun>ZWfUNi%w;cKrociI5S6j$+>hHKyB`WZjW3Tk$KIw0TWQCrsZ!;;Yla zTqX6D%)T0r37C`)dP!PvDo@0|#h`8^czOtEmBH0`0gST&HL^ zOmD3{LzRj>!)hrE+g`~0VBI!{C~FE)+g-Gyw1WnFcPjW>Xqatbdv-Wft@TXLkVfsp zR#`eei@FlB)arujT&M%OAzGCkD;l+zGoxK2Ij0)`dN8*dc3{n3f)y3Iu5o;$FJneOz~6{gTSIzNyji-H0&9GjIEZ&?J( zn>m#?@(t9(Ge{V6%NU;;777=eG$cw5-;8^$5ug}0&$8+q9-8VLb_3p`S$}pq#Yx!I zdp@K{We?zD3*(apR>UWba7}OGz=)oT-giXPdR`s=^!tqljyE(IzF-RN8@*l7l&(K) zG<>_D$)(>msO0+Qk3Z=b1{WDW89P|Ck64b>F8~l}ot+HKs(vMgp18M#m$v?DC$X7S_e^KY5HtApigX diff --git a/src/Mod/Plot/resources/translations/Plot_es.ts b/src/Mod/Plot/resources/translations/Plot_es.ts deleted file mode 100644 index d48ffa177..000000000 --- a/src/Mod/Plot/resources/translations/Plot_es.ts +++ /dev/null @@ -1,259 +0,0 @@ - - - - plot - - - Save plot - Guardar gráfica - - - - Save plot as image file - Guarda la gráfica como archivo de imagen - - - - Configure axes - Configure los ejes - - - - Configure axes parameters - Establezca los parámetros de cada eje - - - - Configure series - Configure las series trazadas - - - - Configure series drawing style and label - Establezca el título y el estilo de las curvas trazadas - - - - Show/Hide grid - Mostrar/Ocultar la malla - - - - Show/Hide grid on selected plot - Muestre/Oculte la malla del gráfico seleccionado - - - - Show/Hide legend - Mostrar/Ocultar la legenda - - - - Show/Hide legend on selected plot - Muestre/Oculte la legenda del gráfico seleccionado - - - - Set labels - Establecer títulos - - - - Set title and axes labels - Establezca los tñitulos de ejes y series de datos - - - - Set positions and sizes - Modificar posiciones y tamaños - - - - Set labels and legend positions and sizes - Modifique la posición y tamaño de títulos y legenda - - - - Plot edition tools - Herramientas de edicion de graficas - - - - Plot - Grafica - - - - plot_axes - - - Configure axes - Configuración de los ejes - - - - Active axes - Ejes activos - - - - Apply to all axes - Aplicar a todos los ejes - - - - Dimensions - Dimensiones - - - - X axis position - Posición del eje X - - - - Y axis position - Posición del eje Y - - - - Scales - Escalas - - - - X auto - Automática en X - - - - Y auto - Automática en Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado - - - - matplotlib not found, Plot module will be disabled - No se puede encontrar matplotlib, el modulo de graficado sera desactivado - - - - Plot document must be selected in order to save it - Debe seleccionar una grafica primero - - - - Axes 0 can not be deleted - El juego ejes 0 no puede ser eliminado - - - - Grid must be activated on top of a plot document - Para activar la malla seleccione primero una grafica - - - - Legend must be activated on top of a plot document - Para activar la legenda seleccione primero una grafica - - - - plot_labels - - - Set labels - Selección de títulos - - - - Active axes - Ejes activos - - - - Title - Título - - - - X label - Título del eje X - - - - Y label - Título del eje Y - - - - plot_positions - - - Set positions and sizes - Selección de posiciones y tamaños - - - - Position - Posición - - - - Size - Tamaño - - - - plot_save - - - Save figure - Guardar figura - - - - Inches - Pulgadas - - - - Dots per Inch - Puntos por pulgada - - - - plot_series - - - Configure series - Configurar series de datos - - - - No label - Sin título - - - - Remove serie - Eliminar serie - - - - Line style - Estilo de línea - - - - Marker - Marcador - - - From 746756e325071f6f0c4230797f1b049b7c735213 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 08:39:33 +0100 Subject: [PATCH 10/15] Updated windows installer stuff --- src/WindowsInstaller/FreeCAD.wxs | 1 + src/WindowsInstaller/ModPlot.wxi | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/WindowsInstaller/FreeCAD.wxs b/src/WindowsInstaller/FreeCAD.wxs index 3194e5c57..5dcf7ac41 100644 --- a/src/WindowsInstaller/FreeCAD.wxs +++ b/src/WindowsInstaller/FreeCAD.wxs @@ -183,6 +183,7 @@ + diff --git a/src/WindowsInstaller/ModPlot.wxi b/src/WindowsInstaller/ModPlot.wxi index a6b7d030f..d40cb88a5 100644 --- a/src/WindowsInstaller/ModPlot.wxi +++ b/src/WindowsInstaller/ModPlot.wxi @@ -27,8 +27,12 @@ + + + + From 92a58193f5cfbf7f69582a29e6ed0386f7c57786 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 08:43:53 +0100 Subject: [PATCH 11/15] Moved main title to autotranslation stuff (broken) --- src/Mod/Plot/InitGui.py | 8 +- src/Mod/Plot/Plot_rc.py | 260 +++++++++--------- src/Mod/Plot/resources/translations/Plot.ts | 28 +- .../Plot/resources/translations/Plot_es-ES.qm | Bin 5249 -> 5249 bytes .../Plot/resources/translations/Plot_es-ES.ts | 28 +- 5 files changed, 160 insertions(+), 164 deletions(-) diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py index 2cf486d85..e19720a3f 100644 --- a/src/Mod/Plot/InitGui.py +++ b/src/Mod/Plot/InitGui.py @@ -33,12 +33,8 @@ class PlotWorkbench ( Workbench ): def Initialize(self): from PyQt4 import QtCore, QtGui cmdlst = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] - self.appendToolbar(str(QtGui.QApplication.translate("plot", "Plot edition tools", - None,QtGui.QApplication.UnicodeUTF8)), - cmdlst) - self.appendMenu(str(QtGui.QApplication.translate("plot", "Plot", - None,QtGui.QApplication.UnicodeUTF8)), - cmdlst) + self.appendToolbar(str(QtCore.QT_TRANSLATE_NOOP("Plot", "Plot edition tools")),cmdlst) + self.appendMenu(str(QtCore.QT_TRANSLATE_NOOP("Plot", "Plot")),cmdlst) try: import matplotlib diff --git a/src/Mod/Plot/Plot_rc.py b/src/Mod/Plot/Plot_rc.py index 7321d376e..df3414052 100644 --- a/src/Mod/Plot/Plot_rc.py +++ b/src/Mod/Plot/Plot_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Mon Nov 5 08:32:59 2012 +# Created: Mon Nov 5 08:42:14 2012 # by: The Resource Compiler for PyQt (Qt v4.8.1) # # WARNING! All changes made in this file will be lost! @@ -13,149 +13,149 @@ qt_resource_data = "\ \x00\x00\x14\x81\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x06\xd0\x00\x05\xa1\x05\ +\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x00\x00\x00\x05\xa1\x05\ \x00\x00\x10\x8e\x00\x4f\x1e\x44\x00\x00\x0c\x99\x00\x5b\x0b\x25\ \x00\x00\x0f\x18\x01\x3a\xaf\x14\x00\x00\x0b\x3f\x01\x72\x7d\xec\ -\x00\x00\x12\x6b\x02\x6c\xe7\x45\x00\x00\x05\x26\x02\xb8\x1b\xe4\ +\x00\x00\x12\x6b\x02\x6c\xe7\x45\x00\x00\x05\xc2\x02\xb8\x1b\xe4\ \x00\x00\x0a\x00\x02\xf5\x8e\x35\x00\x00\x12\xa7\x05\x04\x9e\xc3\ -\x00\x00\x11\x10\x05\x1c\xd3\x94\x00\x00\x00\xcb\x05\x1e\xbc\x13\ -\x00\x00\x04\x68\x05\x1e\xbc\x13\x00\x00\x10\x12\x05\x38\x91\xc2\ +\x00\x00\x11\x10\x05\x1c\xd3\x94\x00\x00\x01\x67\x05\x1e\xbc\x13\ +\x00\x00\x05\x04\x05\x1e\xbc\x13\x00\x00\x10\x12\x05\x38\x91\xc2\ \x00\x00\x12\x35\x05\x99\x82\xc3\x00\x00\x08\xa8\x05\xa6\x8c\xaf\ -\x00\x00\x08\xda\x05\xae\x7b\x73\x00\x00\x02\x12\x05\xb6\x8c\xaf\ +\x00\x00\x08\xda\x05\xae\x7b\x73\x00\x00\x02\xae\x05\xb6\x8c\xaf\ \x00\x00\x09\x6d\x06\x96\x60\xf5\x00\x00\x11\x44\x06\xa0\xab\x2e\ -\x00\x00\x0f\xd7\x06\xfc\xe0\x23\x00\x00\x03\xb6\x07\x22\x18\x53\ -\x00\x00\x01\xc4\x07\x22\x18\x53\x00\x00\x0e\xc6\x07\x2f\xb3\xb8\ -\x00\x00\x10\xc1\x07\x7d\xc4\x44\x00\x00\x03\x11\x07\x7f\x90\x65\ -\x00\x00\x11\xed\x08\x11\x0d\x6c\x00\x00\x06\x1a\x08\x6e\x06\x34\ +\x00\x00\x0f\xd7\x06\xfc\xe0\x23\x00\x00\x04\x52\x07\x22\x18\x53\ +\x00\x00\x02\x60\x07\x22\x18\x53\x00\x00\x0e\xc6\x07\x2f\xb3\xb8\ +\x00\x00\x10\xc1\x07\x7d\xc4\x44\x00\x00\x03\xad\x07\x7f\x90\x65\ +\x00\x00\x11\xed\x08\x11\x0d\x6c\x00\x00\x06\xb6\x08\x6e\x06\x34\ \x00\x00\x0a\x86\x08\xb8\xd1\xa4\x00\x00\x0b\xfe\x09\xd5\xef\x93\ \x00\x00\x07\xad\x0a\x72\x78\xec\x00\x00\x0f\x49\x0b\x66\xe1\xf3\ -\x00\x00\x05\xae\x0b\x66\xe1\xf3\x00\x00\x11\x89\x0b\x72\x78\xec\ -\x00\x00\x0f\x90\x0b\xfd\x86\x84\x00\x00\x01\x27\x0c\x31\x25\xc3\ +\x00\x00\x06\x4a\x0b\x66\xe1\xf3\x00\x00\x11\x89\x0b\x72\x78\xec\ +\x00\x00\x0f\x90\x0b\xfd\x86\x84\x00\x00\x01\xc3\x0c\x31\x25\xc3\ \x00\x00\x07\x6c\x0c\x31\x25\xc3\x00\x00\x0e\x83\x0c\x5d\x56\x63\ -\x00\x00\x08\x6a\x0c\x77\x4c\xe4\x00\x00\x04\xde\x0d\x10\xbf\x54\ -\x00\x00\x02\xad\x0d\xe1\xc9\x54\x00\x00\x0d\x7e\x0e\x3a\x74\xa3\ -\x00\x00\x00\x00\x0e\x3a\x74\xa3\x00\x00\x08\x0c\x0e\x70\xa3\x4e\ +\x00\x00\x08\x6a\x0c\x77\x4c\xe4\x00\x00\x05\x7a\x0d\x10\xbf\x54\ +\x00\x00\x03\x49\x0d\xe1\xc9\x54\x00\x00\x0d\x7e\x0e\x3a\x74\xa3\ +\x00\x00\x00\x9c\x0e\x3a\x74\xa3\x00\x00\x08\x0c\x0e\x70\xa3\x4e\ \x00\x00\x09\x1c\x0e\x70\xa4\x4e\x00\x00\x09\xaf\x0e\x88\x63\x53\ -\x00\x00\x00\x4a\x0e\x9a\xb0\x73\x00\x00\x06\xfb\x69\x00\x00\x12\ -\xef\x03\x00\x00\x00\x1e\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ -\x00\x67\x00\x75\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6a\ -\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\ -\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ -\x09\x50\x6c\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x4a\ -\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\ -\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x6f\ -\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\ -\x00\x61\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x19\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\ -\x65\x73\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\x00\ -\x00\x09\x50\x6c\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\ -\x30\x00\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\ -\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\ -\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\ -\x48\x69\x64\x65\x20\x67\x72\x69\x64\x07\x00\x00\x00\x09\x50\x6c\ -\x6f\x74\x5f\x47\x72\x69\x64\x01\x03\x00\x00\x00\x60\x00\x4d\x00\ -\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\ -\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ -\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x64\x00\ -\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\ -\x63\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1f\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ -\x20\x67\x72\x69\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\ -\x47\x72\x69\x64\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\x74\ -\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\x20\ -\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\x65\ -\x6c\x73\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\ -\x6c\x73\x01\x03\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\ -\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\ -\x00\x6f\x00\x73\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\ -\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\ -\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\ -\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ -\x00\x64\x00\x61\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x19\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\ -\x64\x20\x61\x78\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\ -\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\x00\ -\x00\x00\x34\x00\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\ -\x72\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\ -\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\ -\x65\x00\x6e\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x10\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\ -\x64\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\x6e\ -\x64\x01\x03\x00\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\ -\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\ -\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\ -\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\ -\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\ -\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\ -\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\ -\x65\x67\x65\x6e\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\ -\x4c\x65\x67\x65\x6e\x64\x01\x03\x00\x00\x00\x66\x00\x4d\x00\x6f\ -\x00\x64\x00\x69\x00\x66\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\ -\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\ -\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ -\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ -\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x00\x20\ -\x00\x79\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x53\x65\x74\x20\ -\x6c\x61\x62\x65\x6c\x73\x20\x61\x6e\x64\x20\x6c\x65\x67\x65\x6e\ -\x64\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\x64\x20\ -\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\x5f\x50\ -\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x3c\x00\x4d\ -\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\ -\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\ -\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ -\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ -\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\ -\x50\x6c\x6f\x74\x5f\x50\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\ -\x00\x00\x00\x1e\x00\x47\x00\x75\x00\x61\x00\x72\x00\x64\x00\x61\ -\x00\x72\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x61\x76\x65\ -\x20\x70\x6c\x6f\x74\x07\x00\x00\x00\x0c\x50\x6c\x6f\x74\x5f\x53\ -\x61\x76\x65\x46\x69\x67\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\ -\x00\x61\x00\x72\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\ -\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\ -\x00\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ -\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\ -\x61\x73\x20\x69\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\ -\x00\x0c\x50\x6c\x6f\x74\x5f\x53\x61\x76\x65\x46\x69\x67\x01\x03\ -\x00\x00\x00\x3c\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\ -\x00\x75\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x73\ -\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\ -\x00\x74\x00\x72\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x66\x69\x67\ -\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\x00\x00\x00\x0b\x50\ -\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x6e\ -\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\ -\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x74\x00\xed\ -\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x79\x00\x20\x00\x65\ -\x00\x6c\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\ -\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\ -\x00\x63\x00\x75\x00\x72\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\ -\x00\x72\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x28\x43\x6f\x6e\x66\x69\x67\x75\x72\ -\x65\x20\x73\x65\x72\x69\x65\x73\x20\x64\x72\x61\x77\x69\x6e\x67\ -\x20\x73\x74\x79\x6c\x65\x20\x61\x6e\x64\x20\x6c\x61\x62\x65\x6c\ -\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\ -\x01\x03\x00\x00\x00\x0e\x00\x47\x00\x72\x00\x61\x00\x66\x00\x69\ +\x00\x00\x00\xe6\x0e\x9a\xb0\x73\x00\x00\x00\x2b\x69\x00\x00\x12\ +\xef\x03\x00\x00\x00\x0e\x00\x47\x00\x72\x00\xe1\x00\x66\x00\x69\ \x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x6c\ -\x6f\x74\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\x00\ +\x6f\x74\x07\x00\x00\x00\x04\x50\x6c\x6f\x74\x01\x03\x00\x00\x00\ \x46\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\ \x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\ -\x20\x00\x65\x00\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ -\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\ +\x20\x00\x65\x00\x64\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\ \x69\x00\x63\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x12\x50\x6c\x6f\x74\x20\x65\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\ -\x6f\x6c\x73\x07\x00\x00\x00\x04\x70\x6c\x6f\x74\x01\x03\x00\x00\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x50\x6c\x6f\x74\x01\x03\x00\x00\ +\x00\x1e\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ +\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\x6e\x66\x69\x67\ +\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x09\x50\x6c\x6f\ +\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x4a\x00\x45\x00\x73\ +\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\ +\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x6f\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\ +\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x20\x70\ +\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\x00\x00\x09\x50\x6c\ +\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x30\x00\x4d\x00\ +\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\ +\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\ +\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ +\x20\x67\x72\x69\x64\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\x47\ +\x72\x69\x64\x01\x03\x00\x00\x00\x60\x00\x4d\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\ +\x6c\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\ +\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ +\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x67\x72\x69\ +\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x70\x6c\ +\x6f\x74\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\x47\x72\x69\x64\ +\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\x20\x00\x74\x00\xed\ +\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\ +\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\ +\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\ +\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\x00\x6c\x00\x6f\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\ +\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\ +\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\x64\x20\x61\x78\ +\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x50\x6c\ +\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x34\x00\ +\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\ +\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\ +\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x53\x68\x6f\ +\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\x64\x07\x00\x00\ +\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\x6e\x64\x01\x03\x00\ +\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\ +\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\ +\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\ +\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x70\x6c\ +\x6f\x74\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\ +\x6e\x64\x01\x03\x00\x00\x00\x66\x00\x4d\x00\x6f\x00\x64\x00\x69\ +\x00\x66\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\ +\x00\x6e\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ +\x00\xf1\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\ +\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\ +\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x53\x65\x74\x20\x6c\x61\x62\x65\ +\x6c\x73\x20\x61\x6e\x64\x20\x6c\x65\x67\x65\x6e\x64\x20\x70\x6f\ +\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\ +\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\x5f\x50\x6f\x73\x69\x74\ +\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x3c\x00\x4d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x70\ +\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ +\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\ +\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\ +\x5f\x50\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x1e\ +\x00\x47\x00\x75\x00\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\ +\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x53\x61\x76\x65\x20\x70\x6c\x6f\ +\x74\x07\x00\x00\x00\x0c\x50\x6c\x6f\x74\x5f\x53\x61\x76\x65\x46\ +\x69\x67\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\x00\x61\x00\x72\ +\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\x00\x68\x00\x69\ +\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6d\ +\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\x61\x73\x20\x69\ +\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x0c\x50\x6c\ +\x6f\x74\x5f\x53\x61\x76\x65\x46\x69\x67\x01\x03\x00\x00\x00\x3c\ +\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\ +\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\ +\x73\x65\x72\x69\x65\x73\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\ +\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x6e\x00\x45\x00\x73\ +\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\ +\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\ +\x00\x6c\x00\x6f\x00\x20\x00\x79\x00\x20\x00\x65\x00\x6c\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x63\x00\x75\ +\x00\x72\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\ +\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\ +\x72\x69\x65\x73\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x74\x79\ +\x6c\x65\x20\x61\x6e\x64\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\ +\x0b\x50\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\ \x00\x18\x00\x45\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x61\x00\x63\ \x00\x74\x00\x69\x00\x76\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0b\x41\x63\x74\x69\x76\x65\x20\x61\x78\x65\x73\x07\ diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index 23f055959..75e439635 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -1,5 +1,18 @@ + + Plot + + + Plot edition tools + + + + + Plot + + + Plot_Axes @@ -91,19 +104,6 @@ - - plot - - - Plot edition tools - - - - - Plot - - - plot_axes @@ -160,7 +160,7 @@ - + matplotlib not found, Plot module will be disabled diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm index 1b0583f389848f6a8f5e372a1884c776147a2f1e..6b48ff893e63b7c243c640e6772c43a702e313d7 100644 GIT binary patch delta 235 zcmZqFY}A|}&BVYkQC6Sv&_rK3F2;0Lxjn)R46G~@OVt_IO`I!d#1h1=BoWNOz?1-? z`Hr#cZ{EScAaIbq_J|7u1M^z;`U$BF41#Yt1bK597}&N=e5)qK=Ea@%@H0@fle?(m z4Fd!J1n$3WEes5dhbQYY%1Nu8Q-i8 z#Xz2RCIf@eduAYukHMXxh~eSnTn=f*fXSU4CW4T;b)*|CwEcB z8wLjc3EY3%T7aggPu69WlVZ8YE3iL=fq`i)@57TonzxS6s$?+(5KK;Gl;`u}o3)`B zXw>ga1_q(`oAsEku(9(oxHA+nBu<{oD9u + + Plot + + + Plot edition tools + Herramientas de edición de gráficas + + + + Plot + Gráfica + + Plot_Axes @@ -91,19 +104,6 @@ Establezca el título y el estilo de las curvas trazadas - - plot - - - Plot edition tools - Herramientas de edicion de graficas - - - - Plot - Grafica - - plot_axes @@ -160,7 +160,7 @@ No se puede encontrar matplotlib, y por tanto no se puede cargar el modulo de graficado - + matplotlib not found, Plot module will be disabled No se puede encontrar matplotlib, el modulo de graficado sera desactivado From 917630b5e6f61ef71b1ed1fbc67c5183fa623a43 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 08:57:34 +0100 Subject: [PATCH 12/15] Append all languages considered at Draft module --- src/Mod/Plot/Plot_rc.py | 190 +++++++++++- src/Mod/Plot/makeResources.sh | 42 +++ src/Mod/Plot/resources/Plot.qrc | 21 ++ .../Plot/resources/translations/Plot_af.qm | 1 + .../Plot/resources/translations/Plot_af.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_cs.qm | 1 + .../Plot/resources/translations/Plot_cs.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_de.qm | 1 + .../Plot/resources/translations/Plot_de.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_fi.qm | 1 + .../Plot/resources/translations/Plot_fi.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_fr.qm | 1 + .../Plot/resources/translations/Plot_fr.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_hr.qm | 1 + .../Plot/resources/translations/Plot_hr.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_hu.qm | 1 + .../Plot/resources/translations/Plot_hu.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_it.qm | 1 + .../Plot/resources/translations/Plot_it.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_ja.qm | 1 + .../Plot/resources/translations/Plot_ja.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_nl.qm | 1 + .../Plot/resources/translations/Plot_nl.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_no.qm | 1 + .../Plot/resources/translations/Plot_no.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_pl.qm | 1 + .../Plot/resources/translations/Plot_pl.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_pt-BR.qm | 1 + .../Plot/resources/translations/Plot_pt-BR.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_ro.qm | 1 + .../Plot/resources/translations/Plot_ro.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_ru.qm | 1 + .../Plot/resources/translations/Plot_ru.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_sk.qm | 1 + .../Plot/resources/translations/Plot_sk.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_sv-SE.qm | 1 + .../Plot/resources/translations/Plot_sv-SE.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_tr.qm | 1 + .../Plot/resources/translations/Plot_tr.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_uk.qm | 1 + .../Plot/resources/translations/Plot_uk.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_zh-CN.qm | 1 + .../Plot/resources/translations/Plot_zh-CN.ts | 280 ++++++++++++++++++ .../Plot/resources/translations/Plot_zh-TW.qm | 1 + .../Plot/resources/translations/Plot_zh-TW.ts | 280 ++++++++++++++++++ 45 files changed, 6143 insertions(+), 11 deletions(-) create mode 100644 src/Mod/Plot/resources/translations/Plot_af.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_af.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_cs.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_cs.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_de.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_de.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_fi.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_fi.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_fr.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_fr.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_hr.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_hr.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_hu.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_hu.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_it.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_it.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_ja.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_ja.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_nl.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_nl.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_no.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_no.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_pl.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_pl.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_pt-BR.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_pt-BR.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_ro.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_ro.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_ru.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_ru.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_sk.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_sk.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_sv-SE.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_sv-SE.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_tr.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_tr.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_uk.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_uk.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_zh-CN.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_zh-CN.ts create mode 100644 src/Mod/Plot/resources/translations/Plot_zh-TW.qm create mode 100644 src/Mod/Plot/resources/translations/Plot_zh-TW.ts diff --git a/src/Mod/Plot/Plot_rc.py b/src/Mod/Plot/Plot_rc.py index df3414052..531b531e5 100644 --- a/src/Mod/Plot/Plot_rc.py +++ b/src/Mod/Plot/Plot_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Mon Nov 5 08:42:14 2012 +# Created: Mon Nov 5 08:56:45 2012 # by: The Resource Compiler for PyQt (Qt v4.8.1) # # WARNING! All changes made in this file will be lost! @@ -10,6 +10,39 @@ from PyQt4 import QtCore qt_resource_data = "\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ \x00\x00\x14\x81\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -341,6 +374,36 @@ qt_resource_data = "\ \x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x73\x65\x72\x69\x65\x07\ \x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\ \ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ +\x00\x00\x00\x10\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ \x00\x00\x09\xc0\ \x00\ \x00\x37\x31\x78\x9c\xed\x5a\xeb\x6f\xe3\xc6\x11\xff\xee\xbf\x82\ @@ -1821,10 +1884,94 @@ qt_resource_name = "\ \x0d\xfc\x11\x13\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x0a\ +\x0a\x6e\x13\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x6e\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x50\xa3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x64\x00\x65\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x5d\x73\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x61\x00\x66\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x05\x7d\x5a\x3d\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x09\x7a\x18\xdd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x70\x00\x74\x00\x2d\x00\x42\x00\x52\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x6a\xe3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x55\xa3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x68\x00\x75\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x07\x4a\x49\x7d\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x73\x00\x76\x00\x2d\x00\x53\x00\x45\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x57\xb3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x66\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x63\x43\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x73\x00\x6b\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x50\xc3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x63\x00\x73\x00\x2e\x00\x71\x00\x6d\ \x00\x0d\ \x0c\x77\x2f\xbd\ \x00\x50\ \x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x65\x00\x73\x00\x2d\x00\x45\x00\x53\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x6c\x13\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x70\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x05\x44\xea\x3d\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x54\x00\x57\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x63\xa3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x72\x00\x75\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x6a\x93\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x56\x63\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x66\x00\x69\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x70\x03\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x64\x03\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x72\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x61\xb3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x74\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x55\xb3\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0a\x61\x43\xbd\ +\x00\x50\ +\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x75\x00\x6b\x00\x2e\x00\x71\x00\x6d\ \x00\x08\ \x0e\xc6\x53\xc7\ \x00\x41\ @@ -1862,17 +2009,38 @@ qt_resource_name = "\ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ -\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x05\ -\x00\x00\x00\x1e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x1a\ +\x00\x00\x00\x1e\x00\x02\x00\x00\x00\x16\x00\x00\x00\x04\ +\x00\x00\x01\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x15\x75\ +\x00\x00\x00\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x3c\ +\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x00\x8c\ +\x00\x00\x00\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x00\x50\ +\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x00\x14\ +\x00\x00\x01\x52\x00\x00\x00\x00\x00\x01\x00\x00\x00\xc8\ +\x00\x00\x00\xe4\x00\x00\x00\x00\x00\x01\x00\x00\x00\x78\ +\x00\x00\x02\x62\x00\x00\x00\x00\x00\x01\x00\x00\x16\x01\ +\x00\x00\x01\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x15\xb1\ +\x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\xa0\ +\x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x00\x28\ +\x00\x00\x02\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x16\x15\ +\x00\x00\x02\x48\x00\x00\x00\x00\x00\x01\x00\x00\x15\xed\ +\x00\x00\x01\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\xb4\ +\x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x15\x89\ +\x00\x00\x02\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x15\xd9\ +\x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x15\x9d\ +\x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x00\x00\x64\ +\x00\x00\x01\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x15\x61\ \x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\xf2\x00\x01\x00\x00\x00\x01\x00\x00\x57\xa0\ -\x00\x00\x00\x8c\x00\x01\x00\x00\x00\x01\x00\x00\x2b\x31\ -\x00\x00\x00\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x4e\x9b\ -\x00\x00\x00\xc2\x00\x01\x00\x00\x00\x01\x00\x00\x40\x35\ -\x00\x00\x00\x72\x00\x01\x00\x00\x00\x01\x00\x00\x1e\x49\ -\x00\x00\x00\xa2\x00\x01\x00\x00\x00\x01\x00\x00\x32\xd0\ -\x00\x00\x00\x5c\x00\x01\x00\x00\x00\x01\x00\x00\x14\x85\ -\x00\x00\x01\x08\x00\x01\x00\x00\x00\x01\x00\x00\x64\x58\ +\x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x00\x15\xc5\ +\x00\x00\x01\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x00\xdc\ +\x00\x00\x03\x2c\x00\x01\x00\x00\x00\x01\x00\x00\x59\x44\ +\x00\x00\x02\xc6\x00\x01\x00\x00\x00\x01\x00\x00\x2c\xd5\ +\x00\x00\x03\x16\x00\x01\x00\x00\x00\x01\x00\x00\x50\x3f\ +\x00\x00\x02\xfc\x00\x01\x00\x00\x00\x01\x00\x00\x41\xd9\ +\x00\x00\x02\xac\x00\x01\x00\x00\x00\x01\x00\x00\x1f\xed\ +\x00\x00\x02\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x34\x74\ +\x00\x00\x02\x96\x00\x01\x00\x00\x00\x01\x00\x00\x16\x29\ +\x00\x00\x03\x42\x00\x01\x00\x00\x00\x01\x00\x00\x65\xfc\ " def qInitResources(): diff --git a/src/Mod/Plot/makeResources.sh b/src/Mod/Plot/makeResources.sh index 1d333a0e6..240c813ef 100755 --- a/src/Mod/Plot/makeResources.sh +++ b/src/Mod/Plot/makeResources.sh @@ -4,8 +4,50 @@ # Perform trnaslations pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot.ts lrelease resources/translations/Plot.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_af.ts +lrelease resources/translations/Plot_af.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_cs.ts +lrelease resources/translations/Plot_cs.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_de.ts +lrelease resources/translations/Plot_de.ts pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_es-ES.ts lrelease resources/translations/Plot_es-ES.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_fi.ts +lrelease resources/translations/Plot_fi.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_fr.ts +lrelease resources/translations/Plot_fr.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_hr.ts +lrelease resources/translations/Plot_hr.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_hu.ts +lrelease resources/translations/Plot_hu.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_it.ts +lrelease resources/translations/Plot_it.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_ja.ts +lrelease resources/translations/Plot_ja.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_nl.ts +lrelease resources/translations/Plot_nl.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_no.ts +lrelease resources/translations/Plot_no.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_pl.ts +lrelease resources/translations/Plot_pl.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_pt-BR.ts +lrelease resources/translations/Plot_pt-BR.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_ro.ts +lrelease resources/translations/Plot_ro.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_ru.ts +lrelease resources/translations/Plot_ru.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_sk.ts +lrelease resources/translations/Plot_sk.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_sv-SE.ts +lrelease resources/translations/Plot_sv-SE.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_tr.ts +lrelease resources/translations/Plot_tr.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_uk.ts +lrelease resources/translations/Plot_uk.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_zh-CN.ts +lrelease resources/translations/Plot_zh-CN.ts +pylupdate4 -verbose `find ./ -name "*.py"` -ts resources/translations/Plot_zh-TW.ts +lrelease resources/translations/Plot_zh-TW.ts # Create resources rm -f Plot_rc.py diff --git a/src/Mod/Plot/resources/Plot.qrc b/src/Mod/Plot/resources/Plot.qrc index c28a3fd64..866d12b67 100644 --- a/src/Mod/Plot/resources/Plot.qrc +++ b/src/Mod/Plot/resources/Plot.qrc @@ -8,6 +8,27 @@ icons/Positions.svg icons/Save.svg icons/Series.svg + translations/Plot_af.qm + translations/Plot_cs.qm + translations/Plot_de.qm translations/Plot_es-ES.qm + translations/Plot_fi.qm + translations/Plot_fr.qm + translations/Plot_hr.qm + translations/Plot_hu.qm + translations/Plot_it.qm + translations/Plot_ja.qm + translations/Plot_nl.qm + translations/Plot_no.qm + translations/Plot_pl.qm + translations/Plot_pt-BR.qm + translations/Plot_ro.qm + translations/Plot_ru.qm + translations/Plot_sk.qm + translations/Plot_sv-SE.qm + translations/Plot_tr.qm + translations/Plot_uk.qm + translations/Plot_zh-CN.qm + translations/Plot_zh-TW.qm diff --git a/src/Mod/Plot/resources/translations/Plot_af.qm b/src/Mod/Plot/resources/translations/Plot_af.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_af.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_af.ts b/src/Mod/Plot/resources/translations/Plot_af.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_af.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_cs.qm b/src/Mod/Plot/resources/translations/Plot_cs.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_cs.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_cs.ts b/src/Mod/Plot/resources/translations/Plot_cs.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_cs.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_de.qm b/src/Mod/Plot/resources/translations/Plot_de.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_de.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_de.ts b/src/Mod/Plot/resources/translations/Plot_de.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_de.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_fi.qm b/src/Mod/Plot/resources/translations/Plot_fi.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_fi.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_fi.ts b/src/Mod/Plot/resources/translations/Plot_fi.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_fi.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_fr.qm b/src/Mod/Plot/resources/translations/Plot_fr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_fr.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_fr.ts b/src/Mod/Plot/resources/translations/Plot_fr.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_fr.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_hr.qm b/src/Mod/Plot/resources/translations/Plot_hr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_hr.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_hr.ts b/src/Mod/Plot/resources/translations/Plot_hr.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_hr.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_hu.qm b/src/Mod/Plot/resources/translations/Plot_hu.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_hu.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_hu.ts b/src/Mod/Plot/resources/translations/Plot_hu.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_hu.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_it.qm b/src/Mod/Plot/resources/translations/Plot_it.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_it.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_it.ts b/src/Mod/Plot/resources/translations/Plot_it.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_it.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_ja.qm b/src/Mod/Plot/resources/translations/Plot_ja.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ja.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_ja.ts b/src/Mod/Plot/resources/translations/Plot_ja.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ja.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_nl.qm b/src/Mod/Plot/resources/translations/Plot_nl.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_nl.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_nl.ts b/src/Mod/Plot/resources/translations/Plot_nl.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_nl.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_no.qm b/src/Mod/Plot/resources/translations/Plot_no.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_no.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_no.ts b/src/Mod/Plot/resources/translations/Plot_no.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_no.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_pl.qm b/src/Mod/Plot/resources/translations/Plot_pl.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_pl.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_pl.ts b/src/Mod/Plot/resources/translations/Plot_pl.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_pl.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.qm b/src/Mod/Plot/resources/translations/Plot_pt-BR.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_pt-BR.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_ro.qm b/src/Mod/Plot/resources/translations/Plot_ro.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ro.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_ro.ts b/src/Mod/Plot/resources/translations/Plot_ro.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ro.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_ru.qm b/src/Mod/Plot/resources/translations/Plot_ru.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ru.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_ru.ts b/src/Mod/Plot/resources/translations/Plot_ru.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_ru.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_sk.qm b/src/Mod/Plot/resources/translations/Plot_sk.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_sk.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_sk.ts b/src/Mod/Plot/resources/translations/Plot_sk.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_sk.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.qm b/src/Mod/Plot/resources/translations/Plot_sv-SE.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_sv-SE.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_tr.qm b/src/Mod/Plot/resources/translations/Plot_tr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_tr.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_tr.ts b/src/Mod/Plot/resources/translations/Plot_tr.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_tr.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_uk.qm b/src/Mod/Plot/resources/translations/Plot_uk.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_uk.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_uk.ts b/src/Mod/Plot/resources/translations/Plot_uk.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_uk.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.qm b/src/Mod/Plot/resources/translations/Plot_zh-CN.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_zh-CN.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.qm b/src/Mod/Plot/resources/translations/Plot_zh-TW.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_zh-TW.qm @@ -0,0 +1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts new file mode 100644 index 000000000..340b1c089 --- /dev/null +++ b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts @@ -0,0 +1,280 @@ + + + + Plot + + + Plot edition tools + + + + + Plot + + + + + Plot_Axes + + + Configure axes + + + + + Configure axes parameters + + + + + Plot_Grid + + + Show/Hide grid + + + + + Show/Hide grid on selected plot + + + + + Plot_Labels + + + Set labels + + + + + Set title and axes labels + + + + + Plot_Legend + + + Show/Hide legend + + + + + Show/Hide legend on selected plot + + + + + Plot_Positions + + + Set positions and sizes + + + + + Set labels and legend positions and sizes + + + + + Plot_SaveFig + + + Save plot + + + + + Save plot as image file + + + + + Plot_Series + + + Configure series + + + + + Configure series drawing style and label + + + + + plot_axes + + + Configure axes + + + + + Active axes + + + + + Apply to all axes + + + + + Dimensions + + + + + X axis position + + + + + Y axis position + + + + + Scales + + + + + X auto + + + + + Y auto + + + + + plot_console + + + matplotlib not found, so Plot module can not be loaded + + + + + matplotlib not found, Plot module will be disabled + + + + + Plot document must be selected in order to save it + + + + + Axes 0 can not be deleted + + + + + Grid must be activated on top of a plot document + + + + + Legend must be activated on top of a plot document + + + + + plot_labels + + + Set labels + + + + + Active axes + + + + + Title + + + + + X label + + + + + Y label + + + + + plot_positions + + + Set positions and sizes + + + + + Position + + + + + Size + + + + + plot_save + + + Save figure + + + + + Inches + + + + + Dots per Inch + + + + + plot_series + + + Configure series + + + + + No label + + + + + Remove serie + + + + + Line style + + + + + Marker + + + + From a78dcfa1825f94b3141dbd3ccb33d635f0fd7655 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 18:15:06 +0100 Subject: [PATCH 13/15] Added new languages to windows installer stuff --- src/WindowsInstaller/ModPlot.wxi | 42 ++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/WindowsInstaller/ModPlot.wxi b/src/WindowsInstaller/ModPlot.wxi index d40cb88a5..c12fe5710 100644 --- a/src/WindowsInstaller/ModPlot.wxi +++ b/src/WindowsInstaller/ModPlot.wxi @@ -49,8 +49,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From dcd4e575ac32de58229b20e529860f7751e03af6 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 18:25:39 +0100 Subject: [PATCH 14/15] Forced size to improve vertical sliders --- src/Mod/Plot/plotAxes/TaskPanel.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Plot/plotAxes/TaskPanel.ui b/src/Mod/Plot/plotAxes/TaskPanel.ui index 26c267af1..b75f96c5f 100644 --- a/src/Mod/Plot/plotAxes/TaskPanel.ui +++ b/src/Mod/Plot/plotAxes/TaskPanel.ui @@ -13,7 +13,7 @@ 0 - 336 + 416 From 5dd7f87939f11f0e26d55a7deb13344a77b35e83 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos Pita Date: Mon, 5 Nov 2012 18:50:30 +0100 Subject: [PATCH 15/15] Added tooltips --- src/Mod/Plot/Plot_rc.py | 557 +++++++----------- src/Mod/Plot/plotAxes/TaskPanel.py | 24 + src/Mod/Plot/plotLabels/TaskPanel.py | 14 + src/Mod/Plot/plotPositions/TaskPanel.py | 8 + src/Mod/Plot/plotSave/TaskPanel.py | 10 + src/Mod/Plot/plotSeries/TaskPanel.py | 18 + src/Mod/Plot/resources/translations/Plot.ts | 184 +++++- .../Plot/resources/translations/Plot_af.ts | 184 +++++- .../Plot/resources/translations/Plot_cs.ts | 184 +++++- .../Plot/resources/translations/Plot_de.ts | 184 +++++- .../Plot/resources/translations/Plot_es-ES.qm | Bin 5249 -> 9864 bytes .../Plot/resources/translations/Plot_es-ES.ts | 184 +++++- .../Plot/resources/translations/Plot_fi.ts | 184 +++++- .../Plot/resources/translations/Plot_fr.ts | 184 +++++- .../Plot/resources/translations/Plot_hr.ts | 184 +++++- .../Plot/resources/translations/Plot_hu.ts | 184 +++++- .../Plot/resources/translations/Plot_it.ts | 184 +++++- .../Plot/resources/translations/Plot_ja.ts | 184 +++++- .../Plot/resources/translations/Plot_nl.ts | 184 +++++- .../Plot/resources/translations/Plot_no.ts | 184 +++++- .../Plot/resources/translations/Plot_pl.ts | 184 +++++- .../Plot/resources/translations/Plot_pt-BR.ts | 184 +++++- .../Plot/resources/translations/Plot_ro.ts | 184 +++++- .../Plot/resources/translations/Plot_ru.ts | 184 +++++- .../Plot/resources/translations/Plot_sk.ts | 184 +++++- .../Plot/resources/translations/Plot_sv-SE.ts | 184 +++++- .../Plot/resources/translations/Plot_tr.ts | 184 +++++- .../Plot/resources/translations/Plot_uk.ts | 184 +++++- .../Plot/resources/translations/Plot_zh-CN.ts | 184 +++++- .../Plot/resources/translations/Plot_zh-TW.ts | 184 +++++- 30 files changed, 4466 insertions(+), 397 deletions(-) diff --git a/src/Mod/Plot/Plot_rc.py b/src/Mod/Plot/Plot_rc.py index 531b531e5..7840d561b 100644 --- a/src/Mod/Plot/Plot_rc.py +++ b/src/Mod/Plot/Plot_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Mon Nov 5 08:56:45 2012 +# Created: Mon Nov 5 18:50:00 2012 # by: The Resource Compiler for PyQt (Qt v4.8.1) # # WARNING! All changes made in this file will be lost! @@ -43,337 +43,192 @@ qt_resource_data = "\ \x00\x00\x00\x10\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ -\x00\x00\x14\x81\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x78\x00\x05\x73\x64\x00\x00\x00\x00\x00\x05\xa1\x05\ -\x00\x00\x10\x8e\x00\x4f\x1e\x44\x00\x00\x0c\x99\x00\x5b\x0b\x25\ -\x00\x00\x0f\x18\x01\x3a\xaf\x14\x00\x00\x0b\x3f\x01\x72\x7d\xec\ -\x00\x00\x12\x6b\x02\x6c\xe7\x45\x00\x00\x05\xc2\x02\xb8\x1b\xe4\ -\x00\x00\x0a\x00\x02\xf5\x8e\x35\x00\x00\x12\xa7\x05\x04\x9e\xc3\ -\x00\x00\x11\x10\x05\x1c\xd3\x94\x00\x00\x01\x67\x05\x1e\xbc\x13\ -\x00\x00\x05\x04\x05\x1e\xbc\x13\x00\x00\x10\x12\x05\x38\x91\xc2\ -\x00\x00\x12\x35\x05\x99\x82\xc3\x00\x00\x08\xa8\x05\xa6\x8c\xaf\ -\x00\x00\x08\xda\x05\xae\x7b\x73\x00\x00\x02\xae\x05\xb6\x8c\xaf\ -\x00\x00\x09\x6d\x06\x96\x60\xf5\x00\x00\x11\x44\x06\xa0\xab\x2e\ -\x00\x00\x0f\xd7\x06\xfc\xe0\x23\x00\x00\x04\x52\x07\x22\x18\x53\ -\x00\x00\x02\x60\x07\x22\x18\x53\x00\x00\x0e\xc6\x07\x2f\xb3\xb8\ -\x00\x00\x10\xc1\x07\x7d\xc4\x44\x00\x00\x03\xad\x07\x7f\x90\x65\ -\x00\x00\x11\xed\x08\x11\x0d\x6c\x00\x00\x06\xb6\x08\x6e\x06\x34\ -\x00\x00\x0a\x86\x08\xb8\xd1\xa4\x00\x00\x0b\xfe\x09\xd5\xef\x93\ -\x00\x00\x07\xad\x0a\x72\x78\xec\x00\x00\x0f\x49\x0b\x66\xe1\xf3\ -\x00\x00\x06\x4a\x0b\x66\xe1\xf3\x00\x00\x11\x89\x0b\x72\x78\xec\ -\x00\x00\x0f\x90\x0b\xfd\x86\x84\x00\x00\x01\xc3\x0c\x31\x25\xc3\ -\x00\x00\x07\x6c\x0c\x31\x25\xc3\x00\x00\x0e\x83\x0c\x5d\x56\x63\ -\x00\x00\x08\x6a\x0c\x77\x4c\xe4\x00\x00\x05\x7a\x0d\x10\xbf\x54\ -\x00\x00\x03\x49\x0d\xe1\xc9\x54\x00\x00\x0d\x7e\x0e\x3a\x74\xa3\ -\x00\x00\x00\x9c\x0e\x3a\x74\xa3\x00\x00\x08\x0c\x0e\x70\xa3\x4e\ -\x00\x00\x09\x1c\x0e\x70\xa4\x4e\x00\x00\x09\xaf\x0e\x88\x63\x53\ -\x00\x00\x00\xe6\x0e\x9a\xb0\x73\x00\x00\x00\x2b\x69\x00\x00\x12\ -\xef\x03\x00\x00\x00\x0e\x00\x47\x00\x72\x00\xe1\x00\x66\x00\x69\ -\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x6c\ -\x6f\x74\x07\x00\x00\x00\x04\x50\x6c\x6f\x74\x01\x03\x00\x00\x00\ -\x46\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\ -\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\ -\x20\x00\x65\x00\x64\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\ -\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\ -\x69\x00\x63\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x50\x6c\x6f\x74\x20\x65\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\ -\x6f\x6c\x73\x07\x00\x00\x00\x04\x50\x6c\x6f\x74\x01\x03\x00\x00\ -\x00\x1e\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ -\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\x6e\x66\x69\x67\ -\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x09\x50\x6c\x6f\ -\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x4a\x00\x45\x00\x73\ -\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\ -\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\ -\x00\xe1\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x6f\x00\x73\x00\x20\ -\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\ -\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ -\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x20\x70\ -\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x07\x00\x00\x00\x09\x50\x6c\ -\x6f\x74\x5f\x41\x78\x65\x73\x01\x03\x00\x00\x00\x30\x00\x4d\x00\ -\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\x4f\x00\ -\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\ -\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0e\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\ -\x20\x67\x72\x69\x64\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\x47\ -\x72\x69\x64\x01\x03\x00\x00\x00\x60\x00\x4d\x00\x75\x00\x65\x00\ -\x73\x00\x74\x00\x72\x00\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\ -\x6c\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\ -\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ -\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\ -\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1f\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x67\x72\x69\ -\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x70\x6c\ -\x6f\x74\x07\x00\x00\x00\x09\x50\x6c\x6f\x74\x5f\x47\x72\x69\x64\ -\x01\x03\x00\x00\x00\x24\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\ -\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x72\x00\x20\x00\x74\x00\xed\ -\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0a\x53\x65\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\ -\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\ -\x00\x00\x00\x62\x00\x45\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\ -\x00\x65\x00\x7a\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\ -\x00\x20\x00\x74\x00\xf1\x00\x69\x00\x74\x00\x75\x00\x6c\x00\x6f\ -\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\ -\x00\x73\x00\x20\x00\x79\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\ -\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\ -\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ -\x53\x65\x74\x20\x74\x69\x74\x6c\x65\x20\x61\x6e\x64\x20\x61\x78\ -\x65\x73\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x50\x6c\ -\x6f\x74\x5f\x4c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x34\x00\ -\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x2f\x00\ -\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x20\x00\ -\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\ -\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x53\x68\x6f\ -\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\x64\x07\x00\x00\ -\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\x6e\x64\x01\x03\x00\ -\x00\x00\x64\x00\x4d\x00\x75\x00\x65\x00\x73\x00\x74\x00\x72\x00\ -\x65\x00\x2f\x00\x4f\x00\x63\x00\x75\x00\x6c\x00\x74\x00\x65\x00\ -\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\ -\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ -\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\ -\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x21\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x6c\x65\x67\x65\x6e\ -\x64\x20\x6f\x6e\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x70\x6c\ -\x6f\x74\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\x4c\x65\x67\x65\ -\x6e\x64\x01\x03\x00\x00\x00\x66\x00\x4d\x00\x6f\x00\x64\x00\x69\ -\x00\x66\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x61\ -\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\ -\x00\x6e\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ -\x00\xf1\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\ -\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\ -\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x29\x53\x65\x74\x20\x6c\x61\x62\x65\ -\x6c\x73\x20\x61\x6e\x64\x20\x6c\x65\x67\x65\x6e\x64\x20\x70\x6f\ -\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\ -\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\x5f\x50\x6f\x73\x69\x74\ -\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x3c\x00\x4d\x00\x6f\x00\x64\ -\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x70\ -\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\ -\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\ -\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x20\x61\x6e\ -\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\x50\x6c\x6f\x74\ -\x5f\x50\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\x00\x00\x00\x1e\ -\x00\x47\x00\x75\x00\x61\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\ -\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x09\x53\x61\x76\x65\x20\x70\x6c\x6f\ -\x74\x07\x00\x00\x00\x0c\x50\x6c\x6f\x74\x5f\x53\x61\x76\x65\x46\ -\x69\x67\x01\x03\x00\x00\x00\x50\x00\x47\x00\x75\x00\x61\x00\x72\ -\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x72\ -\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x63\x00\x68\x00\x69\ -\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6d\ -\x00\x61\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x17\x53\x61\x76\x65\x20\x70\x6c\x6f\x74\x20\x61\x73\x20\x69\ -\x6d\x61\x67\x65\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x0c\x50\x6c\ -\x6f\x74\x5f\x53\x61\x76\x65\x46\x69\x67\x01\x03\x00\x00\x00\x3c\ -\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\ -\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x73\ -\x00\x65\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\ -\x00\x61\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\ -\x73\x65\x72\x69\x65\x73\x07\x00\x00\x00\x0b\x50\x6c\x6f\x74\x5f\ -\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x6e\x00\x45\x00\x73\ -\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x7a\x00\x63\x00\x61\ -\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\ -\x00\x6c\x00\x6f\x00\x20\x00\x79\x00\x20\x00\x65\x00\x6c\x00\x20\ -\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x20\x00\x64\ -\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x63\x00\x75\ -\x00\x72\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\ -\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x28\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x73\x65\ -\x72\x69\x65\x73\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x74\x79\ -\x6c\x65\x20\x61\x6e\x64\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\ -\x0b\x50\x6c\x6f\x74\x5f\x53\x65\x72\x69\x65\x73\x01\x03\x00\x00\ -\x00\x18\x00\x45\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x61\x00\x63\ -\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x41\x63\x74\x69\x76\x65\x20\x61\x78\x65\x73\x07\ -\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\ -\x00\x00\x30\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\ -\x72\x00\x20\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\ -\x73\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6a\x00\ -\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x41\x70\x70\ -\x6c\x79\x20\x74\x6f\x20\x61\x6c\x6c\x20\x61\x78\x65\x73\x07\x00\ -\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ -\x00\x32\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ -\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ -\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6a\ -\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x6f\ -\x6e\x66\x69\x67\x75\x72\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ -\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x16\ -\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ -\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x09\x70\ -\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x0e\x00\x45\ -\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x06\x53\x63\x61\x6c\x65\x73\x07\x00\x00\x00\ -\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\x00\x1e\ -\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\x74\x00\x69\ -\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x58\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x58\x20\x61\x75\x74\x6f\x07\x00\ -\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\x00\ -\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\ -\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\ -\x00\x65\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ -\x58\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x07\ -\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\x03\x00\ -\x00\x00\x1e\x00\x41\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\ -\x74\x00\x69\x00\x63\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ -\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x59\x20\x61\x75\x74\ -\x6f\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\x01\ -\x03\x00\x00\x00\x24\x00\x50\x00\x6f\x00\x73\x00\x69\x00\x63\x00\ -\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ -\x65\x00\x6a\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x59\x20\x61\x78\x69\x73\x20\x70\x6f\x73\x69\x74\x69\ -\x6f\x6e\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x61\x78\x65\x73\ -\x01\x03\x00\x00\x00\x4c\x00\x45\x00\x6c\x00\x20\x00\x6a\x00\x75\ -\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\ -\x00\x20\x00\x30\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x75\ -\x00\x65\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\ -\x00\x65\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\ -\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x78\x65\x73\ -\x20\x30\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x64\x65\ -\x6c\x65\x74\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\ -\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x68\x00\x50\x00\x61\ -\x00\x72\x00\x61\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\ -\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\ -\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ -\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\ -\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\ -\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\ -\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x47\x72\ -\x69\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\x76\ -\x61\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\x61\ -\x20\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\ -\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\ -\x03\x00\x00\x00\x6c\x00\x50\x00\x61\x00\x72\x00\x61\x00\x20\x00\ -\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\x20\x00\ -\x6c\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x6e\x00\ -\x64\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x72\x00\ -\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\ -\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x67\x65\x6e\ -\x64\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x63\x74\x69\x76\x61\ -\x74\x65\x64\x20\x6f\x6e\x20\x74\x6f\x70\x20\x6f\x66\x20\x61\x20\ -\x70\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ -\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\ -\x00\x00\x00\x48\x00\x44\x00\x65\x00\x62\x00\x65\x00\x20\x00\x73\ -\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\ -\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x67\ -\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x70\ -\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x32\x50\x6c\x6f\x74\x20\x64\x6f\x63\x75\x6d\ -\x65\x6e\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\ -\x20\x73\x61\x76\x65\x20\x69\x74\x07\x00\x00\x00\x0c\x70\x6c\x6f\ -\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\x00\x00\x00\x92\x00\ -\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\x00\ -\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\ -\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ -\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\x00\x69\x00\x62\x00\ -\x2c\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ -\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\ -\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\x00\x6f\x00\ -\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\ -\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x61\x00\x64\x00\ -\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x6d\x61\x74\x70\x6c\ -\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\ -\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\ -\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x07\x00\x00\ -\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\x6f\x6c\x65\x01\x03\ -\x00\x00\x00\xae\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\ -\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\ -\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x74\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x6c\ -\x00\x69\x00\x62\x00\x2c\x00\x20\x00\x79\x00\x20\x00\x70\x00\x6f\ -\x00\x72\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x6f\x00\x20\ -\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\ -\x00\x65\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x67\ -\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\ -\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ -\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\ -\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x6d\x61\x74\x70\ -\x6c\x6f\x74\x6c\x69\x62\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ -\x2c\x20\x73\x6f\x20\x50\x6c\x6f\x74\x20\x6d\x6f\x64\x75\x6c\x65\ -\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x20\x6c\x6f\x61\x64\ -\x65\x64\x07\x00\x00\x00\x0c\x70\x6c\x6f\x74\x5f\x63\x6f\x6e\x73\ -\x6f\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x45\x00\x6a\x00\x65\x00\ -\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x63\x74\x69\x76\ -\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\ -\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x28\x00\x53\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ -\x00\x64\x00\x65\x00\x20\x00\x74\x00\xed\x00\x74\x00\x75\x00\x6c\ -\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\ -\x74\x20\x6c\x61\x62\x65\x6c\x73\x07\x00\x00\x00\x0b\x70\x6c\x6f\ -\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x0c\x00\x54\ -\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x54\x69\x74\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\ -\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x20\x00\ -\x54\x00\xed\x00\x74\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\ -\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\x58\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x07\x58\x20\x6c\x61\x62\x65\x6c\ -\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x6c\x61\x62\x65\x6c\x73\ -\x01\x03\x00\x00\x00\x20\x00\x54\x00\xed\x00\x74\x00\x75\x00\x6c\ -\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x6a\ -\x00\x65\x00\x20\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ -\x59\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ -\x5f\x6c\x61\x62\x65\x6c\x73\x01\x03\x00\x00\x00\x10\x00\x50\x00\ -\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x08\x50\x6f\x73\x69\x74\x69\x6f\x6e\x07\ -\x00\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\ -\x6e\x73\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\ -\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\ -\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x63\x00\x69\x00\x6f\ -\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x79\x00\x20\x00\x74\x00\x61\ -\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x17\x53\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ -\x73\x20\x61\x6e\x64\x20\x73\x69\x7a\x65\x73\x07\x00\x00\x00\x0e\ -\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\x73\x01\x03\ -\x00\x00\x00\x0c\x00\x54\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x7a\x65\x07\x00\ -\x00\x00\x0e\x70\x6c\x6f\x74\x5f\x70\x6f\x73\x69\x74\x69\x6f\x6e\ -\x73\x01\x03\x00\x00\x00\x24\x00\x50\x00\x75\x00\x6e\x00\x74\x00\ -\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ -\x75\x00\x6c\x00\x67\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0d\x44\x6f\x74\x73\x20\x70\x65\x72\x20\x49\x6e\ -\x63\x68\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\ -\x01\x03\x00\x00\x00\x10\x00\x50\x00\x75\x00\x6c\x00\x67\x00\x61\ -\x00\x64\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ -\x49\x6e\x63\x68\x65\x73\x07\x00\x00\x00\x09\x70\x6c\x6f\x74\x5f\ -\x73\x61\x76\x65\x01\x03\x00\x00\x00\x1c\x00\x47\x00\x75\x00\x61\ -\x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x66\x00\x69\x00\x67\ -\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ -\x53\x61\x76\x65\x20\x66\x69\x67\x75\x72\x65\x07\x00\x00\x00\x09\ -\x70\x6c\x6f\x74\x5f\x73\x61\x76\x65\x01\x03\x00\x00\x00\x34\x00\ -\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\ -\x61\x00\x72\x00\x20\x00\x73\x00\x65\x00\x72\x00\x69\x00\x65\x00\ -\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x61\x00\x74\x00\ -\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\ -\x66\x69\x67\x75\x72\x65\x20\x73\x65\x72\x69\x65\x73\x07\x00\x00\ -\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\ -\x00\x00\x1e\x00\x45\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\ -\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\ -\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\ -\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x61\x00\ -\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x06\x4d\x61\x72\x6b\x65\x72\x07\x00\x00\x00\x0b\ -\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\ -\x14\x00\x53\x00\x69\x00\x6e\x00\x20\x00\x74\x00\xed\x00\x74\x00\ -\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x4e\ -\x6f\x20\x6c\x61\x62\x65\x6c\x07\x00\x00\x00\x0b\x70\x6c\x6f\x74\ -\x5f\x73\x65\x72\x69\x65\x73\x01\x03\x00\x00\x00\x1c\x00\x45\x00\ -\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ -\x73\x00\x65\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x73\x65\x72\x69\x65\x07\ -\x00\x00\x00\x0b\x70\x6c\x6f\x74\x5f\x73\x65\x72\x69\x65\x73\x01\ -\ +\x00\x00\x0b\x78\ +\x00\ +\x00\x26\x88\x78\x9c\xbd\x59\x7f\x8c\x14\x57\x1d\x7f\xc7\xdd\xee\ +\xde\xdd\xee\x2d\x07\x1c\xc7\x1d\x9c\xc7\x1c\xa5\xe6\x50\x94\x93\ +\x22\x5a\x44\xc3\x01\x2d\x77\x70\xc0\x85\x23\xca\xc5\x18\x98\xdd\ +\x79\xbb\x3b\x30\x3b\xb3\xce\xcc\xde\xc1\x35\xf8\xdb\xa6\x1a\x35\ +\xda\x56\x53\x4d\xd3\x58\x4b\x35\xb1\x81\x6a\x4c\x2a\xc6\x1f\x6d\ +\x4a\x0d\xa9\x4d\x13\x9b\xc6\xf2\x8f\x8d\x3d\xa3\xd5\x18\xb5\x6d\ +\x48\xf5\x1f\x9b\xf8\x7d\xdf\x37\x33\xef\xcd\xec\xcc\xde\x52\xa0\ +\x24\xc7\x9b\x99\x9d\xf9\x7e\x3f\xdf\x9f\xef\xfb\xfd\xbe\x9d\x17\ +\xb5\x81\xdf\xbd\xf6\xe0\xb7\x9f\x1f\x19\x7a\xf2\xc4\xc3\xbf\x7e\ +\x79\x37\x21\xcb\x1e\x20\x29\x47\x23\xec\x5f\xea\xe1\x14\x21\x6b\ +\xc7\xc9\xe1\xe1\xbd\x84\xac\x5c\x20\x9f\xcc\xde\x4a\xc8\x6a\x87\ +\x3c\x7f\x37\xac\x6b\x7e\x4a\x5e\x66\x6b\xff\x43\xe4\xea\xbf\xef\ +\x23\x64\x70\x65\xdb\x8e\xc7\xfb\x08\x59\xa1\xb4\xed\xde\xf2\x57\ +\x42\x36\xdc\xdf\x76\x6a\xdd\x8b\x84\x64\x0f\xb4\xd9\x67\xff\x09\ +\xf7\xaf\xb6\xdd\x85\xf7\xcf\x2e\x2b\x92\x51\x42\xde\xd5\xbd\xcc\ +\xf8\xdb\x1d\xc0\xe4\xe9\x65\x17\xd7\xfd\x85\x90\xe5\x8b\xcb\xde\ +\xfc\xc6\x07\x09\xb9\x65\x43\xfb\xae\xdb\xe0\xfb\xfe\x7f\xb4\xef\ +\xda\x03\xeb\x9a\xb7\xda\x5f\x39\x0f\xfc\x33\xe7\x3b\xda\x1e\xd8\ +\x46\xc8\xfa\x2f\x77\xac\xf8\xd8\x23\x84\xe4\x2e\xa5\x3a\x1e\xba\ +\x44\xc8\xd0\x4b\xa9\xa1\x17\xef\x27\xa4\xad\x9c\x1a\xfe\xd5\x2a\ +\xa0\xd7\xc1\xd7\xc1\xdf\xa6\x3e\xfc\xad\xa7\x81\x6f\x4f\xca\xfc\ +\xf3\x21\x42\xf2\x27\x61\xfd\x0c\xf0\xb1\x52\xdf\xfd\x02\x7c\xd7\ +\xb3\x2d\xf5\xc3\xaf\x3d\x0e\xeb\x95\xd4\x85\xbb\x1c\x90\xfb\x42\ +\xea\x09\x76\x9f\xff\x63\xba\xef\xf5\x2b\x80\xef\xb9\xf4\x81\x76\ +\x78\x7f\xad\x9b\x3e\xd0\xc1\xd6\xd7\xd3\xdf\x39\xf1\x26\x3c\xbf\ +\x3b\xfd\xfd\xc7\xde\x0f\xf4\xbf\x9a\xfe\xdf\x2b\xb7\x10\xd2\x71\ +\x24\xd3\xf3\x21\xc0\x33\xf2\xf5\xcc\x86\x81\x19\xa0\x73\x82\xaf\ +\xab\x47\x32\xa3\x8f\x02\x7f\x65\x7b\x66\xcb\xcf\x2e\x12\xb2\xce\ +\xc8\x9c\x7e\xee\xef\xf0\xde\x78\xe6\xec\x33\x20\x4f\xfb\xf9\xcc\ +\x67\xbf\x49\xe1\xf7\xc7\x32\x9f\xfb\x08\x5b\xaf\x76\xae\xe8\x31\ +\x08\x49\x3f\xd1\x69\xa6\x41\xce\xde\x72\xe7\xc5\x17\xce\x81\x3e\ +\xff\xd4\xf9\xd4\xb9\x3a\x21\xc3\x97\x3b\x7f\x8f\x6b\xb5\xeb\xf6\ +\xcf\x5f\x25\xa4\x2b\xdd\xf5\x87\xd7\x40\xef\x9d\xb7\x75\x7f\xe2\ +\xbe\x22\xac\xf7\x76\x97\xce\x7f\x05\xf8\x9e\xeb\xb6\x4f\x83\xbe\ +\xd7\x9c\xcc\x4e\x5c\xfe\x0d\xf0\xfd\x65\xb6\xb4\x08\xef\xa7\xf7\ +\xf3\x75\xfd\x48\x16\x7f\x1f\x38\x9b\xbd\x3c\x0c\xf6\xe8\xbe\x92\ +\xfd\xef\x0b\x8f\xc2\xfd\x33\xd9\xb7\xee\xfe\x12\xe8\xf1\x52\xae\ +\xef\x3d\xab\x41\x6f\x7b\x72\x1f\xb8\x15\xf4\x94\x31\xf8\xda\xa7\ +\xe5\x3e\xf5\x71\xe0\xd3\x3d\x92\x9b\x9f\x02\x7b\xa5\x16\x72\x3f\ +\x18\x61\xf6\x3a\x99\xfb\xf9\x8f\x81\x4e\x4f\xa9\xa7\xf7\xc9\xa3\ +\x20\xd7\x64\x4f\xe1\x3f\x80\x2b\xb7\xaf\x67\xf1\x59\xb8\x5f\x75\ +\x3c\xbf\xc3\x05\xfd\x90\x07\xf9\xda\x75\x29\xbf\xeb\x17\x20\x6f\ +\xff\xed\xf9\xda\x23\xcc\x2e\x83\xf9\xda\x39\x58\x97\x0f\xe7\xef\ +\x29\x82\xde\xc8\xab\xf9\xef\xfd\x04\xec\x41\xde\xbb\xfc\xe0\xd5\ +\x2f\x02\xbf\xe3\x7c\xed\xfb\x91\x0e\xcc\x5e\x6a\x87\x5f\xf2\x64\ +\x1f\xb1\xc9\x22\x29\x11\x9d\x14\x89\xda\xc9\x7c\x35\x0d\x7f\x1d\ +\xd3\x86\xe5\x66\xfc\x8b\x36\xf6\xea\x9d\x64\x82\x50\x78\xd9\x26\ +\x2a\xa9\xc2\xeb\x94\x98\xc4\x85\x6b\x87\x28\x44\x83\x3b\x05\xfe\ +\x34\x24\xa3\x93\xab\xf0\x9b\xff\xb4\x2c\x33\x20\x4e\xc0\x62\x25\ +\xa3\xac\x50\x4d\x77\x75\xcb\x54\x5c\xcb\x32\x9c\x30\xc3\x61\xb2\ +\x87\x58\x40\x88\x7d\x5a\x26\x75\x64\x6c\x23\x9b\x93\xf0\x27\x08\ +\xe5\xf7\x58\x66\x49\x2f\xd7\x6d\xaa\xa8\xa7\x29\x12\xe9\x62\x44\ +\x8e\x8f\xc3\x1d\x52\xda\x4f\xee\x00\x98\x0c\x6c\x81\x18\xf0\xed\ +\x02\x42\x51\xe0\xda\x42\xf8\x35\xa4\xbc\x08\x62\x51\x78\xcb\xf6\ +\x9e\x72\xf8\xec\x4d\x0d\xdf\x46\xbe\x01\xd7\xc1\x30\x57\xa5\xa6\ +\xda\x6a\x95\xba\xd4\x8e\x03\x30\x46\x0e\x22\x51\xd7\x13\x62\x0b\ +\x39\x0c\x84\xeb\x00\xc0\xf5\x84\x32\x90\x45\x15\xfe\x37\xd8\xb5\ +\x10\x6e\xa6\x62\xcd\x6f\x99\xd0\x35\xaa\x94\x6d\x5d\x13\xb4\xf7\ +\xc1\x1d\xd2\x3e\x01\xb4\xeb\x4c\x21\x48\x9d\x86\x68\xd3\x46\xca\ +\x9e\x60\x46\xc4\x32\x16\xdc\x3b\xf8\x9c\xc2\x1d\xb3\x21\x53\x3d\ +\x13\xdd\x0a\xb0\xac\x0f\x63\x51\xc0\x6c\x0e\x35\x68\xd1\xa5\x9a\ +\x52\xf3\xfc\x25\x02\x6e\x63\x44\xf3\x45\x74\x21\x05\x9e\xfc\x0b\ +\xfe\xea\xdc\x02\x01\x83\xee\x19\xea\x2a\x86\x5a\xa0\xdc\x15\xb2\ +\x48\x6b\x0a\xef\x91\x5a\x61\x09\x3b\xba\xe4\x0d\x00\x1e\xd0\x95\ +\x1c\x13\x3d\x06\xae\xce\x78\x62\xda\xe8\xc0\xe2\x0d\x66\x61\x37\ +\x84\x65\x90\x61\x71\x75\xd7\x00\xfb\x9a\x1a\xb7\x71\x13\x68\xdb\ +\x5a\xb4\x30\x83\x5d\xc6\xd8\xd1\x24\x2b\xf7\x0a\xcd\x1a\xb4\x4c\ +\x4d\x4d\xe2\x81\xf7\xc8\x43\x6b\xc9\xd2\x21\x0e\xd7\x61\xed\x91\ +\x28\xa6\x58\x7b\x37\x80\x2c\xa1\x22\x58\x22\x60\xac\x3e\x8d\x80\ +\x7d\x68\x35\x54\x91\x9c\x22\xce\xa0\xd5\x54\x74\xcf\x37\x10\x16\ +\xb7\x47\xc8\x3f\xbc\xf7\xe2\x55\xb7\x49\xf8\x0c\x1a\xca\xc3\x5a\ +\xb3\x1c\x4c\x2c\xfc\xa1\xa3\x2f\xf0\xc4\x90\x47\xb8\xd3\xfe\x8f\ +\x88\x78\x67\x08\x71\xd1\x33\x97\x8c\x95\x29\x47\xf8\x8f\x8c\x57\ +\xf8\xcb\x1a\x86\xe3\x1a\xb8\x0e\x43\xe6\xad\x23\x2f\xcd\xe3\x58\ +\x8e\xcd\xc4\x5d\x33\xea\x1c\x0d\xd4\x9d\x43\x4a\xec\xd1\x9d\x7a\ +\x19\xe9\x4c\x87\xe8\xf8\x9a\x0e\x27\x5d\x05\x4d\x5e\x45\xfd\xb2\ +\x37\x8b\xa4\x02\xbf\xcc\x49\xfa\xd6\x51\x22\xd4\xae\x24\x91\xcf\ +\x59\x51\x1d\x45\xaf\xaa\x65\xaa\x94\x74\x83\xc6\xe3\xd8\x99\x90\ +\xad\x0d\x6f\x8b\x08\x47\x1d\x0f\x93\x05\x2f\xb7\x0a\x2d\xf6\x8a\ +\xac\xea\x50\x5b\xa7\x52\xb0\xcd\xe0\x3d\xf2\x32\x13\xf2\x00\x77\ +\x74\xd9\x77\xb8\xc5\xf8\x73\x1e\x38\xba\xf7\x5c\x0b\xfc\xd2\x41\ +\xfd\x30\xc4\x73\xde\x5d\x12\xba\xd1\x28\x3a\x45\xb3\xd5\x79\xdd\ +\x2c\x2b\x8e\x7b\xc6\x4b\x14\xe8\x8a\xb1\xa8\x07\x00\xb5\x9f\x87\ +\x54\xe0\xe8\x7a\x36\x10\xf4\xb3\xe3\x45\x57\x9f\x93\xb6\x31\xa6\ +\xfc\xe3\xaa\xbf\x8b\x4c\x93\x71\x34\x2c\x0b\x03\x26\x6e\x1d\x43\ +\xc8\xc4\x10\xe3\xc6\x3c\x89\xd7\x65\x49\x40\x2a\xb1\x6c\xc8\x02\ +\x01\xe3\x81\x71\x4d\x53\x4c\x3a\xcf\xd3\x9c\x6b\x29\x6e\x45\xf8\ +\x5c\x04\xc5\x18\xa0\xa8\x01\x2d\x11\x2a\x2a\xaa\x8c\x85\x10\x0f\ +\x56\x3f\x68\xa3\x1b\xf5\x8a\xf1\x5a\xcd\x38\xc3\xc8\xab\x86\x91\ +\x24\xe4\x6e\x32\x05\xf6\xab\x62\x1e\xe7\x9e\xc9\x7c\x8a\xfb\x8e\ +\x85\xec\xfc\x84\x96\x28\x6c\xc0\xb0\x6f\xb7\xe5\xba\x56\x55\x29\ +\x58\x75\x96\xbe\x4a\x49\x3c\x6d\xc8\x00\x3c\x2e\xfc\xd8\x57\xd1\ +\x03\x98\x68\x61\x51\x8d\x90\x87\x98\x70\x5d\x42\x54\x55\xb4\xa8\ +\x9c\x29\x5a\x55\xca\xfb\xf6\x54\x68\xf1\x94\xa2\xbb\xa8\x17\xae\ +\x20\x5b\x35\x9d\x92\x65\x57\x55\x9e\x4b\x9a\x2b\x6c\x6b\x4c\xe0\ +\x45\x6b\xb0\x24\xe6\x71\xa5\x53\x98\x7a\x3f\xd9\x8b\xc9\x81\xa2\ +\xb0\x81\x80\x62\xcb\xde\xab\x57\xa9\xe9\x30\x9c\xb1\xc6\x9c\x44\ +\x04\x26\x3a\xbb\x9f\x8e\x34\xc9\x90\x0d\xd8\x12\x83\x63\x60\xd2\ +\xd4\xe8\x69\x66\x45\xe6\x9c\x6a\xd3\x48\xd9\xdb\xe0\x44\x0b\xb8\ +\x15\xe9\xe8\x48\x5a\xe0\x32\xad\xb9\xd1\xca\x29\x5a\x72\x97\x74\ +\xa2\x09\xe0\xca\xf0\xd7\xd0\x49\x16\x42\x55\xb2\x15\xc4\x1f\x25\ +\xa7\x11\x53\xa3\x3b\x73\xae\x0a\x39\x26\x24\x3e\x5c\x77\xe7\x55\ +\x9b\x31\x2d\x39\xb0\xbb\x00\xef\x63\xc0\x5d\xbf\x99\xdc\x67\x9b\ +\x71\x9f\x4d\xe2\xce\x0a\x6c\x03\xfd\x44\xc7\x3a\x42\x59\x4a\xb7\ +\x2d\xd4\x1f\x7d\x47\x68\xd5\x9a\xa3\xa2\xe4\x48\xd0\xfb\xae\x88\ +\xad\x35\x94\x8f\xe2\x26\x77\x6d\x76\x5e\x75\x44\x2f\x57\x96\x36\ +\x74\x1e\x77\x9f\x22\xaa\x54\xde\x1d\xd2\x33\x45\xd5\x68\x29\xa7\ +\x39\x00\xa5\xf6\x36\x73\xda\x8a\xa3\x56\x6d\x49\x88\xc3\x90\xa3\ +\xeb\x68\xf9\x2a\x64\x7b\x37\x28\x03\x28\xe6\x04\xe1\x61\x69\xf0\ +\xa7\xba\x6b\xc5\x50\xd8\x08\xbb\x4d\xb4\x58\x4b\xf6\xd4\xe5\xdc\ +\x2f\x83\xfa\x27\x86\xe0\x8e\x90\xd6\x98\x43\x26\x03\x4c\x62\xb3\ +\xd6\x63\xe3\x30\x45\x23\x72\xee\x1c\xf1\x1c\x9b\x2b\x41\x38\x7a\ +\x7a\xf6\x7a\x94\x20\xe8\x2c\x9f\xbd\x89\x4a\x10\x6c\xd6\xce\x5e\ +\x8b\x12\xa6\x30\x32\xc3\x8e\x25\x62\x70\x0c\xeb\x07\x0b\xb7\x3c\ +\xf6\xbb\xe6\xb9\x27\xf5\x1a\x6d\x39\xa6\xe5\xd8\x1c\x64\x9d\xad\ +\x32\xa6\x14\x55\x53\x31\xa1\x3e\x2c\x50\x45\x03\x10\x10\xa5\x58\ +\x1c\x22\x84\x22\x6c\x09\x96\x41\x11\x45\x05\x14\x29\xb6\x54\x3f\ +\xbb\xc7\x76\xbe\xb1\x99\x81\x22\x42\xdb\xdb\x89\x6c\x44\x5c\xf7\ +\x32\x4d\x19\xe9\x46\xcb\xe6\x31\xd6\x82\x2a\xd5\xba\x83\xe0\x70\ +\xb7\x50\x59\x12\xc1\x51\x43\x0d\x43\x87\x97\xb6\x9a\x55\xac\xc3\ +\x0e\xe6\xc6\x03\x37\x96\x04\x1e\x6d\xb7\x6e\x04\xf8\xad\xbc\x9f\ +\xba\x7e\xf8\x7c\x57\x28\x04\x56\x8d\xe6\x5b\x3b\x09\x4a\x14\xb2\ +\x80\x36\x2d\x73\x0d\x10\x06\x49\x5a\x37\x15\xcb\xd6\xa8\xcd\x8a\ +\x16\x87\xf5\x0f\x7a\x02\xb4\x7b\xc9\xa1\xa0\x0d\x0d\xbb\x1f\xd3\ +\x65\x11\x01\xfa\xcd\x34\x77\x0f\x17\x37\x37\x0b\x56\xe6\x96\x05\ +\xb2\x39\x08\x92\x2a\xd6\x59\x7e\xc5\x2f\xc6\x4e\x6a\xa8\xe4\xf0\ +\x1d\xdb\x6f\x8a\x9d\x90\x45\x65\xf7\xde\x0a\x95\x17\x03\x6c\xe8\ +\x05\x74\xef\x12\x4b\xb7\x9b\x15\x14\xbd\x6a\x69\x75\x88\xbb\x79\ +\x1d\x2a\x32\xe6\xf6\xba\xa3\x16\x8c\x24\xbf\xbf\x70\x43\x84\x3c\ +\x43\x78\x3b\xca\x07\x27\x6a\xb0\xa7\x9b\x09\xb4\x79\xb1\x5a\x0e\ +\xc6\x65\x2d\xab\x28\x50\xc0\xf6\x78\x05\x38\x56\x48\x07\x52\xf4\ +\x1b\x96\xaa\x25\x29\xe1\xda\xfb\x9e\x2c\xd2\x30\xc4\x74\xe5\x1d\ +\xab\x23\x1b\x38\x8f\x92\x99\x50\xdc\xc8\x55\x75\x6b\x43\xac\x28\ +\xc5\x1c\x39\x2a\xbe\x0b\xbe\x4a\x1d\x65\xa3\xa6\xd8\x0f\x8e\xca\ +\x1f\x00\xdb\x51\xec\x41\x2c\x84\xe3\x7b\xb6\x1a\xab\x80\x84\x12\ +\x0b\x9e\x6f\x12\x63\x1e\x64\xac\x8c\xaa\x8e\x63\x15\x75\x4c\x32\ +\xac\xdf\x10\x6a\xd9\x14\x0b\x6a\x3b\x80\x6a\x1c\xdb\x94\xd0\x0b\ +\x4d\xa9\x12\x8b\x34\xe4\x62\xb3\xe4\x6c\x4b\x16\x24\x11\x36\x27\ +\x89\x65\xa2\x44\x24\x4f\x2e\x40\x72\x5e\x65\xe0\x26\x6a\x71\xff\ +\xdb\x03\xdc\x94\x6b\xbf\xcc\xf5\x86\xc9\x92\x39\x26\x0d\x11\xae\ +\x95\x8c\xa8\x13\x72\xb3\xef\x9c\x4a\x04\xd7\xfe\xd9\x1b\xa7\x12\ +\x41\x35\x33\xdb\x44\x25\x1b\x62\xc4\x60\x64\x2c\x48\x9f\x8c\x90\ +\x2b\xb9\x5d\xd7\xa4\x4b\xab\x01\xa2\x3c\x92\xaa\x45\xa6\x81\x53\ +\x10\x2b\x7c\xba\xe4\xab\x44\xa2\xe4\x4d\x8b\xa2\x0d\x37\x9f\x43\ +\x49\xd3\xe3\x29\xdd\xc1\x96\x09\x52\xa5\x5e\xd2\x8b\x6c\x8f\x80\ +\xad\x90\x56\x9d\x24\xbe\xbd\xd1\x5a\x33\xa0\xd5\x39\x2d\x15\x94\ +\x71\x9f\xee\x6e\x92\xa3\x6e\xe8\x18\x33\x86\x77\x4e\x56\xbe\x38\ +\x3e\x9a\x69\xa2\xe1\xfd\x4d\xaa\x6a\x59\xd3\x7e\x21\xec\x1f\x5a\ +\xe8\x5e\x5b\x27\xbe\x0a\x35\x20\x4c\xbb\xa1\xda\xfb\xe6\xf2\x0e\ +\xd5\xfd\x2d\xf1\x66\xdd\x44\xdd\xdb\xbc\x1d\x69\x4b\xaf\x61\x00\ +\x94\xf9\xb4\x31\xa0\xda\xb3\xd7\x72\xa1\x97\x80\x4a\x6a\xd2\x2c\ +\x56\x44\x65\xcf\x8a\x2a\x24\xf7\x54\x2b\xe4\xa4\xdd\x91\x5d\x4b\ +\x63\x5e\xac\x2c\xaa\xde\xe9\x81\x2e\x8d\xb9\x4c\x6f\x4b\xe1\xe3\ +\x52\xf6\xed\x1c\xd6\xe6\x3e\x75\x4b\xaa\x2a\xc2\xa3\x7b\x27\x08\ +\x16\xd7\x9b\x3d\x08\xce\x36\xd2\xb3\xe0\xae\xde\xe0\xe0\x1f\x0d\ +\x44\xad\x59\xba\xe9\x6e\x86\xe2\xca\xad\xa0\xdb\xf1\x32\x4b\xa3\ +\x25\xdd\xa4\x8a\x55\x77\x6b\x75\xd7\x1b\x44\xdb\x14\xea\x8b\x7a\ +\xb8\xe9\x09\x54\xd3\x8b\xaa\x11\x4a\x90\x7a\x74\xa6\x4c\xb9\x65\ +\x0e\xbe\x99\x20\x47\xb0\x19\x93\x8f\x4c\x96\x9c\x95\x7b\x3b\x6f\ +\x59\x9e\xe4\x8b\x54\x78\x58\x06\xcc\x26\xe7\x4a\x4d\x75\xe3\x4c\ +\x39\xd4\x70\x16\x20\xe5\x16\x51\x25\xe1\x3c\x9e\x8f\xeb\x62\x88\ +\x54\x42\xa7\x43\x62\x3e\x5c\x44\xd2\x9a\xd7\x78\xf8\xc7\x5d\x3a\ +\x74\x9c\xcc\xa6\xf2\xa8\xc1\x49\xcc\x22\x21\x45\x04\x80\x86\xd8\ +\x09\x11\x34\x22\x28\x5a\xd0\x84\x42\x49\xac\x1a\x56\x39\x06\xe1\ +\x58\x24\x51\x7b\xd3\x88\x64\x1f\x95\xb7\x77\xae\x45\x3f\x73\xb7\ +\x44\x79\xb6\x15\xca\xb3\xcd\x29\x6f\x4b\x38\xd6\x68\xed\x10\x31\ +\xfe\x38\x83\x73\x10\x07\x03\x05\xc8\xdf\x7a\x10\x3f\xd5\x60\x14\ +\xbd\x39\x40\x2e\xb8\xf9\xd7\x8b\x28\x4f\x19\x7b\x00\x9b\x88\x23\ +\x6a\x91\xb4\xe2\x8f\xcb\xb6\x4c\x96\x94\x22\x9b\x38\x43\x9d\x87\ +\x10\x78\x88\xb1\x32\x9e\xd5\xec\x3a\xb4\x6e\xf0\x4b\xc9\xb2\xe5\ +\x83\xc8\x28\xe0\x5d\xa8\x14\x3f\x25\xc8\x2a\x36\x60\x43\x67\x61\ +\xaf\x7a\x9b\x8c\x1f\x49\x42\x28\x2c\xda\x03\x38\xab\xa7\x58\x64\ +\xb3\x5d\xa6\xaa\xda\xa7\x20\x03\x14\x2d\xc3\xb2\x63\x99\x0e\x7b\ +\x87\x3e\xd1\x03\x1c\x8f\xa1\xa8\xbf\x91\x24\x1e\xc8\xc4\xd2\xd9\ +\x18\x53\x75\x34\xe8\x39\x42\x2d\x52\x43\x49\xd4\x36\x90\x71\xec\ +\xe4\x2a\x0d\xb4\x92\x90\xcd\xeb\x1a\x4f\x02\x0d\xb4\x26\x62\x4a\ +\x8f\xa6\x7e\xe6\x45\xb2\x83\x59\xd9\xc4\x7e\x31\x5c\x86\x0c\xf8\ +\x65\x88\x3a\xa7\xea\x06\x16\x21\x4d\xfc\xb0\x57\x3a\x06\x09\x9b\ +\x29\x7d\x10\xad\x13\xfb\xd5\xbb\x13\xca\xaf\x24\x93\x67\x39\xad\ +\x48\x59\x18\x22\xd8\x68\xe8\x66\x04\x73\x3e\xc1\x44\x93\xf7\x61\ +\x80\x99\x24\xbe\x15\xe9\x3c\x64\x45\xab\x4b\xe9\xdb\xa1\xc8\x68\ +\xdb\x8e\x75\x93\x5c\x30\xac\x86\x0f\x63\xe9\xec\x68\x18\x91\xc7\ +\x87\x76\x63\xbf\x26\x1c\x68\x25\xe7\x02\xd5\x75\x85\x0d\x00\x63\ +\x79\xfd\x1f\x7e\xb4\x58\xe6\ \x00\x00\x00\x10\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\ @@ -2011,36 +1866,36 @@ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ \x00\x00\x00\x0e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x1a\ \x00\x00\x00\x1e\x00\x02\x00\x00\x00\x16\x00\x00\x00\x04\ -\x00\x00\x01\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x15\x75\ +\x00\x00\x01\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x6c\ \x00\x00\x00\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x3c\ \x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x00\x8c\ \x00\x00\x00\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x00\x50\ \x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x00\x14\ \x00\x00\x01\x52\x00\x00\x00\x00\x00\x01\x00\x00\x00\xc8\ \x00\x00\x00\xe4\x00\x00\x00\x00\x00\x01\x00\x00\x00\x78\ -\x00\x00\x02\x62\x00\x00\x00\x00\x00\x01\x00\x00\x16\x01\ -\x00\x00\x01\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x15\xb1\ +\x00\x00\x02\x62\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xf8\ +\x00\x00\x01\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xa8\ \x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\xa0\ \x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x00\x28\ -\x00\x00\x02\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x16\x15\ -\x00\x00\x02\x48\x00\x00\x00\x00\x00\x01\x00\x00\x15\xed\ +\x00\x00\x02\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x0c\ +\x00\x00\x02\x48\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xe4\ \x00\x00\x01\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\xb4\ -\x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x15\x89\ -\x00\x00\x02\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x15\xd9\ -\x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x15\x9d\ +\x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x80\ +\x00\x00\x02\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xd0\ +\x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x94\ \x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x00\x00\x64\ -\x00\x00\x01\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x15\x61\ +\x00\x00\x01\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x58\ \x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x00\x15\xc5\ -\x00\x00\x01\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x00\xdc\ -\x00\x00\x03\x2c\x00\x01\x00\x00\x00\x01\x00\x00\x59\x44\ -\x00\x00\x02\xc6\x00\x01\x00\x00\x00\x01\x00\x00\x2c\xd5\ -\x00\x00\x03\x16\x00\x01\x00\x00\x00\x01\x00\x00\x50\x3f\ -\x00\x00\x02\xfc\x00\x01\x00\x00\x00\x01\x00\x00\x41\xd9\ -\x00\x00\x02\xac\x00\x01\x00\x00\x00\x01\x00\x00\x1f\xed\ -\x00\x00\x02\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x34\x74\ -\x00\x00\x02\x96\x00\x01\x00\x00\x00\x01\x00\x00\x16\x29\ -\x00\x00\x03\x42\x00\x01\x00\x00\x00\x01\x00\x00\x65\xfc\ +\x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xbc\ +\x00\x00\x01\x6c\x00\x01\x00\x00\x00\x01\x00\x00\x00\xdc\ +\x00\x00\x03\x2c\x00\x01\x00\x00\x00\x01\x00\x00\x50\x3b\ +\x00\x00\x02\xc6\x00\x01\x00\x00\x00\x01\x00\x00\x23\xcc\ +\x00\x00\x03\x16\x00\x01\x00\x00\x00\x01\x00\x00\x47\x36\ +\x00\x00\x02\xfc\x00\x01\x00\x00\x00\x01\x00\x00\x38\xd0\ +\x00\x00\x02\xac\x00\x01\x00\x00\x00\x01\x00\x00\x16\xe4\ +\x00\x00\x02\xdc\x00\x01\x00\x00\x00\x01\x00\x00\x2b\x6b\ +\x00\x00\x02\x96\x00\x01\x00\x00\x00\x01\x00\x00\x0d\x20\ +\x00\x00\x03\x42\x00\x01\x00\x00\x00\x01\x00\x00\x5c\xf3\ " def qInitResources(): diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py index 35e49a434..35d165853 100644 --- a/src/Mod/Plot/plotAxes/TaskPanel.py +++ b/src/Mod/Plot/plotAxes/TaskPanel.py @@ -153,6 +153,30 @@ class TaskPanel: None,QtGui.QApplication.UnicodeUTF8)) self.form.findChild(QtGui.QLabel, "yPosLabel").setText(QtGui.QApplication.translate("plot_axes", "Y axis position", None,QtGui.QApplication.UnicodeUTF8)) + self.form.axId.setToolTip(QtGui.QApplication.translate("plot_axes", "Index of the active axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.new.setToolTip(QtGui.QApplication.translate("plot_axes", "Add new axes to the plot", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.remove.setToolTip(QtGui.QApplication.translate("plot_axes", "Remove selected axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.all.setToolTip(QtGui.QApplication.translate("plot_axes", "Check it to apply transformations to all axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xMin.setToolTip(QtGui.QApplication.translate("plot_axes", "Left bound of axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xMax.setToolTip(QtGui.QApplication.translate("plot_axes", "Right bound of axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yMin.setToolTip(QtGui.QApplication.translate("plot_axes", "Bottom bound of axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yMax.setToolTip(QtGui.QApplication.translate("plot_axes", "Top bound of axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xOffset.setToolTip(QtGui.QApplication.translate("plot_axes", "Outward offset of X axis", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yOffset.setToolTip(QtGui.QApplication.translate("plot_axes", "Outward offset of Y axis", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xAuto.setToolTip(QtGui.QApplication.translate("plot_axes", "X axis scale autoselection", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yAuto.setToolTip(QtGui.QApplication.translate("plot_axes", "Y axis scale autoselection", + None,QtGui.QApplication.UnicodeUTF8)) def onAxesId(self, value): """ Executed when axes index is modified. """ diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py index db6150137..f2ea4106d 100644 --- a/src/Mod/Plot/plotLabels/TaskPanel.py +++ b/src/Mod/Plot/plotLabels/TaskPanel.py @@ -116,6 +116,20 @@ class TaskPanel: None,QtGui.QApplication.UnicodeUTF8)) self.form.findChild(QtGui.QLabel, "yLabel").setText(QtGui.QApplication.translate("plot_labels", "Y label", None,QtGui.QApplication.UnicodeUTF8)) + self.form.axId.setToolTip(QtGui.QApplication.translate("plot_labels", "Index of the active axes", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.title.setToolTip(QtGui.QApplication.translate("plot_labels", "Title (associated to active axes)", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.titleSize.setToolTip(QtGui.QApplication.translate("plot_labels", "Title font size", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xLabel.setToolTip(QtGui.QApplication.translate("plot_labels", "X axis title", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.xSize.setToolTip(QtGui.QApplication.translate("plot_labels", "X axis title font size", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.yLabel.setToolTip(QtGui.QApplication.translate("plot_labels", "Y axis title", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.ySize.setToolTip(QtGui.QApplication.translate("plot_labels", "Y axis title font size", + None,QtGui.QApplication.UnicodeUTF8)) def onAxesId(self, value): """ Executed when axes index is modified. """ diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py index c32c6c6cd..cc0824894 100644 --- a/src/Mod/Plot/plotPositions/TaskPanel.py +++ b/src/Mod/Plot/plotPositions/TaskPanel.py @@ -103,6 +103,14 @@ class TaskPanel: None,QtGui.QApplication.UnicodeUTF8)) self.form.findChild(QtGui.QLabel, "sizeLabel").setText(QtGui.QApplication.translate("plot_positions", "Size", None,QtGui.QApplication.UnicodeUTF8)) + self.form.items.setToolTip(QtGui.QApplication.translate("plot_positions", "List of modificable items", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.x.setToolTip(QtGui.QApplication.translate("plot_positions", "X item position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.y.setToolTip(QtGui.QApplication.translate("plot_positions", "Y item position", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.s.setToolTip(QtGui.QApplication.translate("plot_positions", "Item size", + None,QtGui.QApplication.UnicodeUTF8)) def onItem(self, row): """ Executed when selected item is modified. """ diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py index 2f3c65c46..1ee042de1 100644 --- a/src/Mod/Plot/plotSave/TaskPanel.py +++ b/src/Mod/Plot/plotSave/TaskPanel.py @@ -109,6 +109,16 @@ class TaskPanel: None,QtGui.QApplication.UnicodeUTF8)) self.form.findChild(QtGui.QLabel, "dpiLabel").setText(QtGui.QApplication.translate("plot_save", "Dots per Inch", None,QtGui.QApplication.UnicodeUTF8)) + self.form.path.setToolTip(QtGui.QApplication.translate("plot_save", "Output image file path", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.pathButton.setToolTip(QtGui.QApplication.translate("plot_save", "Show a file selection dialog", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.sizeX.setToolTip(QtGui.QApplication.translate("plot_save", "X image size", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.sizeY.setToolTip(QtGui.QApplication.translate("plot_save", "Y image size", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.dpi.setToolTip(QtGui.QApplication.translate("plot_save", "Dots per point, with size will define output image resolution", + None,QtGui.QApplication.UnicodeUTF8)) def updateUI(self): """ Setup UI controls values if possible """ diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py index c214efcdd..103e8a8c5 100644 --- a/src/Mod/Plot/plotSeries/TaskPanel.py +++ b/src/Mod/Plot/plotSeries/TaskPanel.py @@ -120,6 +120,24 @@ class TaskPanel: None,QtGui.QApplication.UnicodeUTF8)) self.form.findChild(QtGui.QLabel, "markerLabel").setText(QtGui.QApplication.translate("plot_series", "Marker", None,QtGui.QApplication.UnicodeUTF8)) + self.form.items.setToolTip(QtGui.QApplication.translate("plot_series", "List of available series", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.label.setToolTip(QtGui.QApplication.translate("plot_series", "Line title", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.isLabel.setToolTip(QtGui.QApplication.translate("plot_series", "If checked serie will not considered for legend", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.style.setToolTip(QtGui.QApplication.translate("plot_series", "Line style", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.marker.setToolTip(QtGui.QApplication.translate("plot_series", "Marker style", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.width.setToolTip(QtGui.QApplication.translate("plot_series", "Line width", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.size.setToolTip(QtGui.QApplication.translate("plot_series", "Marker size", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.color.setToolTip(QtGui.QApplication.translate("plot_series", "Line and marker color", + None,QtGui.QApplication.UnicodeUTF8)) + self.form.remove.setToolTip(QtGui.QApplication.translate("plot_series", "Removes this serie", + None,QtGui.QApplication.UnicodeUTF8)) def fillStyles(self): """ Fill style combo boxes. """ diff --git a/src/Mod/Plot/resources/translations/Plot.ts b/src/Mod/Plot/resources/translations/Plot.ts index 75e439635..e6e8790b1 100644 --- a/src/Mod/Plot/resources/translations/Plot.ts +++ b/src/Mod/Plot/resources/translations/Plot.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -262,7 +402,7 @@ - + Line style @@ -276,5 +416,45 @@ Configure series + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_af.ts b/src/Mod/Plot/resources/translations/Plot_af.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_af.ts +++ b/src/Mod/Plot/resources/translations/Plot_af.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_cs.ts b/src/Mod/Plot/resources/translations/Plot_cs.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_cs.ts +++ b/src/Mod/Plot/resources/translations/Plot_cs.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_de.ts b/src/Mod/Plot/resources/translations/Plot_de.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_de.ts +++ b/src/Mod/Plot/resources/translations/Plot_de.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm index 6b48ff893e63b7c243c640e6772c43a702e313d7..551b463541ba91a255d01bbb6984d268002461d5 100644 GIT binary patch literal 9864 zcmcgxdyHIV6+heV%mE6L?{8k%PPF7M%J~(-zudh!qP3H>cYG(& z%H#B@!HbAi`}Fj!ysr5fy?}M(9yG+hzRy$Ul~D z+rjIaH`B_}sTFe*Qq=^B=`}wr|Cd zLzI8GuaRdtm)H7EJ#&Kb{Bz%&z2?Z^t|xxWbbmEiJ;U$k_o(&!i9vZjdduJwTBAYxmI1f0(c0HA82f>Jq58bWS{?nyxzhrqwt|&F{gI>l;%@e#X z8!z2fp62&nE`9%}KCkavcHP-8F}*`-9saS+#GYHqPfBzRd31)VWK)^UKE6eH{_EZ6 zxIrQO(Suj7rd?$5%O06j=hrQ2P{6-^GN{5=2LDxL8=KDZv+!;$PJnz(VkJlzR>cl% zw_yaX>-b56V_4*)RMn!v!c6&Q{=V<}S@6fI84wTL>C+AXcefL>$9^}cOUVVGhue0@_} zOpo6KWTBBl!$E?VG4K-Dfx}kSsEB3F$J&-fY8d8MdqhBAXFKDg2D4>q}tq<)&{RSAn4D=2G8^BdXj z8u0NZsE%{wZ3!*d9w^4$F*1$*Y4b))yH`>8$E~aFnsC1_u}_F}VlUpi%-GfiU(hPk zENkG#7~ZyMKnznOyGBzsOy98UX3a9Hwqqd%b@H*bOSDG#fuA9`L|&%?;ciq~%3ZAf!xR6KLe zZqy7vxTzf|Bzys)4z5R;>o5+Ptb?GfgGl8q=-n&9wu zHwfIiG2^y4guB&lG(C<0$}d9S#|p8`l&GP-C<|$@xK$R~6YmL=riv7c1?BxaX07s3 z!{%hexF~=;v*A}=uWq6=@)rPXbB5zZ0ag_;-87O_IwiF|LOWRnD2yPistQ;@4e`KE zyKXgn@F}%P^6Txio2^1siYg(faw<|J0+zCxxTR(}$LQ`x#X1Hp!Z^)&J!NNy5gnIQ zgrx6@okmsA!e+E`%Bltn8qqFB3aW>1m|SAUt7IfL<$o3(6T?O*j8K4QD)|k%L1R0* zw-wBp9xS)&b9Q0TZ(tL)vyeVl)DO-_{a`ohD6kO`;I^n5Aq`~eiY-4|sM;LfZ`EB6 zhPuS;5*4?lbPap+_zy`gEGXvXMN7PDzg?SMSkWcPJ}_j72Kw{-blG&;{YTmjk}=Ka zFx?b3(?-x0FimB}0k^rJEsk@HZb?k8b6bN%19qVmWQ@qd@@!A7z|HX73u&MDWxQAe zve}lpOxdNbe=;__GJzW0p*w@!$gFLX@d31Ou8f1DPX@*LL5K`J&u0DBL5TKQrrhJ5 z0U;u@woPVnAWVs8COt8Vw42x(8sa5QsT`o;uvAk%9Qky-6C6WpZEP~iX2WQ37e8Ye z748JN5riI!V*O=K39e&F*jr!+JvBK4t0>W8;0vuEDuGCkIu#Jg6!>d zy{Hjs0Ln!XtIQ8U3jGSkOKM!A%p;K0>hfKrni;y3zf+L{olS*zKq(Pc_6f6Sr+n3e zKv+=nS?tIZ%5ysbM6CCuN5B_v0wS&D%d-LS-2?_P?{{3Y(hY<+-}ekk08xV=i68G; z9oa#715FEpVKjhNe z4CweCY`U|MhH0c-UNvc#Xu=ah*w|qDzFW2>Mxqgk%IixqnYx^r>Kxlt#f{;(aO$vL zh~cEkE>mQyZX+--oyjC(q$CeF>@1aw?aDv~cA0zad20;E#OS0t5~pgMD_IIRs6k_< z7z;rX)d|IRo$ziz5>XwAQ+=C|M7tIa&I8H%49%iUbvZ|1-om2^ZFc>;1FNnLt|W0r z5A7t>Y~^;sX8*!eGR!5ho%o5GrX|lM)VV?w1jeRpt~|J5<8)zH?J{x%r$VbPy;~OD z<>`W3^V}DXD`5~>pKhNgMxE0!W(Hh{W;zaNmV2k$E}g~hp0uPfAB!U$wkxVY#6(%O zbDzqUCegcgcXRWpG_u(5)0*1T}Y!pj3##A6x#~aqJB(^+H~zka48p8!K^r`Dzhq9)oxgZ+X|Yk zpgoB8EN(7Zn2%*Z17C_^8XH&T0cN~M*KqEl{rpYj^@t!SqvoBJ%R6X6Vv~F=)(DSp zB8D+J=R?9EOO@*qGkm}sJM+~04az)TopfdhJ)1ZkLhw@aVT`s>CaA7SmDq5mGosV@ ztTdz5}S@&%iwTRJXSD&?P&!6Qe1V|sHVi}U7bIK zr9#RVvUfhXn4Q^q&MVh53FhPMeQVMvH8&*9P*ZVzVAw%{2&31LSGh2Y|8c2-ZpvvI&$H@%}A?8>g= zdaxZ;H^)#KmjMzYOT5j~1of5!vZWlzWbShzTVZtgoU}cSb85F#4He^RJx|)uu12%Q zFyeLNY|gHzAkZPqI-5UtOH?>V;H3sP@uDSO*LjXDE6;8!Cny;tVd6#bI$Uj6Snkk-qEQbafe1 x@H!cwMPsmp^J_CH>R~k>T4wTq`Db!Op6%M5{aRELtW;F^L}=Fbl_ooA{U3g`Smpo# delta 488 zcmeD1ZPcu{*^we~>iwLlXBB1kCoJ51*NK6Fv4VlMIE4WOSQoM~FbMQ9_{+I4F!0P| zh~`#hVBnWvv|2C1z`$+KSXBFlfk7ynDd)K>Q1KzA9nw!27`PaizV?{{#h0_P%sb4$ zASl2pb9oBT+;mpCJ;FeBED%~ih}EKg;vt|yQ`VVHK!qGDSeNyz2hz7#*HsrYFfgrS z-3H=w=CVyo_zE=0g>AuVJ)i@wv;BFX%)r1B#I7U}3{;l@q4|!n>u=rxbnrp;+9N;* zGp}W@pO6aF_m)GDH-~|NZ5u}(n+ec?Z5%r;E&+PrA7}m5_mdeI*w=CuRRDd$@5!C^ z@H0@M7lan<2 z$@}mmkmjx9vnp8(497VTnuCY0V6h+2Lo$2?OF;B`QNE63pbr?H@y*&$45YO)fx+>9 z^CqT^?2}(|#ZRu}nKStnztQAgfyqEDH+h3#>E`J|$5Y auto Automática en Y + + + Index of the active axes + Identificador de los ejes activos + + + + Add new axes to the plot + Agrega un nuevo juego de ejes al gráfico + + + + Remove selected axes + Elimina el juego de ejes seleccionado + + + + Check it to apply transformations to all axes + Marcar para aplicar las transformaciones a todos los ejes + + + + Left bound of axes + Límite izquierdo del juego de ejes + + + + Right bound of axes + Límite derecho del juego de ejes + + + + Bottom bound of axes + Límite inferior del juego de ejes + + + + Top bound of axes + Límite superior del juego de ejes + + + + Outward offset of X axis + Desplazamiento al exterior del eje X + + + + Outward offset of Y axis + Desplazamiento al exterior del eje Y + + + + X axis scale autoselection + Escala automática en el eje X + + + + Y axis scale autoselection + Escala automática en el eje Y + plot_console @@ -170,7 +230,7 @@ Debe seleccionar una grafica primero - + Axes 0 can not be deleted El juego ejes 0 no puede ser eliminado @@ -212,6 +272,41 @@ Y label Título del eje Y + + + Index of the active axes + Identificador de los ejes activos + + + + Title (associated to active axes) + Título (asociado a los ejes seleccionados) + + + + Title font size + Tamaño de fuente del título + + + + X axis title + Título del eje X + + + + X axis title font size + Tamaño de fuente del título del eje X + + + + Y axis title + Título del eje Y + + + + Y axis title font size + Tamaño de fuente del título del eje Y + plot_positions @@ -230,6 +325,26 @@ Size Tamaño + + + List of modificable items + Lista de objetos configurables + + + + X item position + Posición del objeto en la dirección X + + + + Y item position + Posición del objeto en la dirección Y + + + + Item size + Tamaño del objeto + plot_save @@ -248,6 +363,31 @@ Dots per Inch Puntos por pulgada + + + Output image file path + Ruta del archivo de imagen a guardar + + + + Show a file selection dialog + Muestra un cuadro de diálogo de selección de archivo + + + + X image size + Tamaño en X de la imagen + + + + Y image size + Tamaño en Y de la imagen + + + + Dots per point, with size will define output image resolution + Puntos por pulgada de la imagen, multiplicando este valor por el tamaño se obtiene la resolución + plot_series @@ -267,7 +407,7 @@ Eliminar serie - + Line style Estilo de línea @@ -276,5 +416,45 @@ Marker Marcador + + + List of available series + Lista de series de datos disponibles + + + + Line title + Título de la serie + + + + If checked serie will not considered for legend + Si se marca, la serie será ignorada en la legenda + + + + Marker style + Estilo del marcador + + + + Line width + Ancho de la línea + + + + Marker size + Tamaño del marcador + + + + Line and marker color + Color de la línea y del marcador + + + + Removes this serie + Elimina la serie seleccionada + diff --git a/src/Mod/Plot/resources/translations/Plot_fi.ts b/src/Mod/Plot/resources/translations/Plot_fi.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_fi.ts +++ b/src/Mod/Plot/resources/translations/Plot_fi.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_fr.ts b/src/Mod/Plot/resources/translations/Plot_fr.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_fr.ts +++ b/src/Mod/Plot/resources/translations/Plot_fr.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_hr.ts b/src/Mod/Plot/resources/translations/Plot_hr.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_hr.ts +++ b/src/Mod/Plot/resources/translations/Plot_hr.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_hu.ts b/src/Mod/Plot/resources/translations/Plot_hu.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_hu.ts +++ b/src/Mod/Plot/resources/translations/Plot_hu.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_it.ts b/src/Mod/Plot/resources/translations/Plot_it.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_it.ts +++ b/src/Mod/Plot/resources/translations/Plot_it.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_ja.ts b/src/Mod/Plot/resources/translations/Plot_ja.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_ja.ts +++ b/src/Mod/Plot/resources/translations/Plot_ja.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_nl.ts b/src/Mod/Plot/resources/translations/Plot_nl.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_nl.ts +++ b/src/Mod/Plot/resources/translations/Plot_nl.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_no.ts b/src/Mod/Plot/resources/translations/Plot_no.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_no.ts +++ b/src/Mod/Plot/resources/translations/Plot_no.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_pl.ts b/src/Mod/Plot/resources/translations/Plot_pl.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_pl.ts +++ b/src/Mod/Plot/resources/translations/Plot_pl.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts +++ b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_ro.ts b/src/Mod/Plot/resources/translations/Plot_ro.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_ro.ts +++ b/src/Mod/Plot/resources/translations/Plot_ro.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_ru.ts b/src/Mod/Plot/resources/translations/Plot_ru.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_ru.ts +++ b/src/Mod/Plot/resources/translations/Plot_ru.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_sk.ts b/src/Mod/Plot/resources/translations/Plot_sk.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_sk.ts +++ b/src/Mod/Plot/resources/translations/Plot_sk.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts +++ b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_tr.ts b/src/Mod/Plot/resources/translations/Plot_tr.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_tr.ts +++ b/src/Mod/Plot/resources/translations/Plot_tr.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_uk.ts b/src/Mod/Plot/resources/translations/Plot_uk.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_uk.ts +++ b/src/Mod/Plot/resources/translations/Plot_uk.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts +++ b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + + diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts index 340b1c089..c2a12e744 100644 --- a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts +++ b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts @@ -151,6 +151,66 @@ Y auto + + + Index of the active axes + + + + + Add new axes to the plot + + + + + Remove selected axes + + + + + Check it to apply transformations to all axes + + + + + Left bound of axes + + + + + Right bound of axes + + + + + Bottom bound of axes + + + + + Top bound of axes + + + + + Outward offset of X axis + + + + + Outward offset of Y axis + + + + + X axis scale autoselection + + + + + Y axis scale autoselection + + plot_console @@ -170,7 +230,7 @@ - + Axes 0 can not be deleted @@ -212,6 +272,41 @@ Y label + + + Index of the active axes + + + + + Title (associated to active axes) + + + + + Title font size + + + + + X axis title + + + + + X axis title font size + + + + + Y axis title + + + + + Y axis title font size + + plot_positions @@ -230,6 +325,26 @@ Size + + + List of modificable items + + + + + X item position + + + + + Y item position + + + + + Item size + + plot_save @@ -248,6 +363,31 @@ Dots per Inch + + + Output image file path + + + + + Show a file selection dialog + + + + + X image size + + + + + Y image size + + + + + Dots per point, with size will define output image resolution + + plot_series @@ -267,7 +407,7 @@ - + Line style @@ -276,5 +416,45 @@ Marker + + + List of available series + + + + + Line title + + + + + If checked serie will not considered for legend + + + + + Marker style + + + + + Line width + + + + + Marker size + + + + + Line and marker color + + + + + Removes this serie + +