From 5a329713b047a29966ca2cd9c2260fbac3c3e2aa Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 6 Nov 2008 01:12:27 +0000 Subject: [PATCH 001/162] Initial import --- .cvsignore | 1 + import.log | 1 + skychart-3.0.1.5-config.patch | 96 ++++++++++++++++++++++ skychart-3.0.1.5-paths.patch | 22 +++++ skychart-3.0.1.5-wl.patch | 15 ++++ skychart.desktop | 10 +++ skychart.spec | 150 ++++++++++++++++++++++++++++++++++ sources | 1 + 8 files changed, 296 insertions(+) create mode 100644 import.log create mode 100644 skychart-3.0.1.5-config.patch create mode 100644 skychart-3.0.1.5-paths.patch create mode 100644 skychart-3.0.1.5-wl.patch create mode 100644 skychart.desktop create mode 100644 skychart.spec diff --git a/.cvsignore b/.cvsignore index e69de29..f666664 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +skychart-3.0.1.5.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..08c1970 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +skychart-3_0_1_5-1_20081026svn_el5:HEAD:skychart-3.0.1.5-1.20081026svn.el5.src.rpm:1225937345 diff --git a/skychart-3.0.1.5-config.patch b/skychart-3.0.1.5-config.patch new file mode 100644 index 0000000..65d73a0 --- /dev/null +++ b/skychart-3.0.1.5-config.patch @@ -0,0 +1,96 @@ +Replace various paths to those that suit Fedora well. +Not really interesting upstream. + +Lubomir Rintel (Fedora Astronomy) + +--- skychart-3.0.1.5/skychart/u_constant.pas.config 2008-10-18 16:20:58.000000000 +0200 ++++ skychart-3.0.1.5/skychart/u_constant.pas 2008-10-29 20:16:30.000000000 +0100 +@@ -272,9 +272,9 @@ + DefaultFontSize=10; + DefaultPrivateDir='~/cartes_du_ciel'; + Defaultconfigfile='~/.cartesduciel.ini'; +- SharedDir='../share/apps/skychart'; +- DefaultPrintCmd1='kghostview'; +- DefaultPrintCmd2='gimp'; ++ SharedDir='../share/skychart'; ++ DefaultPrintCmd1='xdg-open'; ++ DefaultPrintCmd2='xdg-open'; + DefaultTmpDir='tmp'; + Default_dssdrive='/mnt/cdrom'; + DefaultVarObs='varobs'; +@@ -620,11 +620,11 @@ + {$ifdef darwin} + OpenFileCMD:string = 'open'; // + {$else} +- OpenFileCMD:string = 'kfmclient exec'; // default KDE ++ OpenFileCMD:string = 'xdg-open'; + {$endif} + {$ifdef unix} + tracefile:string =''; // to stdout +- dcd_cmd: string = 'cd /usr/local/dcd ; python ./dcd.py'; ++ dcd_cmd: string = 'dcd'; + use_xplanet: boolean = true; + xplanet_dir: string = ''; + {$endif} +--- skychart-3.0.1.5/skychart/pu_config_system.pas.config 2008-09-21 15:33:39.000000000 +0200 ++++ skychart-3.0.1.5/skychart/pu_config_system.pas 2008-10-29 20:15:32.000000000 +0100 +@@ -604,20 +604,8 @@ + procedure Tf_config_system.LinuxDesktopBoxChange(Sender: TObject); + begin + if LockChange then exit; +-case LinuxDesktopBox.itemIndex of +- 0: begin // KDE +- LinuxCmd.Text:='kfmclient exec'; +- LinuxCmd.Enabled:=false; +- end; +- 1: begin // GNOME +- LinuxCmd.Text:='gnome-open'; +- LinuxCmd.Enabled:=false; +- end; +- 2: begin // Other +- LinuxCmd.Text:='/usr/bin/mozilla'; +- LinuxCmd.Enabled:=true; +- end; +-end; ++LinuxCmd.Text:='xdg-open'; ++LinuxCmd.Enabled:=true; + LinuxDesktop:=LinuxDesktopBox.itemIndex; + end; + +--- skychart-3.0.1.5/tools/install_data.sh.config 2008-10-29 20:43:45.000000000 +0100 ++++ skychart-3.0.1.5/tools/install_data.sh 2008-10-29 20:44:27.000000000 +0100 +@@ -10,27 +10,27 @@ + + install -v -m 755 -d $destdir + install -v -m 755 -d $destdir/share +-install -v -m 755 -d $destdir/share/apps +-install -v -m 755 -d $destdir/share/apps/skychart ++install -v -m 755 -d $destdir/share ++install -v -m 755 -d $destdir/share/skychart + + for f in $(sort dir.lst) + do +- install -v -m 755 -d $destdir/share/apps/skychart/$f ++ install -v -m 755 -d $destdir/share/skychart/$f + done + + for f in $(cat data.lst) + do +- install -v -m 644 $f $destdir/share/apps/skychart/$f ++ install -v -m 644 $f $destdir/share/skychart/$f + done + + for f in $(cat doc.lst) + do +- install -v -m 644 $f $destdir/share/apps/skychart/$f ++ install -v -m 644 $f $destdir/share/skychart/$f + done + + for f in $(cat cat.lst) + do +- install -v -m 644 $f $destdir/share/apps/skychart/$f ++ install -v -m 644 $f $destdir/share/skychart/$f + done + +-unzip -d $destdir/share/apps/skychart/doc/ doc/wiki_doc.zip ++unzip -d $destdir/share/skychart/doc/ doc/wiki_doc.zip diff --git a/skychart-3.0.1.5-paths.patch b/skychart-3.0.1.5-paths.patch new file mode 100644 index 0000000..b970048 --- /dev/null +++ b/skychart-3.0.1.5-paths.patch @@ -0,0 +1,22 @@ +Among other nonsenses, this includes the unit path of the right unzip +unit (fpc ships two different). + +Lubomir Rintel (Fedora Astronomy) + +--- skychart-3.0.1.5/skychart/cdc.lpi.paths 2008-10-29 20:02:39.000000000 +0100 ++++ skychart-3.0.1.5/skychart/cdc.lpi 2008-10-29 20:05:00.000000000 +0100 +@@ -459,11 +459,11 @@ + + + +- ++ + + +- +- ++ ++ + + + diff --git a/skychart-3.0.1.5-wl.patch b/skychart-3.0.1.5-wl.patch new file mode 100644 index 0000000..9a2cb46 --- /dev/null +++ b/skychart-3.0.1.5-wl.patch @@ -0,0 +1,15 @@ +Case matters here. + +Lubomir Rintel (Fedora Astronomy) + +--- skychart-3.0.1.5/skychart/library/plan404/Makefile.wl 2008-10-10 15:15:59.000000000 +0200 ++++ skychart-3.0.1.5/skychart/library/plan404/Makefile 2008-10-29 20:14:32.000000000 +0100 +@@ -7,7 +7,7 @@ + LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm + else + SO_Name = libplan404.so +-LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm ++LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm + endif + + .PHONY: clean diff --git a/skychart.desktop b/skychart.desktop new file mode 100644 index 0000000..bf3c66d --- /dev/null +++ b/skychart.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Name=SkyChart (Cartes du Ciel) +Comment=Planetarium software for the advanced amateur astronomer +GenericName=SkyChart +Exec=skychart %f +Icon=skychart +Categories=Graphics;Education; +Terminal=false diff --git a/skychart.spec b/skychart.spec new file mode 100644 index 0000000..f6531fa --- /dev/null +++ b/skychart.spec @@ -0,0 +1,150 @@ +Name: skychart +Version: 3.0.1.5 +Release: 1.20081026svn%{?dist} +Summary: Planetarium software for the advanced amateur astronomer + +# svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 +# tar czf skychart-3.0.1.5.tar.gz skychart-3.0.1.5 + +Group: Amusements/Graphics +License: GPLv2+ +URL: https://sourceforge.net/projects/skychart/ +Source0: %{name}-%{version}.tar.gz +Source1: skychart.desktop +Patch0: skychart-3.0.1.5-config.patch +Patch1: skychart-3.0.1.5-wl.patch +Patch2: skychart-3.0.1.5-paths.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: lazarus >= 0.9.26 +BuildRequires: ImageMagick +BuildRequires: desktop-file-utils +BuildRequires: dos2unix +Requires: xdg-utils +Requires: tzdata + +%description +This program enables you to draw sky charts, making use of the data in 16 +catalogs of stars and nebulae. In addition the position of planets, +asteroids and comets are shown. + +The purpose of this program is to prepare different sky maps for a +particular observation. A large number of parameters help you to choose +specifically or automatically which catalogs to use, the colour and the +dimension of stars and nebulae, the representation of planets, the display +of labels and coordinate grids, the superposition of pictures, the +condition of visibility and more. All these features make this celestial +atlas more complete than a conventional planetarium. + + +%prep +%setup -q +%{__unzip} -q tools/doc/wiki_doc.zip -d tools/doc + +%patch0 -p1 -b .config +%patch1 -p1 -b .wl +%patch2 -p1 -b .paths +find . -type f -print0 |xargs -0 chmod 644 + + +%build +lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk +lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi + +# TODO: more libraries. Only 404 seems essential though. +make %{_smp_mflags} CFLAGS="%{optflags} -fPIC" -C skychart/library/plan404 + +# Create the Icon Theme Specification compilant icon file +convert skychart/bitmaps/mainicon/mainicon.ico skychart.png + +# Fix exotic EOL encodings +dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/common.css +dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/custom.css +dos2unix -qk tools/doc/releasenotes_ru.txt +dos2unix -qk tools/doc/releasenotes_ua.txt + +# A couple of files in Ukrainian documentation have their names and +# links incorrectly escaped, which makes those not UTF-8 compilant as +# well as links broken +charset_fix () { sed -r ' + # Special characters in file names are + # prefixed by %% vs. %%25 in HTML + s/\xd1%%(25)?81/с/g + s/\xd1%%(25)?82/т/g + s/\xd1%%(25)?8[fF]/я/g +'; } + +for ORIGNAME in $(find tools/doc/wiki_doc/uk -name '*.html') +do + NEWNAME=$(echo $ORIGNAME |charset_fix) + charset_fix <$ORIGNAME >$ORIGNAME.utf8 + touch -r $ORIGNAME $ORIGNAME.utf8 + rm -f $ORIGNAME + mv $ORIGNAME.utf8 $NEWNAME +done + + +%install +rm -rf $RPM_BUILD_ROOT + +# Directory structure +install -d $RPM_BUILD_ROOT%{_bindir} +install -d $RPM_BUILD_ROOT%{_libdir} +install -d $RPM_BUILD_ROOT%{_datadir}/pixmaps +install -d $RPM_BUILD_ROOT%{_datadir}/applications +install -d $RPM_BUILD_ROOT%{_datadir}/skychart + +# Binary +install -pm 0755 skychart/units/skychart \ + $RPM_BUILD_ROOT%{_bindir} + +# Libraries +install -pm 0755 skychart/library/plan404/libplan404.so \ + $RPM_BUILD_ROOT%{_libdir} + +# Icon +install -pm 0644 skychart.png $RPM_BUILD_ROOT%{_datadir}/pixmaps + +# Menu entry +desktop-file-install --vendor=fedora %{SOURCE1} \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications + +# Data (Yes, tools/install_data.sh exists, but is outdated) +( + cd tools + find data/{common_names,earthmap,horizon,language,planet,sample,Themes} -type f + find data/constellation -maxdepth 1 -type f + find data/eclipses -type f -name '*.png' -o -name '*.txt' + find cat -type f -not -regex '.*/src.*' -not -name '*.prj' + find doc -type f -not -name '*.zip' +) |xargs tar cf - -C tools |tar xf - -C $RPM_BUILD_ROOT%{_datadir}/skychart + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%{_bindir}/* +%{_libdir}/*.so +%{_datadir}/applications/* +%{_datadir}/pixmaps/* +%{_datadir}/skychart/data +%{_datadir}/skychart/cat +%doc %{_datadir}/skychart/doc +%doc skychart/gpl.txt + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%changelog +* Wed Oct 29 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-1.20081026svn +- Rebase to later upstream, since we have more recent fpc and lazarus now + +* Sun Oct 26 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.3-1.20071015svn +- Initial packaging attempt diff --git a/sources b/sources index e69de29..a81e17d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d3158df6ad5f07f9f35ba8e43912767c skychart-3.0.1.5.tar.gz From 662b6b465a97fa29ab50fdf8e955b06f08be036a Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 6 Nov 2008 01:31:57 +0000 Subject: [PATCH 002/162] - Temporarily disable ppc64 build due to a compiler bug --- skychart.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index f6531fa..c496149 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 1.20081026svn%{?dist} +Release: 2.20081026svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -16,6 +16,9 @@ Patch1: skychart-3.0.1.5-wl.patch Patch2: skychart-3.0.1.5-paths.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 +ExcludeArch: ppc64 + BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils @@ -143,6 +146,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Nov 06 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-2.20081026svn +- Temporarily disable ppc64 build due to a compiler bug + * Wed Oct 29 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-1.20081026svn - Rebase to later upstream, since we have more recent fpc and lazarus now From 8e5dc374e595e01a980f2db630268fb4c668defb Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 6 Nov 2008 21:54:35 +0000 Subject: [PATCH 003/162] Add -Aas to debug ppc64 fail #470158 --- skychart.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index c496149..b099ed5 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 2.20081026svn%{?dist} +Release: 2.20081026svn%{?dist}.ppc64.1 Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -16,9 +16,6 @@ Patch1: skychart-3.0.1.5-wl.patch Patch2: skychart-3.0.1.5-paths.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 -ExcludeArch: ppc64 - BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils @@ -50,7 +47,14 @@ atlas more complete than a conventional planetarium. find . -type f -print0 |xargs -0 chmod 644 + %build + +# Emit some more debugging details to diagnose ppc64 fail +awk '/CompilerPath/ {print ""} {print}' \ + skychart/component/cdccomponents.lpk >skychart/component/.cdccomponents.lpk +mv skychart/component/.cdccomponents.lpk skychart/component/cdccomponents.lpk + lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi From 2ef02d7b18c4d461a4ef14dab13670e55b2856cd Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 6 Nov 2008 22:20:10 +0000 Subject: [PATCH 004/162] Attempt to pass -Aas, try 2 --- skychart-3.0.1.5-ppc64dbg.patch | 285 ++++++++++++++++++++++++++++++++ skychart.spec | 10 +- 2 files changed, 288 insertions(+), 7 deletions(-) create mode 100644 skychart-3.0.1.5-ppc64dbg.patch diff --git a/skychart-3.0.1.5-ppc64dbg.patch b/skychart-3.0.1.5-ppc64dbg.patch new file mode 100644 index 0000000..d091570 --- /dev/null +++ b/skychart-3.0.1.5-ppc64dbg.patch @@ -0,0 +1,285 @@ +diff -up skychart-3.0.1.5/skychart/cdc.lpi.ppc64dbg skychart-3.0.1.5/skychart/cdc.lpi +--- skychart-3.0.1.5/skychart/cdc.lpi.ppc64dbg 2008-11-06 23:06:48.000000000 +0100 ++++ skychart-3.0.1.5/skychart/cdc.lpi 2008-11-06 23:09:08.000000000 +0100 +@@ -487,6 +487,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/cdc.lpr.ppc64dbg skychart-3.0.1.5/skychart/cdc.lpr +diff -up skychart-3.0.1.5/skychart/component/cdccomponents.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/cdccomponents.lpk +--- skychart-3.0.1.5/skychart/component/cdccomponents.lpk.ppc64dbg 2008-06-24 08:01:56.000000000 +0200 ++++ skychart-3.0.1.5/skychart/component/cdccomponents.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk +--- skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk +--- skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk +--- skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -16,6 +16,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi +--- skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi.ppc64dbg 2006-05-21 21:14:11.000000000 +0200 ++++ skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi 2008-11-06 23:09:08.000000000 +0100 +@@ -198,6 +198,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpr.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpr +diff -up skychart-3.0.1.5/skychart/component/libsql/libsql.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/libsql.lpk +--- skychart-3.0.1.5/skychart/component/libsql/libsql.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/libsql/libsql.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -12,6 +12,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk +--- skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk +--- skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk.ppc64dbg 2007-10-28 11:33:29.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk 2008-11-06 23:11:44.000000000 +0100 +@@ -14,6 +14,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/radec/radec.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/radec/radec.lpk +--- skychart-3.0.1.5/skychart/component/radec/radec.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/radec/radec.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk +--- skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk +--- skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk.ppc64dbg 2008-10-12 16:57:30.000000000 +0200 ++++ skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi.ppc64dbg skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi +--- skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi.ppc64dbg 2007-02-25 18:10:07.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi 2008-11-06 23:09:08.000000000 +0100 +@@ -169,6 +169,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/vo/demo/demo.lpr.ppc64dbg skychart-3.0.1.5/skychart/component/vo/demo/demo.lpr +diff -up skychart-3.0.1.5/skychart/component/vo/lazvo.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/vo/lazvo.lpk +--- skychart-3.0.1.5/skychart/component/vo/lazvo.lpk.ppc64dbg 2007-02-25 13:43:02.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/vo/lazvo.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk +--- skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk.ppc64dbg 2006-02-06 12:14:45.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -14,6 +14,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk +--- skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk +--- skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 ++++ skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/catalog/catalog.lpi.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/catalog.lpi +--- skychart-3.0.1.5/skychart/library/catalog/catalog.lpi.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/catalog/catalog.lpi 2008-11-06 23:09:09.000000000 +0100 +@@ -252,6 +252,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/catalog/catalog.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/catalog.lpr +diff -up skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk +--- skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk 2008-11-06 23:09:09.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/elp82/elp82.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/elp82/elp82.lpk +--- skychart-3.0.1.5/skychart/library/elp82/elp82.lpk.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/elp82/elp82.lpk 2008-11-06 23:09:09.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/elp82/elp82.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/elp82/elp82.lpr +diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpi.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpi +--- skychart-3.0.1.5/skychart/library/satxy/satxy.lpi.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/satxy/satxy.lpi 2008-11-06 23:09:08.000000000 +0100 +@@ -98,6 +98,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpk +--- skychart-3.0.1.5/skychart/library/satxy/satxy.lpk.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/satxy/satxy.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -13,6 +13,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpr +diff -up skychart-3.0.1.5/skychart/library/series96/series96.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/series96/series96.lpk +--- skychart-3.0.1.5/skychart/library/series96/series96.lpk.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 ++++ skychart-3.0.1.5/skychart/library/series96/series96.lpk 2008-11-06 23:09:08.000000000 +0100 +@@ -11,6 +11,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/varobs/varobs.lpi.ppc64dbg skychart-3.0.1.5/varobs/varobs.lpi +--- skychart-3.0.1.5/varobs/varobs.lpi.ppc64dbg 2008-10-16 13:44:14.000000000 +0200 ++++ skychart-3.0.1.5/varobs/varobs.lpi 2008-11-06 23:11:15.000000000 +0100 +@@ -131,8 +131,7 @@ + + + +- ++ + + + +diff -up skychart-3.0.1.5/varobs/varobs.lpr.ppc64dbg skychart-3.0.1.5/varobs/varobs.lpr +diff -up skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi.ppc64dbg skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi +--- skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi.ppc64dbg 2008-10-16 13:44:14.000000000 +0200 ++++ skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi 2008-11-06 23:09:08.000000000 +0100 +@@ -92,6 +92,7 @@ + + + ++ + + + +diff -up skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpr.ppc64dbg skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpr diff --git a/skychart.spec b/skychart.spec index b099ed5..0cffe68 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 2.20081026svn%{?dist}.ppc64.1 +Release: 2.20081026svn%{?dist}.ppc64.2 Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -14,6 +14,7 @@ Source1: skychart.desktop Patch0: skychart-3.0.1.5-config.patch Patch1: skychart-3.0.1.5-wl.patch Patch2: skychart-3.0.1.5-paths.patch +Patch666: skychart-3.0.1.5-ppc64dbg.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lazarus >= 0.9.26 @@ -44,17 +45,12 @@ atlas more complete than a conventional planetarium. %patch0 -p1 -b .config %patch1 -p1 -b .wl %patch2 -p1 -b .paths +%patch666 -p1 -b .ppc64dbg find . -type f -print0 |xargs -0 chmod 644 %build - -# Emit some more debugging details to diagnose ppc64 fail -awk '/CompilerPath/ {print ""} {print}' \ - skychart/component/cdccomponents.lpk >skychart/component/.cdccomponents.lpk -mv skychart/component/.cdccomponents.lpk skychart/component/cdccomponents.lpk - lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi From 6306b44c7643122b9362b19d4fb6aa57095b6f61 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Mon, 1 Dec 2008 21:30:39 +0000 Subject: [PATCH 005/162] - Own /usr/share/skychart (#474037) --- skychart.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 0cffe68..12b51bf 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 2.20081026svn%{?dist}.ppc64.2 +Release: 3.20081026svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -133,6 +133,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %{_datadir}/applications/* %{_datadir}/pixmaps/* +%dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat %doc %{_datadir}/skychart/doc @@ -146,6 +147,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Dec 01 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-3.20081026svn +- Own /usr/share/skychart (#474037) + * Thu Nov 06 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-2.20081026svn - Temporarily disable ppc64 build due to a compiler bug From c6ad3cd3520987903db790d11b21c7af4f1d7a06 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 2 Dec 2008 08:33:14 +0000 Subject: [PATCH 006/162] Correct wrong cross-merge --- skychart-3.0.1.5-ppc64dbg.patch | 285 -------------------------------- skychart.spec | 6 +- 2 files changed, 3 insertions(+), 288 deletions(-) delete mode 100644 skychart-3.0.1.5-ppc64dbg.patch diff --git a/skychart-3.0.1.5-ppc64dbg.patch b/skychart-3.0.1.5-ppc64dbg.patch deleted file mode 100644 index d091570..0000000 --- a/skychart-3.0.1.5-ppc64dbg.patch +++ /dev/null @@ -1,285 +0,0 @@ -diff -up skychart-3.0.1.5/skychart/cdc.lpi.ppc64dbg skychart-3.0.1.5/skychart/cdc.lpi ---- skychart-3.0.1.5/skychart/cdc.lpi.ppc64dbg 2008-11-06 23:06:48.000000000 +0100 -+++ skychart-3.0.1.5/skychart/cdc.lpi 2008-11-06 23:09:08.000000000 +0100 -@@ -487,6 +487,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/cdc.lpr.ppc64dbg skychart-3.0.1.5/skychart/cdc.lpr -diff -up skychart-3.0.1.5/skychart/component/cdccomponents.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/cdccomponents.lpk ---- skychart-3.0.1.5/skychart/component/cdccomponents.lpk.ppc64dbg 2008-06-24 08:01:56.000000000 +0200 -+++ skychart-3.0.1.5/skychart/component/cdccomponents.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk ---- skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/downloaddialog/downldialog.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk ---- skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/enhedits/enhedit.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk ---- skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/jdcalendar/cdcjdcalendar.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -16,6 +16,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi ---- skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi.ppc64dbg 2006-05-21 21:14:11.000000000 +0200 -+++ skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpi 2008-11-06 23:09:08.000000000 +0100 -@@ -198,6 +198,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpr.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/demo/project1.lpr -diff -up skychart-3.0.1.5/skychart/component/libsql/libsql.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/libsql/libsql.lpk ---- skychart-3.0.1.5/skychart/component/libsql/libsql.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/libsql/libsql.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -12,6 +12,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk ---- skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/mrecsort/mrecsort.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk ---- skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk.ppc64dbg 2007-10-28 11:33:29.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/multidoc/multidocpackage.lpk 2008-11-06 23:11:44.000000000 +0100 -@@ -14,6 +14,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/radec/radec.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/radec/radec.lpk ---- skychart-3.0.1.5/skychart/component/radec/radec.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/radec/radec.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk ---- skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/synapse/source/lib/synapse.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk ---- skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk.ppc64dbg 2008-10-12 16:57:30.000000000 +0200 -+++ skychart-3.0.1.5/skychart/component/uniqueinstance/uniqueinstance_package.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi.ppc64dbg skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi ---- skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi.ppc64dbg 2007-02-25 18:10:07.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/vo/demo/demo.lpi 2008-11-06 23:09:08.000000000 +0100 -@@ -169,6 +169,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/vo/demo/demo.lpr.ppc64dbg skychart-3.0.1.5/skychart/component/vo/demo/demo.lpr -diff -up skychart-3.0.1.5/skychart/component/vo/lazvo.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/vo/lazvo.lpk ---- skychart-3.0.1.5/skychart/component/vo/lazvo.lpk.ppc64dbg 2007-02-25 13:43:02.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/vo/lazvo.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk ---- skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk.ppc64dbg 2006-02-06 12:14:45.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/winxp/winxpstyle.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -14,6 +14,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk ---- skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/xmlparser/xmlparser.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk.ppc64dbg skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk ---- skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk.ppc64dbg 2007-02-25 13:38:25.000000000 +0100 -+++ skychart-3.0.1.5/skychart/component/zoomimage/zoomimage.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/catalog/catalog.lpi.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/catalog.lpi ---- skychart-3.0.1.5/skychart/library/catalog/catalog.lpi.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/catalog/catalog.lpi 2008-11-06 23:09:09.000000000 +0100 -@@ -252,6 +252,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/catalog/catalog.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/catalog.lpr -diff -up skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk ---- skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/catalog/cdccatalog.lpk 2008-11-06 23:09:09.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/elp82/elp82.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/elp82/elp82.lpk ---- skychart-3.0.1.5/skychart/library/elp82/elp82.lpk.ppc64dbg 2006-02-05 18:39:19.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/elp82/elp82.lpk 2008-11-06 23:09:09.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/elp82/elp82.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/elp82/elp82.lpr -diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpi.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpi ---- skychart-3.0.1.5/skychart/library/satxy/satxy.lpi.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/satxy/satxy.lpi 2008-11-06 23:09:08.000000000 +0100 -@@ -98,6 +98,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpk ---- skychart-3.0.1.5/skychart/library/satxy/satxy.lpk.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/satxy/satxy.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -13,6 +13,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/skychart/library/satxy/satxy.lpr.ppc64dbg skychart-3.0.1.5/skychart/library/satxy/satxy.lpr -diff -up skychart-3.0.1.5/skychart/library/series96/series96.lpk.ppc64dbg skychart-3.0.1.5/skychart/library/series96/series96.lpk ---- skychart-3.0.1.5/skychart/library/series96/series96.lpk.ppc64dbg 2006-02-05 18:25:52.000000000 +0100 -+++ skychart-3.0.1.5/skychart/library/series96/series96.lpk 2008-11-06 23:09:08.000000000 +0100 -@@ -11,6 +11,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/varobs/varobs.lpi.ppc64dbg skychart-3.0.1.5/varobs/varobs.lpi ---- skychart-3.0.1.5/varobs/varobs.lpi.ppc64dbg 2008-10-16 13:44:14.000000000 +0200 -+++ skychart-3.0.1.5/varobs/varobs.lpi 2008-11-06 23:11:15.000000000 +0100 -@@ -131,8 +131,7 @@ - - - -- -+ - - - -diff -up skychart-3.0.1.5/varobs/varobs.lpr.ppc64dbg skychart-3.0.1.5/varobs/varobs.lpr -diff -up skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi.ppc64dbg skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi ---- skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi.ppc64dbg 2008-10-16 13:44:14.000000000 +0200 -+++ skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpi 2008-11-06 23:09:08.000000000 +0100 -@@ -92,6 +92,7 @@ - - - -+ - - - -diff -up skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpr.ppc64dbg skychart-3.0.1.5/varobs/varobs_lpv_bulletin.lpr diff --git a/skychart.spec b/skychart.spec index 12b51bf..405be39 100644 --- a/skychart.spec +++ b/skychart.spec @@ -14,9 +14,11 @@ Source1: skychart.desktop Patch0: skychart-3.0.1.5-config.patch Patch1: skychart-3.0.1.5-wl.patch Patch2: skychart-3.0.1.5-paths.patch -Patch666: skychart-3.0.1.5-ppc64dbg.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 +ExcludeArch: ppc64 + BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils @@ -45,11 +47,9 @@ atlas more complete than a conventional planetarium. %patch0 -p1 -b .config %patch1 -p1 -b .wl %patch2 -p1 -b .paths -%patch666 -p1 -b .ppc64dbg find . -type f -print0 |xargs -0 chmod 644 - %build lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi From ced62a74471136d9fa62ecf3f7ef5487d4b302fa Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 01:25:23 +0000 Subject: [PATCH 007/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 405be39..6bef4a4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 3.20081026svn%{?dist} +Release: 4.20081026svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -147,6 +147,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 3.0.1.5-4.20081026svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Dec 01 2008 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-3.20081026svn - Own /usr/share/skychart (#474037) From 52956752898c4adf888f41c5338f0ebc2bd962c5 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Fri, 27 Mar 2009 06:35:50 +0000 Subject: [PATCH 008/162] - Enable GTK2 UI - Fix desktop entry categories --- skychart.desktop | 2 +- skychart.spec | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/skychart.desktop b/skychart.desktop index bf3c66d..5528af8 100644 --- a/skychart.desktop +++ b/skychart.desktop @@ -6,5 +6,5 @@ Comment=Planetarium software for the advanced amateur astronomer GenericName=SkyChart Exec=skychart %f Icon=skychart -Categories=Graphics;Education; +Categories=Education;Astronomy; Terminal=false diff --git a/skychart.spec b/skychart.spec index 6bef4a4..b3c7c44 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 4.20081026svn%{?dist} +Release: 5.20081026svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -51,8 +51,8 @@ find . -type f -print0 |xargs -0 chmod 644 %build -lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk -lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi +lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk +lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/cdc.lpi # TODO: more libraries. Only 404 seems essential though. make %{_smp_mflags} CFLAGS="%{optflags} -fPIC" -C skychart/library/plan404 @@ -147,6 +147,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-5.20081026svn +- Enable GTK2 UI +- Fix desktop entry categories + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1.5-4.20081026svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From a68332d274e9ca6cd4d683d1844cad9bd47b5208 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Fri, 27 Mar 2009 07:01:04 +0000 Subject: [PATCH 009/162] fix up fpc dependency --- skychart.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/skychart.spec b/skychart.spec index b3c7c44..d64cb0a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -23,6 +23,7 @@ BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix +BuildRequires: gdk-pixbuf Requires: xdg-utils Requires: tzdata From 4cb0e845d033e9c6e6520e44067ddb1b674d3b4d Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Fri, 27 Mar 2009 07:08:56 +0000 Subject: [PATCH 010/162] fix up fpc dependency --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index d64cb0a..8b85620 100644 --- a/skychart.spec +++ b/skychart.spec @@ -23,7 +23,7 @@ BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix -BuildRequires: gdk-pixbuf +BuildRequires: gdk-pixbuf-devel Requires: xdg-utils Requires: tzdata From 3fc6543f7771a32df6d05e30bdc00cabf820f9fe Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Fri, 27 Mar 2009 07:18:13 +0000 Subject: [PATCH 011/162] okay, no gtk2 until fpc is fixed --- skychart.spec | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 8b85620..6a5da58 100644 --- a/skychart.spec +++ b/skychart.spec @@ -23,7 +23,6 @@ BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix -BuildRequires: gdk-pixbuf-devel Requires: xdg-utils Requires: tzdata @@ -52,8 +51,8 @@ find . -type f -print0 |xargs -0 chmod 644 %build -lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk -lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/cdc.lpi +lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk +lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi # TODO: more libraries. Only 404 seems essential though. make %{_smp_mflags} CFLAGS="%{optflags} -fPIC" -C skychart/library/plan404 @@ -149,7 +148,6 @@ rm -rf $RPM_BUILD_ROOT %changelog * Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-5.20081026svn -- Enable GTK2 UI - Fix desktop entry categories * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1.5-4.20081026svn From 9166a539fd7382d5b23bac02b0c7f345ac9f2641 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 8 Apr 2009 18:47:30 +0000 Subject: [PATCH 012/162] - Enable GTK2 UI --- skychart.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index 6a5da58..f085d71 100644 --- a/skychart.spec +++ b/skychart.spec @@ -23,6 +23,7 @@ BuildRequires: lazarus >= 0.9.26 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix +BuildRequires: gtk2-devel Requires: xdg-utils Requires: tzdata @@ -51,8 +52,8 @@ find . -type f -print0 |xargs -0 chmod 644 %build -lazbuild --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk -lazbuild --primary-config-path=$PWD/.lazarus skychart/cdc.lpi +lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk +lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/cdc.lpi # TODO: more libraries. Only 404 seems essential though. make %{_smp_mflags} CFLAGS="%{optflags} -fPIC" -C skychart/library/plan404 @@ -147,6 +148,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-6.20081026svn +- Enable GTK2 UI + * Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-5.20081026svn - Fix desktop entry categories From afe00d964168fd1773c35652f50bf6362b5d8372 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 8 Apr 2009 18:51:59 +0000 Subject: [PATCH 013/162] - Enable GTK2 UI --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index f085d71..9957950 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.5 -Release: 5.20081026svn%{?dist} +Release: 6.20081026svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 From 5e741d812ba555dc22598da98de9a0bb288ad968 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 8 Apr 2009 19:27:32 +0000 Subject: [PATCH 014/162] - Update to post latest beta - Drop the unzip patch - Upstream did the datadir and xdg-open chage as well, drop patches --- skychart-3.0.1.5-config.patch | 96 ----------------------------------- skychart-3.0.1.5-paths.patch | 22 -------- skychart-3.0.1.5-wl.patch | 15 ------ skychart-3.0.1.6-wl.patch | 20 ++++++++ skychart.spec | 19 +++---- 5 files changed, 30 insertions(+), 142 deletions(-) delete mode 100644 skychart-3.0.1.5-config.patch delete mode 100644 skychart-3.0.1.5-paths.patch delete mode 100644 skychart-3.0.1.5-wl.patch create mode 100644 skychart-3.0.1.6-wl.patch diff --git a/skychart-3.0.1.5-config.patch b/skychart-3.0.1.5-config.patch deleted file mode 100644 index 65d73a0..0000000 --- a/skychart-3.0.1.5-config.patch +++ /dev/null @@ -1,96 +0,0 @@ -Replace various paths to those that suit Fedora well. -Not really interesting upstream. - -Lubomir Rintel (Fedora Astronomy) - ---- skychart-3.0.1.5/skychart/u_constant.pas.config 2008-10-18 16:20:58.000000000 +0200 -+++ skychart-3.0.1.5/skychart/u_constant.pas 2008-10-29 20:16:30.000000000 +0100 -@@ -272,9 +272,9 @@ - DefaultFontSize=10; - DefaultPrivateDir='~/cartes_du_ciel'; - Defaultconfigfile='~/.cartesduciel.ini'; -- SharedDir='../share/apps/skychart'; -- DefaultPrintCmd1='kghostview'; -- DefaultPrintCmd2='gimp'; -+ SharedDir='../share/skychart'; -+ DefaultPrintCmd1='xdg-open'; -+ DefaultPrintCmd2='xdg-open'; - DefaultTmpDir='tmp'; - Default_dssdrive='/mnt/cdrom'; - DefaultVarObs='varobs'; -@@ -620,11 +620,11 @@ - {$ifdef darwin} - OpenFileCMD:string = 'open'; // - {$else} -- OpenFileCMD:string = 'kfmclient exec'; // default KDE -+ OpenFileCMD:string = 'xdg-open'; - {$endif} - {$ifdef unix} - tracefile:string =''; // to stdout -- dcd_cmd: string = 'cd /usr/local/dcd ; python ./dcd.py'; -+ dcd_cmd: string = 'dcd'; - use_xplanet: boolean = true; - xplanet_dir: string = ''; - {$endif} ---- skychart-3.0.1.5/skychart/pu_config_system.pas.config 2008-09-21 15:33:39.000000000 +0200 -+++ skychart-3.0.1.5/skychart/pu_config_system.pas 2008-10-29 20:15:32.000000000 +0100 -@@ -604,20 +604,8 @@ - procedure Tf_config_system.LinuxDesktopBoxChange(Sender: TObject); - begin - if LockChange then exit; --case LinuxDesktopBox.itemIndex of -- 0: begin // KDE -- LinuxCmd.Text:='kfmclient exec'; -- LinuxCmd.Enabled:=false; -- end; -- 1: begin // GNOME -- LinuxCmd.Text:='gnome-open'; -- LinuxCmd.Enabled:=false; -- end; -- 2: begin // Other -- LinuxCmd.Text:='/usr/bin/mozilla'; -- LinuxCmd.Enabled:=true; -- end; --end; -+LinuxCmd.Text:='xdg-open'; -+LinuxCmd.Enabled:=true; - LinuxDesktop:=LinuxDesktopBox.itemIndex; - end; - ---- skychart-3.0.1.5/tools/install_data.sh.config 2008-10-29 20:43:45.000000000 +0100 -+++ skychart-3.0.1.5/tools/install_data.sh 2008-10-29 20:44:27.000000000 +0100 -@@ -10,27 +10,27 @@ - - install -v -m 755 -d $destdir - install -v -m 755 -d $destdir/share --install -v -m 755 -d $destdir/share/apps --install -v -m 755 -d $destdir/share/apps/skychart -+install -v -m 755 -d $destdir/share -+install -v -m 755 -d $destdir/share/skychart - - for f in $(sort dir.lst) - do -- install -v -m 755 -d $destdir/share/apps/skychart/$f -+ install -v -m 755 -d $destdir/share/skychart/$f - done - - for f in $(cat data.lst) - do -- install -v -m 644 $f $destdir/share/apps/skychart/$f -+ install -v -m 644 $f $destdir/share/skychart/$f - done - - for f in $(cat doc.lst) - do -- install -v -m 644 $f $destdir/share/apps/skychart/$f -+ install -v -m 644 $f $destdir/share/skychart/$f - done - - for f in $(cat cat.lst) - do -- install -v -m 644 $f $destdir/share/apps/skychart/$f -+ install -v -m 644 $f $destdir/share/skychart/$f - done - --unzip -d $destdir/share/apps/skychart/doc/ doc/wiki_doc.zip -+unzip -d $destdir/share/skychart/doc/ doc/wiki_doc.zip diff --git a/skychart-3.0.1.5-paths.patch b/skychart-3.0.1.5-paths.patch deleted file mode 100644 index b970048..0000000 --- a/skychart-3.0.1.5-paths.patch +++ /dev/null @@ -1,22 +0,0 @@ -Among other nonsenses, this includes the unit path of the right unzip -unit (fpc ships two different). - -Lubomir Rintel (Fedora Astronomy) - ---- skychart-3.0.1.5/skychart/cdc.lpi.paths 2008-10-29 20:02:39.000000000 +0100 -+++ skychart-3.0.1.5/skychart/cdc.lpi 2008-10-29 20:05:00.000000000 +0100 -@@ -459,11 +459,11 @@ - - - -- -+ - - -- -- -+ -+ - - - diff --git a/skychart-3.0.1.5-wl.patch b/skychart-3.0.1.5-wl.patch deleted file mode 100644 index 9a2cb46..0000000 --- a/skychart-3.0.1.5-wl.patch +++ /dev/null @@ -1,15 +0,0 @@ -Case matters here. - -Lubomir Rintel (Fedora Astronomy) - ---- skychart-3.0.1.5/skychart/library/plan404/Makefile.wl 2008-10-10 15:15:59.000000000 +0200 -+++ skychart-3.0.1.5/skychart/library/plan404/Makefile 2008-10-29 20:14:32.000000000 +0100 -@@ -7,7 +7,7 @@ - LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm - else - SO_Name = libplan404.so --LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm -+LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm - endif - - .PHONY: clean diff --git a/skychart-3.0.1.6-wl.patch b/skychart-3.0.1.6-wl.patch new file mode 100644 index 0000000..81a255b --- /dev/null +++ b/skychart-3.0.1.6-wl.patch @@ -0,0 +1,20 @@ +Case matters here. + +Lubomir Rintel (Fedora Astronomy) + +[?25l[?12l[?25h[?1049h[?1h=[?12;25h[?12l[?25h[?25lW10: Warning: Changing a readonly file~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ [?12l[?25h[?25l:[?12l[?25hq[?25l[?12l[?25h![?25l[?12l[?25h^Z[?25l[?12l[?25h^Z[?25l[?12l[?25h [?25lE488: Trailing characters[?12l[?25h[?25lType :quit to exit Vim[?12l[?25hdiff -up skychart-3.0.1.6/skychart/library/plan404/Makefile.wl skychart-3.0.1.6/skychart/library/plan404/Makefile +--- skychart-3.0.1.6/skychart/library/plan404/Makefile.wl 2009-04-08 21:15:05.027791300 +0200 ++++ skychart-3.0.1.6/skychart/library/plan404/Makefile 2009-04-08 21:15:28.892791702 +0200 +@@ -8,7 +8,7 @@ SO_Name = libplan404.dylib + LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm + else + SO_Name = libplan404.so +-LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm ++LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm + endif + ifneq ($(findstring W32,$(OSTYPE)),) + SO_Name = libplan404.dll +[?25l[?12l[?25h[?1l>[?1049lVim: Error reading input, exiting... +Vim: preserving files... +Vim: Finished. + \ No newline at end of file diff --git a/skychart.spec b/skychart.spec index 9957950..2d1007d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart -Version: 3.0.1.5 -Release: 6.20081026svn%{?dist} +Version: 3.0.1.6 +Release: 1.20090408svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -9,11 +9,9 @@ Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics License: GPLv2+ URL: https://sourceforge.net/projects/skychart/ -Source0: %{name}-%{version}.tar.gz +Source0: %{name}-%{version}.tar.lzma Source1: skychart.desktop -Patch0: skychart-3.0.1.5-config.patch -Patch1: skychart-3.0.1.5-wl.patch -Patch2: skychart-3.0.1.5-paths.patch +Patch1: skychart-3.0.1.6-wl.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 @@ -45,9 +43,7 @@ atlas more complete than a conventional planetarium. %setup -q %{__unzip} -q tools/doc/wiki_doc.zip -d tools/doc -%patch0 -p1 -b .config %patch1 -p1 -b .wl -%patch2 -p1 -b .paths find . -type f -print0 |xargs -0 chmod 644 @@ -99,7 +95,7 @@ install -d $RPM_BUILD_ROOT%{_datadir}/applications install -d $RPM_BUILD_ROOT%{_datadir}/skychart # Binary -install -pm 0755 skychart/units/skychart \ +install -pm 0755 skychart/units/*/skychart \ $RPM_BUILD_ROOT%{_bindir} # Libraries @@ -148,6 +144,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.6-1.20090408svn +- Update to post latest beta +- Drop the unzip patch +- Upstream did the datadir and xdg-open chage as well, drop patches + * Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.5-6.20081026svn - Enable GTK2 UI From 7de0e6e6d2b83426d94140f9ac0d27e41171f442 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 8 Apr 2009 19:33:04 +0000 Subject: [PATCH 015/162] new sources --- .cvsignore | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cvsignore b/.cvsignore index f666664..41810b9 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -skychart-3.0.1.5.tar.gz +skychart-3.0.1.6.tar.lzma diff --git a/sources b/sources index a81e17d..4f436b5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d3158df6ad5f07f9f35ba8e43912767c skychart-3.0.1.5.tar.gz +7021c215cfa6b61ab909ef2e6266abc7 skychart-3.0.1.6.tar.lzma From ba82d0cfd922859986a54cd699b03c05cf14c51b Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 9 Apr 2009 05:28:54 +0000 Subject: [PATCH 016/162] Fix unit path --- skychart.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skychart.spec b/skychart.spec index 2d1007d..7bd0f52 100644 --- a/skychart.spec +++ b/skychart.spec @@ -12,6 +12,7 @@ URL: https://sourceforge.net/projects/skychart/ Source0: %{name}-%{version}.tar.lzma Source1: skychart.desktop Patch1: skychart-3.0.1.6-wl.patch +Patch2: skychart-3.0.1.6-units.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 @@ -44,6 +45,7 @@ atlas more complete than a conventional planetarium. %{__unzip} -q tools/doc/wiki_doc.zip -d tools/doc %patch1 -p1 -b .wl +%patch2 -p1 -b .units find . -type f -print0 |xargs -0 chmod 644 From b265b09c307f8019db270b807033d9c5fe778a92 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 9 Apr 2009 05:31:04 +0000 Subject: [PATCH 017/162] Fix unit path --- skychart-3.0.1.6-units.patch | 17 +++++++++++++++++ skychart.spec | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 skychart-3.0.1.6-units.patch diff --git a/skychart-3.0.1.6-units.patch b/skychart-3.0.1.6-units.patch new file mode 100644 index 0000000..198b4e0 --- /dev/null +++ b/skychart-3.0.1.6-units.patch @@ -0,0 +1,17 @@ +Target directory is not precreated for every possible arch, +use a generic one. + +Lubomir Rintel (Fedora Astronomy) + +diff -up skychart-3.0.1.6/skychart/cdc.lpi.units skychart-3.0.1.6/skychart/cdc.lpi +--- skychart-3.0.1.6/skychart/cdc.lpi.units 2009-04-09 07:22:59.381788190 +0200 ++++ skychart-3.0.1.6/skychart/cdc.lpi 2009-04-09 07:23:21.763790569 +0200 +@@ -434,7 +434,7 @@ + + + +- ++ + + + diff --git a/skychart.spec b/skychart.spec index 7bd0f52..3610a0f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -97,7 +97,7 @@ install -d $RPM_BUILD_ROOT%{_datadir}/applications install -d $RPM_BUILD_ROOT%{_datadir}/skychart # Binary -install -pm 0755 skychart/units/*/skychart \ +install -pm 0755 skychart/units/skychart \ $RPM_BUILD_ROOT%{_bindir} # Libraries From 758ab3f2bc696dc744a696d748ddc932aa347a6c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 04:25:28 +0000 Subject: [PATCH 018/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 3610a0f..cfb39b8 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.6 -Release: 1.20090408svn%{?dist} +Release: 2.20090408svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 @@ -146,6 +146,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1.6-2.20090408svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.6-1.20090408svn - Update to post latest beta - Drop the unzip patch From 94b19fca580158f0351cb029638877a3c24474e6 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:15:32 +0000 Subject: [PATCH 019/162] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8aa0556..85ed561 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: skychart -# $Id$ +# $Id: Makefile,v 1.1 2008/11/05 22:29:53 kevin Exp $ NAME := skychart SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 8400dfeeb92d1635e78904e911ea635d1247fb6f Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Sat, 24 Jul 2010 18:06:01 +0000 Subject: [PATCH 020/162] Pull never version --- .cvsignore | 2 +- import.log | 1 + skychart-3.0.1.6-desktop.patch | 31 ++++++++++++ skychart-3.0.1.6-strip.patch | 35 +++++++++++++ skychart-3.0.1.6-units.patch | 17 ------- skychart-3.0.1.6-wl.patch | 20 -------- skychart.spec | 93 ++++++++++------------------------ sources | 2 +- 8 files changed, 96 insertions(+), 105 deletions(-) create mode 100644 skychart-3.0.1.6-desktop.patch create mode 100644 skychart-3.0.1.6-strip.patch delete mode 100644 skychart-3.0.1.6-units.patch delete mode 100644 skychart-3.0.1.6-wl.patch diff --git a/.cvsignore b/.cvsignore index 41810b9..6e94af1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -skychart-3.0.1.6.tar.lzma +skychart-3.0.1.6.tar.gz diff --git a/import.log b/import.log index 08c1970..2c1514c 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ skychart-3_0_1_5-1_20081026svn_el5:HEAD:skychart-3.0.1.5-1.20081026svn.el5.src.rpm:1225937345 +skychart-3_0_1_6-3_20100724svn_el6:HEAD:skychart-3.0.1.6-3.20100724svn.el6.src.rpm:1279994605 diff --git a/skychart-3.0.1.6-desktop.patch b/skychart-3.0.1.6-desktop.patch new file mode 100644 index 0000000..8e8a676 --- /dev/null +++ b/skychart-3.0.1.6-desktop.patch @@ -0,0 +1,31 @@ +From 3e60f9a650995bb464194a900e0a074e6d718dae Mon Sep 17 00:00:00 2001 +From: Lubomir Rintel +Date: Sat, 24 Jul 2010 12:25:37 -0400 +Subject: [PATCH] Fix desktop entry + +--- + .../Linux/share/applications/skychart.desktop | 8 ++++---- + 1 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/system_integration/Linux/share/applications/skychart.desktop b/system_integration/Linux/share/applications/skychart.desktop +index 9091f9d..b225266 100644 +--- a/system_integration/Linux/share/applications/skychart.desktop ++++ b/system_integration/Linux/share/applications/skychart.desktop +@@ -2,10 +2,10 @@ + Version=1.0 + Encoding=UTF-8 + Name=Skychart +-Comment=Skychart / Cartes du Ciel ++Comment=Planetarium software for the advanced amateur astronomer + Exec=skychart +-Icon=../pixmaps/skychart.xpm ++Icon=skychart + Terminal=false + Type=Application +-Categories=Education;Science;Astronomy +-GenericName[fr_CH]= ++Categories=Education;Science;Astronomy; ++GenericName=SkyChart +-- +1.6.5.2 + diff --git a/skychart-3.0.1.6-strip.patch b/skychart-3.0.1.6-strip.patch new file mode 100644 index 0000000..ab246e9 --- /dev/null +++ b/skychart-3.0.1.6-strip.patch @@ -0,0 +1,35 @@ +From 0273c3c873840514b09fb0a945305ca7a19d7026 Mon Sep 17 00:00:00 2001 +From: Lubomir Rintel +Date: Sat, 24 Jul 2010 13:10:44 -0400 +Subject: [PATCH] Do not strip binaries upon install + +--- + install.sh | 12 ++++++------ + 1 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/install.sh b/install.sh +index fcc8db1..0eeb429 100755 +--- a/install.sh ++++ b/install.sh +@@ -17,12 +17,12 @@ install -m 755 -d $destdir/share/doc + install -m 755 -d $destdir/share/doc/skychart + install -m 755 -d $destdir/share/pixmaps + +-install -v -m 755 -s skychart/cdc $destdir/bin/skychart +-install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon +-install -v -m 755 -s varobs/varobs $destdir/bin/varobs +-install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin +-install -v -m 644 -s skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so +-install -v -m 644 -s skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so ++install -v -m 755 skychart/cdc $destdir/bin/skychart ++install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon ++install -v -m 755 varobs/varobs $destdir/bin/varobs ++install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin ++install -v -m 644 skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so ++install -v -m 644 skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so + install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop + install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog + install -v -m 644 system_integration/Linux/share/doc/skychart/copyright $destdir/share/doc/skychart/copyright +-- +1.6.5.2 + diff --git a/skychart-3.0.1.6-units.patch b/skychart-3.0.1.6-units.patch deleted file mode 100644 index 198b4e0..0000000 --- a/skychart-3.0.1.6-units.patch +++ /dev/null @@ -1,17 +0,0 @@ -Target directory is not precreated for every possible arch, -use a generic one. - -Lubomir Rintel (Fedora Astronomy) - -diff -up skychart-3.0.1.6/skychart/cdc.lpi.units skychart-3.0.1.6/skychart/cdc.lpi ---- skychart-3.0.1.6/skychart/cdc.lpi.units 2009-04-09 07:22:59.381788190 +0200 -+++ skychart-3.0.1.6/skychart/cdc.lpi 2009-04-09 07:23:21.763790569 +0200 -@@ -434,7 +434,7 @@ - - - -- -+ - - - diff --git a/skychart-3.0.1.6-wl.patch b/skychart-3.0.1.6-wl.patch deleted file mode 100644 index 81a255b..0000000 --- a/skychart-3.0.1.6-wl.patch +++ /dev/null @@ -1,20 +0,0 @@ -Case matters here. - -Lubomir Rintel (Fedora Astronomy) - -[?25l[?12l[?25h[?1049h[?1h=[?12;25h[?12l[?25h[?25lW10: Warning: Changing a readonly file~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ [?12l[?25h[?25l:[?12l[?25hq[?25l[?12l[?25h![?25l[?12l[?25h^Z[?25l[?12l[?25h^Z[?25l[?12l[?25h [?25lE488: Trailing characters[?12l[?25h[?25lType :quit to exit Vim[?12l[?25hdiff -up skychart-3.0.1.6/skychart/library/plan404/Makefile.wl skychart-3.0.1.6/skychart/library/plan404/Makefile ---- skychart-3.0.1.6/skychart/library/plan404/Makefile.wl 2009-04-08 21:15:05.027791300 +0200 -+++ skychart-3.0.1.6/skychart/library/plan404/Makefile 2009-04-08 21:15:28.892791702 +0200 -@@ -8,7 +8,7 @@ SO_Name = libplan404.dylib - LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm - else - SO_Name = libplan404.so --LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm -+LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm - endif - ifneq ($(findstring W32,$(OSTYPE)),) - SO_Name = libplan404.dll -[?25l[?12l[?25h[?1l>[?1049lVim: Error reading input, exiting... -Vim: preserving files... -Vim: Finished. - \ No newline at end of file diff --git a/skychart.spec b/skychart.spec index cfb39b8..bffc176 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,18 +1,18 @@ Name: skychart Version: 3.0.1.6 -Release: 2.20090408svn%{?dist} +Release: 3.20100724svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer -# svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk@1050 skychart-3.0.1.5 -# tar czf skychart-3.0.1.5.tar.gz skychart-3.0.1.5 +# svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 +# tar czf skychart-3.0.1.6.tar.gz skychart-3.0.1.6 Group: Amusements/Graphics License: GPLv2+ URL: https://sourceforge.net/projects/skychart/ -Source0: %{name}-%{version}.tar.lzma +Source0: %{name}-%{version}.tar.gz Source1: skychart.desktop -Patch1: skychart-3.0.1.6-wl.patch -Patch2: skychart-3.0.1.6-units.patch +Patch1: skychart-3.0.1.6-desktop.patch +Patch2: skychart-3.0.1.6-strip.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 @@ -42,84 +42,41 @@ atlas more complete than a conventional planetarium. %prep %setup -q -%{__unzip} -q tools/doc/wiki_doc.zip -d tools/doc - -%patch1 -p1 -b .wl -%patch2 -p1 -b .units -find . -type f -print0 |xargs -0 chmod 644 +%patch1 -p1 -b .desktop +%patch2 -p1 -b .strip +find skychart -type f -print0 |xargs -0 chmod 644 %build -lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/component/cdccomponents.lpk -lazbuild --widgetset=gtk2 --primary-config-path=$PWD/.lazarus skychart/cdc.lpi +./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} -# TODO: more libraries. Only 404 seems essential though. -make %{_smp_mflags} CFLAGS="%{optflags} -fPIC" -C skychart/library/plan404 +# We build these separately so that we can apply optflags +make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/getdss +make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 -# Create the Icon Theme Specification compilant icon file -convert skychart/bitmaps/mainicon/mainicon.ico skychart.png +make # not concurrency-safe # Fix exotic EOL encodings dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/common.css dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/custom.css -dos2unix -qk tools/doc/releasenotes_ru.txt -dos2unix -qk tools/doc/releasenotes_ua.txt - -# A couple of files in Ukrainian documentation have their names and -# links incorrectly escaped, which makes those not UTF-8 compilant as -# well as links broken -charset_fix () { sed -r ' - # Special characters in file names are - # prefixed by %% vs. %%25 in HTML - s/\xd1%%(25)?81/с/g - s/\xd1%%(25)?82/т/g - s/\xd1%%(25)?8[fF]/я/g -'; } - -for ORIGNAME in $(find tools/doc/wiki_doc/uk -name '*.html') -do - NEWNAME=$(echo $ORIGNAME |charset_fix) - charset_fix <$ORIGNAME >$ORIGNAME.utf8 - touch -r $ORIGNAME $ORIGNAME.utf8 - rm -f $ORIGNAME - mv $ORIGNAME.utf8 $NEWNAME -done +dos2unix -qk tools/doc/releasenotes*.txt %install rm -rf $RPM_BUILD_ROOT -# Directory structure -install -d $RPM_BUILD_ROOT%{_bindir} -install -d $RPM_BUILD_ROOT%{_libdir} -install -d $RPM_BUILD_ROOT%{_datadir}/pixmaps -install -d $RPM_BUILD_ROOT%{_datadir}/applications -install -d $RPM_BUILD_ROOT%{_datadir}/skychart +make install install_data PREFIX=$RPM_BUILD_ROOT%{_prefix} -# Binary -install -pm 0755 skychart/units/skychart \ - $RPM_BUILD_ROOT%{_bindir} +# Fix multilib path +[ %{_lib} = lib ] || mv $RPM_BUILD_ROOT%{_prefix}/{lib,%{_lib}} -# Libraries -install -pm 0755 skychart/library/plan404/libplan404.so \ - $RPM_BUILD_ROOT%{_libdir} - -# Icon -install -pm 0644 skychart.png $RPM_BUILD_ROOT%{_datadir}/pixmaps +# Fix debuginfo +chmod +x $RPM_BUILD_ROOT%{_libdir}/* # Menu entry -desktop-file-install --vendor=fedora %{SOURCE1} \ - --dir=$RPM_BUILD_ROOT%{_datadir}/applications - -# Data (Yes, tools/install_data.sh exists, but is outdated) -( - cd tools - find data/{common_names,earthmap,horizon,language,planet,sample,Themes} -type f - find data/constellation -maxdepth 1 -type f - find data/eclipses -type f -name '*.png' -o -name '*.txt' - find cat -type f -not -regex '.*/src.*' -not -name '*.prj' - find doc -type f -not -name '*.zip' -) |xargs tar cf - -C tools |tar xf - -C $RPM_BUILD_ROOT%{_datadir}/skychart +desktop-file-install --vendor=fedora \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + $RPM_BUILD_ROOT%{_datadir}/applications/skychart.desktop %clean @@ -136,6 +93,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/skychart/data %{_datadir}/skychart/cat %doc %{_datadir}/skychart/doc +%exclude %{_datadir}/doc/skychart %doc skychart/gpl.txt @@ -146,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 24 2010 Lubomir Rintel (Fedora Astronomy) - 3.0.1.6-3.20100724svn +- Update to a later snapshot + * Sun Jul 26 2009 Fedora Release Engineering - 3.0.1.6-2.20090408svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild diff --git a/sources b/sources index 4f436b5..47b47de 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7021c215cfa6b61ab909ef2e6266abc7 skychart-3.0.1.6.tar.lzma +bf5740ab05196d74a85ecab8247d84d8 skychart-3.0.1.6.tar.gz From 992b0b437b80315ce40e0e6d51448cc1dc2d1b5e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 12:50:15 +0000 Subject: [PATCH 021/162] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 2 -- 3 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 85ed561..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: skychart -# $Id: Makefile,v 1.1 2008/11/05 22:29:53 kevin Exp $ -NAME := skychart -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 2c1514c..0000000 --- a/import.log +++ /dev/null @@ -1,2 +0,0 @@ -skychart-3_0_1_5-1_20081026svn_el5:HEAD:skychart-3.0.1.5-1.20081026svn.el5.src.rpm:1225937345 -skychart-3_0_1_6-3_20100724svn_el6:HEAD:skychart-3.0.1.6-3.20100724svn.el6.src.rpm:1279994605 From 04885c32dd883f3551c21d6777f9a15f4157b17b Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 13 Jan 2011 12:58:52 +0100 Subject: [PATCH 022/162] - Using d-f-validate instead od d-f-install (Fixes bz #662472) - Changed RPM_BUILD_ROOT macro to lower case form --- skychart.spec | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/skychart.spec b/skychart.spec index bffc176..f67bfd3 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.6 -Release: 3.20100724svn%{?dist} +Release: 4.20100724svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 @@ -63,24 +63,22 @@ dos2unix -qk tools/doc/releasenotes*.txt %install -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} -make install install_data PREFIX=$RPM_BUILD_ROOT%{_prefix} +make install install_data PREFIX=%{buildroot}%{_prefix} # Fix multilib path -[ %{_lib} = lib ] || mv $RPM_BUILD_ROOT%{_prefix}/{lib,%{_lib}} +[ %{_lib} = lib ] || mv %{buildroot}%{_prefix}/{lib,%{_lib}} # Fix debuginfo -chmod +x $RPM_BUILD_ROOT%{_libdir}/* +chmod +x %{buildroot}%{_libdir}/* # Menu entry -desktop-file-install --vendor=fedora \ - --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ - $RPM_BUILD_ROOT%{_datadir}/applications/skychart.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files @@ -104,6 +102,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 13 2011 Sergio Pascual - 3.0.1.6-4.20100724svn +- Using d-f-validate instead od d-f-install (Fixes bz #662472) +- Changed RPM_BUILD_ROOT macro to lower case form + * Sat Jul 24 2010 Lubomir Rintel (Fedora Astronomy) - 3.0.1.6-3.20100724svn - Update to a later snapshot From b8343a1ee13c9d3ef38d691126b3e56923cbc0e8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 08:08:08 -0600 Subject: [PATCH 023/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index f67bfd3..8b39a22 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.6 -Release: 4.20100724svn%{?dist} +Release: 5.20100724svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 3.0.1.6-5.20100724svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Thu Jan 13 2011 Sergio Pascual - 3.0.1.6-4.20100724svn - Using d-f-validate instead od d-f-install (Fixes bz #662472) - Changed RPM_BUILD_ROOT macro to lower case form From 9c175f78659df3cdd0f4fc38ddee1ef2c290eafb Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sat, 12 Feb 2011 00:20:50 +0100 Subject: [PATCH 024/162] - New upstream source --- .gitignore | 1 + skychart.spec | 31 +++++++++++++++++++------------ sources | 2 +- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 6e94af1..9faa936 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ skychart-3.0.1.6.tar.gz +/skychart_3.2-source.tgz diff --git a/skychart.spec b/skychart.spec index f67bfd3..89ca481 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart -Version: 3.0.1.6 -Release: 4.20100724svn%{?dist} +Version: 3.2 +Release: 1%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 @@ -9,10 +9,11 @@ Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics License: GPLv2+ URL: https://sourceforge.net/projects/skychart/ -Source0: %{name}-%{version}.tar.gz +Source0: %{name}_%{version}-source.tgz Source1: skychart.desktop Patch1: skychart-3.0.1.6-desktop.patch Patch2: skychart-3.0.1.6-strip.patch +Patch3: skychart-wgetdoc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 @@ -41,9 +42,10 @@ atlas more complete than a conventional planetarium. %prep -%setup -q +%setup -q -n %{name}_%{version} %patch1 -p1 -b .desktop -%patch2 -p1 -b .strip +#%patch2 -p1 -b .strip +%patch3 -p1 find skychart -type f -print0 |xargs -0 chmod 644 @@ -57,14 +59,15 @@ make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 make # not concurrency-safe # Fix exotic EOL encodings -dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/common.css -dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/custom.css -dos2unix -qk tools/doc/releasenotes*.txt +#dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/common.css +#dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/custom.css +#dos2unix -qk tools/doc/releasenotes*.txt %install rm -rf %{buildroot} +make install PREFIX=%{buildroot}%{_prefix} make install install_data PREFIX=%{buildroot}%{_prefix} # Fix multilib path @@ -83,6 +86,8 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) +#%doc skychart/gpl.txt +#%doc %{_datadir}/skychart/doc %{_bindir}/* %{_libdir}/*.so %{_datadir}/applications/* @@ -90,10 +95,9 @@ rm -rf %{buildroot} %dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat -%doc %{_datadir}/skychart/doc -%exclude %{_datadir}/doc/skychart -%doc skychart/gpl.txt - +%{_datadir}/skychart/doc +%exclude /usr/share/doc/skychart/changelog +%exclude /usr/share/doc/skychart/copyright %post -p /sbin/ldconfig @@ -102,6 +106,9 @@ rm -rf %{buildroot} %changelog +* Sat Feb 12 2011 Sergio Pascual - 3.2.1-1 +- New upstream source + * Thu Jan 13 2011 Sergio Pascual - 3.0.1.6-4.20100724svn - Using d-f-validate instead od d-f-install (Fixes bz #662472) - Changed RPM_BUILD_ROOT macro to lower case form diff --git a/sources b/sources index 47b47de..d0c1863 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bf5740ab05196d74a85ecab8247d84d8 skychart-3.0.1.6.tar.gz +e215374ee11838bb686bb5c50625e7ee skychart_3.2-source.tgz From 8bd2aac90aef4dd811d403cad74b2cc3643af953 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 16 Feb 2011 13:33:56 +0100 Subject: [PATCH 025/162] - Missing patch added --- skychart-wgetdoc.patch | 22 ++++++++++++++++++++++ skychart.spec | 5 ++++- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 skychart-wgetdoc.patch diff --git a/skychart-wgetdoc.patch b/skychart-wgetdoc.patch new file mode 100644 index 0000000..4e4660e --- /dev/null +++ b/skychart-wgetdoc.patch @@ -0,0 +1,22 @@ +diff -ur skychart_3.2/tools/install_data.sh skychart_3.2.new/tools/install_data.sh +--- skychart_3.2/tools/install_data.sh 2010-08-22 21:00:39.000000000 +0200 ++++ skychart_3.2.new/tools/install_data.sh 2011-02-16 13:14:44.331141668 +0100 +@@ -32,12 +32,12 @@ + install -v -m 644 $f $destdir/share/skychart/$f + done + +-if [ ! -d doc/wiki_doc ]; then +- cd wiki_doc +- ./getdoc.sh +- ./copydoc.sh +- cd .. +-fi ++#if [ ! -d doc/wiki_doc ]; then ++# cd wiki_doc ++# ./getdoc.sh ++# ./copydoc.sh ++# cd .. ++#fi + + for f in $(find doc/wiki_doc/|grep -v .svn) + do diff --git a/skychart.spec b/skychart.spec index a6e8048..d2476f2 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 @@ -106,6 +106,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 16 2011 Sergio Pascual - 3.2.1-2 +- Missing patch added + * Sat Feb 12 2011 Sergio Pascual - 3.2.1-1 - New upstream source From 44b1a5ff640806397937a44a622431bd6d84c0c4 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 10 Mar 2011 13:45:52 +0100 Subject: [PATCH 026/162] Patch from upstream to make skychart work with lazarus 0.9.28 --- skychart-lazarus928.patch | 32605 ++++++++++++++++++++++++++++++++++++ skychart.spec | 23 +- 2 files changed, 32618 insertions(+), 10 deletions(-) create mode 100644 skychart-lazarus928.patch diff --git a/skychart-lazarus928.patch b/skychart-lazarus928.patch new file mode 100644 index 0000000..a499744 --- /dev/null +++ b/skychart-lazarus928.patch @@ -0,0 +1,32605 @@ +diff -ur skychart_3.2/skychart/cdc.lpi skychart_3.2_up/skychart/cdc.lpi +--- skychart_3.2/skychart/cdc.lpi 2010-10-03 14:48:13.000000000 +0200 ++++ skychart_3.2_up/skychart/cdc.lpi 2011-03-09 15:18:57.108096914 +0100 +@@ -1,7 +1,7 @@ + + + +- ++ + + + +@@ -11,9 +11,10 @@ + + + ++ + +- <UseXPManifest Value="True"/> + <Icon Value="0"/> ++ <UseXPManifest Value="True"/> + </General> + <PublishOptions> + <Version Value="2"/> +@@ -439,13 +440,15 @@ + <Unit48> + <Filename Value="pu_ascomclient.pas"/> + <IsPartOfProject Value="True"/> ++ <ComponentName Value="pop_scope"/> + <HasResources Value="True"/> ++ <ResourceBaseClass Value="Form"/> + <UnitName Value="pu_ascomclient"/> + </Unit48> + </Units> + </ProjectOptions> + <CompilerOptions> +- <Version Value="9"/> ++ <Version Value="8"/> + <Target> + <Filename Value="units/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)/skychart"/> + </Target> +@@ -456,7 +459,6 @@ + <Parsing> + <SyntaxOptions> + <CStyleOperator Value="False"/> +- <UseAnsiStrings Value="False"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> +@@ -485,14 +487,4 @@ + <CompilerPath Value="$(CompPath)"/> + </Other> + </CompilerOptions> +- <Debugging> +- <Exceptions Count="2"> +- <Item1> +- <Name Value="Exception"/> +- </Item1> +- <Item2> +- <Name Value="EInvalidArgument"/> +- </Item2> +- </Exceptions> +- </Debugging> + </CONFIG> +diff -ur skychart_3.2/skychart/cu_tz.pas skychart_3.2_up/skychart/cu_tz.pas +--- skychart_3.2/skychart/cu_tz.pas 2009-11-21 23:21:21.000000000 +0100 ++++ skychart_3.2_up/skychart/cu_tz.pas 2011-03-09 15:18:23.116276539 +0100 +@@ -1,615 +1,615 @@ +-unit cu_tz; +- +-{ Time Zone processing component. +- Based on FreePascal RTL rtl/unix/timezone.inc +- +- Copyright (C) 2007 Patrick Chevalley pch@freesurf.ch +- +- This library is free software; you can redistribute it and/or modify it +- under the terms of the GNU Library General Public License as published by +- the Free Software Foundation; either version 2 of the License, or (at your +- option) any later version with the following modification: +- +- As a special exception, the copyright holders of this library give you +- permission to link this library with independent modules to produce an +- executable, regardless of the license terms of these independent modules,and +- to copy and distribute the resulting executable under terms of your choice, +- provided that you also meet, for each linked independent module, the terms +- and conditions of the license of that module. An independent module is a +- module which is not derived from or based on this library. If you modify +- this library, you may extend this exception to your version of the library, +- but you are not obligated to do so. If you do not wish to do so, delete this +- exception statement from your version. +- +- 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 library; if not, write to the Free Software Foundation, +- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +- +-{$mode objfpc}{$H+} +- +-interface +- +-uses +- {$ifdef mswindows} +- Windows, +- {$endif} +- {$ifdef unix} +- unixutil, +- {$endif} +- Classes, SysUtils, Math; +- +-type +- ttzhead=packed record +- tzh_reserved : array[0..19] of byte; +- tzh_ttisgmtcnt, +- tzh_ttisstdcnt, +- tzh_leapcnt, +- tzh_timecnt, +- tzh_typecnt, +- tzh_charcnt : longint; +- end; +- +- pttinfo=^tttinfo; +- tttinfo=packed record +- offset : longint; +- isdst : boolean; +- idx : byte; +- isstd : byte; +- isgmt : byte; +- end; +- +- pleap=^tleap; +- tleap=record +- transition : longint; +- change : longint; +- end; +- +- TCdCTimeZone = class(TObject) +- private +- fTZDaylight:boolean; +- fTZSeconds:longint; +- fTZName: array[boolean] of pchar; +- fTimer:longint; +- fTimeZoneFile: string; +- fZoneTabCnty: TStringList; +- fZoneTabCoord: TStringList; +- fZoneTabZone: TStringList; +- fZoneTabComment: TStringList; +- num_transitions, +- num_leaps, +- num_types : longint; +- transitions : plongint; +- type_idxs : pbyte; +- types : pttinfo; +- zone_names : pchar; +- leaps : pleap; +- procedure GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); +- procedure GetLocalTimezone(timer:longint); +- function find_transition(timer:longint):pttinfo; +- procedure ReadTimezoneFile(fn:shortstring); +- function GetTZName: string; +- procedure SetDate(value: TDateTime); +- function GetDate:TDateTime ; +- procedure SetJD(value: double); +- function GetJD:double ; +- procedure SetTimeZoneFile(value: string); +- function GetTimeZoneFile:string ; +- function GetNowLocalTime: TDateTime; +- function GetNowUTC: TDateTime; +- public +- constructor Create; +- destructor Destroy; override; +- procedure Assign(Source: TCdCTimeZone); +- function LoadZoneTab(fn: string):boolean; +- function UTC2Local(t: TDateTime):TDateTime; +- function UTC2Local(t: double):double; // jd +- function Local2UTC(t: TDateTime):TDateTime; +- function Local2UTC(t: double):double; // jd +- property TimeZoneFile: string read GetTimeZoneFile write SetTimeZoneFile; +- property Date: TDateTime read GetDate write SetDate; +- property JD: double read GetJD write SetJD; +- property SecondsOffset :longint read fTZSeconds; +- property ZoneName : string read GetTZName; +- property Daylight:boolean read fTZDaylight; +- property ZoneTabCnty: TStringList read fZoneTabCnty; +- property ZoneTabCoord: TStringList read fZoneTabCoord; +- property ZoneTabZone: TStringList read fZoneTabZone; +- property ZoneTabComment: TStringList read fZoneTabComment; +- property NowLocalTime: TDateTime read GetNowLocalTime; +- property NowUTC: TDateTime read GetNowUTC; +- end; +- +-const +- secday=24*3600; +- JDUnixDelta=2440587.5; // 1.1.1970 0h +- minJD=2415750;// 1.1.1902 risk of 32bit unixtime underflow +- minYear=1904; // next leap year after underflow +- maxJD=2465424;// 1.1.2038 risk of 32bit unixtime overflow +- maxYear=2036; // last leap year before overflow +- minDate=732; // 1.1.1902 risk of 32bit unixtime underflow +- maxDate=50406; // 1.1.2038 risk of 32bit unixtime overflow +- +-implementation +- +-function Cjd(annee,mois,jour :INTEGER; Heure:double):double; +-var u,u0,u1,u2 : double; +- gregorian : boolean; +-begin +-if annee*10000+mois*100+jour >= 15821015 then gregorian:=true else gregorian:=false; +-u:=annee; +-if mois<3 then u:=u-1; +-u0:=u+4712; +-u1:=mois+1; +-if u1<4 then u1:=u1+12; +-result:=floor(u0*365.25)+floor(30.6*u1+0.000001)+jour+heure/24-63.5; +-if gregorian then begin +- u2:=floor(abs(u)/100)-floor(abs(u)/400); +- if u<0 then u2:=-u2; +- result:=result-u2+2; +- if (u<0)and((u/100)=floor(u/100))and((u/400)<>floor(u/400)) then result:=result-1; +-end; +-end; +- +-PROCEDURE Djd(jd:Double;VAR annee,mois,jour:INTEGER; VAR Heure:double); +-var u0,u1,u2,u3,u4 : double; +- gregorian : boolean; +-begin +-u0:=jd+0.5; +-if int(u0)>=2299161 then gregorian:=true else gregorian:=false; +-u0:=jd+32082.5; +-if gregorian then begin +- u1:=u0+floor(u0/36525)-floor(u0/146100)-38; +- if jd>=1830691.5 then u1:=u1+1; +- u0:=u0+floor(u1/36525)-floor(u1/146100)-38; +-end; +-u2:=floor(u0+123); +-u3:=floor((u2-122.2)/365.25); +-u4:=floor((u2-floor(365.25*u3))/30.6001); +-mois:=round(u4-1); +-if mois>12 then mois:=mois-12; +-jour:=round(u2-floor(365.25*u3)-floor(30.6001*u4)); +-annee:=round(u3+floor((u4-2)/12)-4800); +-heure:=(jd-floor(jd+0.5)+0.5)*24; +-end; +- +-procedure SplitRec(buf,sep:string; var arg: TStringList); +-var i,l:integer; +-begin +-arg.clear; +-l:=length(sep); +-while pos(sep,buf)<>0 do begin +- for i:=1 to length(buf) do begin +- if copy(buf,i,l) = sep then begin +- arg.add(copy(buf,1,i-1)); +- delete(buf,1,i-1+l); +- break; +- end; +- end; +-end; +-arg.add(buf); +-end; +- +-constructor TCdCTimeZone.Create; +-begin +- inherited Create; +- fZoneTabCnty:=TStringList.Create; +- fZoneTabCoord:=TStringList.Create; +- fZoneTabZone:=TStringList.Create; +- fZoneTabComment:=TStringList.Create; +- fTimeZoneFile:=''; +- ReadTimezoneFile(GetTimezoneFile); +- GetLocalTimezone(round((now-UnixDateDelta)*24*3600)); +-end; +- +-destructor TCdCTimeZone.Destroy; +-begin +- if assigned(transitions) then +- freemem(transitions); +- if assigned(type_idxs) then +- freemem(type_idxs); +- if assigned(types) then +- freemem(types); +- if assigned(zone_names) then +- freemem(zone_names); +- if assigned(leaps) then +- freemem(leaps); +- num_transitions:=0; +- num_leaps:=0; +- num_types:=0; +- fZoneTabCnty.Free; +- fZoneTabCoord.Free; +- fZoneTabZone.Free; +- fZoneTabComment.Free; +- inherited Destroy; +-end; +- +-procedure TCdCTimeZone.Assign(Source: TCdCTimeZone); +-var i: integer; +-begin +-TimeZoneFile:=Source.TimeZoneFile; +-JD:=Source.JD; +-fZoneTabCnty.Clear; +-for i:=0 to Source.ZoneTabCnty.Count-1 do +- fZoneTabCnty.Add(Source.ZoneTabCnty[i]); +-fZoneTabCoord.Clear; +-for i:=0 to Source.ZoneTabCoord.Count-1 do +- fZoneTabCoord.Add(Source.ZoneTabCoord[i]); +-fZoneTabZone.Clear; +-for i:=0 to Source.ZoneTabZone.Count-1 do +- fZoneTabZone.Add(Source.ZoneTabZone[i]); +-fZoneTabComment.Clear; +-for i:=0 to Source.ZoneTabComment.Count-1 do +- fZoneTabComment.Add(Source.ZoneTabComment[i]); +-end; +- +-function TCdCTimeZone.find_transition(timer:longint):pttinfo; +-var +- i : longint; +-begin +- if (num_transitions=0) or (timer<transitions[0]) then +- begin +- i:=0; +- while (i<num_types) and (types[i].isdst) do +- inc(i); +- if (i=num_types) then +- i:=0; +- end +- else +- begin +- for i:=1 to num_transitions do +- if (timer<transitions[i]) then +- break; +- i:=type_idxs[i-1]; +- end; +- find_transition:=@types[i]; +-end; +- +-procedure TCdCTimeZone.GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); +-var +- info : pttinfo; +- i : longint; +-begin +-{ reset } +- fTZDaylight:=false; +- fTZSeconds:=0; +- fTZName[false]:=nil; +- fTZName[true]:=nil; +- leap_correct:=0; +- leap_hit:=0; +- fTimer:=timer; +-{ get info } +- info:=find_transition(timer); +- if not assigned(info) then +- exit; +- fTZDaylight:=info^.isdst; +- fTZSeconds:=info^.offset; +- i:=0; +- while (i<num_types) do +- begin +- ftzname[types[i].isdst]:=@zone_names[types[i].idx]; +- inc(i); +- end; +- ftzname[info^.isdst]:=@zone_names[info^.idx]; +- i:=num_leaps; +- repeat +- if i=0 then +- exit; +- dec(i); +- until (timer>leaps[i].transition); +- leap_correct:=leaps[i].change; +- if (timer=leaps[i].transition) and +- (((i=0) and (leaps[i].change>0)) or +- (leaps[i].change>leaps[i-1].change)) then +- begin +- leap_hit:=1; +- while (i>0) and +- (leaps[i].transition=leaps[i-1].transition+1) and +- (leaps[i].change=leaps[i-1].change+1) do +- begin +- inc(leap_hit); +- dec(i); +- end; +- end; +-end; +- +-procedure TCdCTimeZone.GetLocalTimezone(timer:longint); +-var +- lc,lh : longint; +-begin +- GetLocalTimezone(timer,lc,lh); +-end; +- +-procedure TCdCTimeZone.ReadTimezoneFile(fn:shortstring); +- +- procedure decode(var l:longint); +- var +- k : longint; +- p : pbyte; +- begin +- p:=pbyte(@l); +- if (p[0] and (1 shl 7))<>0 then +- k:=not 0 +- else +- k:=0; +- k:=(k shl 8) or p[0]; +- k:=(k shl 8) or p[1]; +- k:=(k shl 8) or p[2]; +- k:=(k shl 8) or p[3]; +- l:=k; +- end; +- +-const +- bufsize = 2048; +-var +- buf : array[0..bufsize-1] of byte; +- bufptr : pbyte; +- f : file; +- count : longint; +- +- procedure readfilebuf; +- begin +- bufptr := @buf[0]; +- blockread(f, buf, bufsize, count); +- end; +- +- function readbufbyte: byte; +- begin +- if bufptr > @buf[bufsize-1] then +- readfilebuf; +- readbufbyte := bufptr^; +- inc(bufptr); +- end; +- +- function readbuf(var dest; count: integer): integer; +- var +- numbytes: integer; +- begin +- readbuf := 0; +- repeat +- numbytes := @buf[bufsize-1] - bufptr + 1; +- if numbytes > count then +- numbytes := count; +- if numbytes > 0 then +- begin +- move(bufptr^, dest, numbytes); +- inc(bufptr, numbytes); +- dec(count, numbytes); +- inc(readbuf, numbytes); +- end; +- if count > 0 then +- readfilebuf +- else +- break; +- until false; +- end; +- +-var +- tzhead : ttzhead; +- i : longint; +- chars : longint; +-begin +-if fn='' then fn:='localtime'; +-if FileExists(fn) and ((FileGetAttr(fn) and faDirectory)=0) then begin +- Filemode:=0; +- system.assign(f,fn); +- reset(f,1); +- bufptr := @buf[bufsize-1]+1; +- i:=readbuf(tzhead,sizeof(tzhead)); +- if i<>sizeof(tzhead) then +- exit; +- decode(tzhead.tzh_timecnt); +- decode(tzhead.tzh_typecnt); +- decode(tzhead.tzh_charcnt); +- decode(tzhead.tzh_leapcnt); +- decode(tzhead.tzh_ttisstdcnt); +- decode(tzhead.tzh_ttisgmtcnt); +- +- num_transitions:=tzhead.tzh_timecnt; +- num_types:=tzhead.tzh_typecnt; +- chars:=tzhead.tzh_charcnt; +- +- reallocmem(transitions,num_transitions*sizeof(longint)); +- reallocmem(type_idxs,num_transitions); +- reallocmem(types,num_types*sizeof(tttinfo)); +- reallocmem(zone_names,chars); +- reallocmem(leaps,num_leaps*sizeof(tleap)); +- +- readbuf(transitions^,num_transitions*4); +- readbuf(type_idxs^,num_transitions); +- +- for i:=0 to num_transitions-1 do +- decode(transitions[i]); +- +- for i:=0 to num_types-1 do +- begin +- readbuf(types[i].offset,4); +- readbuf(types[i].isdst,1); +- readbuf(types[i].idx,1); +- decode(types[i].offset); +- types[i].isstd:=0; +- types[i].isgmt:=0; +- end; +- +- readbuf(zone_names^,chars); +- +- for i:=0 to num_leaps-1 do +- begin +- readbuf(leaps[i].transition,4); +- readbuf(leaps[i].change,4); +- decode(leaps[i].transition); +- decode(leaps[i].change); +- end; +- +- for i:=0 to tzhead.tzh_ttisstdcnt-1 do +- types[i].isstd:=byte(readbufbyte<>0); +- +- for i:=0 to tzhead.tzh_ttisgmtcnt-1 do +- types[i].isgmt:=byte(readbufbyte<>0); +- +- closefile(f); +-end; +-end; +- +-function TCdCTimeZone.GetTZName: string; +-begin +-result:=string(fTZName[fTZDaylight]); +-end; +- +-procedure TCdCTimeZone.SetDate(value: TDateTime); +-var Year, Month, Day: word; +- timer:longint; +-begin +-if value<minDate then begin +- decodedate(value,Year, Month, Day); +- Year:=minYear; +- value:=encodedate(Year, Month, Day); +-end; +-if value>maxDate then begin +- decodedate(value,Year, Month, Day); +- Year:=maxYear; +- value:=encodedate(Year, Month, Day); +-end; +-timer:=round((value-UnixDateDelta)*secday); +-if timer<>fTimer then +- GetLocalTimezone(timer); +-end; +- +-function TCdCTimeZone.GetDate:TDateTime ; +-begin +-result:=(fTimer/secday)+UnixDateDelta; +-end; +- +-procedure TCdCTimeZone.SetJD(value: double); +-var Year, Month, Day: integer; +- Hour: double; +- timer:longint; +-begin +-if value<minJD then begin +- djd(value,Year, Month, Day, Hour); +- Year:=minYear; +- value:=cjd(Year, Month, Day, Hour); +-end; +-if value>maxJD then begin +- djd(value,Year, Month, Day, Hour); +- Year:=maxYear; +- value:=cjd(Year, Month, Day, Hour); +-end; +-timer:=round((value-JDUnixDelta)*secday); +-if timer<>fTimer then +- GetLocalTimezone(timer); +-end; +- +-function TCdCTimeZone.GetJD:double ; +-begin +-result:=(fTimer/secday)+JDUnixDelta; +-end; +- +-procedure TCdCTimeZone.SetTimeZoneFile(value: string); +-begin +-if (value<>fTimeZoneFile) and fileexists(value) and ((FileGetAttr(value) and faDirectory)=0) then begin +- fTimeZoneFile:=value; +- ReadTimezoneFile(fTimezoneFile); +- GetLocalTimezone(fTimer); +-end; +-end; +- +-function TCdCTimeZone.GetTimeZoneFile:string ; +-begin +-result:=fTimeZoneFile; +-end; +- +-function TCdCTimeZone.UTC2Local(t: TDateTime):TDateTime; +-begin +- SetDate(t); +- result:=t+fTZSeconds/secday; +-end; +- +-function TCdCTimeZone.UTC2Local(t: double):double; +-begin +- SetJD(t); +- result:=t+fTZSeconds/secday; +-end; +- +-function TCdCTimeZone.Local2UTC(t: TDateTime):TDateTime; +-begin +- SetDate(t); +- result:=t-fTZSeconds/secday; +-end; +- +-function TCdCTimeZone.Local2UTC(t: double):double; +-begin +- SetJD(t); +- result:=t-fTZSeconds/secday; +-end; +- +-function TCdCTimeZone.LoadZoneTab(fn: string):boolean; +-var f: textfile; +- buf: string; +- rec: TStringList; +- i: integer; +-const tzgmt: array[1..25] of string=('Etc/GMT-12','Etc/GMT-11','Etc/GMT-10','Etc/GMT-9','Etc/GMT-8','Etc/GMT-7','Etc/GMT-6','Etc/GMT-5','Etc/GMT-4','Etc/GMT-3','Etc/GMT-2','Etc/GMT-1','Etc/GMT','Etc/GMT+1','Etc/GMT+2','Etc/GMT+3','Etc/GMT+4','Etc/GMT+5','Etc/GMT+6','Etc/GMT+7','Etc/GMT+8','Etc/GMT+9','Etc/GMT+10','Etc/GMT+11','Etc/GMT+12'); +-begin +-if fileexists(fn) then begin +- fZoneTabCnty.Clear; +- fZoneTabCoord.Clear; +- fZoneTabZone.Clear; +- fZoneTabComment.Clear; +- rec:=TStringList.Create; +- Filemode:=0; +- system.assign(f,fn); +- reset(f); +- repeat +- readln(f,buf); +- buf:=trim(buf); +- if buf='' then continue; +- if buf[1]='#' then continue; +- SplitRec(buf,#9,rec); +- if rec.Count<3 then continue; +- fZoneTabCnty.Add(rec[0]); +- fZoneTabCoord.Add(rec[1]); +- fZoneTabZone.Add(rec[2]); +- if rec.Count>3 then fZoneTabComment.Add(rec[3]) +- else fZoneTabComment.Add(''); +- until eof(f); +- closefile(f); +- for i:=1 to 25 do begin +- fZoneTabCnty.Add('ZZ'); +- fZoneTabCoord.Add(''); +- fZoneTabZone.Add(tzgmt[i]); +- fZoneTabComment.Add(''); +- end; +- result:=fZoneTabCnty.Count>0; +- rec.Free; +-end +-else +- result:=false; +-end; +- +-function TCdCTimeZone.GetNowUTC: TDateTime; +-var +- st : TSystemTime; +-begin +-{$ifdef mswindows} +- GetSystemTime(st); +- result:=SystemTimeToDateTime(st); +-{$endif} +-{$ifdef unix} +- GetLocalTime(st); +- result:=SystemTimeToDateTime(st)-(TzSeconds/secday); +-{$endif} +-end; +- +-function TCdCTimeZone.GetNowLocalTime: TDateTime; +-begin +-result:=UTC2Local(GetNowUTC); +-end; +- +-end. +- ++unit cu_tz; ++ ++{ Time Zone processing component. ++ Based on FreePascal RTL rtl/unix/timezone.inc ++ ++ Copyright (C) 2007 Patrick Chevalley pch@freesurf.ch ++ ++ This library is free software; you can redistribute it and/or modify it ++ under the terms of the GNU Library General Public License as published by ++ the Free Software Foundation; either version 2 of the License, or (at your ++ option) any later version with the following modification: ++ ++ As a special exception, the copyright holders of this library give you ++ permission to link this library with independent modules to produce an ++ executable, regardless of the license terms of these independent modules,and ++ to copy and distribute the resulting executable under terms of your choice, ++ provided that you also meet, for each linked independent module, the terms ++ and conditions of the license of that module. An independent module is a ++ module which is not derived from or based on this library. If you modify ++ this library, you may extend this exception to your version of the library, ++ but you are not obligated to do so. If you do not wish to do so, delete this ++ exception statement from your version. ++ ++ 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 library; if not, write to the Free Software Foundation, ++ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++ ++{$mode objfpc}{$H+} ++ ++interface ++ ++uses ++ {$ifdef mswindows} ++ Windows, ++ {$endif} ++ {$ifdef unix} ++ unixutil, ++ {$endif} ++ Classes, SysUtils, Math; ++ ++type ++ ttzhead=packed record ++ tzh_reserved : array[0..19] of byte; ++ tzh_ttisgmtcnt, ++ tzh_ttisstdcnt, ++ tzh_leapcnt, ++ tzh_timecnt, ++ tzh_typecnt, ++ tzh_charcnt : longint; ++ end; ++ ++ pttinfo=^tttinfo; ++ tttinfo=packed record ++ offset : longint; ++ isdst : boolean; ++ idx : byte; ++ isstd : byte; ++ isgmt : byte; ++ end; ++ ++ pleap=^tleap; ++ tleap=record ++ transition : longint; ++ change : longint; ++ end; ++ ++ TCdCTimeZone = class(TObject) ++ private ++ fTZDaylight:boolean; ++ fTZSeconds:longint; ++ fTZName: array[boolean] of pchar; ++ fTimer:longint; ++ fTimeZoneFile: string; ++ fZoneTabCnty: TStringList; ++ fZoneTabCoord: TStringList; ++ fZoneTabZone: TStringList; ++ fZoneTabComment: TStringList; ++ num_transitions, ++ num_leaps, ++ num_types : longint; ++ transitions : plongint; ++ type_idxs : pbyte; ++ types : pttinfo; ++ zone_names : pchar; ++ leaps : pleap; ++ procedure GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); ++ procedure GetLocalTimezone(timer:longint); ++ function find_transition(timer:longint):pttinfo; ++ procedure ReadTimezoneFile(fn:shortstring); ++ function GetTZName: string; ++ procedure SetDate(value: TDateTime); ++ function GetDate:TDateTime ; ++ procedure SetJD(value: double); ++ function GetJD:double ; ++ procedure SetTimeZoneFile(value: string); ++ function GetTimeZoneFile:string ; ++ function GetNowLocalTime: TDateTime; ++ function GetNowUTC: TDateTime; ++ public ++ constructor Create; ++ destructor Destroy; override; ++ procedure Assign(Source: TCdCTimeZone); ++ function LoadZoneTab(fn: string):boolean; ++ function UTC2Local(t: TDateTime):TDateTime; ++ function UTC2Local(t: double):double; // jd ++ function Local2UTC(t: TDateTime):TDateTime; ++ function Local2UTC(t: double):double; // jd ++ property TimeZoneFile: string read GetTimeZoneFile write SetTimeZoneFile; ++ property Date: TDateTime read GetDate write SetDate; ++ property JD: double read GetJD write SetJD; ++ property SecondsOffset :longint read fTZSeconds; ++ property ZoneName : string read GetTZName; ++ property Daylight:boolean read fTZDaylight; ++ property ZoneTabCnty: TStringList read fZoneTabCnty; ++ property ZoneTabCoord: TStringList read fZoneTabCoord; ++ property ZoneTabZone: TStringList read fZoneTabZone; ++ property ZoneTabComment: TStringList read fZoneTabComment; ++ property NowLocalTime: TDateTime read GetNowLocalTime; ++ property NowUTC: TDateTime read GetNowUTC; ++ end; ++ ++const ++ secday=24*3600; ++ JDUnixDelta=2440587.5; // 1.1.1970 0h ++ minJD=2415750;// 1.1.1902 risk of 32bit unixtime underflow ++ minYear=1904; // next leap year after underflow ++ maxJD=2465424;// 1.1.2038 risk of 32bit unixtime overflow ++ maxYear=2036; // last leap year before overflow ++ minDate=732; // 1.1.1902 risk of 32bit unixtime underflow ++ maxDate=50406; // 1.1.2038 risk of 32bit unixtime overflow ++ ++implementation ++ ++function Cjd(annee,mois,jour :INTEGER; Heure:double):double; ++var u,u0,u1,u2 : double; ++ gregorian : boolean; ++begin ++if annee*10000+mois*100+jour >= 15821015 then gregorian:=true else gregorian:=false; ++u:=annee; ++if mois<3 then u:=u-1; ++u0:=u+4712; ++u1:=mois+1; ++if u1<4 then u1:=u1+12; ++result:=floor(u0*365.25)+floor(30.6*u1+0.000001)+jour+heure/24-63.5; ++if gregorian then begin ++ u2:=floor(abs(u)/100)-floor(abs(u)/400); ++ if u<0 then u2:=-u2; ++ result:=result-u2+2; ++ if (u<0)and((u/100)=floor(u/100))and((u/400)<>floor(u/400)) then result:=result-1; ++end; ++end; ++ ++PROCEDURE Djd(jd:Double;VAR annee,mois,jour:INTEGER; VAR Heure:double); ++var u0,u1,u2,u3,u4 : double; ++ gregorian : boolean; ++begin ++u0:=jd+0.5; ++if int(u0)>=2299161 then gregorian:=true else gregorian:=false; ++u0:=jd+32082.5; ++if gregorian then begin ++ u1:=u0+floor(u0/36525)-floor(u0/146100)-38; ++ if jd>=1830691.5 then u1:=u1+1; ++ u0:=u0+floor(u1/36525)-floor(u1/146100)-38; ++end; ++u2:=floor(u0+123); ++u3:=floor((u2-122.2)/365.25); ++u4:=floor((u2-floor(365.25*u3))/30.6001); ++mois:=round(u4-1); ++if mois>12 then mois:=mois-12; ++jour:=round(u2-floor(365.25*u3)-floor(30.6001*u4)); ++annee:=round(u3+floor((u4-2)/12)-4800); ++heure:=(jd-floor(jd+0.5)+0.5)*24; ++end; ++ ++procedure SplitRec(buf,sep:string; var arg: TStringList); ++var i,l:integer; ++begin ++arg.clear; ++l:=length(sep); ++while pos(sep,buf)<>0 do begin ++ for i:=1 to length(buf) do begin ++ if copy(buf,i,l) = sep then begin ++ arg.add(copy(buf,1,i-1)); ++ delete(buf,1,i-1+l); ++ break; ++ end; ++ end; ++end; ++arg.add(buf); ++end; ++ ++constructor TCdCTimeZone.Create; ++begin ++ inherited Create; ++ fZoneTabCnty:=TStringList.Create; ++ fZoneTabCoord:=TStringList.Create; ++ fZoneTabZone:=TStringList.Create; ++ fZoneTabComment:=TStringList.Create; ++ fTimeZoneFile:=''; ++ ReadTimezoneFile(GetTimezoneFile); ++ GetLocalTimezone(round((now-UnixDateDelta)*24*3600)); ++end; ++ ++destructor TCdCTimeZone.Destroy; ++begin ++ if assigned(transitions) then ++ freemem(transitions); ++ if assigned(type_idxs) then ++ freemem(type_idxs); ++ if assigned(types) then ++ freemem(types); ++ if assigned(zone_names) then ++ freemem(zone_names); ++ if assigned(leaps) then ++ freemem(leaps); ++ num_transitions:=0; ++ num_leaps:=0; ++ num_types:=0; ++ fZoneTabCnty.Free; ++ fZoneTabCoord.Free; ++ fZoneTabZone.Free; ++ fZoneTabComment.Free; ++ inherited Destroy; ++end; ++ ++procedure TCdCTimeZone.Assign(Source: TCdCTimeZone); ++var i: integer; ++begin ++TimeZoneFile:=Source.TimeZoneFile; ++JD:=Source.JD; ++fZoneTabCnty.Clear; ++for i:=0 to Source.ZoneTabCnty.Count-1 do ++ fZoneTabCnty.Add(Source.ZoneTabCnty[i]); ++fZoneTabCoord.Clear; ++for i:=0 to Source.ZoneTabCoord.Count-1 do ++ fZoneTabCoord.Add(Source.ZoneTabCoord[i]); ++fZoneTabZone.Clear; ++for i:=0 to Source.ZoneTabZone.Count-1 do ++ fZoneTabZone.Add(Source.ZoneTabZone[i]); ++fZoneTabComment.Clear; ++for i:=0 to Source.ZoneTabComment.Count-1 do ++ fZoneTabComment.Add(Source.ZoneTabComment[i]); ++end; ++ ++function TCdCTimeZone.find_transition(timer:longint):pttinfo; ++var ++ i : longint; ++begin ++ if (num_transitions=0) or (timer<transitions[0]) then ++ begin ++ i:=0; ++ while (i<num_types) and (types[i].isdst) do ++ inc(i); ++ if (i=num_types) then ++ i:=0; ++ end ++ else ++ begin ++ for i:=1 to num_transitions do ++ if (timer<transitions[i]) then ++ break; ++ i:=type_idxs[i-1]; ++ end; ++ find_transition:=@types[i]; ++end; ++ ++procedure TCdCTimeZone.GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); ++var ++ info : pttinfo; ++ i : longint; ++begin ++{ reset } ++ fTZDaylight:=false; ++ fTZSeconds:=0; ++ fTZName[false]:=nil; ++ fTZName[true]:=nil; ++ leap_correct:=0; ++ leap_hit:=0; ++ fTimer:=timer; ++{ get info } ++ info:=find_transition(timer); ++ if not assigned(info) then ++ exit; ++ fTZDaylight:=info^.isdst; ++ fTZSeconds:=info^.offset; ++ i:=0; ++ while (i<num_types) do ++ begin ++ ftzname[types[i].isdst]:=@zone_names[types[i].idx]; ++ inc(i); ++ end; ++ ftzname[info^.isdst]:=@zone_names[info^.idx]; ++ i:=num_leaps; ++ repeat ++ if i=0 then ++ exit; ++ dec(i); ++ until (timer>leaps[i].transition); ++ leap_correct:=leaps[i].change; ++ if (timer=leaps[i].transition) and ++ (((i=0) and (leaps[i].change>0)) or ++ (leaps[i].change>leaps[i-1].change)) then ++ begin ++ leap_hit:=1; ++ while (i>0) and ++ (leaps[i].transition=leaps[i-1].transition+1) and ++ (leaps[i].change=leaps[i-1].change+1) do ++ begin ++ inc(leap_hit); ++ dec(i); ++ end; ++ end; ++end; ++ ++procedure TCdCTimeZone.GetLocalTimezone(timer:longint); ++var ++ lc,lh : longint; ++begin ++ GetLocalTimezone(timer,lc,lh); ++end; ++ ++procedure TCdCTimeZone.ReadTimezoneFile(fn:shortstring); ++ ++ procedure decode(var l:longint); ++ var ++ k : longint; ++ p : pbyte; ++ begin ++ p:=pbyte(@l); ++ if (p[0] and (1 shl 7))<>0 then ++ k:=not 0 ++ else ++ k:=0; ++ k:=(k shl 8) or p[0]; ++ k:=(k shl 8) or p[1]; ++ k:=(k shl 8) or p[2]; ++ k:=(k shl 8) or p[3]; ++ l:=k; ++ end; ++ ++const ++ bufsize = 2048; ++var ++ buf : array[0..bufsize-1] of byte; ++ bufptr : pbyte; ++ f : file; ++ count : longint; ++ ++ procedure readfilebuf; ++ begin ++ bufptr := @buf[0]; ++ blockread(f, buf, bufsize, count); ++ end; ++ ++ function readbufbyte: byte; ++ begin ++ if bufptr > @buf[bufsize-1] then ++ readfilebuf; ++ readbufbyte := bufptr^; ++ inc(bufptr); ++ end; ++ ++ function readbuf(var dest; count: integer): integer; ++ var ++ numbytes: integer; ++ begin ++ readbuf := 0; ++ repeat ++ numbytes := @buf[bufsize-1] - bufptr + 1; ++ if numbytes > count then ++ numbytes := count; ++ if numbytes > 0 then ++ begin ++ move(bufptr^, dest, numbytes); ++ inc(bufptr, numbytes); ++ dec(count, numbytes); ++ inc(readbuf, numbytes); ++ end; ++ if count > 0 then ++ readfilebuf ++ else ++ break; ++ until false; ++ end; ++ ++var ++ tzhead : ttzhead; ++ i : longint; ++ chars : longint; ++begin ++if fn='' then fn:='localtime'; ++if FileExists(fn) and ((FileGetAttr(fn) and faDirectory)=0) then begin ++ Filemode:=0; ++ system.assign(f,fn); ++ reset(f,1); ++ bufptr := @buf[bufsize-1]+1; ++ i:=readbuf(tzhead,sizeof(tzhead)); ++ if i<>sizeof(tzhead) then ++ exit; ++ decode(tzhead.tzh_timecnt); ++ decode(tzhead.tzh_typecnt); ++ decode(tzhead.tzh_charcnt); ++ decode(tzhead.tzh_leapcnt); ++ decode(tzhead.tzh_ttisstdcnt); ++ decode(tzhead.tzh_ttisgmtcnt); ++ ++ num_transitions:=tzhead.tzh_timecnt; ++ num_types:=tzhead.tzh_typecnt; ++ chars:=tzhead.tzh_charcnt; ++ ++ reallocmem(transitions,num_transitions*sizeof(longint)); ++ reallocmem(type_idxs,num_transitions); ++ reallocmem(types,num_types*sizeof(tttinfo)); ++ reallocmem(zone_names,chars); ++ reallocmem(leaps,num_leaps*sizeof(tleap)); ++ ++ readbuf(transitions^,num_transitions*4); ++ readbuf(type_idxs^,num_transitions); ++ ++ for i:=0 to num_transitions-1 do ++ decode(transitions[i]); ++ ++ for i:=0 to num_types-1 do ++ begin ++ readbuf(types[i].offset,4); ++ readbuf(types[i].isdst,1); ++ readbuf(types[i].idx,1); ++ decode(types[i].offset); ++ types[i].isstd:=0; ++ types[i].isgmt:=0; ++ end; ++ ++ readbuf(zone_names^,chars); ++ ++ for i:=0 to num_leaps-1 do ++ begin ++ readbuf(leaps[i].transition,4); ++ readbuf(leaps[i].change,4); ++ decode(leaps[i].transition); ++ decode(leaps[i].change); ++ end; ++ ++ for i:=0 to tzhead.tzh_ttisstdcnt-1 do ++ types[i].isstd:=byte(readbufbyte<>0); ++ ++ for i:=0 to tzhead.tzh_ttisgmtcnt-1 do ++ types[i].isgmt:=byte(readbufbyte<>0); ++ ++ closefile(f); ++end; ++end; ++ ++function TCdCTimeZone.GetTZName: string; ++begin ++result:=string(fTZName[fTZDaylight]); ++end; ++ ++procedure TCdCTimeZone.SetDate(value: TDateTime); ++var Year, Month, Day: word; ++ timer:longint; ++begin ++if value<minDate then begin ++ decodedate(value,Year, Month, Day); ++ Year:=minYear; ++ value:=encodedate(Year, Month, Day); ++end; ++if value>maxDate then begin ++ decodedate(value,Year, Month, Day); ++ Year:=maxYear; ++ value:=encodedate(Year, Month, Day); ++end; ++timer:=round((value-UnixDateDelta)*secday); ++if timer<>fTimer then ++ GetLocalTimezone(timer); ++end; ++ ++function TCdCTimeZone.GetDate:TDateTime ; ++begin ++result:=(fTimer/secday)+UnixDateDelta; ++end; ++ ++procedure TCdCTimeZone.SetJD(value: double); ++var Year, Month, Day: integer; ++ Hour: double; ++ timer:longint; ++begin ++if value<minJD then begin ++ djd(value,Year, Month, Day, Hour); ++ Year:=minYear; ++ value:=cjd(Year, Month, Day, Hour); ++end; ++if value>maxJD then begin ++ djd(value,Year, Month, Day, Hour); ++ Year:=maxYear; ++ value:=cjd(Year, Month, Day, Hour); ++end; ++timer:=round((value-JDUnixDelta)*secday); ++if timer<>fTimer then ++ GetLocalTimezone(timer); ++end; ++ ++function TCdCTimeZone.GetJD:double ; ++begin ++result:=(fTimer/secday)+JDUnixDelta; ++end; ++ ++procedure TCdCTimeZone.SetTimeZoneFile(value: string); ++begin ++if (value<>fTimeZoneFile) and fileexists(value) and ((FileGetAttr(value) and faDirectory)=0) then begin ++ fTimeZoneFile:=value; ++ ReadTimezoneFile(fTimezoneFile); ++ GetLocalTimezone(fTimer); ++end; ++end; ++ ++function TCdCTimeZone.GetTimeZoneFile:string ; ++begin ++result:=fTimeZoneFile; ++end; ++ ++function TCdCTimeZone.UTC2Local(t: TDateTime):TDateTime; ++begin ++ SetDate(t); ++ result:=t+fTZSeconds/secday; ++end; ++ ++function TCdCTimeZone.UTC2Local(t: double):double; ++begin ++ SetJD(t); ++ result:=t+fTZSeconds/secday; ++end; ++ ++function TCdCTimeZone.Local2UTC(t: TDateTime):TDateTime; ++begin ++ SetDate(t); ++ result:=t-fTZSeconds/secday; ++end; ++ ++function TCdCTimeZone.Local2UTC(t: double):double; ++begin ++ SetJD(t); ++ result:=t-fTZSeconds/secday; ++end; ++ ++function TCdCTimeZone.LoadZoneTab(fn: string):boolean; ++var f: textfile; ++ buf: string; ++ rec: TStringList; ++ i: integer; ++const tzgmt: array[1..25] of string=('Etc/GMT-12','Etc/GMT-11','Etc/GMT-10','Etc/GMT-9','Etc/GMT-8','Etc/GMT-7','Etc/GMT-6','Etc/GMT-5','Etc/GMT-4','Etc/GMT-3','Etc/GMT-2','Etc/GMT-1','Etc/GMT','Etc/GMT+1','Etc/GMT+2','Etc/GMT+3','Etc/GMT+4','Etc/GMT+5','Etc/GMT+6','Etc/GMT+7','Etc/GMT+8','Etc/GMT+9','Etc/GMT+10','Etc/GMT+11','Etc/GMT+12'); ++begin ++if fileexists(fn) then begin ++ fZoneTabCnty.Clear; ++ fZoneTabCoord.Clear; ++ fZoneTabZone.Clear; ++ fZoneTabComment.Clear; ++ rec:=TStringList.Create; ++ Filemode:=0; ++ system.assign(f,fn); ++ reset(f); ++ repeat ++ readln(f,buf); ++ buf:=trim(buf); ++ if buf='' then continue; ++ if buf[1]='#' then continue; ++ SplitRec(buf,#9,rec); ++ if rec.Count<3 then continue; ++ fZoneTabCnty.Add(rec[0]); ++ fZoneTabCoord.Add(rec[1]); ++ fZoneTabZone.Add(rec[2]); ++ if rec.Count>3 then fZoneTabComment.Add(rec[3]) ++ else fZoneTabComment.Add(''); ++ until eof(f); ++ closefile(f); ++ for i:=1 to 25 do begin ++ fZoneTabCnty.Add('ZZ'); ++ fZoneTabCoord.Add(''); ++ fZoneTabZone.Add(tzgmt[i]); ++ fZoneTabComment.Add(''); ++ end; ++ result:=fZoneTabCnty.Count>0; ++ rec.Free; ++end ++else ++ result:=false; ++end; ++ ++function TCdCTimeZone.GetNowUTC: TDateTime; ++var ++ st : TSystemTime; ++begin ++{$ifdef mswindows} ++ GetSystemTime(st); ++ result:=SystemTimeToDateTime(st); ++{$endif} ++{$ifdef unix} ++ GetLocalTime(st); ++ result:=SystemTimeToDateTime(st)-(TzSeconds/secday); ++{$endif} ++end; ++ ++function TCdCTimeZone.GetNowLocalTime: TDateTime; ++begin ++result:=UTC2Local(GetNowUTC); ++end; ++ ++end. ++ +diff -ur skychart_3.2/skychart/makepo.cmd skychart_3.2_up/skychart/makepo.cmd +--- skychart_3.2/skychart/makepo.cmd 2008-10-09 19:29:16.000000000 +0200 ++++ skychart_3.2_up/skychart/makepo.cmd 2011-03-09 15:18:23.117276415 +0100 +@@ -1,13 +1,13 @@ +-REM Run this script to update all the translations after modification of a +-REM resource string in u_translation.pas and compilation of the program. +- +-REM Update first the path to your Lazarus installation and run "make" in lazarus/tools +- +- +-D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_translation.rst -o ..\tools\data\language\skychart.po +-D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\skychart.po +- +-D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_help.rst -o ..\tools\data\language\help.po +-D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\help.po +- +-pause ++REM Run this script to update all the translations after modification of a ++REM resource string in u_translation.pas and compilation of the program. ++ ++REM Update first the path to your Lazarus installation and run "make" in lazarus/tools ++ ++ ++D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_translation.rst -o ..\tools\data\language\skychart.po ++D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\skychart.po ++ ++D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_help.rst -o ..\tools\data\language\help.po ++D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\help.po ++ ++pause +diff -ur skychart_3.2/skychart/pu_addlabel.lrs skychart_3.2_up/skychart/pu_addlabel.lrs +--- skychart_3.2/skychart/pu_addlabel.lrs 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_addlabel.lrs 2011-03-09 15:18:23.123275677 +0100 +@@ -1,36 +1,36 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tf_addlabel','FORMDATA',[ +- 'TPF0'#11'Tf_addlabel'#10'f_addlabel'#4'Left'#3'@'#1#6'Height'#3#149#0#3'Top' +- +#3#208#0#5'Width'#3#8#1#13'ActiveControl'#7#5'Edit1'#11'BorderIcons'#11#12'b' +- +'iSystemMenu'#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#9'Add Label'#12'C' +- +'lientHeight'#3#149#0#11'ClientWidth'#3#8#1#11'Font.Height'#2#245#8'OnCreate' +- +#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLa' +- +'bel'#6'Label1'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#2#30#7'Capt' +- +'ion'#6#6'Label:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#12#6'H' +- +'eight'#2#14#3'Top'#2'-'#5'Width'#2#27#7'Caption'#6#5'Type:'#11'ParentColor' +- +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2#8#5'Width'#3 +- +#192#0#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#0#0#0#9'TComboBox'#9'Comb' +- +'oBox1'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'('#5'Width'#3#192#0#10'ItemHeig' +- +'ht'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Star'#6#13'Variable Star'#6 +- +#13'Multiple Star'#6#6'Nebula'#6#12'Solar System'#6#13'Constellation'#6#11'O' +- +'ther label'#6#17'Chart Information'#0#8'OnSelect'#7#15'ComboBox1Select'#8'T' +- +'abOrder'#2#1#4'Text'#6#4'Star'#0#0#7'TButton'#7'Button1'#4'Left'#2'c'#6'Hei' +- +'ght'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' +- +'tion'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#2#0#0#7'TButto' +- +'n'#7'Button2'#4'Left'#3#182#0#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'B' +- +'orderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalRe' +- +'sult'#2#2#8'TabOrder'#2#3#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#12#6 +- +'Height'#2','#3'Top'#2'@'#5'Width'#3#236#0#8'AutoFill'#9#7'Caption'#6#9'Alig' +- +'nment'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' +- +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' +- +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' +- +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' +- +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 +- +'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2#29#11'ClientWidth'#3#232 +- +#0#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Left'#6#6'Center' +- +#6#5'Right'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#4#0#0#7'TButto' +- +'n'#7'Button3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'Bord' +- +'erSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Clic' +- +'k'#8'TabOrder'#2#5#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tf_addlabel','FORMDATA',[ ++ 'TPF0'#11'Tf_addlabel'#10'f_addlabel'#4'Left'#3'@'#1#6'Height'#3#149#0#3'Top' ++ +#3#208#0#5'Width'#3#8#1#13'ActiveControl'#7#5'Edit1'#11'BorderIcons'#11#12'b' ++ +'iSystemMenu'#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#9'Add Label'#12'C' ++ +'lientHeight'#3#149#0#11'ClientWidth'#3#8#1#11'Font.Height'#2#245#8'OnCreate' ++ +#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLa' ++ +'bel'#6'Label1'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#2#30#7'Capt' ++ +'ion'#6#6'Label:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#12#6'H' ++ +'eight'#2#14#3'Top'#2'-'#5'Width'#2#27#7'Caption'#6#5'Type:'#11'ParentColor' ++ +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2#8#5'Width'#3 ++ +#192#0#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#0#0#0#9'TComboBox'#9'Comb' ++ +'oBox1'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'('#5'Width'#3#192#0#10'ItemHeig' ++ +'ht'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Star'#6#13'Variable Star'#6 ++ +#13'Multiple Star'#6#6'Nebula'#6#12'Solar System'#6#13'Constellation'#6#11'O' ++ +'ther label'#6#17'Chart Information'#0#8'OnSelect'#7#15'ComboBox1Select'#8'T' ++ +'abOrder'#2#1#4'Text'#6#4'Star'#0#0#7'TButton'#7'Button1'#4'Left'#2'c'#6'Hei' ++ +'ght'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' ++ +'tion'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#2#0#0#7'TButto' ++ +'n'#7'Button2'#4'Left'#3#182#0#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'B' ++ +'orderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalRe' ++ +'sult'#2#2#8'TabOrder'#2#3#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#12#6 ++ +'Height'#2','#3'Top'#2'@'#5'Width'#3#236#0#8'AutoFill'#9#7'Caption'#6#9'Alig' ++ +'nment'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' ++ +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' ++ +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' ++ +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' ++ +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 ++ +'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2#29#11'ClientWidth'#3#232 ++ +#0#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Left'#6#6'Center' ++ +#6#5'Right'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#4#0#0#7'TButto' ++ +'n'#7'Button3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'Bord' ++ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Clic' ++ +'k'#8'TabOrder'#2#5#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_ascomclient.lfm skychart_3.2_up/skychart/pu_ascomclient.lfm +--- skychart_3.2/skychart/pu_ascomclient.lfm 2010-09-01 12:44:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_ascomclient.lfm 2011-03-09 15:18:23.124275554 +0100 +@@ -1,351 +1,351 @@ +-object pop_scope: Tpop_scope +- Left = 1081 +- Height = 419 +- Top = 223 +- Width = 277 +- HorzScrollBar.Visible = False +- VertScrollBar.Visible = False +- ActiveControl = Edit1 +- BorderStyle = bsToolWindow +- Caption = 'ASCOM Telescope Interface' +- ClientHeight = 419 +- ClientWidth = 277 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- OnCloseQuery = kill +- OnDestroy = FormDestroy +- Position = poDefault +- LCLVersion = '0.9.29' +- object GroupBox3: TGroupBox +- Left = 8 +- Height = 65 +- Top = 344 +- Width = 257 +- ClientHeight = 61 +- ClientWidth = 253 +- TabOrder = 0 +- object SpeedButton1: TSpeedButton +- Left = 8 +- Height = 22 +- Top = 11 +- Width = 65 +- Caption = 'Connect' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = setresClick +- end +- object SpeedButton2: TSpeedButton +- Left = 184 +- Height = 22 +- Top = 11 +- Width = 65 +- Caption = 'Hide' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton2Click +- end +- object SpeedButton5: TSpeedButton +- Left = 112 +- Height = 22 +- Top = 11 +- Width = 65 +- Caption = 'Disconnect' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton5Click +- end +- object led: TEdit +- Left = 80 +- Height = 20 +- Top = 12 +- Width = 25 +- AutoSize = False +- Color = clRed +- ReadOnly = True +- TabStop = False +- TabOrder = 0 +- end +- end +- object GroupBox5: TGroupBox +- Left = 8 +- Height = 104 +- Top = 120 +- Width = 257 +- Caption = 'Observatory ' +- ClientHeight = 84 +- ClientWidth = 253 +- TabOrder = 1 +- object Label15: TLabel +- Left = 4 +- Height = 19 +- Top = 20 +- Width = 54 +- Caption = 'Latitude : ' +- ParentColor = False +- end +- object Label16: TLabel +- Left = 124 +- Height = 19 +- Top = 21 +- Width = 57 +- Caption = 'Longitude :' +- ParentColor = False +- end +- object SpeedButton8: TSpeedButton +- Left = 136 +- Height = 22 +- Top = 51 +- Width = 105 +- Caption = 'Set Time' +- Color = clBtnFace +- Enabled = False +- NumGlyphs = 0 +- OnClick = SpeedButton8Click +- end +- object SpeedButton9: TSpeedButton +- Left = 16 +- Height = 22 +- Top = 51 +- Width = 105 +- Caption = 'Set Location' +- Color = clBtnFace +- Enabled = False +- NumGlyphs = 0 +- OnClick = SpeedButton9Click +- end +- object lat: TEdit +- Left = 50 +- Height = 26 +- Top = 16 +- Width = 70 +- Color = clBtnFace +- ReadOnly = True +- TabStop = False +- TabOrder = 0 +- Text = '0' +- end +- object long: TEdit +- Left = 180 +- Height = 26 +- Top = 18 +- Width = 70 +- Color = clBtnFace +- ReadOnly = True +- TabStop = False +- TabOrder = 1 +- Text = '0' +- end +- end +- object Panel1: TPanel +- Left = 8 +- Height = 101 +- Top = 232 +- Width = 257 +- ClientHeight = 101 +- ClientWidth = 257 +- TabOrder = 2 +- object LabelAlpha: TLabel +- Left = 26 +- Height = 19 +- Top = 10 +- Width = 22 +- Caption = 'RA ' +- ParentColor = False +- end +- object LabelDelta: TLabel +- Left = 128 +- Height = 19 +- Top = 10 +- Width = 24 +- Caption = 'DEC' +- ParentColor = False +- end +- object Label11: TLabel +- Left = 26 +- Height = 19 +- Top = 34 +- Width = 15 +- Caption = 'AZ' +- ParentColor = False +- end +- object Label12: TLabel +- Left = 128 +- Height = 19 +- Top = 34 +- Width = 20 +- Caption = 'ALT' +- ParentColor = False +- end +- object SpeedButton6: TSpeedButton +- Left = 92 +- Height = 22 +- Top = 63 +- Width = 73 +- Caption = 'Abort Slew' +- Color = clBtnFace +- Font.Color = clRed +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- Font.Style = [fsBold] +- NumGlyphs = 0 +- OnClick = SpeedButton6Click +- ParentFont = False +- end +- object SpeedButton4: TSpeedButton +- Left = 176 +- Height = 22 +- Top = 63 +- Width = 65 +- Caption = 'Help...' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton4Click +- end +- object pos_x: TEdit +- Left = 44 +- Height = 26 +- Top = 6 +- Width = 70 +- ReadOnly = True +- TabStop = False +- TabOrder = 0 +- end +- object pos_y: TEdit +- Left = 160 +- Height = 26 +- Top = 6 +- Width = 70 +- ReadOnly = True +- TabStop = False +- TabOrder = 1 +- end +- object az_x: TEdit +- Left = 44 +- Height = 26 +- Top = 30 +- Width = 70 +- ReadOnly = True +- TabStop = False +- TabOrder = 2 +- end +- object alt_y: TEdit +- Left = 160 +- Height = 26 +- Top = 30 +- Width = 70 +- ReadOnly = True +- TabStop = False +- TabOrder = 3 +- end +- object ShowAltAz: TCheckBox +- Left = 8 +- Height = 22 +- Top = 32 +- Width = 23 +- TabOrder = 4 +- end +- object TrackingBtn: TSpeedButton +- Left = 8 +- Height = 22 +- Top = 63 +- Width = 71 +- Caption = 'Tracking' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = TrackingBtnClick +- end +- object trackingled: TEdit +- Left = 8 +- Height = 16 +- Top = 84 +- Width = 72 +- AutoSize = False +- Color = clRed +- ReadOnly = True +- TabStop = False +- TabOrder = 5 +- end +- end +- object GroupBox1: TGroupBox +- Left = 8 +- Height = 105 +- Top = 0 +- Width = 257 +- Caption = 'Driver Selection' +- ClientHeight = 85 +- ClientWidth = 253 +- TabOrder = 3 +- object SpeedButton3: TSpeedButton +- Left = 176 +- Height = 22 +- Top = 9 +- Width = 65 +- Caption = 'Select' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton3Click +- end +- object Label1: TLabel +- Left = 8 +- Height = 19 +- Top = 56 +- Width = 73 +- Caption = 'Refresh rate :' +- ParentColor = False +- end +- object SpeedButton7: TSpeedButton +- Left = 176 +- Height = 22 +- Top = 32 +- Width = 65 +- Caption = 'Configure' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton7Click +- end +- object SpeedButton11: TSpeedButton +- Left = 176 +- Height = 22 +- Top = 55 +- Width = 65 +- Caption = 'About' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton11Click +- end +- object Edit1: TEdit +- Left = 8 +- Height = 26 +- Top = 24 +- Width = 153 +- Color = clBtnFace +- ReadOnly = True +- TabStop = False +- TabOrder = 0 +- end +- object ReadIntBox: TComboBox +- Left = 88 +- Height = 26 +- Top = 52 +- Width = 73 +- ItemHeight = 0 +- ItemIndex = 3 +- Items.Strings = ( +- '100' +- '250' +- '500' +- '1000' +- '2000' +- ) +- OnChange = ReadIntBoxChange +- TabOrder = 1 +- Text = '1000' +- end +- end +- object Timer1: TTimer +- Enabled = False +- OnTimer = Timer1Timer +- left = 240 +- top = 8 +- end ++object pop_scope: Tpop_scope ++ Left = 1081 ++ Height = 419 ++ Top = 223 ++ Width = 277 ++ HorzScrollBar.Visible = False ++ VertScrollBar.Visible = False ++ ActiveControl = Edit1 ++ BorderStyle = bsToolWindow ++ Caption = 'ASCOM Telescope Interface' ++ ClientHeight = 419 ++ ClientWidth = 277 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ OnCloseQuery = kill ++ OnDestroy = FormDestroy ++ Position = poDefault ++ LCLVersion = '0.9.29' ++ object GroupBox3: TGroupBox ++ Left = 8 ++ Height = 65 ++ Top = 344 ++ Width = 257 ++ ClientHeight = 61 ++ ClientWidth = 253 ++ TabOrder = 0 ++ object SpeedButton1: TSpeedButton ++ Left = 8 ++ Height = 22 ++ Top = 11 ++ Width = 65 ++ Caption = 'Connect' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = setresClick ++ end ++ object SpeedButton2: TSpeedButton ++ Left = 184 ++ Height = 22 ++ Top = 11 ++ Width = 65 ++ Caption = 'Hide' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton2Click ++ end ++ object SpeedButton5: TSpeedButton ++ Left = 112 ++ Height = 22 ++ Top = 11 ++ Width = 65 ++ Caption = 'Disconnect' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton5Click ++ end ++ object led: TEdit ++ Left = 80 ++ Height = 20 ++ Top = 12 ++ Width = 25 ++ AutoSize = False ++ Color = clRed ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 0 ++ end ++ end ++ object GroupBox5: TGroupBox ++ Left = 8 ++ Height = 104 ++ Top = 120 ++ Width = 257 ++ Caption = 'Observatory ' ++ ClientHeight = 84 ++ ClientWidth = 253 ++ TabOrder = 1 ++ object Label15: TLabel ++ Left = 4 ++ Height = 19 ++ Top = 20 ++ Width = 54 ++ Caption = 'Latitude : ' ++ ParentColor = False ++ end ++ object Label16: TLabel ++ Left = 124 ++ Height = 19 ++ Top = 21 ++ Width = 57 ++ Caption = 'Longitude :' ++ ParentColor = False ++ end ++ object SpeedButton8: TSpeedButton ++ Left = 136 ++ Height = 22 ++ Top = 51 ++ Width = 105 ++ Caption = 'Set Time' ++ Color = clBtnFace ++ Enabled = False ++ NumGlyphs = 0 ++ OnClick = SpeedButton8Click ++ end ++ object SpeedButton9: TSpeedButton ++ Left = 16 ++ Height = 22 ++ Top = 51 ++ Width = 105 ++ Caption = 'Set Location' ++ Color = clBtnFace ++ Enabled = False ++ NumGlyphs = 0 ++ OnClick = SpeedButton9Click ++ end ++ object lat: TEdit ++ Left = 50 ++ Height = 26 ++ Top = 16 ++ Width = 70 ++ Color = clBtnFace ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 0 ++ Text = '0' ++ end ++ object long: TEdit ++ Left = 180 ++ Height = 26 ++ Top = 18 ++ Width = 70 ++ Color = clBtnFace ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 1 ++ Text = '0' ++ end ++ end ++ object Panel1: TPanel ++ Left = 8 ++ Height = 101 ++ Top = 232 ++ Width = 257 ++ ClientHeight = 101 ++ ClientWidth = 257 ++ TabOrder = 2 ++ object LabelAlpha: TLabel ++ Left = 26 ++ Height = 19 ++ Top = 10 ++ Width = 22 ++ Caption = 'RA ' ++ ParentColor = False ++ end ++ object LabelDelta: TLabel ++ Left = 128 ++ Height = 19 ++ Top = 10 ++ Width = 24 ++ Caption = 'DEC' ++ ParentColor = False ++ end ++ object Label11: TLabel ++ Left = 26 ++ Height = 19 ++ Top = 34 ++ Width = 15 ++ Caption = 'AZ' ++ ParentColor = False ++ end ++ object Label12: TLabel ++ Left = 128 ++ Height = 19 ++ Top = 34 ++ Width = 20 ++ Caption = 'ALT' ++ ParentColor = False ++ end ++ object SpeedButton6: TSpeedButton ++ Left = 92 ++ Height = 22 ++ Top = 63 ++ Width = 73 ++ Caption = 'Abort Slew' ++ Color = clBtnFace ++ Font.Color = clRed ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ Font.Style = [fsBold] ++ NumGlyphs = 0 ++ OnClick = SpeedButton6Click ++ ParentFont = False ++ end ++ object SpeedButton4: TSpeedButton ++ Left = 176 ++ Height = 22 ++ Top = 63 ++ Width = 65 ++ Caption = 'Help...' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton4Click ++ end ++ object pos_x: TEdit ++ Left = 44 ++ Height = 26 ++ Top = 6 ++ Width = 70 ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 0 ++ end ++ object pos_y: TEdit ++ Left = 160 ++ Height = 26 ++ Top = 6 ++ Width = 70 ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 1 ++ end ++ object az_x: TEdit ++ Left = 44 ++ Height = 26 ++ Top = 30 ++ Width = 70 ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 2 ++ end ++ object alt_y: TEdit ++ Left = 160 ++ Height = 26 ++ Top = 30 ++ Width = 70 ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 3 ++ end ++ object ShowAltAz: TCheckBox ++ Left = 8 ++ Height = 22 ++ Top = 32 ++ Width = 23 ++ TabOrder = 4 ++ end ++ object TrackingBtn: TSpeedButton ++ Left = 8 ++ Height = 22 ++ Top = 63 ++ Width = 71 ++ Caption = 'Tracking' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = TrackingBtnClick ++ end ++ object trackingled: TEdit ++ Left = 8 ++ Height = 16 ++ Top = 84 ++ Width = 72 ++ AutoSize = False ++ Color = clRed ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 5 ++ end ++ end ++ object GroupBox1: TGroupBox ++ Left = 8 ++ Height = 105 ++ Top = 0 ++ Width = 257 ++ Caption = 'Driver Selection' ++ ClientHeight = 85 ++ ClientWidth = 253 ++ TabOrder = 3 ++ object SpeedButton3: TSpeedButton ++ Left = 176 ++ Height = 22 ++ Top = 9 ++ Width = 65 ++ Caption = 'Select' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton3Click ++ end ++ object Label1: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 56 ++ Width = 73 ++ Caption = 'Refresh rate :' ++ ParentColor = False ++ end ++ object SpeedButton7: TSpeedButton ++ Left = 176 ++ Height = 22 ++ Top = 32 ++ Width = 65 ++ Caption = 'Configure' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton7Click ++ end ++ object SpeedButton11: TSpeedButton ++ Left = 176 ++ Height = 22 ++ Top = 55 ++ Width = 65 ++ Caption = 'About' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton11Click ++ end ++ object Edit1: TEdit ++ Left = 8 ++ Height = 26 ++ Top = 24 ++ Width = 153 ++ Color = clBtnFace ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 0 ++ end ++ object ReadIntBox: TComboBox ++ Left = 88 ++ Height = 26 ++ Top = 52 ++ Width = 73 ++ ItemHeight = 0 ++ ItemIndex = 3 ++ Items.Strings = ( ++ '100' ++ '250' ++ '500' ++ '1000' ++ '2000' ++ ) ++ OnChange = ReadIntBoxChange ++ TabOrder = 1 ++ Text = '1000' ++ end ++ end ++ object Timer1: TTimer ++ Enabled = False ++ OnTimer = Timer1Timer ++ left = 240 ++ top = 8 ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_ascomclient.pas skychart_3.2_up/skychart/pu_ascomclient.pas +--- skychart_3.2/skychart/pu_ascomclient.pas 2010-09-01 12:44:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_ascomclient.pas 2011-03-09 15:18:23.124275554 +0100 +@@ -1,679 +1,679 @@ +-unit pu_ascomclient; +- +-{$MODE objfpc}{$H+} +- +-{------------- interface for ASCOM telescope driver. ---------------------------- +- +-Copyright (C) 2000 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +- +--------------------------------------------------------------------------------} +- +-interface +- +-uses +- {$ifdef mswindows} +- Variants, comobj, Windows, ShlObj, ShellAPI, +- {$endif} +- LCLIntf, u_util, +- Messages, SysUtils, Classes, Graphics, Controls, +- Forms, Dialogs, +- StdCtrls, Buttons, inifiles, ComCtrls, Menus, ExtCtrls; +- +-type +- +- { Tpop_scope } +- +- Tpop_scope = class(TForm) +- GroupBox3: TGroupBox; +- trackingled: TEdit; +- SpeedButton1: TSpeedButton; +- TrackingBtn: TSpeedButton; +- SpeedButton2: TSpeedButton; +- SpeedButton5: TSpeedButton; +- led: TEdit; +- GroupBox5: TGroupBox; +- Label15: TLabel; +- Label16: TLabel; +- lat: TEdit; +- long: TEdit; +- Panel1: TPanel; +- LabelAlpha: TLabel; +- LabelDelta: TLabel; +- Label11: TLabel; +- Label12: TLabel; +- pos_x: TEdit; +- pos_y: TEdit; +- az_x: TEdit; +- alt_y: TEdit; +- ShowAltAz: TCheckBox; +- Timer1: TTimer; +- GroupBox1: TGroupBox; +- Edit1: TEdit; +- SpeedButton3: TSpeedButton; +- ReadIntBox: TComboBox; +- Label1: TLabel; +- SpeedButton7: TSpeedButton; +- SpeedButton6: TSpeedButton; +- SpeedButton8: TSpeedButton; +- SpeedButton9: TSpeedButton; +- SpeedButton4: TSpeedButton; +- SpeedButton11: TSpeedButton; +- {Utility and form functions} +- procedure kill(Sender: TObject; var CanClose: Boolean); +- procedure Timer1Timer(Sender: TObject); +- procedure setresClick(Sender: TObject); +- procedure SaveConfig; +- procedure ReadIntBoxChange(Sender: TObject); +- procedure SpeedButton5Click(Sender: TObject); +- procedure SpeedButton2Click(Sender: TObject); +- procedure SpeedButton4Click(Sender: TObject); +- procedure SpeedButton6Click(Sender: TObject); +- procedure SpeedButton3Click(Sender: TObject); +- procedure SpeedButton7Click(Sender: TObject); +- procedure SpeedButton9Click(Sender: TObject); +- procedure SpeedButton8Click(Sender: TObject); +- procedure FormDestroy(Sender: TObject); +- procedure TrackingBtnClick(Sender: TObject); +- procedure UpdTrackingButton; +- procedure SpeedButton11Click(Sender: TObject); +- private +- { Private declarations } +- FConfig: string; +- public +- { Public declarations } +- function ReadConfig(ConfigPath : shortstring):boolean; +- end; +- +- +-Procedure ScopeShow; +-Procedure ScopeShowModal(var ok : boolean); +-Procedure ScopeConnect(var ok : boolean); +-Procedure ScopeDisconnect(var ok : boolean); +-Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); +-Procedure ScopeGetEqSys(var EqSys : double); +-Procedure ScopeSetObs(la,lo : double); +-Procedure ScopeAlign(source : string; ra,dec : single); +-Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); +-Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); +-Procedure ScopeGoto(ar,de : single; var ok : boolean); +-Procedure ScopeAbortSlew; +-Procedure ScopeReset; +-Function ScopeInitialized : boolean ; +-Function ScopeConnected : boolean ; +-Procedure ScopeClose; +-Procedure ScopeReadConfig(ConfigPath : shortstring); +- +-var +- pop_scope: Tpop_scope; +- +-implementation +- +- +-{$R *.lfm} +- +-var CoordLock : boolean = false; +- Initialized : boolean = false; +- Appdir : string; +- T : Variant; +- curdeg_x, curdeg_y :double; // current equatorial position in degrees +- cur_az, cur_alt :double; // current alt-az position in degrees +- Longitude : single; // Observatory longitude (Negative East of Greenwich} +- Latitude : single; // Observatory latitude +- +- +-const crlf=chr(10)+chr(13); +- +-{------------------------------------------------------------------------------- +- +- Cartes du Ciel Dll compatibility functions +- +---------------------------------------------------------------------------------} +-Procedure ShowCoordinates; +-begin +-{$ifdef mswindows} +-with pop_scope do begin +- if ScopeInitialized then begin +- try +- Curdeg_x:=T.RightAscension*15; +- Curdeg_y:=T.Declination; +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- if ShowAltAz.checked then begin +- try +- Cur_az:=T.Azimuth; +- Cur_alt:=T.Altitude; +- except +- ShowAltAz.checked:=false; +- end; +- end; +- pos_x.text := artostr(Curdeg_x/15); +- pos_y.text := detostr(Curdeg_y); +- if ShowAltAz.checked then begin +- az_x.text := detostr(Cur_az); +- alt_y.text := detostr(Cur_alt); +- end else begin +- az_x.text := ''; +- alt_y.text := ''; +- end; +- if ShowAltAz.checked and (Cur_alt<0) then alt_y.Color:=clRed else alt_y.Color:=clWindow; +- end else begin +- pos_x.text := ''; +- pos_y.text := ''; +- az_x.text := ''; +- alt_y.text := ''; +- end; +- end; +-{$endif} +-end; +- +-Procedure ScopeDisconnect(var ok : boolean); +-begin +-{$ifdef mswindows} +-Initialized:=false; +-pop_scope.pos_x.text:=''; +-pop_scope.pos_y.text:=''; +-pop_scope.az_x.text:=''; +-pop_scope.alt_y.text:=''; +-if trim(pop_scope.edit1.text)='' then exit; +-try +-if not VarIsEmpty(T) then begin +- T.connected:=false; +- T:=Unassigned; +-end; +-ok:=true; +-pop_scope.led.color:=clRed; +-pop_scope.speedbutton1.enabled:=true; +-pop_scope.speedbutton3.enabled:=true; +-pop_scope.speedbutton7.enabled:=true; +-pop_scope.speedbutton8.enabled:=false; +-pop_scope.speedbutton9.enabled:=false; +-pop_scope.UpdTrackingButton; +-except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +-end; +-{$endif} +-end; +- +-Procedure ScopeConnect(var ok : boolean); +-var dis_ok : boolean; +-begin +-{$ifdef mswindows} +-pop_scope.led.color:=clRed; +-pop_scope.led.refresh; +-pop_scope.timer1.enabled:=false; +-pop_scope.speedbutton3.enabled:=true; +-ok:=false; +-if trim(pop_scope.edit1.text)='' then exit; +-try +-T:=Unassigned; +-T := CreateOleObject(pop_scope.edit1.text); +-T.connected:=true; +-if T.connected then begin +- Initialized:=true; +- ShowCoordinates; +- pop_scope.led.color:=clLime; +- ok:=true; +- pop_scope.timer1.enabled:=true; +- pop_scope.speedbutton1.enabled:=false; +- pop_scope.speedbutton3.enabled:=false; +- pop_scope.speedbutton7.enabled:=false; +- pop_scope.speedbutton8.enabled:=true; +- pop_scope.speedbutton9.enabled:=true; +-end else scopedisconnect(dis_ok); +-pop_scope.UpdTrackingButton; +-except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +-end; +-{$endif} +-end; +- +-Procedure ScopeClose; +-begin +-pop_scope.release; +-end; +- +-Function ScopeConnected : boolean ; +-begin +-{$ifdef mswindows} +-result:=false; +-if not initialized then exit; +-if VarIsEmpty(T) then exit; +-try +-result:=T.connected; +-except +- result:=false; +-end; +-{$endif} +-end; +- +-Function ScopeInitialized : boolean ; +-begin +-result:= ScopeConnected; +-end; +- +-Procedure ScopeAlign(source : string; ra,dec : single); +-begin +-{$ifdef mswindows} +- if not ScopeConnected then exit; +- if T.CanSync then begin +- try +- if not T.tracking then begin +- T.tracking:=true; +- pop_scope.UpdTrackingButton; +- end; +- T.SyncToCoordinates(Ra,Dec); +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end +-{$endif} +-end; +- +-Procedure ScopeShowModal(var ok : boolean); +-begin +-pop_scope.showmodal; +-ok:=(pop_scope.modalresult=mrOK); +-end; +- +-Procedure ScopeShow; +-begin +-pop_scope.show +-end; +- +-Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); +-begin +-{$ifdef mswindows} +- if ScopeConnected then begin +- try +- ar:=Curdeg_x/15; +- de:=Curdeg_y; +- ok:=true; +- except +- on E: EOleException do begin +- MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- ok:=false; +- end; +- end; +- end else ok:=false; +-{$endif} +-end; +- +-Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); +-begin +-{$ifdef mswindows} +- if ScopeConnected then begin +- try +- az:=cur_az; +- alt:=cur_alt; +- ok:=true; +- except +- on E: EOleException do begin +- MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- ok:=false; +- end; +- end; +- end else ok:=false; +-{$endif} +-end; +- +-Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); +-begin +-{$ifdef mswindows} +- if (pop_scope=nil)or(pop_scope.pos_x=nil) then begin +- Initialized := false; +- pop_scope:=Tpop_scope.Create(nil); +- end; +- if ScopeConnected then begin +- try +- name:=T.name; +- QueryOK:=true; +- SyncOK:=T.CanSync; +- GotoOK:=T.CanSlew; +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end else begin +- name:=''; +- QueryOK:=false; +- SyncOK:=false; +- GotoOK:=false; +- end; +- refreshrate:=pop_scope.timer1.interval; +-{$endif} +-end; +- +-Procedure ScopeGetEqSys(var EqSys : double); +-var i: integer; +-begin +- if ScopeConnected then begin +- try +- i:=T.EquatorialSystem; +- except +- i:=0; +- end; +- end else i:=0; +- case i of +- 0 : EqSys:=0; +- 1 : EqSys:=0; +- 2 : EqSys:=2000; +- 3 : EqSys:=2050; +- 4 : EqSys:=1950; +- end; +-end; +- +-Procedure ScopeReset; +-begin +-end; +- +-Procedure ScopeSetObs(la,lo : double); +-begin +-latitude:=la; +-longitude:=-lo; +-pop_scope.lat.text:=detostr(latitude); +-pop_scope.long.text:=detostr(longitude); +-end; +- +-Procedure ScopeGoto(ar,de : single; var ok : boolean); +-begin +-{$ifdef mswindows} +- if not ScopeConnected then exit; +- try +- if not T.tracking then begin +- T.tracking:=true; +- pop_scope.UpdTrackingButton; +- end; +- if T.CanSlewAsync then T.SlewToCoordinatesAsync(ar,de) +- else T.SlewToCoordinates(ar,de); +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +-{$endif} +-end; +- +-Procedure ScopeReadConfig(ConfigPath : shortstring); +-begin +- pop_scope.ReadConfig(ConfigPath); +-end; +- +-Procedure ScopeAbortSlew; +-begin +-{$ifdef mswindows} +-if ScopeConnected then begin +- try +- T.AbortSlew; +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end; +-{$endif} +-end; +- +-{------------------------------------------------------------------------------- +- +- Form functions +- +---------------------------------------------------------------------------------} +- +-function Tpop_scope.ReadConfig(ConfigPath : shortstring):boolean; +-var ini:tinifile; +- nom : string; +-begin +-result:=DirectoryExists(ConfigPath); +-if Result then +- FConfig:=slash(ConfigPath)+'scope.ini' +-else +- FConfig:=slash(extractfilepath(paramstr(0)))+'scope.ini'; +-ini:=tinifile.create(FConfig); +-nom:= ini.readstring('Ascom','name',''); +-if trim(nom)='' then nom:='POTH.Telescope'; +-edit1.text:=nom; +-ShowAltAz.Checked:=ini.ReadBool('Ascom','AltAz',false); +-ReadIntBox.text:=ini.readstring('Ascom','read_interval','1000'); +-lat.text:=ini.readstring('observatory','latitude','0'); +-long.text:=ini.readstring('observatory','longitude','0'); +-ini.free; +-Timer1.Interval:=strtointdef(ReadIntBox.text,1000); +-end; +- +- +-procedure Tpop_scope.kill(Sender: TObject; var CanClose: Boolean); +-begin +-Saveconfig; +-if ScopeConnected then begin +- canclose:=false; +- pop_scope.hide; +-end; +-end; +- +-procedure Tpop_scope.Timer1Timer(Sender: TObject); +-begin +-if not ScopeConnected then exit; +-try +-if T.connected and (not CoordLock) then begin +- CoordLock := true; +- timer1.enabled:=false; +- ShowCoordinates; +- CoordLock := false; +- timer1.enabled:=true; +-end; +-except +- timer1.enabled:=false; +- Initialized := false; +-end; +-end; +- +-procedure Tpop_scope.setresClick(Sender: TObject); +-var ok : boolean; +-begin +-ScopeConnect(ok); +-end; +- +-procedure Tpop_scope.SaveConfig; +-var +-ini:tinifile; +-begin +-ini:=tinifile.create(FConfig); +-ini.writestring('Ascom','name',edit1.text); +-ini.writestring('Ascom','read_interval',ReadIntBox.text); +-ini.writeBool('Ascom','AltAz',ShowAltAz.Checked); +-ini.writestring('observatory','latitude',lat.text); +-ini.writestring('observatory','longitude',long.text); +-ini.free; +-end; +- +-procedure Tpop_scope.ReadIntBoxChange(Sender: TObject); +-begin +- Timer1.Interval:=strtointdef(ReadIntBox.text,1000); +-end; +- +-procedure Tpop_scope.SpeedButton5Click(Sender: TObject); +-var ok : boolean; +-begin +-ScopeDisconnect(ok); +-end; +- +-procedure Tpop_scope.SpeedButton2Click(Sender: TObject); +-begin +-pop_scope.Hide; +-end; +- +-{$ifdef mswindows} +-Function ExecuteFile(const FileName, Params, DefaultDir: string; ShowCmd: Integer): THandle; +-var +- zFileName, zParams, zDir: array[0..79] of Char; +-begin +- Result := ShellExecute(pop_scope.Handle, nil, StrPCopy(zFileName, FileName), +- StrPCopy(zParams, Params), StrPCopy(zDir, DefaultDir), ShowCmd); +-end; +-{$endif} +- +-procedure Tpop_scope.SpeedButton4Click(Sender: TObject); +-begin +-{$ifdef mswindows} +-ExecuteFile('ascomtel.html','',appdir+'\doc\html_doc\en',SW_SHOWNORMAL); +-{$endif} +-end; +- +-procedure Tpop_scope.SpeedButton6Click(Sender: TObject); +-begin +-ScopeAbortSlew; +-end; +- +-procedure Tpop_scope.SpeedButton3Click(Sender: TObject); +-var +- V: variant; +-begin +-{$ifdef mswindows} +-try +- initialized:=false; +- V := CreateOleObject('DriverHelper.Chooser'); +- V.devicetype:='Telescope'; +- edit1.text:=V.Choose(edit1.text); +- V:=Unassigned; +- SaveConfig; +- UpdTrackingButton; +- except +- {$ifdef win64} +- Showmessage('The ASCOM telescope chooser do not work correctly from a 64 bits application for now.'+crlf+'Use POTH.Telescope and then select your telescope from the POTH menu.'+crlf+'See http://ascom-standards.org for more information.'); +- {$else} +- Showmessage('Please ensure that ASCOM telescope drivers are installed properly.'+crlf+'See http://ascom-standards.org for more information.'); +- {$endif} +- end; +-{$endif} +-end; +- +-procedure Tpop_scope.SpeedButton7Click(Sender: TObject); +-begin +-{$ifdef mswindows} +-try +-if (edit1.text>'') and (not Scopeconnected) then begin +-if VarIsEmpty(T) then begin +- T := CreateOleObject(edit1.text); +- T.SetupDialog; +- T:=Unassigned; +-end else begin +- T.SetupDialog; +-end; +-UpdTrackingButton; +-end; +-except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +-end; +-{$endif} +-end; +- +-procedure Tpop_scope.SpeedButton9Click(Sender: TObject); +-begin +-{$ifdef mswindows} +- if ScopeConnected then begin +- try +- T.SiteLongitude:=longitude; +- T.SiteLatitude:=latitude; +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end; +-{$endif} +-end; +- +-procedure Tpop_scope.SpeedButton8Click(Sender: TObject); +-var utc: Tsystemtime; +-begin +-{$ifdef mswindows} +- if ScopeConnected then begin +- try +- getsystemtime(utc); +- // does not raise and error but may not be UTC +- T.UTCDate:=systemtimetodatetime(utc); +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end; +-{$endif} +-end; +- +-procedure Tpop_scope.FormDestroy(Sender: TObject); +-begin +-SaveConfig; +-end; +- +-procedure Tpop_scope.UpdTrackingButton; +-begin +-{$ifdef mswindows} +-try +- if not ScopeConnected then exit; +- if (not T.CanSetTracking)or(not T.connected) then begin +- TrackingLed.Enabled:=false; +- end else begin +- TrackingBtn.Enabled:=true; +- if T.Tracking then Trackingled.color:=clLime +- else Trackingled.color:=clRed; +- end; +-except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +-end; +-{$endif} +-end; +- +-procedure Tpop_scope.TrackingBtnClick(Sender: TObject); +-begin +-{$ifdef mswindows} +- if ScopeConnected then begin +- try +- T.Tracking:=not T.Tracking; +- UpdTrackingButton; +- except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +- end; +- end; +-{$endif} +-end; +- +-procedure Tpop_scope.SpeedButton11Click(Sender: TObject); +-var buf : string; +-begin +-{$ifdef mswindows} +-try +- if (edit1.text>'') then begin +- try +- if VarIsEmpty(T) then begin +- T := CreateOleObject(edit1.text); +- buf:=T.Description; +- buf:=buf+crlf+T.DriverInfo; +- T:=Unassigned; +- showmessage(buf); +- end else begin +- buf:=T.Description; +- buf:=buf+crlf+T.DriverInfo; +- showmessage(buf); +- end; +- UpdTrackingButton; +- except +- end; +- end; +-except +- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); +-end; +-{$endif} +-end; +- +- ++unit pu_ascomclient; ++ ++{$MODE objfpc}{$H+} ++ ++{------------- interface for ASCOM telescope driver. ---------------------------- ++ ++Copyright (C) 2000 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++ ++-------------------------------------------------------------------------------} ++ ++interface ++ ++uses ++ {$ifdef mswindows} ++ Variants, comobj, Windows, ShlObj, ShellAPI, ++ {$endif} ++ LCLIntf, u_util, ++ Messages, SysUtils, Classes, Graphics, Controls, ++ Forms, Dialogs, ++ StdCtrls, Buttons, inifiles, ComCtrls, Menus, ExtCtrls; ++ ++type ++ ++ { Tpop_scope } ++ ++ Tpop_scope = class(TForm) ++ GroupBox3: TGroupBox; ++ trackingled: TEdit; ++ SpeedButton1: TSpeedButton; ++ TrackingBtn: TSpeedButton; ++ SpeedButton2: TSpeedButton; ++ SpeedButton5: TSpeedButton; ++ led: TEdit; ++ GroupBox5: TGroupBox; ++ Label15: TLabel; ++ Label16: TLabel; ++ lat: TEdit; ++ long: TEdit; ++ Panel1: TPanel; ++ LabelAlpha: TLabel; ++ LabelDelta: TLabel; ++ Label11: TLabel; ++ Label12: TLabel; ++ pos_x: TEdit; ++ pos_y: TEdit; ++ az_x: TEdit; ++ alt_y: TEdit; ++ ShowAltAz: TCheckBox; ++ Timer1: TTimer; ++ GroupBox1: TGroupBox; ++ Edit1: TEdit; ++ SpeedButton3: TSpeedButton; ++ ReadIntBox: TComboBox; ++ Label1: TLabel; ++ SpeedButton7: TSpeedButton; ++ SpeedButton6: TSpeedButton; ++ SpeedButton8: TSpeedButton; ++ SpeedButton9: TSpeedButton; ++ SpeedButton4: TSpeedButton; ++ SpeedButton11: TSpeedButton; ++ {Utility and form functions} ++ procedure kill(Sender: TObject; var CanClose: Boolean); ++ procedure Timer1Timer(Sender: TObject); ++ procedure setresClick(Sender: TObject); ++ procedure SaveConfig; ++ procedure ReadIntBoxChange(Sender: TObject); ++ procedure SpeedButton5Click(Sender: TObject); ++ procedure SpeedButton2Click(Sender: TObject); ++ procedure SpeedButton4Click(Sender: TObject); ++ procedure SpeedButton6Click(Sender: TObject); ++ procedure SpeedButton3Click(Sender: TObject); ++ procedure SpeedButton7Click(Sender: TObject); ++ procedure SpeedButton9Click(Sender: TObject); ++ procedure SpeedButton8Click(Sender: TObject); ++ procedure FormDestroy(Sender: TObject); ++ procedure TrackingBtnClick(Sender: TObject); ++ procedure UpdTrackingButton; ++ procedure SpeedButton11Click(Sender: TObject); ++ private ++ { Private declarations } ++ FConfig: string; ++ public ++ { Public declarations } ++ function ReadConfig(ConfigPath : shortstring):boolean; ++ end; ++ ++ ++Procedure ScopeShow; ++Procedure ScopeShowModal(var ok : boolean); ++Procedure ScopeConnect(var ok : boolean); ++Procedure ScopeDisconnect(var ok : boolean); ++Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); ++Procedure ScopeGetEqSys(var EqSys : double); ++Procedure ScopeSetObs(la,lo : double); ++Procedure ScopeAlign(source : string; ra,dec : single); ++Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); ++Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); ++Procedure ScopeGoto(ar,de : single; var ok : boolean); ++Procedure ScopeAbortSlew; ++Procedure ScopeReset; ++Function ScopeInitialized : boolean ; ++Function ScopeConnected : boolean ; ++Procedure ScopeClose; ++Procedure ScopeReadConfig(ConfigPath : shortstring); ++ ++var ++ pop_scope: Tpop_scope; ++ ++implementation ++ ++ ++{$R *.lfm} ++ ++var CoordLock : boolean = false; ++ Initialized : boolean = false; ++ Appdir : string; ++ T : Variant; ++ curdeg_x, curdeg_y :double; // current equatorial position in degrees ++ cur_az, cur_alt :double; // current alt-az position in degrees ++ Longitude : single; // Observatory longitude (Negative East of Greenwich} ++ Latitude : single; // Observatory latitude ++ ++ ++const crlf=chr(10)+chr(13); ++ ++{------------------------------------------------------------------------------- ++ ++ Cartes du Ciel Dll compatibility functions ++ ++--------------------------------------------------------------------------------} ++Procedure ShowCoordinates; ++begin ++{$ifdef mswindows} ++with pop_scope do begin ++ if ScopeInitialized then begin ++ try ++ Curdeg_x:=T.RightAscension*15; ++ Curdeg_y:=T.Declination; ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ if ShowAltAz.checked then begin ++ try ++ Cur_az:=T.Azimuth; ++ Cur_alt:=T.Altitude; ++ except ++ ShowAltAz.checked:=false; ++ end; ++ end; ++ pos_x.text := artostr(Curdeg_x/15); ++ pos_y.text := detostr(Curdeg_y); ++ if ShowAltAz.checked then begin ++ az_x.text := detostr(Cur_az); ++ alt_y.text := detostr(Cur_alt); ++ end else begin ++ az_x.text := ''; ++ alt_y.text := ''; ++ end; ++ if ShowAltAz.checked and (Cur_alt<0) then alt_y.Color:=clRed else alt_y.Color:=clWindow; ++ end else begin ++ pos_x.text := ''; ++ pos_y.text := ''; ++ az_x.text := ''; ++ alt_y.text := ''; ++ end; ++ end; ++{$endif} ++end; ++ ++Procedure ScopeDisconnect(var ok : boolean); ++begin ++{$ifdef mswindows} ++Initialized:=false; ++pop_scope.pos_x.text:=''; ++pop_scope.pos_y.text:=''; ++pop_scope.az_x.text:=''; ++pop_scope.alt_y.text:=''; ++if trim(pop_scope.edit1.text)='' then exit; ++try ++if not VarIsEmpty(T) then begin ++ T.connected:=false; ++ T:=Unassigned; ++end; ++ok:=true; ++pop_scope.led.color:=clRed; ++pop_scope.speedbutton1.enabled:=true; ++pop_scope.speedbutton3.enabled:=true; ++pop_scope.speedbutton7.enabled:=true; ++pop_scope.speedbutton8.enabled:=false; ++pop_scope.speedbutton9.enabled:=false; ++pop_scope.UpdTrackingButton; ++except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++end; ++{$endif} ++end; ++ ++Procedure ScopeConnect(var ok : boolean); ++var dis_ok : boolean; ++begin ++{$ifdef mswindows} ++pop_scope.led.color:=clRed; ++pop_scope.led.refresh; ++pop_scope.timer1.enabled:=false; ++pop_scope.speedbutton3.enabled:=true; ++ok:=false; ++if trim(pop_scope.edit1.text)='' then exit; ++try ++T:=Unassigned; ++T := CreateOleObject(pop_scope.edit1.text); ++T.connected:=true; ++if T.connected then begin ++ Initialized:=true; ++ ShowCoordinates; ++ pop_scope.led.color:=clLime; ++ ok:=true; ++ pop_scope.timer1.enabled:=true; ++ pop_scope.speedbutton1.enabled:=false; ++ pop_scope.speedbutton3.enabled:=false; ++ pop_scope.speedbutton7.enabled:=false; ++ pop_scope.speedbutton8.enabled:=true; ++ pop_scope.speedbutton9.enabled:=true; ++end else scopedisconnect(dis_ok); ++pop_scope.UpdTrackingButton; ++except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++end; ++{$endif} ++end; ++ ++Procedure ScopeClose; ++begin ++pop_scope.release; ++end; ++ ++Function ScopeConnected : boolean ; ++begin ++{$ifdef mswindows} ++result:=false; ++if not initialized then exit; ++if VarIsEmpty(T) then exit; ++try ++result:=T.connected; ++except ++ result:=false; ++end; ++{$endif} ++end; ++ ++Function ScopeInitialized : boolean ; ++begin ++result:= ScopeConnected; ++end; ++ ++Procedure ScopeAlign(source : string; ra,dec : single); ++begin ++{$ifdef mswindows} ++ if not ScopeConnected then exit; ++ if T.CanSync then begin ++ try ++ if not T.tracking then begin ++ T.tracking:=true; ++ pop_scope.UpdTrackingButton; ++ end; ++ T.SyncToCoordinates(Ra,Dec); ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end ++{$endif} ++end; ++ ++Procedure ScopeShowModal(var ok : boolean); ++begin ++pop_scope.showmodal; ++ok:=(pop_scope.modalresult=mrOK); ++end; ++ ++Procedure ScopeShow; ++begin ++pop_scope.show ++end; ++ ++Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); ++begin ++{$ifdef mswindows} ++ if ScopeConnected then begin ++ try ++ ar:=Curdeg_x/15; ++ de:=Curdeg_y; ++ ok:=true; ++ except ++ on E: EOleException do begin ++ MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ ok:=false; ++ end; ++ end; ++ end else ok:=false; ++{$endif} ++end; ++ ++Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); ++begin ++{$ifdef mswindows} ++ if ScopeConnected then begin ++ try ++ az:=cur_az; ++ alt:=cur_alt; ++ ok:=true; ++ except ++ on E: EOleException do begin ++ MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ ok:=false; ++ end; ++ end; ++ end else ok:=false; ++{$endif} ++end; ++ ++Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); ++begin ++{$ifdef mswindows} ++ if (pop_scope=nil)or(pop_scope.pos_x=nil) then begin ++ Initialized := false; ++ pop_scope:=Tpop_scope.Create(nil); ++ end; ++ if ScopeConnected then begin ++ try ++ name:=T.name; ++ QueryOK:=true; ++ SyncOK:=T.CanSync; ++ GotoOK:=T.CanSlew; ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end else begin ++ name:=''; ++ QueryOK:=false; ++ SyncOK:=false; ++ GotoOK:=false; ++ end; ++ refreshrate:=pop_scope.timer1.interval; ++{$endif} ++end; ++ ++Procedure ScopeGetEqSys(var EqSys : double); ++var i: integer; ++begin ++ if ScopeConnected then begin ++ try ++ i:=T.EquatorialSystem; ++ except ++ i:=0; ++ end; ++ end else i:=0; ++ case i of ++ 0 : EqSys:=0; ++ 1 : EqSys:=0; ++ 2 : EqSys:=2000; ++ 3 : EqSys:=2050; ++ 4 : EqSys:=1950; ++ end; ++end; ++ ++Procedure ScopeReset; ++begin ++end; ++ ++Procedure ScopeSetObs(la,lo : double); ++begin ++latitude:=la; ++longitude:=-lo; ++pop_scope.lat.text:=detostr(latitude); ++pop_scope.long.text:=detostr(longitude); ++end; ++ ++Procedure ScopeGoto(ar,de : single; var ok : boolean); ++begin ++{$ifdef mswindows} ++ if not ScopeConnected then exit; ++ try ++ if not T.tracking then begin ++ T.tracking:=true; ++ pop_scope.UpdTrackingButton; ++ end; ++ if T.CanSlewAsync then T.SlewToCoordinatesAsync(ar,de) ++ else T.SlewToCoordinates(ar,de); ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++{$endif} ++end; ++ ++Procedure ScopeReadConfig(ConfigPath : shortstring); ++begin ++ pop_scope.ReadConfig(ConfigPath); ++end; ++ ++Procedure ScopeAbortSlew; ++begin ++{$ifdef mswindows} ++if ScopeConnected then begin ++ try ++ T.AbortSlew; ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end; ++{$endif} ++end; ++ ++{------------------------------------------------------------------------------- ++ ++ Form functions ++ ++--------------------------------------------------------------------------------} ++ ++function Tpop_scope.ReadConfig(ConfigPath : shortstring):boolean; ++var ini:tinifile; ++ nom : string; ++begin ++result:=DirectoryExists(ConfigPath); ++if Result then ++ FConfig:=slash(ConfigPath)+'scope.ini' ++else ++ FConfig:=slash(extractfilepath(paramstr(0)))+'scope.ini'; ++ini:=tinifile.create(FConfig); ++nom:= ini.readstring('Ascom','name',''); ++if trim(nom)='' then nom:='POTH.Telescope'; ++edit1.text:=nom; ++ShowAltAz.Checked:=ini.ReadBool('Ascom','AltAz',false); ++ReadIntBox.text:=ini.readstring('Ascom','read_interval','1000'); ++lat.text:=ini.readstring('observatory','latitude','0'); ++long.text:=ini.readstring('observatory','longitude','0'); ++ini.free; ++Timer1.Interval:=strtointdef(ReadIntBox.text,1000); ++end; ++ ++ ++procedure Tpop_scope.kill(Sender: TObject; var CanClose: Boolean); ++begin ++Saveconfig; ++if ScopeConnected then begin ++ canclose:=false; ++ pop_scope.hide; ++end; ++end; ++ ++procedure Tpop_scope.Timer1Timer(Sender: TObject); ++begin ++if not ScopeConnected then exit; ++try ++if T.connected and (not CoordLock) then begin ++ CoordLock := true; ++ timer1.enabled:=false; ++ ShowCoordinates; ++ CoordLock := false; ++ timer1.enabled:=true; ++end; ++except ++ timer1.enabled:=false; ++ Initialized := false; ++end; ++end; ++ ++procedure Tpop_scope.setresClick(Sender: TObject); ++var ok : boolean; ++begin ++ScopeConnect(ok); ++end; ++ ++procedure Tpop_scope.SaveConfig; ++var ++ini:tinifile; ++begin ++ini:=tinifile.create(FConfig); ++ini.writestring('Ascom','name',edit1.text); ++ini.writestring('Ascom','read_interval',ReadIntBox.text); ++ini.writeBool('Ascom','AltAz',ShowAltAz.Checked); ++ini.writestring('observatory','latitude',lat.text); ++ini.writestring('observatory','longitude',long.text); ++ini.free; ++end; ++ ++procedure Tpop_scope.ReadIntBoxChange(Sender: TObject); ++begin ++ Timer1.Interval:=strtointdef(ReadIntBox.text,1000); ++end; ++ ++procedure Tpop_scope.SpeedButton5Click(Sender: TObject); ++var ok : boolean; ++begin ++ScopeDisconnect(ok); ++end; ++ ++procedure Tpop_scope.SpeedButton2Click(Sender: TObject); ++begin ++pop_scope.Hide; ++end; ++ ++{$ifdef mswindows} ++Function ExecuteFile(const FileName, Params, DefaultDir: string; ShowCmd: Integer): THandle; ++var ++ zFileName, zParams, zDir: array[0..79] of Char; ++begin ++ Result := ShellExecute(pop_scope.Handle, nil, StrPCopy(zFileName, FileName), ++ StrPCopy(zParams, Params), StrPCopy(zDir, DefaultDir), ShowCmd); ++end; ++{$endif} ++ ++procedure Tpop_scope.SpeedButton4Click(Sender: TObject); ++begin ++{$ifdef mswindows} ++ExecuteFile('ascomtel.html','',appdir+'\doc\html_doc\en',SW_SHOWNORMAL); ++{$endif} ++end; ++ ++procedure Tpop_scope.SpeedButton6Click(Sender: TObject); ++begin ++ScopeAbortSlew; ++end; ++ ++procedure Tpop_scope.SpeedButton3Click(Sender: TObject); ++var ++ V: variant; ++begin ++{$ifdef mswindows} ++try ++ initialized:=false; ++ V := CreateOleObject('DriverHelper.Chooser'); ++ V.devicetype:='Telescope'; ++ edit1.text:=V.Choose(edit1.text); ++ V:=Unassigned; ++ SaveConfig; ++ UpdTrackingButton; ++ except ++ {$ifdef win64} ++ Showmessage('The ASCOM telescope chooser do not work correctly from a 64 bits application for now.'+crlf+'Use POTH.Telescope and then select your telescope from the POTH menu.'+crlf+'See http://ascom-standards.org for more information.'); ++ {$else} ++ Showmessage('Please ensure that ASCOM telescope drivers are installed properly.'+crlf+'See http://ascom-standards.org for more information.'); ++ {$endif} ++ end; ++{$endif} ++end; ++ ++procedure Tpop_scope.SpeedButton7Click(Sender: TObject); ++begin ++{$ifdef mswindows} ++try ++if (edit1.text>'') and (not Scopeconnected) then begin ++if VarIsEmpty(T) then begin ++ T := CreateOleObject(edit1.text); ++ T.SetupDialog; ++ T:=Unassigned; ++end else begin ++ T.SetupDialog; ++end; ++UpdTrackingButton; ++end; ++except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++end; ++{$endif} ++end; ++ ++procedure Tpop_scope.SpeedButton9Click(Sender: TObject); ++begin ++{$ifdef mswindows} ++ if ScopeConnected then begin ++ try ++ T.SiteLongitude:=longitude; ++ T.SiteLatitude:=latitude; ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end; ++{$endif} ++end; ++ ++procedure Tpop_scope.SpeedButton8Click(Sender: TObject); ++var utc: Tsystemtime; ++begin ++{$ifdef mswindows} ++ if ScopeConnected then begin ++ try ++ getsystemtime(utc); ++ // does not raise and error but may not be UTC ++ T.UTCDate:=systemtimetodatetime(utc); ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end; ++{$endif} ++end; ++ ++procedure Tpop_scope.FormDestroy(Sender: TObject); ++begin ++SaveConfig; ++end; ++ ++procedure Tpop_scope.UpdTrackingButton; ++begin ++{$ifdef mswindows} ++try ++ if not ScopeConnected then exit; ++ if (not T.CanSetTracking)or(not T.connected) then begin ++ TrackingLed.Enabled:=false; ++ end else begin ++ TrackingBtn.Enabled:=true; ++ if T.Tracking then Trackingled.color:=clLime ++ else Trackingled.color:=clRed; ++ end; ++except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++end; ++{$endif} ++end; ++ ++procedure Tpop_scope.TrackingBtnClick(Sender: TObject); ++begin ++{$ifdef mswindows} ++ if ScopeConnected then begin ++ try ++ T.Tracking:=not T.Tracking; ++ UpdTrackingButton; ++ except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++ end; ++ end; ++{$endif} ++end; ++ ++procedure Tpop_scope.SpeedButton11Click(Sender: TObject); ++var buf : string; ++begin ++{$ifdef mswindows} ++try ++ if (edit1.text>'') then begin ++ try ++ if VarIsEmpty(T) then begin ++ T := CreateOleObject(edit1.text); ++ buf:=T.Description; ++ buf:=buf+crlf+T.DriverInfo; ++ T:=Unassigned; ++ showmessage(buf); ++ end else begin ++ buf:=T.Description; ++ buf:=buf+crlf+T.DriverInfo; ++ showmessage(buf); ++ end; ++ UpdTrackingButton; ++ except ++ end; ++ end; ++except ++ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); ++end; ++{$endif} ++end; ++ ++ + end. +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_catgenadv.lfm skychart_3.2_up/skychart/pu_catgenadv.lfm +--- skychart_3.2/skychart/pu_catgenadv.lfm 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_catgenadv.lfm 2011-03-09 15:18:23.127275188 +0100 +@@ -1,118 +1,118 @@ +-object f_catgenadv: Tf_catgenadv +- Left = 274 +- Height = 263 +- Top = 176 +- Width = 224 +- ActiveControl = Edit1 +- BorderStyle = bsToolWindow +- Caption = 'Compute Field' +- ClientHeight = 263 +- ClientWidth = 224 +- Font.Height = -11 +- OnCreate = FormCreate +- OnShow = FormShow +- Position = poMainFormCenter +- LCLVersion = '0.9.29' +- object Label1: TLabel +- Left = 72 +- Height = 23 +- Top = 90 +- Width = 7 +- Caption = 'x' +- Font.Height = -13 +- Font.Name = 'MS Sans Serif' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label2: TLabel +- Left = 72 +- Height = 23 +- Top = 126 +- Width = 9 +- Caption = '+' +- Font.Height = -13 +- Font.Name = 'MS Sans Serif' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label3: TLabel +- Left = 72 +- Height = 28 +- Top = 160 +- Width = 10 +- Caption = '=' +- Font.Height = -16 +- Font.Name = 'MS Sans Serif' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label4: TLabel +- Left = 8 +- Height = 56 +- Top = 8 +- Width = 208 +- AutoSize = False +- Caption = 'Indicate here how to compute the require value from the data stored in the catalog text file.' +- ParentColor = False +- WordWrap = True +- end +- object Button1: TButton +- Left = 16 +- Height = 25 +- Top = 216 +- Width = 57 +- BorderSpacing.InnerBorder = 4 +- Caption = 'OK' +- ModalResult = 1 +- TabOrder = 0 +- end +- object Button2: TButton +- Left = 80 +- Height = 25 +- Top = 216 +- Width = 57 +- BorderSpacing.InnerBorder = 4 +- Caption = 'Cancel' +- ModalResult = 2 +- TabOrder = 1 +- end +- object Edit1: TEdit +- Left = 24 +- Height = 21 +- Top = 72 +- Width = 110 +- OnChange = Edit1Change +- OnExit = Edit1Change +- TabOrder = 2 +- end +- object Edit2: TEdit +- Left = 24 +- Height = 21 +- Top = 106 +- Width = 110 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 3 +- end +- object Edit3: TEdit +- Left = 24 +- Height = 21 +- Top = 140 +- Width = 110 +- OnChange = Edit3Change +- OnExit = Edit3Change +- TabOrder = 4 +- end +- object Edit4: TEdit +- Left = 24 +- Height = 21 +- Top = 176 +- Width = 110 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 5 +- end ++object f_catgenadv: Tf_catgenadv ++ Left = 274 ++ Height = 263 ++ Top = 176 ++ Width = 224 ++ ActiveControl = Edit1 ++ BorderStyle = bsToolWindow ++ Caption = 'Compute Field' ++ ClientHeight = 263 ++ ClientWidth = 224 ++ Font.Height = -11 ++ OnCreate = FormCreate ++ OnShow = FormShow ++ Position = poMainFormCenter ++ LCLVersion = '0.9.29' ++ object Label1: TLabel ++ Left = 72 ++ Height = 23 ++ Top = 90 ++ Width = 7 ++ Caption = 'x' ++ Font.Height = -13 ++ Font.Name = 'MS Sans Serif' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label2: TLabel ++ Left = 72 ++ Height = 23 ++ Top = 126 ++ Width = 9 ++ Caption = '+' ++ Font.Height = -13 ++ Font.Name = 'MS Sans Serif' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label3: TLabel ++ Left = 72 ++ Height = 28 ++ Top = 160 ++ Width = 10 ++ Caption = '=' ++ Font.Height = -16 ++ Font.Name = 'MS Sans Serif' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label4: TLabel ++ Left = 8 ++ Height = 56 ++ Top = 8 ++ Width = 208 ++ AutoSize = False ++ Caption = 'Indicate here how to compute the require value from the data stored in the catalog text file.' ++ ParentColor = False ++ WordWrap = True ++ end ++ object Button1: TButton ++ Left = 16 ++ Height = 25 ++ Top = 216 ++ Width = 57 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'OK' ++ ModalResult = 1 ++ TabOrder = 0 ++ end ++ object Button2: TButton ++ Left = 80 ++ Height = 25 ++ Top = 216 ++ Width = 57 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'Cancel' ++ ModalResult = 2 ++ TabOrder = 1 ++ end ++ object Edit1: TEdit ++ Left = 24 ++ Height = 21 ++ Top = 72 ++ Width = 110 ++ OnChange = Edit1Change ++ OnExit = Edit1Change ++ TabOrder = 2 ++ end ++ object Edit2: TEdit ++ Left = 24 ++ Height = 21 ++ Top = 106 ++ Width = 110 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 3 ++ end ++ object Edit3: TEdit ++ Left = 24 ++ Height = 21 ++ Top = 140 ++ Width = 110 ++ OnChange = Edit3Change ++ OnExit = Edit3Change ++ TabOrder = 4 ++ end ++ object Edit4: TEdit ++ Left = 24 ++ Height = 21 ++ Top = 176 ++ Width = 110 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 5 ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_catgenadv.lrs skychart_3.2_up/skychart/pu_catgenadv.lrs +--- skychart_3.2/skychart/pu_catgenadv.lrs 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_catgenadv.lrs 2011-03-09 15:18:57.116095932 +0100 +@@ -1,5 +1,3 @@ +-{ This is an automatically generated lazarus resource file } +- + LazarusResources.Add('Tf_catgenadv','FORMDATA',[ + 'TPF0'#12'Tf_catgenadv'#11'f_catgenadv'#4'Left'#3#18#1#6'Height'#3#7#1#3'Top' + +#3#176#0#5'Width'#3#224#0#13'ActiveControl'#7#5'Edit1'#11'BorderStyle'#7#12 +diff -ur skychart_3.2/skychart/pu_catgen.lfm skychart_3.2_up/skychart/pu_catgen.lfm +--- skychart_3.2/skychart/pu_catgen.lfm 2010-09-30 13:10:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_catgen.lfm 2011-03-09 15:18:57.105097283 +0100 +@@ -1,9 +1,9 @@ + object f_catgen: Tf_catgen +- Left = 381 ++ Left = 388 + Height = 479 + Top = 94 + Width = 503 +- ActiveControl = CheckListBox1 ++ ActiveControl = PageControl1 + BorderStyle = bsToolWindow + Caption = 'Prepare a catalog CatGen 3.0' + ClientHeight = 479 +@@ -13,7 +13,7 @@ + OnDestroy = FormDestroy + OnShow = FormShow + Position = poDefaultPosOnly +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object Image1: TImage + Left = 0 + Height = 438 +@@ -2903,14 +2903,13 @@ + Width = 389 + ActivePage = TabSheet3 + Align = alClient +- ShowTabs = False + TabIndex = 2 + TabOrder = 0 + OnPageChanged = PageControl1PageChanged + object TabSheet1: TTabSheet + Caption = '1' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + object Label6: TLabel + Left = 20 + Height = 14 +@@ -3097,8 +3096,8 @@ + end + object TabSheet2: TTabSheet + Caption = '2' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 4 + object Label2: TLabel + Left = 16 +@@ -3452,14 +3451,14 @@ + end + object TabSheet3: TTabSheet + Caption = '3' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 1 + object Label4: TLabel + Left = 134 + Height = 14 + Top = 252 +- Width = 48 ++ Width = 51 + Caption = 'First Char' + ParentColor = False + end +@@ -3467,7 +3466,7 @@ + Left = 270 + Height = 14 + Top = 252 +- Width = 34 ++ Width = 39 + Caption = 'Length' + ParentColor = False + end +@@ -3475,7 +3474,7 @@ + Left = 24 + Height = 14 + Top = 16 +- Width = 263 ++ Width = 303 + Caption = 'Select the fields to use and their position in the text file' + ParentColor = False + end +@@ -3483,7 +3482,7 @@ + Left = 18 + Height = 14 + Top = 252 +- Width = 27 ++ Width = 31 + Caption = 'Label' + ParentColor = False + end +@@ -3534,9 +3533,9 @@ + end + object CheckBox2: TCheckBox + Left = 18 +- Height = 21 ++ Height = 22 + Top = 280 +- Width = 191 ++ Width = 216 + Caption = 'Use this field as an Alternate Name' + OnClick = CheckBox2Click + TabOrder = 4 +@@ -3560,7 +3559,6 @@ + Font.Height = -11 + Font.Name = 'courier' + Font.Pitch = fpFixed +- HideSelection = False + OnMouseUp = Memo1MouseUp + ParentFont = False + ScrollBars = ssHorizontal +@@ -3570,8 +3568,8 @@ + end + object TabSheet4: TTabSheet + Caption = '4' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 2 + object Label1: TLabel + Left = 24 +@@ -3626,7 +3624,6 @@ + ShowHidden = False + ButtonWidth = 20 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + end + object CheckBox6: TCheckBox +@@ -3687,8 +3684,8 @@ + end + object TabSheet5: TTabSheet + Caption = '5' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 4 + object Label9: TLabel + Left = 24 +@@ -3729,8 +3726,8 @@ + end + object TabSheet6: TTabSheet + Caption = '6' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 5 + object Label14: TLabel + Left = 22 +@@ -3771,8 +3768,8 @@ + end + object TabSheet7: TTabSheet + Caption = '7' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 6 + object Label17: TLabel + Left = 30 +@@ -3812,8 +3809,8 @@ + end + object TabSheet8: TTabSheet + Caption = '8' +- ClientHeight = 434 +- ClientWidth = 385 ++ ClientHeight = 403 ++ ClientWidth = 383 + ImageIndex = 7 + object Label20: TLabel + Left = 70 +diff -ur skychart_3.2/skychart/pu_catgen.lrs skychart_3.2_up/skychart/pu_catgen.lrs +--- skychart_3.2/skychart/pu_catgen.lrs 2010-09-30 13:10:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_catgen.lrs 2011-03-09 15:18:57.141092862 +0100 +@@ -1,17 +1,17 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_catgen','FORMDATA',[ +- 'TPF0'#9'Tf_catgen'#8'f_catgen'#4'Left'#3'}'#1#6'Height'#3#223#1#3'Top'#2'^'#5 +- +'Width'#3#247#1#13'ActiveControl'#7#13'CheckListBox1'#11'BorderStyle'#7#12'b' +- +'sToolWindow'#7'Caption'#6#28'Prepare a catalog CatGen 3.0'#12'ClientHeight' ++ 'TPF0'#9'Tf_catgen'#8'f_catgen'#4'Left'#3#132#1#6'Height'#3#223#1#3'Top'#2'^' ++ +#5'Width'#3#247#1#13'ActiveControl'#7#12'PageControl1'#11'BorderStyle'#7#12 ++ +'bsToolWindow'#7'Caption'#6#28'Prepare a catalog CatGen 3.0'#12'ClientHeight' + +#3#223#1#11'ClientWidth'#3#247#1#11'Font.Height'#2#245#8'OnCreate'#7#10'Form' + +'Create'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#8'Position'#7 +- +#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.29'#0#6'TImage'#6'Image1'#4'Lef' +- +'t'#2#0#6'Height'#3#182#1#3'Top'#2#0#5'Width'#2'r'#5'Align'#7#6'alLeft'#12'P' +- +'icture.Data'#10#240'f'#1#0#7'TPixmap'#228'f'#1#0'/* XPM */'#10'static char ' +- +'*cielcat2[] = {'#10'/* width height num_colors chars_per_pixel */'#10'" 1' +- +'13 381 256 2",'#10'/* colors */'#10'"`` c #000000",'#10'"' +- +'`. c #000008",'#10'"`# c #080808",'#10'"`a c #080810",'#10'"`b c #080818",' ++ +#16'poDefaultPosOnly'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TImage'#6'Image1'#4'L' ++ +'eft'#2#0#6'Height'#3#182#1#3'Top'#2#0#5'Width'#2'r'#5'Align'#7#6'alLeft'#12 ++ +'Picture.Data'#10#240'f'#1#0#7'TPixmap'#228'f'#1#0'/* XPM */'#10'static char' ++ +' *cielcat2[] = {'#10'/* width height num_colors chars_per_pixel */'#10'" ' ++ +'113 381 256 2",'#10'/* colors */'#10'"`` c #000000",'#10 ++ +'"`. c #000008",'#10'"`# c #080808",'#10'"`a c #080810",'#10'"`b c #080818",' + +#10'"`c c #080821",'#10'"`d c #080829",'#10'"`e c #080831",'#10'"`f c #08083' + +'9",'#10'"`g c #100808",'#10'"`h c #101008",'#10'"`i c #101010",'#10'"`j c #' + +'101018",'#10'"`k c #101021",'#10'"`l c #101029",'#10'"`m c #101031",'#10'"`' +@@ -1270,368 +1270,368 @@ + +'``````````````````````````````````````````````````````````````"'#10'};'#10#7 + +'Stretch'#9#0#0#12'TPageControl'#12'PageControl1'#4'Left'#2'r'#6'Height'#3 + +#182#1#3'Top'#2#0#5'Width'#3#133#1#10'ActivePage'#7#9'TabSheet3'#5'Align'#7#8 +- +'alClient'#8'ShowTabs'#8#8'TabIndex'#2#2#8'TabOrder'#2#0#13'OnPageChanged'#7 +- +#23'PageControl1PageChanged'#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#1'1'#12 +- +'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#0#6'TLabel'#6'Label6'#4'Left' +- +#2#20#6'Height'#2#14#3'Top'#2#6#5'Width'#3#192#0#7'Caption'#6')Select the ty' +- +'pe of object in your catalog'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' +- +#6'Label8'#4'Left'#2#14#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2'V'#7'Captio' +- +'n'#6#19'Input Catalog files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label10'#4'L' +- +'eft'#2#14#6'Height'#2#14#3'Top'#3#164#0#5'Width'#2'^'#7'Caption'#6#18'Catal' +- +'og short name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#2#14#6'He' +- +'ight'#2#14#3'Top'#3#192#0#5'Width'#2'Y'#7'Caption'#6#17'Catalog long name' +- +#11'ParentColor'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#4'Left'#2'f'#6'Heig' +- ,'ht'#2#25#3'Top'#3#248#0#5'Width'#2#25#5'Color'#7#9'clBtnFace'#10'Glyph.Data' +- +#10#18#6#0#0#14#6#0#0'BM'#14#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#22#0#0#0#22#0#0 +- +#0#1#0#24#0#0#0#0#0#216#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#207#208#208#207 ++ +'alClient'#8'TabIndex'#2#2#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageContro' ++ +'l1PageChanged'#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#1'1'#12'ClientHeigh' ++ +'t'#3#147#1#11'ClientWidth'#3#127#1#0#6'TLabel'#6'Label6'#4'Left'#2#20#6'Hei' ++ +'ght'#2#14#3'Top'#2#6#5'Width'#3#192#0#7'Caption'#6')Select the type of obje' ++ +'ct in your catalog'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label8' ++ +#4'Left'#2#14#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2'V'#7'Caption'#6#19'In' ++ +'put Catalog files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label10'#4'Left'#2#14#6 ++ +'Height'#2#14#3'Top'#3#164#0#5'Width'#2'^'#7'Caption'#6#18'Catalog short nam' ++ +'e'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#2#14#6'Height'#2#14#3 ++ +'Top'#3#192#0#5'Width'#2'Y'#7'Caption'#6#17'Catalog long name'#11'ParentColo' ++ +'r'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#4'Left'#2'f'#6'Height'#2#25#3'To' ++ ,'p'#3#248#0#5'Width'#2#25#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#18#6#0#0 ++ +#14#6#0#0'BM'#14#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#22#0#0#0#22#0#0#0#1#0#24#0#0 ++ +#0#0#0#216#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#207#208#208#207#208#208#207 + +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 + +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 + +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 +- +#208#208#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207 ++ +#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 + +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 + +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 +- +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#12#12#12#12 ++ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#12#12#12#12#12#12#12#12 + +#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12 +- +#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12'011'#207#208#208#207#208#208 +- +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#0#0#0#0#0#0'((' +- +#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#16'KKZ[[' +- +#185#186#186#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#29 +- +#29#0'//'#0'OO'#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 +- +#128#0#128#128#0#128#128#0#128#128#0#128#128#0'll'#0#23#23#136#142#142#185 +- +#186#186#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#159#159#0#255#255#0 +- +'oo'#0#23#23#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 +- +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#24#24'Z[['#207 +- +#208#208#207#208#208#207#208#208#0#0#0#0#0#129#159#159#207#255#255'Z'#228#228 +- +#0#173#173#0#24#24#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 +- +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0'll'#17'KK111'#207#208#208 +- +#207#208#208#0#0#0#0#0'Y'#159#159#143#255#255'}'#255#255'['#228#228#0'oo'#0 +- +'OO'#0'``'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 +- +#128#0#128#128#0#128#128#0#128#128#0'``'#7';;ttt'#178#179#179#0#0#0#0#0#9#159 +- +#159#15#255#255#141#255#255#197#255#255#15#255#255#2'<<'#0'=='#0'xx'#0'xx'#0 +- +'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'pp'#0#0#0#133#134#134 +- +#0#0#0#0#0#159#159#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255 +- +#255#0#143#143#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255 +- +#255'O'#255#255#157#255#255'b'#220#220#10#175#175#175#175#175'6'#175#175'6' +- +#175#175#175#175#175#10#175#175#0'LL'#26#26#26#142#143#143#142#143#143#142 +- +#143#143#142#143#143#142#143#143#142#143#143#0#0#0#0#0'1'#159#159'O'#255#255 +- +#133#255#255#157#255#255'O'#255#255#157#255#255#133#255#255'U'#255#255#175 +- +#255#255'm'#255#255'm'#255#255#175#255#255'U'#255#255'"oo&&&'#207#208#208#207 +- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#159#159 +- +#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255#255'o'#255#255#239 +- +#255#255#0#255#255#175#255#255#175#255#255#0#255#255#239#255#255'ooo&&&'#207 +- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0 +- +#0#9#159#159#15#255#255#141#255#255#197#255#255#15#255#255#2'<<'#6#15#15#14 +- +#15#15#0#15#15#10#15#15#10#15#15#0#15#15#14#15#15#6#6#6'&&&'#207#208#208#207 +- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0'ttt+qq'#0'oo>oo' +- +'[oo'#0'oo^sstttttttttttttttttttttttt'#133#133#133#207#208#208'pqqZ[[Z[[Z[[' +- +#170#171#171#0#0#207#208#208'eff&&&&&&&&&&&&'#175#176#176#207#208#208#207#208 ++ +#12#12#12#12#12#12#12#12#12#12#12#12'011'#207#208#208#207#208#208#207#208#208 ++ +#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#0#0#0#0#0#0'(('#0'GG'#0'GG' ++ +#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#16'KKZ[['#185#186#186 ++ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#29#29#0'//'#0'O' ++ +'O'#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 ++ +#128#0#128#128#0#128#128#0#128#128#0'll'#0#23#23#136#142#142#185#186#186#207 ++ +#208#208#207#208#208#207#208#208#0#0#0#0#0#0#159#159#0#255#255#0'oo'#0#23#23 ++ +#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 ++ +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#24#24'Z[['#207#208#208#207#208 ++ +#208#207#208#208#0#0#0#0#0#129#159#159#207#255#255'Z'#228#228#0#173#173#0#24 ++ +#24#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 ++ +#128#0#128#128#0#128#128#0#128#128#0'll'#17'KK111'#207#208#208#207#208#208#0 ++ +#0#0#0#0'Y'#159#159#143#255#255'}'#255#255'['#228#228#0'oo'#0'OO'#0'``'#0#128 ++ +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 ++ +#128#128#0#128#128#0'``'#7';;ttt'#178#179#179#0#0#0#0#0#9#159#159#15#255#255 ++ +#141#255#255#197#255#255#15#255#255#2'<<'#0'=='#0'xx'#0'xx'#0'xx'#0'xx'#0'xx' ++ +#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'pp'#0#0#0#133#134#134#0#0#0#0#0#159 ++ +#159#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255#255#0#143#143#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255#255'O'#255#255#157 ++ +#255#255'b'#220#220#10#175#175#175#175#175'6'#175#175'6'#175#175#175#175#175 ++ +#10#175#175#0'LL'#26#26#26#142#143#143#142#143#143#142#143#143#142#143#143 ++ +#142#143#143#142#143#143#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255 ++ +#255'O'#255#255#157#255#255#133#255#255'U'#255#255#175#255#255'm'#255#255'm' ++ +#255#255#175#255#255'U'#255#255'"oo&&&'#207#208#208#207#208#208#207#208#208 ++ +#207#208#208#207#208#208#207#208#208#0#0#0#0#0#159#159#159#255#255#255'o'#255 ++ +#255'/'#255#255#255#255#255'/'#255#255'o'#255#255#239#255#255#0#255#255#175 ++ +#255#255#175#255#255#0#255#255#239#255#255'ooo&&&'#207#208#208#207#208#208 ++ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#9#159#159#15#255 ++ +#255#141#255#255#197#255#255#15#255#255#2'<<'#6#15#15#14#15#15#0#15#15#10#15 ++ +#15#10#15#15#0#15#15#14#15#15#6#6#6'&&&'#207#208#208#207#208#208#207#208#208 ++ +#207#208#208#207#208#208#207#208#208#0#0'ttt+qq'#0'oo>oo[oo'#0'oo^sstttttttt' ++ +'tttttttttttttttt'#133#133#133#207#208#208'pqqZ[[Z[[Z[['#170#171#171#0#0#207 ++ +#208#208'eff&&&&&&&&&&&&'#175#176#176#207#208#208#207#208#208#207#208#208#207 ++ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 ++ +#208'FFF'#21#21#21#0#0#0#0#0#0#142#143#143#0#0#207#208#208#207#208#208#207 ++ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 + +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 +- +#207#208#208#207#208#208'FFF'#21#21#21#0#0#0#0#0#0#142#143#143#0#0#207#208 ++ +#207#208#208#207#208#208#207#208#208'ttt'#0#0#0#0#0#0#142#143#143#0#0#207#208 + +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 ++ +#207#208#208#207#208#208#207#208#208#207#208#208#154#155#155'&'''''#196#197 ++ +#197#207#208#208#207#208#208#207#208#208'FFF___'#157#158#158#0#0#0#142#143 ++ +#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 ++ +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#170#171#171 ++ +'Z[[rssttttttttt___'#141#142#142#199#200#200'Z[['#170#171#171#0#0#207#208#208 + +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 +- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208'ttt'#0#0#0#0#0#0#142 +- +#143#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 +- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#154#155 +- +#155'&'''''#196#197#197#207#208#208#207#208#208#207#208#208'FFF___'#157#158 +- +#158#0#0#0#142#143#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208 ++ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#24#24#24 ++ +#12#12#12#12#12#12#12#12#12#170#171#171#207#208#208#207#208#208#207#208#208 ++ +#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 + +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 +- +#208#208#170#171#171'Z[[rssttttttttt___'#141#142#142#199#200#200'Z[['#170#171 +- +#171#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 +- +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 +- +#207#208#208#24#24#24#12#12#12#12#12#12#12#12#12#170#171#171#207#208#208#207 +- +#208#208#207#208#208#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207 + +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 +- +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 +- +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0 +- +#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196 +- ,#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207 ++ +#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#196#207#207#196#207 + +#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207 +- +#196#207#207#196#207#207#196#207#207#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#17'Sp' +- +'eedButton1Click'#0#0#6'TLabel'#7'Label22'#4'Left'#2#14#6'Height'#2'I'#3'Top' +- +#3'f'#1#5'Width'#3'Y'#1#8'AutoSize'#8#7'Caption'#6#211'For a large catalog a' +- +'lways select "Binary". For a small dataset that change frequently select "T' +- +'ext", this let you edit the file and see the result immediatly on the chart' +- +' without the need to rerun this utility.'#11'ParentColor'#8#8'WordWrap'#9#0 +- +#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#3#132#0#6'Height'#3#137#0#3'Top'#2 +- +#22#5'Width'#3#227#0#8'AutoFill'#9#7'Caption'#6#12'Catalog type'#28'ChildSiz' +- +'ing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizi' +- +'ng.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarge' +- +'Vertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 +- +#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' +- +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' +- +'olsPerLine'#2#1#12'ClientHeight'#2'z'#11'ClientWidth'#3#223#0#9'ItemIndex'#2 +- +#0#13'Items.Strings'#1#6#5'Stars'#6#15'Variables stars'#6#13'Doubles stars'#6 +- +#24'Nebulae or other objects'#6#16'Nebulae outlines'#0#7'OnClick'#7#16'Radio' +- +'Group1Click'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#3#145#0#6'Height' +- +#2#21#3'Top'#3#160#0#5'Width'#2'1'#9'MaxLength'#2#4#8'TabOrder'#2#1#0#0#5'TE' +- +'dit'#5'Edit5'#4'Left'#3#145#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#201#0 +- +#9'MaxLength'#2'2'#8'TabOrder'#2#2#0#0#8'TListBox'#8'ListBox1'#4'Left'#3#145 +- +#0#6'Height'#2'8'#3'Top'#3#220#0#5'Width'#3#201#0#10'ItemHeight'#2#0#10'OnDb' +- +'lClick'#7#17'SpeedButton1Click'#8'TabOrder'#2#3#8'TopIndex'#2#255#0#0#11'TR' +- +'adioGroup'#9'binarycat'#4'Left'#2#14#6'Height'#2'8'#3'Top'#3'('#1#5'Width'#3 +- +'['#1#8'AutoFill'#9#7'Caption'#6#19'Output Catalog Type'#28'ChildSizing.Left' +- +'RightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlar' +- +'geHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' +- +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' +- +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' +- +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' +- +'e'#2#2#12'ClientHeight'#2')'#11'ClientWidth'#3'W'#1#7'Columns'#2#2#9'ItemIn' +- +'dex'#2#0#13'Items.Strings'#1#6#22'Binary indexed catalog'#6#17'Text file ca' +- +'talog'#0#7'OnClick'#7#15'binarycatChange'#8'TabOrder'#2#4#0#0#0#9'TTabSheet' +- +#9'TabSheet2'#7'Caption'#6#1'2'#12'ClientHeight'#3#178#1#11'ClientWidth'#3 +- +#129#1#10'ImageIndex'#2#4#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'Height'#2#14#3 +- +'Top'#2#8#5'Width'#2'}'#7'Caption'#6#23'General catalog options'#11'ParentCo' +- +'lor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3 +- +#224#0#5'Width'#3'Y'#1#7'Caption'#6#26'Default Nebulae parameters'#12'Client' +- +'Height'#3#177#0#11'ClientWidth'#3'U'#1#8'TabOrder'#2#5#0#6'TLabel'#7'Label1' +- +'1'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#17#5'Width'#2'm'#7'Caption'#6#19'Dim' +- +'ension and Units'#11'ParentColor'#8#0#0#6'TLabel'#7'Label12'#4'Left'#2#8#6 +- +'Height'#2#14#3'Top'#2'X'#5'Width'#2'<'#7'Caption'#6#11'Object type'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#7'Label15'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'x'#5 +- +'Width'#3#229#0#7'Caption'#6'-Recognize Units or Object type from the file:' +- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#134#0#6'Height'#2#14#3 +- +'Top'#2'0'#5'Width'#3#136#0#7'Caption'#6#28'(useful to represent a flux)'#11 +- +'ParentColor'#8#8'WordWrap'#9#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#204#0#6 +- +'Height'#2#21#3'Top'#2#12#5'Width'#2'Y'#10'ItemHeight'#2#0#13'Items.Strings' +- +#1#6#6'Degree'#6#6'Minute'#6#6'Second'#0#8'OnChange'#7#15'ComboBox1Change'#8 +- +'TabOrder'#2#1#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#3#140#0#6'Height'#2#21#4 +- +'Hint'#6#7'0..3600'#3'Top'#2#12#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHin' +- +'t'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#3#16#14#0#0#9'TCheckBox'#9'Ch' +- +'eckBox1'#4'Left'#2#4#6'Height'#2#19#3'Top'#2'('#5'Width'#2'l'#7'Caption'#6 +- +#17'Logarithmic scale'#8'TabOrder'#2#2#0#0#9'TComboBox'#9'ComboBox3'#4'Left' +- +#2'x'#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'q'#10'ItemHeight'#2#0#9'ItemInde' +- +'x'#2#14#13'Items.Strings'#1#6#6'Galaxy'#6#14'Galaxy Cluster'#6#12'Open Clus' +- +'ter'#6#16'Globular Cluster'#6#16'Planetary Nebula'#6#6'Nebula'#6#11'Dark Ne' +- +'bula'#6#18'Cluster and Nebula'#6#4'Knot'#6#4'Star'#6#11'Double Star'#6#11'T' +- +'riple star'#6#9'Asterism '#6#12'Non Existant'#6#6'Unknow'#6#6'Circle'#6#6'S' +- +'quare'#6#7'Losange'#0#8'TabOrder'#2#3#4'Text'#6#6'Unknow'#0#0#7'TButton'#7 +- +'Button3'#4'Left'#2#9#6'Height'#2#25#3'Top'#3#136#0#5'Width'#2'{'#25'BorderS' +- +'pacing.InnerBorder'#2#4#7'Caption'#6#17'Edit Object Types'#7'OnClick'#7#12 +- +'Button3Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button6'#4'Left'#3#156#0#6'H' +- ,'eight'#2#25#3'Top'#3#136#0#5'Width'#2'y'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#10'Edit Units'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#5#0#0 +- +#0#9'TGroupBox'#9'GroupBox7'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5 +- +'Width'#3'Y'#1#7'Caption'#6#26'Default Outline parameters'#12'ClientHeight'#3 +- +#177#0#11'ClientWidth'#3'U'#1#8'TabOrder'#2#6#0#6'TLabel'#7'Label18'#4'Left' +- +#3#148#0#6'Height'#2#14#3'Top'#2'P'#5'Width'#2':'#7'Caption'#6#11'Line width' +- +' '#11'ParentColor'#8#0#0#6'TLabel'#7'Label19'#4'Left'#3#156#0#6'Height'#2#14 +- +#3'Top'#3#152#0#5'Width'#2' '#7'Caption'#6#6'Color '#11'ParentColor'#8#0#0#6 +- +'TShape'#6'Shape1'#4'Left'#3#220#0#6'Height'#2#22#3'Top'#3#144#0#5'Width'#2 +- +#22#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#7'TButton'#7'Button9'#4'Left'#2#9#6 +- +'Height'#2#25#3'Top'#2'm'#5'Width'#2'|'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#19'Edit Line operation'#7'OnClick'#7#12'Button9Click'#8'TabOrder' +- +#2#0#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#3#220#0#6'Height'#2#21#4'Hint'#6#5 +- +'0..99'#3'Top'#2'K'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' +- +'der'#2#1#5'Value'#2#0#8'MaxValue'#2'c'#0#0#7'TButton'#8'Button11'#4'Left'#2 +- +#8#6'Height'#2#25#3'Top'#3#144#0#5'Width'#2'}'#25'BorderSpacing.InnerBorder' +- +#2#4#7'Caption'#6#10'Edit Color'#7'OnClick'#7#13'Button11Click'#8'TabOrder'#2 +- +#2#0#0#11'TRadioGroup'#11'RadioGroup6'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2#8 +- +#5'Width'#3'<'#1#8'AutoFill'#9#7'Caption'#6#12'Drawing Type'#28'ChildSizing.' +- +'LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.E' +- +'nlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVert' +- +'ical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 +- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' +- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' +- +'PerLine'#2#3#12'ClientHeight'#2'*'#11'ClientWidth'#3'8'#1#7'Columns'#2#3#9 +- +'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#6'Spline'#6#7'Surface'#0#8'T' +- +'abOrder'#2#3#0#0#9'TCheckBox'#9'CheckBox7'#4'Left'#2#4#6'Height'#2#19#3'Top' +- +#2'H'#5'Width'#2'c'#7'Caption'#6#14'Closed contour'#7'Checked'#9#5'State'#7#9 +- +'cbChecked'#8'TabOrder'#2#4#0#0#0#11'TRadioGroup'#11'RadioGroup2'#4'Left'#2#8 +- +#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#10'R' +- +'A options'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' +- +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' +- +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' +- +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 +- +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' +- +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'Z'#11'ClientWidth' +- +#3#176#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#24'Hours, minutes, secondes' +- +#6#13'Decimal hours'#6#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#0 +- +#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'Ra' +- +'dioGroup3'#4'Left'#3#190#0#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#192#0#8'Au' +- +'toFill'#9#7'Caption'#6#11'DEC options'#28'ChildSizing.LeftRightSpacing'#2#6 +- +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 +- +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' +- +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' +- +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' +- +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientH' +- +'eight'#2'Z'#11'ClientWidth'#3#188#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 +- +#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#6#28'Decimal South Pol' +- +'ar Distance'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#1#0#0#9'TGro' +- +'upBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#130 +- +#0#7'Caption'#6#19'Coordinates Equinox'#12'ClientHeight'#2'*'#11'ClientWidth' +- +#2'~'#8'TabOrder'#2#2#0#10'TFloatEdit'#10'FloatEdit1'#4'Left'#2#8#6'Height'#2 +- +#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9 +- +'TGroupBox'#9'GroupBox4'#4'Left'#3#254#0#6'Height'#2'9'#3'Top'#3#152#0#5'Wid' +- +'th'#3#128#0#7'Caption'#6#17'Maximum magnitude'#12'ClientHeight'#2'*'#11'Cli' +- +'entWidth'#2'|'#8'TabOrder'#2#4#0#10'TFloatEdit'#10'FloatEdit2'#4'Left'#2#12 +- +#6'Height'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#3#142#0#6'Height'#2'9'#3'Top'#3 +- +#152#0#5'Width'#2'k'#7'Caption'#6#14'Position Epoch'#12'ClientHeight'#2'*'#11 +- +'ClientWidth'#2'g'#8'TabOrder'#2#3#0#10'TFloatEdit'#10'FloatEdit3'#4'Left'#2 +- +#8#6'Height'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 +- ,#0#0#0#0#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#1'3'#12'ClientHeight'#3 +- +#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#1#0#6'TLabel'#6'Label4'#4'Le' +- +'ft'#3#134#0#6'Height'#2#14#3'Top'#3#252#0#5'Width'#2'0'#7'Caption'#6#10'Fir' +- +'st Char'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#14#1#6'Height' +- +#2#14#3'Top'#3#252#0#5'Width'#2'"'#7'Caption'#6#6'Length'#11'ParentColor'#8#0 +- +#0#6'TLabel'#6'Label7'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#3#7#1 +- +#7'Caption'#6'<Select the fields to use and their position in the text file' +- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#18#6'Height'#2#14#3'Top' +- +#3#252#0#5'Width'#2#27#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#13'TCheck' +- +'ListBox'#13'CheckListBox1'#4'Left'#2#18#6'Height'#3#199#0#3'Top'#2'('#5'Wid' +- +'th'#3'Y'#1#13'Items.Strings'#1#6#2'RA'#6#3'DEC'#0#10'ItemHeight'#2#19#7'OnK' +- +'eyUp'#7#18'CheckListBox1KeyUp'#9'OnMouseUp'#7#20'CheckListBox1MouseUp'#8'Ta' +- +'bOrder'#2#0#4'Data'#10#6#0#0#0#2#0#0#0#0#0#0#0#5'TEdit'#5'Edit1'#4'Left'#3 +- +#202#0#6'Height'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange' +- +#7#11'Edit1Change'#8'TabOrder'#2#2#0#0#5'TEdit'#5'Edit2'#4'Left'#3'>'#1#6'He' +- +'ight'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Edit' +- +'2Change'#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit3'#4'Left'#2'>'#6'Height'#2#21#3 +- +'Top'#3#248#0#5'Width'#2'7'#8'AutoSize'#8#9'MaxLength'#2#10#8'OnChange'#7#11 +- +'Edit3Change'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#18#6'H' +- +'eight'#2#21#3'Top'#3#24#1#5'Width'#3#191#0#7'Caption'#6'#Use this field as ' +- +'an Alternate Name'#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#4#7'Visibl' +- +'e'#8#0#0#7'TButton'#7'Button7'#4'Left'#3' '#1#6'Height'#2#25#3'Top'#3#24#1#5 +- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Advanced'#7'On' +- +'Click'#7#12'Button7Click'#8'TabOrder'#2#5#0#0#5'TMemo'#5'Memo1'#4'Left'#2#11 +- +#6'Height'#2'Z'#3'Top'#3'>'#1#5'Width'#3'_'#1#11'Font.Height'#2#245#9'Font.N' +- +'ame'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#13'HideSelection'#8#9'OnMouse' +- +'Up'#7#12'Memo1MouseUp'#10'ParentFont'#8#10'ScrollBars'#7#12'ssHorizontal'#8 +- +'TabOrder'#2#6#8'WordWrap'#8#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#1 +- +'4'#12'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#2#0#6 +- +'TLabel'#6'Label1'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#2'{'#7'C' +- +'aption'#6#22'Output catalog options'#11'ParentColor'#8#0#0#11'TRadioGroup' +- +#11'RadioGroup4'#4'Left'#2#24#6'Height'#2'y'#3'Top'#2'('#5'Width'#3'A'#1#8'A' +- +'utoFill'#9#7'Caption'#6#15'Number of files'#28'ChildSizing.LeftRightSpacing' ++ ,#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196 ++ +#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207 ++ +#207#196#207#207#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#17'SpeedButton1Click'#0#0 ++ +#6'TLabel'#7'Label22'#4'Left'#2#14#6'Height'#2'I'#3'Top'#3'f'#1#5'Width'#3'Y' ++ +#1#8'AutoSize'#8#7'Caption'#6#211'For a large catalog always select "Binary"' ++ +'. For a small dataset that change frequently select "Text", this let you ed' ++ +'it the file and see the result immediatly on the chart without the need to ' ++ +'rerun this utility.'#11'ParentColor'#8#8'WordWrap'#9#0#0#11'TRadioGroup'#11 ++ +'RadioGroup1'#4'Left'#3#132#0#6'Height'#3#137#0#3'Top'#2#22#5'Width'#3#227#0 ++ +#8'AutoFill'#9#7'Caption'#6#12'Catalog type'#28'ChildSizing.LeftRightSpacing' + +#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 + +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' + +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' + +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 + +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' +- +'tHeight'#2'j'#11'ClientWidth'#3'='#1#9'ItemIndex'#2#0#13'Items.Strings'#1#6 +- +'(50 (recommended up to 100''000 objects)'#6')184 (recommended up to 1''00' +- +'0''000 objects)'#6')732 (recommended up to 5''000''000 objects)'#6#21'9537 ' +- +'(larger dataset)'#0#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2 +- +#24#6'Height'#2'`'#3'Top'#3'='#1#5'Width'#3'A'#1#7'Caption'#6#16'Output Dire' +- +'ctory'#12'ClientHeight'#2'Q'#11'ClientWidth'#3'='#1#8'TabOrder'#2#0#0#14'TD' +- +'irectoryEdit'#14'DirectoryEdit1'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#16#5 +- +'Width'#3#240#0#9'Directory'#6#10'C:\testcat'#17'OnAcceptDirectory'#7#29'Dir' +- +'ectoryEdit1AcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#20#9'NumGlyp' +- +'hs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CheckBox6'#4'Le' +- +'ft'#2#16#6'Height'#2#19#3'Top'#2'0'#5'Width'#3#178#0#7'Caption'#6#30'Append' +- +' to an existing catalog '#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupBox6'#4 +- +'Left'#2#24#6'Height'#3#133#0#3'Top'#3#176#0#5'Width'#3'A'#1#7'Caption'#6#12 +- +'Search Index'#12'ClientHeight'#2'v'#11'ClientWidth'#3'='#1#8'TabOrder'#2#1#0 +- +#9'TCheckBox'#9'CheckBox3'#4'Left'#2#16#6'Height'#2#19#3'Top'#2#12#5'Width'#3 +- +#148#0#7'Caption'#6#26'Create a search index file'#7'Checked'#9#5'State'#7#9 +- +'cbChecked'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CheckBox4'#4'Left'#2#16#6'Hei' +- +'ght'#2#19#3'Top'#2'<'#5'Width'#3#211#0#7'Caption'#6'$Add the alternate name' +- +'s to the index'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox5'#4'Left'#2#16#6 +- +'Height'#2#19#3'Top'#2'T'#5'Width'#3#234#0#7'Caption'#6'+Prefix the alternat' +- +'e names with their label'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2 +- +#2#0#0#9'TCheckBox'#9'CheckBox8'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'$'#5'W' +- +'idth'#3#207#0#7'Caption'#6'#Prefix name with catalog short name'#8'TabOrder' +- +#2#3#0#0#0#0#9'TTabSheet'#9'TabSheet5'#7'Caption'#6#1'5'#12'ClientHeight'#3 +- +#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#4#0#6'TLabel'#6'Label9'#4'Le' +- +'ft'#2#24#6'Height'#2#14#3'Top'#2#24#5'Width'#3#14#1#7'Caption'#6'8Indicate ' +- ,'the string identifier for each type of object :'#11'ParentColor'#8#0#0#11'T' +- +'StringGrid'#11'StringGrid1'#4'Left'#2#24#6'Height'#3'$'#1#3'Top'#2'@'#5'Wid' +- +'th'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2 +- +#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLi' +- +'ne'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'goAlway' +- +'sShowEditor'#0#8'RowCount'#2#15#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#9 +- +'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button4'#4'Left'#3#134#0#6'Hei' +- +'ght'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'C' +- +'aption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9'T' +- +'TabSheet'#9'TabSheet6'#7'Caption'#6#1'6'#12'ClientHeight'#3#178#1#11'Client' +- +'Width'#3#129#1#10'ImageIndex'#2#5#0#6'TLabel'#7'Label14'#4'Left'#2#22#6'Hei' +- +'ght'#2#14#3'Top'#2'('#5'Width'#3#225#0#7'Caption'#6'0Indicate how to recogn' +- +'ize the object size unit :'#11'ParentColor'#8#0#0#11'TStringGrid'#11'String' +- +'Grid2'#4'Left'#2#22#6'Height'#3'$'#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount' +- +#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0 +- +#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goH' +- +'orzLine'#13'goRangeSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount' +- +#2#4#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0 +- +#0#0#7'TButton'#7'Button5'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#128#1#5'W' +- +'idth'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnCli' +- +'ck'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet7'#7'Ca' +- +'ption'#6#1'7'#12'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#10'ImageInde' +- +'x'#2#6#0#6'TLabel'#7'Label17'#4'Left'#2#30#6'Height'#2#16#3'Top'#2'('#5'Wid' +- +'th'#3#15#1#7'Caption'#6'+Indicate the string for each draw operation'#11'Pa' +- +'rentColor'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#30#6'Height'#3'$' +- +#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'D' +- +'efaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLin' +- +'e'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'go' +- +'Editing'#18'goAlwaysShowEditor'#0#8'TabOrder'#2#0#16'TitleFont.Height'#2#245 +- +#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button8'#4'Left'#3#136#0#6'H' +- +'eight'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9 +- +'TTabSheet'#9'TabSheet8'#7'Caption'#6#1'8'#12'ClientHeight'#3#178#1#11'Clien' +- +'tWidth'#3#129#1#10'ImageIndex'#2#7#0#6'TLabel'#7'Label20'#4'Left'#2'F'#6'He' +- +'ight'#2#14#3'Top'#2#24#5'Width'#3#157#0#7'Caption'#6'"Indicate the string f' +- +'or each color'#11'ParentColor'#8#0#0#6'TShape'#6'Shape2'#4'Left'#2'0'#6'Hei' +- +'ght'#2#25#3'Top'#2'X'#5'Width'#2'Q'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6 +- +'TShape'#6'Shape3'#4'Left'#2'0'#6'Height'#2#25#3'Top'#2'r'#5'Width'#2'Q'#11 +- +'Brush.Color'#7#8'clSilver'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6 +- +'Shape4'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#140#0#5'Width'#2'Q'#11'Brush.C' +- +'olor'#7#6'clGray'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape5'#4 +- +'Left'#2'0'#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'Q'#11'Brush.Color'#4'00' +- +'0'#0#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape6'#4'Left'#2'0'#6 +- +'Height'#2#25#3'Top'#3#192#0#5'Width'#2'Q'#11'Brush.Color'#7#5'clRed'#9'OnMo' +- +'useUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape7'#4'Left'#2'0'#6'Height'#2 +- +#25#3'Top'#3#218#0#5'Width'#2'Q'#11'Brush.Color'#7#6'clLime'#9'OnMouseUp'#7 +- +#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape8'#4'Left'#2'0'#6'Height'#2#25#3'Top' +- +#3#244#0#5'Width'#2'Q'#11'Brush.Color'#7#8'clYellow'#9'OnMouseUp'#7#13'Shape' +- +'1MouseUp'#0#0#6'TShape'#6'Shape9'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#14#1 +- +#5'Width'#2'Q'#11'Brush.Color'#7#6'clBlue'#9'OnMouseUp'#7#13'Shape1MouseUp'#0 +- +#0#6'TShape'#7'Shape10'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3'('#1#5'Width'#2 +- +'Q'#11'Brush.Color'#7#9'clFuchsia'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TS' +- +'hape'#7'Shape11'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3'B'#1#5'Width'#2'Q'#11 +- +'Brush.Color'#7#6'clAqua'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TLabel'#7'L' +- +'abel21'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'@'#5'Width'#2'z'#7'Caption'#6#26 +- +'Click to change the color '#11'ParentColor'#8#0#0#11'TStringGrid'#11'String' +- +'Grid4'#4'Left'#3#158#0#6'Height'#3','#1#3'Top'#2'='#5'Width'#3#208#0#8'ColC' +- +'ount'#2#1#15'DefaultColWidth'#3#200#0#16'DefaultRowHeight'#2#26#9'FixedCols' +- +#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzL' +- +'ine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'goAlwa' +- +'ysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16'TitleFont.Height'#2#245 +- +#0#0#7'TButton'#8'Button10'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#128#1#5 +- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnCl' +- +'ick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel1'#4'Left' +- ,#2#0#6'Height'#2')'#3'Top'#3#182#1#5'Width'#3#247#1#5'Align'#7#8'alBottom'#10 +- +'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'ClientWidth'#3#247#1#11'Pa' +- +'rentColor'#8#8'TabOrder'#2#1#0#7'TButton'#6'Exitbt'#4'Left'#3#150#1#6'Heigh' +- +'t'#2#25#3'Top'#2#4#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' +- +'n'#6#5'Close'#7'OnClick'#7#11'ExitbtClick'#8'TabOrder'#2#3#7'Visible'#8#0#0 +- +#7'TButton'#6'prevbt'#4'Left'#3#4#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C' +- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'<< Prev'#7'OnClick'#7#11 +- +'prevbtClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'nextbt'#4'Left'#3'K'#1#6'Heig' +- +'ht'#2#25#3'Top'#2#4#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' +- +'on'#6#9'Next >>'#7'OnClick'#7#11'nextbtClick'#8'TabOrder'#2#1#0#0#7'TButt' +- +'on'#5'Endbt'#4'Left'#3#144#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'['#25'Bor' +- +'derSpacing.InnerBorder'#2#4#7'Caption'#6#13'Build Catalog'#7'Enabled'#8#7'O' +- +'nClick'#7#10'EndbtClick'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#3 +- +#170#0#6'Height'#2#25#3'Top'#2#4#5'Width'#2'V'#25'BorderSpacing.InnerBorder' +- +#2#4#7'Caption'#6#12'Load project'#7'OnClick'#7#12'Button2Click'#8'TabOrder' +- +#2#4#0#0#7'TButton'#7'Button1'#4'Left'#2'O'#6'Height'#2#25#3'Top'#2#4#5'Widt' +- +'h'#2'W'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#12'Save Project'#7'O' +- +'nClick'#7#12'Button1Click'#8'TabOrder'#2#5#0#0#7'TButton'#8'Button12'#4'Lef' +- +'t'#2#8#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C'#25'BorderSpacing.InnerBorder' +- +#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#13'Button12Click'#8'TabOrder'#2#6#0#0 +- +#0#11'TOpenDialog'#11'OpenDialog1'#6'Filter'#6#31'All files|*|Project files|' +- +'*.prj'#11'FilterIndex'#2#0#7'Options'#11#15'ofPathMustExist'#15'ofFileMustE' +- +'xist'#14'ofEnableSizing'#0#4'left'#3#184#0#3'top'#2#8#0#0#11'TSaveDialog'#11 +- +'SaveDialog1'#6'Filter'#6'!All files|*.*|Project files|*.prj'#11'FilterIndex' +- +#2#0#7'Options'#11#17'ofOverwritePrompt'#14'ofHideReadOnly'#18'ofNoReadOnlyR' +- +'eturn'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#3#144#0#3'top'#2#8#0#0 +- +#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7'clBlack'#20'CustomColors.Str' +- +'ings'#1#6#13'ColorA=000000'#6#13'ColorB=000080'#6#13'ColorC=008000'#6#13'Co' +- +'lorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800080'#6#13'ColorG=808000'#6 +- +#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'ColorJ=0000FF'#6#13'ColorK=00FF0' +- +'0'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6#13'ColorO=' +- +'FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6#13'ColorR=F0CAA6'#6#13'Co' +- +'lorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#224#0#3'top'#2#8#0#0#0 ++ +'tHeight'#2'z'#11'ClientWidth'#3#223#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 ++ +#5'Stars'#6#15'Variables stars'#6#13'Doubles stars'#6#24'Nebulae or other ob' ++ +'jects'#6#16'Nebulae outlines'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrde' ++ +'r'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#3#145#0#6'Height'#2#21#3'Top'#3#160#0#5 ++ +'Width'#2'1'#9'MaxLength'#2#4#8'TabOrder'#2#1#0#0#5'TEdit'#5'Edit5'#4'Left'#3 ++ +#145#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#201#0#9'MaxLength'#2'2'#8'Ta' ++ +'bOrder'#2#2#0#0#8'TListBox'#8'ListBox1'#4'Left'#3#145#0#6'Height'#2'8'#3'To' ++ +'p'#3#220#0#5'Width'#3#201#0#10'ItemHeight'#2#0#10'OnDblClick'#7#17'SpeedBut' ++ +'ton1Click'#8'TabOrder'#2#3#8'TopIndex'#2#255#0#0#11'TRadioGroup'#9'binaryca' ++ +'t'#4'Left'#2#14#6'Height'#2'8'#3'Top'#3'('#1#5'Width'#3'['#1#8'AutoFill'#9#7 ++ +'Caption'#6#19'Output Catalog Type'#28'ChildSizing.LeftRightSpacing'#2#6#28 ++ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' ++ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' ++ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' ++ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' ++ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHei' ++ +'ght'#2')'#11'ClientWidth'#3'W'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.S' ++ +'trings'#1#6#22'Binary indexed catalog'#6#17'Text file catalog'#0#7'OnClick' ++ +#7#15'binarycatChange'#8'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Cap' ++ +'tion'#6#1'2'#12'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex' ++ +#2#4#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#8#5'Width'#2 ++ +'}'#7'Caption'#6#23'General catalog options'#11'ParentColor'#8#0#0#9'TGroupB' ++ +'ox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5'Width'#3'Y' ++ +#1#7'Caption'#6#26'Default Nebulae parameters'#12'ClientHeight'#3#177#0#11'C' ++ +'lientWidth'#3'U'#1#8'TabOrder'#2#5#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Hei' ++ +'ght'#2#14#3'Top'#2#17#5'Width'#2'm'#7'Caption'#6#19'Dimension and Units'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#7'Label12'#4'Left'#2#8#6'Height'#2#14#3'Top'#2 ++ +'X'#5'Width'#2'<'#7'Caption'#6#11'Object type'#11'ParentColor'#8#0#0#6'TLabe' ++ +'l'#7'Label15'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'x'#5'Width'#3#229#0#7'Cap' ++ +'tion'#6'-Recognize Units or Object type from the file:'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#7'Label16'#4'Left'#3#134#0#6'Height'#2#14#3'Top'#2'0'#5'Width'#3 ++ +#136#0#7'Caption'#6#28'(useful to represent a flux)'#11'ParentColor'#8#8'Wor' ++ +'dWrap'#9#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#204#0#6'Height'#2#21#3'Top' ++ +#2#12#5'Width'#2'Y'#10'ItemHeight'#2#0#13'Items.Strings'#1#6#6'Degree'#6#6'M' ++ +'inute'#6#6'Second'#0#8'OnChange'#7#15'ComboBox1Change'#8'TabOrder'#2#1#0#0#9 ++ +'TLongEdit'#9'LongEdit1'#4'Left'#3#140#0#6'Height'#2#21#4'Hint'#6#7'0..3600' ++ +#3'Top'#2#12#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0 ++ +#5'Value'#2#0#8'MaxValue'#3#16#14#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#4#6 ++ +'Height'#2#19#3'Top'#2'('#5'Width'#2'l'#7'Caption'#6#17'Logarithmic scale'#8 ++ +'TabOrder'#2#2#0#0#9'TComboBox'#9'ComboBox3'#4'Left'#2'x'#6'Height'#2#21#3'T' ++ +'op'#2'P'#5'Width'#2'q'#10'ItemHeight'#2#0#9'ItemIndex'#2#14#13'Items.String' ++ +'s'#1#6#6'Galaxy'#6#14'Galaxy Cluster'#6#12'Open Cluster'#6#16'Globular Clus' ++ +'ter'#6#16'Planetary Nebula'#6#6'Nebula'#6#11'Dark Nebula'#6#18'Cluster and ' ++ +'Nebula'#6#4'Knot'#6#4'Star'#6#11'Double Star'#6#11'Triple star'#6#9'Asteris' ++ +'m '#6#12'Non Existant'#6#6'Unknow'#6#6'Circle'#6#6'Square'#6#7'Losange'#0#8 ++ +'TabOrder'#2#3#4'Text'#6#6'Unknow'#0#0#7'TButton'#7'Button3'#4'Left'#2#9#6'H' ++ +'eight'#2#25#3'Top'#3#136#0#5'Width'#2'{'#25'BorderSpacing.InnerBorder'#2#4#7 ++ +'Caption'#6#17'Edit Object Types'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2 ++ +#4#0#0#7'TButton'#7'Button6'#4'Left'#3#156#0#6'Height'#2#25#3'Top'#3#136#0#5 ++ ,'Width'#2'y'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'Edit Units'#7 ++ +'OnClick'#7#12'Button6Click'#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox7' ++ +#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5'Width'#3'Y'#1#7'Caption'#6 ++ +#26'Default Outline parameters'#12'ClientHeight'#3#177#0#11'ClientWidth'#3'U' ++ +#1#8'TabOrder'#2#6#0#6'TLabel'#7'Label18'#4'Left'#3#148#0#6'Height'#2#14#3'T' ++ +'op'#2'P'#5'Width'#2':'#7'Caption'#6#11'Line width '#11'ParentColor'#8#0#0#6 ++ +'TLabel'#7'Label19'#4'Left'#3#156#0#6'Height'#2#14#3'Top'#3#152#0#5'Width'#2 ++ +' '#7'Caption'#6#6'Color '#11'ParentColor'#8#0#0#6'TShape'#6'Shape1'#4'Left' ++ +#3#220#0#6'Height'#2#22#3'Top'#3#144#0#5'Width'#2#22#9'OnMouseUp'#7#13'Shape' ++ +'1MouseUp'#0#0#7'TButton'#7'Button9'#4'Left'#2#9#6'Height'#2#25#3'Top'#2'm'#5 ++ +'Width'#2'|'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Edit Line ope' ++ +'ration'#7'OnClick'#7#12'Button9Click'#8'TabOrder'#2#0#0#0#9'TLongEdit'#9'Lo' ++ +'ngEdit2'#4'Left'#3#220#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'K'#5'Wi' ++ +'dth'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8 ++ +'MaxValue'#2'c'#0#0#7'TButton'#8'Button11'#4'Left'#2#8#6'Height'#2#25#3'Top' ++ +#3#144#0#5'Width'#2'}'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'Edi' ++ +'t Color'#7'OnClick'#7#13'Button11Click'#8'TabOrder'#2#2#0#0#11'TRadioGroup' ++ +#11'RadioGroup6'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2#8#5'Width'#3'<'#1#8'Aut' ++ +'oFill'#9#7'Caption'#6#12'Drawing Type'#28'ChildSizing.LeftRightSpacing'#2#6 ++ +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 ++ +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' ++ +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' ++ +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' ++ +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientH' ++ +'eight'#2'*'#11'ClientWidth'#3'8'#1#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items' ++ +'.Strings'#1#6#4'Line'#6#6'Spline'#6#7'Surface'#0#8'TabOrder'#2#3#0#0#9'TChe' ++ +'ckBox'#9'CheckBox7'#4'Left'#2#4#6'Height'#2#19#3'Top'#2'H'#5'Width'#2'c'#7 ++ +'Caption'#6#14'Closed contour'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrd' ++ +'er'#2#4#0#0#0#11'TRadioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2'i'#3 ++ +'Top'#2'('#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#10'RA options'#28'Chi' ++ +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' ++ +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' ++ +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' ++ +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' ++ +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' ++ +'ontrolsPerLine'#2#1#12'ClientHeight'#2'Z'#11'ClientWidth'#3#176#0#9'ItemInd' ++ +'ex'#2#0#13'Items.Strings'#1#6#24'Hours, minutes, secondes'#6#13'Decimal hou' ++ +'rs'#6#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#0#7'OnClick'#7#16 ++ +'RadioGroup1Click'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioGroup3'#4'Lef' ++ +'t'#3#190#0#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#192#0#8'AutoFill'#9#7'Capt' ++ +'ion'#6#11'DEC options'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.' ++ +'TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousC' ++ +'hildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' ++ +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' ++ +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' ++ +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'Z'#11 ++ +'ClientWidth'#3#188#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#26'Degrees, min' ++ +'utes, secondes'#6#15'Decimal degrees'#6#28'Decimal South Polar Distance'#0#7 ++ +'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#1#0#0#9'TGroupBox'#9'GroupBox' ++ +'1'#4'Left'#2#8#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#130#0#7'Caption'#6 ++ +#19'Coordinates Equinox'#12'ClientHeight'#2'*'#11'ClientWidth'#2'~'#8'TabOrd' ++ +'er'#2#2#0#10'TFloatEdit'#10'FloatEdit1'#4'Left'#2#8#6'Height'#2#21#3'Top'#2 ++ +#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' ++ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9'TGroupBox'#9 ++ +'GroupBox4'#4'Left'#3#254#0#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#128#0#7 ++ +'Caption'#6#17'Maximum magnitude'#12'ClientHeight'#2'*'#11'ClientWidth'#2'|' ++ +#8'TabOrder'#2#4#0#10'TFloatEdit'#10'FloatEdit2'#4'Left'#2#12#6'Height'#2#21 ++ +#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9'T' ++ +'GroupBox'#9'GroupBox2'#4'Left'#3#142#0#6'Height'#2'9'#3'Top'#3#152#0#5'Widt' ++ +'h'#2'k'#7'Caption'#6#14'Position Epoch'#12'ClientHeight'#2'*'#11'ClientWidt' ++ +'h'#2'g'#8'TabOrder'#2#3#0#10'TFloatEdit'#10'FloatEdit3'#4'Left'#2#8#6'Heigh' ++ +'t'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0 ++ +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 ++ ,#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#1'3'#12'ClientHeight'#3#147#1#11 ++ +'ClientWidth'#3#127#1#10'ImageIndex'#2#1#0#6'TLabel'#6'Label4'#4'Left'#3#134 ++ +#0#6'Height'#2#14#3'Top'#3#252#0#5'Width'#2'3'#7'Caption'#6#10'First Char'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#14#1#6'Height'#2#14#3'Top' ++ +#3#252#0#5'Width'#2''''#7'Caption'#6#6'Length'#11'ParentColor'#8#0#0#6'TLabe' ++ +'l'#6'Label7'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#3'/'#1#7'Capt' ++ +'ion'#6'<Select the fields to use and their position in the text file'#11'Pa' ++ +'rentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#18#6'Height'#2#14#3'Top'#3 ++ +#252#0#5'Width'#2#31#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#13'TCheckLi' ++ +'stBox'#13'CheckListBox1'#4'Left'#2#18#6'Height'#3#199#0#3'Top'#2'('#5'Width' ++ +#3'Y'#1#13'Items.Strings'#1#6#2'RA'#6#3'DEC'#0#10'ItemHeight'#2#19#7'OnKeyUp' ++ +#7#18'CheckListBox1KeyUp'#9'OnMouseUp'#7#20'CheckListBox1MouseUp'#8'TabOrder' ++ +#2#0#4'Data'#10#6#0#0#0#2#0#0#0#0#0#0#0#5'TEdit'#5'Edit1'#4'Left'#3#202#0#6 ++ +'Height'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Ed' ++ +'it1Change'#8'TabOrder'#2#2#0#0#5'TEdit'#5'Edit2'#4'Left'#3'>'#1#6'Height'#2 ++ +#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Edit2Change' ++ +#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit3'#4'Left'#2'>'#6'Height'#2#21#3'Top'#3 ++ +#248#0#5'Width'#2'7'#8'AutoSize'#8#9'MaxLength'#2#10#8'OnChange'#7#11'Edit3C' ++ +'hange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#18#6'Height' ++ +#2#22#3'Top'#3#24#1#5'Width'#3#216#0#7'Caption'#6'#Use this field as an Alte' ++ +'rnate Name'#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#4#7'Visible'#8#0#0 ++ +#7'TButton'#7'Button7'#4'Left'#3' '#1#6'Height'#2#25#3'Top'#3#24#1#5'Width'#2 ++ +'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Advanced'#7'OnClick'#7 ++ +#12'Button7Click'#8'TabOrder'#2#5#0#0#5'TMemo'#5'Memo1'#4'Left'#2#11#6'Heigh' ++ +'t'#2'Z'#3'Top'#3'>'#1#5'Width'#3'_'#1#11'Font.Height'#2#245#9'Font.Name'#6#7 ++ +'courier'#10'Font.Pitch'#7#7'fpFixed'#9'OnMouseUp'#7#12'Memo1MouseUp'#10'Par' ++ +'entFont'#8#10'ScrollBars'#7#12'ssHorizontal'#8'TabOrder'#2#6#8'WordWrap'#8#0 ++ +#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#1'4'#12'ClientHeight'#3#147#1#11 ++ +'ClientWidth'#3#127#1#10'ImageIndex'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2#24#6 ++ +'Height'#2#14#3'Top'#2#16#5'Width'#2'{'#7'Caption'#6#22'Output catalog optio' ++ +'ns'#11'ParentColor'#8#0#0#11'TRadioGroup'#11'RadioGroup4'#4'Left'#2#24#6'He' ++ +'ight'#2'y'#3'Top'#2'('#5'Width'#3'A'#1#8'AutoFill'#9#7'Caption'#6#15'Number' ++ +' of files'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' ++ +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' ++ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' ++ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 ++ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' ++ +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'j'#11'ClientWidth' ++ +#3'='#1#9'ItemIndex'#2#0#13'Items.Strings'#1#6'(50 (recommended up to 100' ++ +'''000 objects)'#6')184 (recommended up to 1''000''000 objects)'#6')732 (rec' ++ +'ommended up to 5''000''000 objects)'#6#21'9537 (larger dataset)'#0#8'TabOrd' ++ +'er'#2#2#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#24#6'Height'#2'`'#3'Top'#3 ++ +'='#1#5'Width'#3'A'#1#7'Caption'#6#16'Output Directory'#12'ClientHeight'#2'Q' ++ +#11'ClientWidth'#3'='#1#8'TabOrder'#2#0#0#14'TDirectoryEdit'#14'DirectoryEdi' ++ +'t1'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#16#5'Width'#3#240#0#9'Directory'#6 ++ +#10'C:\testcat'#17'OnAcceptDirectory'#7#29'DirectoryEdit1AcceptDirectory'#10 ++ +'ShowHidden'#8#11'ButtonWidth'#2#20#9'NumGlyphs'#2#1#8'TabOrder'#2#0#0#0#9'T' ++ +'CheckBox'#9'CheckBox6'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'0'#5'Width'#3 ++ +#178#0#7'Caption'#6#30'Append to an existing catalog '#8'TabOrder'#2#1#0#0#0 ++ +#9'TGroupBox'#9'GroupBox6'#4'Left'#2#24#6'Height'#3#133#0#3'Top'#3#176#0#5'W' ++ +'idth'#3'A'#1#7'Caption'#6#12'Search Index'#12'ClientHeight'#2'v'#11'ClientW' ++ +'idth'#3'='#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'CheckBox3'#4'Left'#2#16#6'Hei' ++ +'ght'#2#19#3'Top'#2#12#5'Width'#3#148#0#7'Caption'#6#26'Create a search inde' ++ +'x file'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#0#0#0#9'TCheckBo' ++ +'x'#9'CheckBox4'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'<'#5'Width'#3#211#0#7 ++ +'Caption'#6'$Add the alternate names to the index'#8'TabOrder'#2#1#0#0#9'TCh' ++ +'eckBox'#9'CheckBox5'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'T'#5'Width'#3#234 ++ +#0#7'Caption'#6'+Prefix the alternate names with their label'#7'Checked'#9#5 ++ +'State'#7#9'cbChecked'#8'TabOrder'#2#2#0#0#9'TCheckBox'#9'CheckBox8'#4'Left' ++ +#2#16#6'Height'#2#19#3'Top'#2'$'#5'Width'#3#207#0#7'Caption'#6'#Prefix name ' ++ +'with catalog short name'#8'TabOrder'#2#3#0#0#0#0#9'TTabSheet'#9'TabSheet5'#7 ++ +'Caption'#6#1'5'#12'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIn' ++ +'dex'#2#4#0#6'TLabel'#6'Label9'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#24#5'Wi' ++ +'dth'#3#14#1#7'Caption'#6'8Indicate the string identifier for each type of o' ++ ,'bject :'#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGrid1'#4'Left'#2#24 ++ +#6'Height'#3'$'#1#3'Top'#2'@'#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColW' ++ +'idth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15 ++ +'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRan' ++ +'geSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#15#8'TabOrder' ++ +#2#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton' ++ +#7'Button4'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'Bo' ++ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4' ++ +'Click'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet6'#7'Caption'#6#1'6'#12 ++ +'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex'#2#5#0#6'TLabel' ++ +#7'Label14'#4'Left'#2#22#6'Height'#2#14#3'Top'#2'('#5'Width'#3#225#0#7'Capti' ++ +'on'#6'0Indicate how to recognize the object size unit :'#11'ParentColor'#8#0 ++ +#0#11'TStringGrid'#11'StringGrid2'#4'Left'#2#22#6'Height'#3'$'#1#3'Top'#2'H' ++ +#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeigh' ++ +'t'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedH' ++ +'orzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'go' ++ +'AlwaysShowEditor'#0#8'RowCount'#2#4#8'TabOrder'#2#0#16'TitleFont.Height'#2 ++ +#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button5'#4'Left'#3#134#0 ++ +#6'Height'#2#25#3'Top'#3#128#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2 ++ +#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0 ++ +#9'TTabSheet'#9'TabSheet7'#7'Caption'#6#1'7'#12'ClientHeight'#3#147#1#11'Cli' ++ +'entWidth'#3#127#1#10'ImageIndex'#2#6#0#6'TLabel'#7'Label17'#4'Left'#2#30#6 ++ +'Height'#2#16#3'Top'#2'('#5'Width'#3#15#1#7'Caption'#6'+Indicate the string ' ++ +'for each draw operation'#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGri' ++ +'d3'#4'Left'#2#30#6'Height'#3'$'#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount'#2 ++ +#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7 ++ +'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHor' ++ +'zLine'#13'goRangeSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'TabOrder'#2 ++ +#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7 ++ +'Button8'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'Bord' ++ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Cl' ++ +'ick'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet8'#7'Caption'#6#1'8'#12'C' ++ +'lientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex'#2#7#0#6'TLabel' ++ +#7'Label20'#4'Left'#2'F'#6'Height'#2#14#3'Top'#2#24#5'Width'#3#157#0#7'Capti' ++ +'on'#6'"Indicate the string for each color'#11'ParentColor'#8#0#0#6'TShape'#6 ++ +'Shape2'#4'Left'#2'0'#6'Height'#2#25#3'Top'#2'X'#5'Width'#2'Q'#9'OnMouseUp'#7 ++ +#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape3'#4'Left'#2'0'#6'Height'#2#25#3'Top' ++ +#2'r'#5'Width'#2'Q'#11'Brush.Color'#7#8'clSilver'#9'OnMouseUp'#7#13'Shape1Mo' ++ +'useUp'#0#0#6'TShape'#6'Shape4'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#140#0#5 ++ +'Width'#2'Q'#11'Brush.Color'#7#6'clGray'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0 ++ +#6'TShape'#6'Shape5'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'Q' ++ +#11'Brush.Color'#4'000'#0#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'S' ++ +'hape6'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'Q'#11'Brush.Co' ++ +'lor'#7#5'clRed'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape7'#4 ++ +'Left'#2'0'#6'Height'#2#25#3'Top'#3#218#0#5'Width'#2'Q'#11'Brush.Color'#7#6 ++ +'clLime'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape8'#4'Left'#2 ++ +'0'#6'Height'#2#25#3'Top'#3#244#0#5'Width'#2'Q'#11'Brush.Color'#7#8'clYellow' ++ +#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape9'#4'Left'#2'0'#6'Hei' ++ +'ght'#2#25#3'Top'#3#14#1#5'Width'#2'Q'#11'Brush.Color'#7#6'clBlue'#9'OnMouse' ++ +'Up'#7#13'Shape1MouseUp'#0#0#6'TShape'#7'Shape10'#4'Left'#2'0'#6'Height'#2#25 ++ +#3'Top'#3'('#1#5'Width'#2'Q'#11'Brush.Color'#7#9'clFuchsia'#9'OnMouseUp'#7#13 ++ +'Shape1MouseUp'#0#0#6'TShape'#7'Shape11'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3 ++ +'B'#1#5'Width'#2'Q'#11'Brush.Color'#7#6'clAqua'#9'OnMouseUp'#7#13'Shape1Mous' ++ +'eUp'#0#0#6'TLabel'#7'Label21'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'@'#5'Widt' ++ +'h'#2'z'#7'Caption'#6#26'Click to change the color '#11'ParentColor'#8#0#0#11 ++ +'TStringGrid'#11'StringGrid4'#4'Left'#3#158#0#6'Height'#3','#1#3'Top'#2'='#5 ++ +'Width'#3#208#0#8'ColCount'#2#1#15'DefaultColWidth'#3#200#0#16'DefaultRowHei' ++ +'ght'#2#26#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVe' ++ +'rtLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect' ++ +#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16'T' ++ +'itleFont.Height'#2#245#0#0#7'TButton'#8'Button10'#4'Left'#3#134#0#6'Height' ++ +#2#25#3'Top'#3#128#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' ++ +'on'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#0#6'TPa' ++ +'nel'#6'Panel1'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#182#1#5'Width'#3#247#1#5 ++ ,'Align'#7#8'alBottom'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'Cl' ++ +'ientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#1#0#7'TButton'#6'Exitbt' ++ +#4'Left'#3#150#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'K'#25'BorderSpacing.In' ++ +'nerBorder'#2#4#7'Caption'#6#5'Close'#7'OnClick'#7#11'ExitbtClick'#8'TabOrde' ++ +'r'#2#3#7'Visible'#8#0#0#7'TButton'#6'prevbt'#4'Left'#3#4#1#6'Height'#2#25#3 ++ +'Top'#2#4#5'Width'#2'C'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'<< ' ++ +' Prev'#7'OnClick'#7#11'prevbtClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'nextb' ++ +'t'#4'Left'#3'K'#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'A'#25'BorderSpacing.' ++ +'InnerBorder'#2#4#7'Caption'#6#9'Next >>'#7'OnClick'#7#11'nextbtClick'#8'T' ++ +'abOrder'#2#1#0#0#7'TButton'#5'Endbt'#4'Left'#3#144#1#6'Height'#2#25#3'Top'#2 ++ +#4#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Build Cat' ++ +'alog'#7'Enabled'#8#7'OnClick'#7#10'EndbtClick'#8'TabOrder'#2#2#0#0#7'TButto' ++ +'n'#7'Button2'#4'Left'#3#170#0#6'Height'#2#25#3'Top'#2#4#5'Width'#2'V'#25'Bo' ++ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#12'Load project'#7'OnClick'#7#12 ++ +'Button2Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button1'#4'Left'#2'O'#6'Heig' ++ +'ht'#2#25#3'Top'#2#4#5'Width'#2'W'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' ++ +'on'#6#12'Save Project'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#5#0#0#7 ++ +'TButton'#8'Button12'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C'#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#13'Button1' ++ +'2Click'#8'TabOrder'#2#6#0#0#0#11'TOpenDialog'#11'OpenDialog1'#6'Filter'#6#31 ++ +'All files|*|Project files|*.prj'#11'FilterIndex'#2#0#7'Options'#11#15'ofPat' ++ +'hMustExist'#15'ofFileMustExist'#14'ofEnableSizing'#0#4'left'#3#184#0#3'top' ++ +#2#8#0#0#11'TSaveDialog'#11'SaveDialog1'#6'Filter'#6'!All files|*.*|Project ' ++ +'files|*.prj'#11'FilterIndex'#2#0#7'Options'#11#17'ofOverwritePrompt'#14'ofH' ++ +'ideReadOnly'#18'ofNoReadOnlyReturn'#14'ofEnableSizing'#12'ofViewDetail'#0#4 ++ +'left'#3#144#0#3'top'#2#8#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7 ++ +'clBlack'#20'CustomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080' ++ +#6#13'ColorC=008000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800' ++ +'080'#6#13'ColorG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'Color' ++ +'J=0000FF'#6#13'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13 ++ +'ColorN=FF00FF'#6#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6 ++ +#13'ColorR=F0CAA6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#224#0 ++ +#3'top'#2#8#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_clock.lfm skychart_3.2_up/skychart/pu_clock.lfm +--- skychart_3.2/skychart/pu_clock.lfm 2010-08-30 20:31:46.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_clock.lfm 2011-03-09 15:18:23.138273833 +0100 +@@ -1,257 +1,257 @@ +-object f_clock: Tf_clock +- Left = 351 +- Height = 198 +- Top = 137 +- Width = 375 +- BorderIcons = [] +- BorderStyle = bsNone +- Caption = 'Clock' +- ClientHeight = 198 +- ClientWidth = 375 +- Color = clBlack +- FormStyle = fsStayOnTop +- Icon.Data = { +- BE0800000000010001002020000001000800A808000016000000280000002000 +- 0000400000000100080000000000000000000000000000000000000000000000 +- 000000000000500019000E0E0E0010101000500032001A1A1A00262626003131 +- 3100323232004A4229003E3E3E004A4A4A0052524A0056565600635A4A005A5A +- 5A008C6B210062626200636363009473210094733100A57B1800A57B2100AD7B +- 21005A735A006E6E6E00AD841800B5841800AD842100B5842100AD842900A584 +- 4200BD8C2100B58C29007A7A7A00BD8C29007B7B7B009C845200B58C3100BD8C +- 31006B846B00C6942100CE94210080808000BD942900AD8C4A00C6942900BD94 +- 3100AD8C5200A58C5A00BD94390084848400C6943900B5944200BD9442008686 +- 8600CE9C2900B5945200CE9C3100428C9C00CE9C3900AD9463008C8C8C00AD94 +- 6B00C69C4A00BD9C5200D6A53100A5947B004A949C00CEA53900D6A539009292 +- 9200CEA54200B59C6B00D6A542009C949400CEA54A00A59C7B00C6A55200AD9C +- 7B00CEA55200D6AD3900C6A55A00AD9C84009C9C8C00D6AD4200C6A56300949C +- 9400D6AD4A00B5A573009C9C9C00CEAD5200BDA57300CEAD5A009E9E9E00D6AD +- 5A00ADA58400C6AD6300A4A0A000B5A58C00DEB54A00CEAD6B00C6AD7300B5AD +- 8400C6AD8400B5AD8C00B5AD9400BDAD9400D6B57300AAAAAA00DEBD5A00CEB5 +- 7B00E7BD5A00D6B57B00C6B58400BDB5A500B5B5AD009CB5BD00B5B5B500E7C6 +- 6B00B6B6B600DEC67300D6BD9400C6BD9C00E7C67300DEC68400C6BDAD00BDBD +- BD00EFCE7300DEC69400E7CE7B00C0C0C000CEC6AD00E7CE8C00C2C2C200CEC6 +- B500C6C6BD00C6C6C600EFD68400EFD68C00CECEBD00E7D69C00D6CEBD00CECE +- CE00DED6B500F7DE9400E7D6B500EFDE9C00DED6C600F7DEA500ADD6DE00EFDE +- AD00D6D6D600DADADA00F7E7AD00F7E7B500DEDEDE00E6E6E600E7E7E70000FE +- FE00F7EFE700FFF7D600F2F2F200FFF7E700F7F7F700FFFFFF00000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 0000000000000000000000000000000000000000000000000000000000000000 +- 00000000000000000000000000000000000000007B3D14101431638E00000000 +- 0000000000000000000000000000000000000049162020232F323630690B0B0B +- 0A0800000000000000000000000000000000392C382E20201B1D1D2F39531111 +- 110D000000050D110D0A000000000000065C2E423C65920E8781321A342D7311 +- 110D0B19477878786D6D470A0000020B47215148689EA50F98A4944115402511 +- 110D787878786D6D6D62626247374762474A645688A49E0F76338F9227263957 +- 750D6D6D6D6D6D62626262626262624747706E4F8FA49E0F0733A5A34C1C3528 +- 440D6D6D6D626262626200626247474747807C095AA45A0322A49C12131B1C43 +- 960D6262626262626262626247474747478A8B4D749EA4249C9E9EA050201718 +- 3B0D6262626262626262624747474747378295724B8F9EA4A5A5A490482A1E7E +- 0D0B6262626262624747474747473737375F9B97605A7F899C9C8C653A291F0D +- 0D0B6262624747474747474762474737377193A38D67540C3E6A6145421D6B0D +- 0B0B47474747474747474762A5866247372B6C9BA18B795D5B585546233F0D0D +- 0B0B474747474747473737479DA2866D6237226C859A9B9177644532590D0D0B +- 0B0B47474737A2473737373762A2A599786237227A7D6F52404E66840D0D0B0B +- 0B0B003737373737372B2B374786A5A59D83004722191111110D0D0D0D0B0B0B +- 0B0A3737372B2B2B2B2B222B37629DA2A59D8F6D472219110D0D0D0D0B0B0B0B +- 0A0A2B2B2B2B2B2222222222222B629D9DA29D8F78622B19110D0D0D0B0B0B9F +- 0B0A2222222222222222221919222B86998F9D9D9986623719110D0B0B0B0B0B +- 0B0A222222222222191919191919192B8F998F9DA29D8F6D4719110B0B0B0A0A +- 0A0419191919191919191922191111196278868F9DA29D99784722110B0A0A0A +- 04041919191919191919229F191111111183786D8F9DA29D99836222110B0A04 +- 040419191919191111111919191111110D226286628F9DA29D9983622B110B0A +- 04011111111111111111001111110D0D0D0D62376D6286999D9D00866237110B +- 0A011111111111111111110D0D0D0D0D0D0D115E623747788F99998F866D3719 +- 0B0A111111111111110D0D0D0D0D0D0D0B0B0B3719621947788F99998F836D47 +- 190D0D0D0D0D0D0D990D0D0D0D0D0B0B0B0B0B0B47113719376D838F8F86786D +- 47190D0D0D0D0D0D0D0D0D0B0B0B0B0B0B0B0B0A11192211112B627886838378 +- 62470D0D0D0D0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A370A370B0D225E6D787878 +- 6D620B0B0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A0A040B190B190A0D1947626D6D +- 62620B0B0B0B0B0B0B0B0B0A0A0A0A0A0A0A04040404190A190A080B19375E62 +- 6262808080000000000000000000000000000000000000000000000000000000 +- 0000008000000000000000000000000000000000000000000000000000000000 +- 0000800080000000000000000000000000000000000000000000000000000000 +- 0000008000800000000000000000000000000000000000000000000000000000 +- 0000 +- } +- KeyPreview = True +- OnCreate = FormCreate +- OnDblClick = FormDblClick +- OnHide = FormHide +- OnMouseDown = FormMouseDown +- OnMouseMove = FormMouseMove +- OnMouseUp = FormMouseUp +- OnShow = FormShow +- LCLVersion = '0.9.29' +- object Label1: TLabel +- Left = 16 +- Height = 25 +- Top = 16 +- Width = 61 +- Caption = 'Legal :' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Label2: TLabel +- Left = 16 +- Height = 25 +- Top = 44 +- Width = 38 +- Caption = 'UT :' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Label3: TLabel +- Left = 16 +- Height = 25 +- Top = 72 +- Width = 108 +- Caption = 'Mean local :' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Label4: TLabel +- Left = 16 +- Height = 25 +- Top = 100 +- Width = 89 +- Caption = 'True solar' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock1: TLabel +- Left = 168 +- Height = 25 +- Top = 16 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock2: TLabel +- Left = 168 +- Height = 25 +- Top = 44 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock3: TLabel +- Left = 168 +- Height = 25 +- Top = 72 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock4: TLabel +- Left = 168 +- Height = 25 +- Top = 100 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Label5: TLabel +- Left = 16 +- Height = 25 +- Top = 128 +- Width = 62 +- Caption = 'Sideral' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock5: TLabel +- Left = 168 +- Height = 25 +- Top = 128 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Label6: TLabel +- Left = 16 +- Height = 25 +- Top = 156 +- Width = 31 +- Caption = 'JD:' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object clock6: TLabel +- Left = 168 +- Height = 25 +- Top = 156 +- Width = 79 +- Caption = '00:00:00' +- Font.Color = clRed +- Font.Height = -20 +- ParentColor = False +- ParentFont = False +- OnMouseDown = FormMouseDown +- OnMouseUp = FormMouseUp +- end +- object Timer1: TTimer +- Enabled = False +- OnTimer = Timer1Timer +- left = 280 +- top = 16 +- end ++object f_clock: Tf_clock ++ Left = 351 ++ Height = 198 ++ Top = 137 ++ Width = 375 ++ BorderIcons = [] ++ BorderStyle = bsNone ++ Caption = 'Clock' ++ ClientHeight = 198 ++ ClientWidth = 375 ++ Color = clBlack ++ FormStyle = fsStayOnTop ++ Icon.Data = { ++ BE0800000000010001002020000001000800A808000016000000280000002000 ++ 0000400000000100080000000000000000000000000000000000000000000000 ++ 000000000000500019000E0E0E0010101000500032001A1A1A00262626003131 ++ 3100323232004A4229003E3E3E004A4A4A0052524A0056565600635A4A005A5A ++ 5A008C6B210062626200636363009473210094733100A57B1800A57B2100AD7B ++ 21005A735A006E6E6E00AD841800B5841800AD842100B5842100AD842900A584 ++ 4200BD8C2100B58C29007A7A7A00BD8C29007B7B7B009C845200B58C3100BD8C ++ 31006B846B00C6942100CE94210080808000BD942900AD8C4A00C6942900BD94 ++ 3100AD8C5200A58C5A00BD94390084848400C6943900B5944200BD9442008686 ++ 8600CE9C2900B5945200CE9C3100428C9C00CE9C3900AD9463008C8C8C00AD94 ++ 6B00C69C4A00BD9C5200D6A53100A5947B004A949C00CEA53900D6A539009292 ++ 9200CEA54200B59C6B00D6A542009C949400CEA54A00A59C7B00C6A55200AD9C ++ 7B00CEA55200D6AD3900C6A55A00AD9C84009C9C8C00D6AD4200C6A56300949C ++ 9400D6AD4A00B5A573009C9C9C00CEAD5200BDA57300CEAD5A009E9E9E00D6AD ++ 5A00ADA58400C6AD6300A4A0A000B5A58C00DEB54A00CEAD6B00C6AD7300B5AD ++ 8400C6AD8400B5AD8C00B5AD9400BDAD9400D6B57300AAAAAA00DEBD5A00CEB5 ++ 7B00E7BD5A00D6B57B00C6B58400BDB5A500B5B5AD009CB5BD00B5B5B500E7C6 ++ 6B00B6B6B600DEC67300D6BD9400C6BD9C00E7C67300DEC68400C6BDAD00BDBD ++ BD00EFCE7300DEC69400E7CE7B00C0C0C000CEC6AD00E7CE8C00C2C2C200CEC6 ++ B500C6C6BD00C6C6C600EFD68400EFD68C00CECEBD00E7D69C00D6CEBD00CECE ++ CE00DED6B500F7DE9400E7D6B500EFDE9C00DED6C600F7DEA500ADD6DE00EFDE ++ AD00D6D6D600DADADA00F7E7AD00F7E7B500DEDEDE00E6E6E600E7E7E70000FE ++ FE00F7EFE700FFF7D600F2F2F200FFF7E700F7F7F700FFFFFF00000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 0000000000000000000000000000000000000000000000000000000000000000 ++ 00000000000000000000000000000000000000007B3D14101431638E00000000 ++ 0000000000000000000000000000000000000049162020232F323630690B0B0B ++ 0A0800000000000000000000000000000000392C382E20201B1D1D2F39531111 ++ 110D000000050D110D0A000000000000065C2E423C65920E8781321A342D7311 ++ 110D0B19477878786D6D470A0000020B47215148689EA50F98A4944115402511 ++ 110D787878786D6D6D62626247374762474A645688A49E0F76338F9227263957 ++ 750D6D6D6D6D6D62626262626262624747706E4F8FA49E0F0733A5A34C1C3528 ++ 440D6D6D6D626262626200626247474747807C095AA45A0322A49C12131B1C43 ++ 960D6262626262626262626247474747478A8B4D749EA4249C9E9EA050201718 ++ 3B0D6262626262626262624747474747378295724B8F9EA4A5A5A490482A1E7E ++ 0D0B6262626262624747474747473737375F9B97605A7F899C9C8C653A291F0D ++ 0D0B6262624747474747474762474737377193A38D67540C3E6A6145421D6B0D ++ 0B0B47474747474747474762A5866247372B6C9BA18B795D5B585546233F0D0D ++ 0B0B474747474747473737479DA2866D6237226C859A9B9177644532590D0D0B ++ 0B0B47474737A2473737373762A2A599786237227A7D6F52404E66840D0D0B0B ++ 0B0B003737373737372B2B374786A5A59D83004722191111110D0D0D0D0B0B0B ++ 0B0A3737372B2B2B2B2B222B37629DA2A59D8F6D472219110D0D0D0D0B0B0B0B ++ 0A0A2B2B2B2B2B2222222222222B629D9DA29D8F78622B19110D0D0D0B0B0B9F ++ 0B0A2222222222222222221919222B86998F9D9D9986623719110D0B0B0B0B0B ++ 0B0A222222222222191919191919192B8F998F9DA29D8F6D4719110B0B0B0A0A ++ 0A0419191919191919191922191111196278868F9DA29D99784722110B0A0A0A ++ 04041919191919191919229F191111111183786D8F9DA29D99836222110B0A04 ++ 040419191919191111111919191111110D226286628F9DA29D9983622B110B0A ++ 04011111111111111111001111110D0D0D0D62376D6286999D9D00866237110B ++ 0A011111111111111111110D0D0D0D0D0D0D115E623747788F99998F866D3719 ++ 0B0A111111111111110D0D0D0D0D0D0D0B0B0B3719621947788F99998F836D47 ++ 190D0D0D0D0D0D0D990D0D0D0D0D0B0B0B0B0B0B47113719376D838F8F86786D ++ 47190D0D0D0D0D0D0D0D0D0B0B0B0B0B0B0B0B0A11192211112B627886838378 ++ 62470D0D0D0D0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A370A370B0D225E6D787878 ++ 6D620B0B0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A0A040B190B190A0D1947626D6D ++ 62620B0B0B0B0B0B0B0B0B0A0A0A0A0A0A0A04040404190A190A080B19375E62 ++ 6262808080000000000000000000000000000000000000000000000000000000 ++ 0000008000000000000000000000000000000000000000000000000000000000 ++ 0000800080000000000000000000000000000000000000000000000000000000 ++ 0000008000800000000000000000000000000000000000000000000000000000 ++ 0000 ++ } ++ KeyPreview = True ++ OnCreate = FormCreate ++ OnDblClick = FormDblClick ++ OnHide = FormHide ++ OnMouseDown = FormMouseDown ++ OnMouseMove = FormMouseMove ++ OnMouseUp = FormMouseUp ++ OnShow = FormShow ++ LCLVersion = '0.9.29' ++ object Label1: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 16 ++ Width = 61 ++ Caption = 'Legal :' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Label2: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 44 ++ Width = 38 ++ Caption = 'UT :' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Label3: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 72 ++ Width = 108 ++ Caption = 'Mean local :' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Label4: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 100 ++ Width = 89 ++ Caption = 'True solar' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock1: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 16 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock2: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 44 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock3: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 72 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock4: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 100 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Label5: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 128 ++ Width = 62 ++ Caption = 'Sideral' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock5: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 128 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Label6: TLabel ++ Left = 16 ++ Height = 25 ++ Top = 156 ++ Width = 31 ++ Caption = 'JD:' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object clock6: TLabel ++ Left = 168 ++ Height = 25 ++ Top = 156 ++ Width = 79 ++ Caption = '00:00:00' ++ Font.Color = clRed ++ Font.Height = -20 ++ ParentColor = False ++ ParentFont = False ++ OnMouseDown = FormMouseDown ++ OnMouseUp = FormMouseUp ++ end ++ object Timer1: TTimer ++ Enabled = False ++ OnTimer = Timer1Timer ++ left = 280 ++ top = 16 ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_clock.lrs skychart_3.2_up/skychart/pu_clock.lrs +--- skychart_3.2/skychart/pu_clock.lrs 2010-08-30 20:31:46.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_clock.lrs 2011-03-09 15:18:23.139273712 +0100 +@@ -1,129 +1,129 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tf_clock','FORMDATA',[ +- 'TPF0'#8'Tf_clock'#7'f_clock'#4'Left'#3'_'#1#6'Height'#3#198#0#3'Top'#3#137#0 +- +#5'Width'#3'w'#1#11'BorderIcons'#11#0#11'BorderStyle'#7#6'bsNone'#7'Caption' +- +#6#5'Clock'#12'ClientHeight'#3#198#0#11'ClientWidth'#3'w'#1#5'Color'#7#7'clB' +- +'lack'#9'FormStyle'#7#11'fsStayOnTop'#9'Icon.Data'#10#194#8#0#0#190#8#0#0#0#0 +- +#1#0#1#0' '#0#0#1#0#8#0#168#8#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0#8 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'P'#0#25#0#14#14#14 +- +#0#16#16#16#0'P'#0'2'#0#26#26#26#0'&&&'#0'111'#0'222'#0'JB)'#0'>>>'#0'JJJ'#0 +- +'RRJ'#0'VVV'#0'cZJ'#0'ZZZ'#0#140'k!'#0'bbb'#0'ccc'#0#148's!'#0#148's1'#0#165 +- +'{'#24#0#165'{!'#0#173'{!'#0'ZsZ'#0'nnn'#0#173#132#24#0#181#132#24#0#173#132 +- +'!'#0#181#132'!'#0#173#132')'#0#165#132'B'#0#189#140'!'#0#181#140')'#0'zzz'#0 +- +#189#140')'#0'{{{'#0#156#132'R'#0#181#140'1'#0#189#140'1'#0'k'#132'k'#0#198 +- +#148'!'#0#206#148'!'#0#128#128#128#0#189#148')'#0#173#140'J'#0#198#148')'#0 +- +#189#148'1'#0#173#140'R'#0#165#140'Z'#0#189#148'9'#0#132#132#132#0#198#148'9' +- +#0#181#148'B'#0#189#148'B'#0#134#134#134#0#206#156')'#0#181#148'R'#0#206#156 +- +'1'#0'B'#140#156#0#206#156'9'#0#173#148'c'#0#140#140#140#0#173#148'k'#0#198 +- +#156'J'#0#189#156'R'#0#214#165'1'#0#165#148'{'#0'J'#148#156#0#206#165'9'#0 +- +#214#165'9'#0#146#146#146#0#206#165'B'#0#181#156'k'#0#214#165'B'#0#156#148 +- +#148#0#206#165'J'#0#165#156'{'#0#198#165'R'#0#173#156'{'#0#206#165'R'#0#214 +- +#173'9'#0#198#165'Z'#0#173#156#132#0#156#156#140#0#214#173'B'#0#198#165'c'#0 +- +#148#156#148#0#214#173'J'#0#181#165's'#0#156#156#156#0#206#173'R'#0#189#165 +- +'s'#0#206#173'Z'#0#158#158#158#0#214#173'Z'#0#173#165#132#0#198#173'c'#0#164 +- +#160#160#0#181#165#140#0#222#181'J'#0#206#173'k'#0#198#173's'#0#181#173#132#0 +- +#198#173#132#0#181#173#140#0#181#173#148#0#189#173#148#0#214#181's'#0#170#170 +- +#170#0#222#189'Z'#0#206#181'{'#0#231#189'Z'#0#214#181'{'#0#198#181#132#0#189 +- +#181#165#0#181#181#173#0#156#181#189#0#181#181#181#0#231#198'k'#0#182#182#182 +- +#0#222#198's'#0#214#189#148#0#198#189#156#0#231#198's'#0#222#198#132#0#198 +- +#189#173#0#189#189#189#0#239#206's'#0#222#198#148#0#231#206'{'#0#192#192#192 +- +#0#206#198#173#0#231#206#140#0#194#194#194#0#206#198#181#0#198#198#189#0#198 +- +#198#198#0#239#214#132#0#239#214#140#0#206#206#189#0#231#214#156#0#214#206 +- +#189#0#206#206#206#0#222#214#181#0#247#222#148#0#231#214#181#0#239#222#156#0 +- +#222#214#198#0#247#222#165#0#173#214#222#0#239#222#173#0#214#214#214#0#218 +- +#218#218#0#247#231#173#0#247#231#181#0#222#222#222#0#230#230#230#0#231#231 +- +#231#0#0#254#254#0#247#239#231#0#255#247#214#0#242#242#242#0#255#247#231#0 +- +#247#247#247#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0'{='#20#16#20'1c'#142#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0'I'#22' #/260i'#11#11#11#10#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'9,8. '#27 +- +#29#29'/9S'#17#17#17#13#0#0#0#5#13#17#13#10#0#0#0#0#0#0#6'\.B<e'#146#14#135 +- +#129'2'#26'4-s'#17#17#13#11#25'GxxxmmG'#10#0#0#2#11'G!QHh'#158#165#15#152#164 +- +#148'A'#21'@%'#17#17#13'xxxxmmmbbbG7GbGJdV'#136#164#158#15'v3'#143#146'''&9W' +- +'u'#13'mmmmmbbbbbbbbGGpnO'#143#164#158#15#7'3'#165#163'L'#28'5(D'#13'mmmbbbb' +- +'b'#0'bbGGGG'#128'|'#9'Z'#164'Z'#3'"'#164#156#18#19#27#28'C'#150#13'bbbbbbbb' +- +'bbGGGGG'#138#139'Mt'#158#164'$'#156#158#158#160'P '#23#24';'#13'bbbbbbbbbGG' +- +'GGG7'#130#149'rK'#143#158#164#165#165#164#144'H*'#30'~'#13#11'bbbbbbGGGGGG7' +- +'77_'#155#151'`Z'#127#137#156#156#140'e:)'#31#13#13#11'bbbGGGGGGGbGG77q'#147 +- +#163#141'gT'#12'>jaEB'#29'k'#13#11#11'GGGGGGGGGb'#165#134'bG7+l'#155#161#139 +- +'y][XUF#?'#13#13#11#11'GGGGGGG77G'#157#162#134'mb7"l'#133#154#155#145'wdE2Y' +- +#13#13#11#11#11'GGG7'#162'G7777b'#162#165#153'xb7"z}oR@Nf'#132#13#13#11#11#11 +- +#11#0'777777++7G'#134#165#165#157#131#0'G"'#25#17#17#17#13#13#13#13#11#11#11 +- +#11#10'777+++++"+7b'#157#162#165#157#143'mG"'#25#17#13#13#13#13#11#11#11#11 +- +#10#10'+++++""""""+b'#157#157#162#157#143'xb+'#25#17#13#13#13#11#11#11#159#11 +- +#10'"""""""""'#25#25'"+'#134#153#143#157#157#153#134'b7'#25#17#13#11#11#11#11 +- +#11#11#10'""""""'#25#25#25#25#25#25#25'+'#143#153#143#157#162#157#143'mG'#25 +- +#17#11#11#11#10#10#10#4#25#25#25#25#25#25#25#25#25'"'#25#17#17#25'bx'#134#143 +- +#157#162#157#153'xG"'#17#11#10#10#10#4#4#25#25#25#25#25#25#25#25'"'#159#25#17 +- ,#17#17#17#131'xm'#143#157#162#157#153#131'b"'#17#11#10#4#4#4#25#25#25#25#25 +- +#17#17#17#25#25#25#17#17#17#13'"b'#134'b'#143#157#162#157#153#131'b+'#17#11 +- +#10#4#1#17#17#17#17#17#17#17#17#0#17#17#17#13#13#13#13'b7mb'#134#153#157#157 +- +#0#134'b7'#17#11#10#1#17#17#17#17#17#17#17#17#17#13#13#13#13#13#13#13#17'^b7' +- +'Gx'#143#153#153#143#134'm7'#25#11#10#17#17#17#17#17#17#17#13#13#13#13#13#13 +- +#13#11#11#11'7'#25'b'#25'Gx'#143#153#153#143#131'mG'#25#13#13#13#13#13#13#13 +- +#153#13#13#13#13#13#11#11#11#11#11#11'G'#17'7'#25'7m'#131#143#143#134'xmG'#25 +- +#13#13#13#13#13#13#13#13#13#11#11#11#11#11#11#11#11#10#17#25'"'#17#17'+bx' +- +#134#131#131'xbG'#13#13#13#13#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10'7' +- +#10'7'#11#13'"^mxxxmb'#11#11#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 +- +#4#11#25#11#25#10#13#25'Gbmmbb'#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 +- +#10#4#4#4#4#25#10#25#10#8#11#25'7^bbb'#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#10'KeyPreview'#9#8'OnCreate'#7#10'FormCreate'#10'OnDblClick'#7#12'For' +- +'mDblClick'#6'OnHide'#7#8'FormHide'#11'OnMouseDown'#7#13'FormMouseDown'#11'O' +- +'nMouseMove'#7#13'FormMouseMove'#9'OnMouseUp'#7#11'FormMouseUp'#6'OnShow'#7#8 +- +'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'H' +- +'eight'#2#25#3'Top'#2#16#5'Width'#2'='#7'Caption'#6#7'Legal :'#10'Font.Color' +- +#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMo' +- +'useDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6 +- +'Label2'#4'Left'#2#16#6'Height'#2#25#3'Top'#2','#5'Width'#2'&'#7'Caption'#6#4 +- +'UT :'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 +- +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' +- +'seUp'#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'H'#5'Wid' +- +'th'#2'l'#7'Caption'#6#12'Mean local :'#10'Font.Color'#7#5'clRed'#11'Font.He' +- +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' +- +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label4'#4'Left'#2#16 +- +#6'Height'#2#25#3'Top'#2'd'#5'Width'#2'Y'#7'Caption'#6#10'True solar'#10'Fon' +- +'t.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 +- +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' +- +'abel'#6'clock1'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'O'#7 +- +'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'P' +- +'arentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMous' +- +'eUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock2'#4'Left'#3#168#0#6'Height'#2 +- +#25#3'Top'#2','#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'cl' +- +'Red'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDow' +- +'n'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock' +- +'3'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'H'#5'Width'#2'O'#7'Caption'#6#8 +- +'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8 +- +#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'Form' +- +'MouseUp'#0#0#6'TLabel'#6'clock4'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'd' +- +#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.He' +- +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' +- +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#16 +- +#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Sideral'#10'Font' +- +'.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 +- +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' +- +'abel'#6'clock5'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'O' +- +#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11 +- +'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMou' +- +'seUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label6'#4'Left'#2#16#6'Height'#2#25 +- +#3'Top'#3#156#0#5'Width'#2#31#7'Caption'#6#3'JD:'#10'Font.Color'#7#5'clRed' +- +#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7 +- +#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock6'#4 +- +'Left'#3#168#0#6'Height'#2#25#3'Top'#3#156#0#5'Width'#2'O'#7'Caption'#6#8'00' +- +':00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 +- +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' +- +'seUp'#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#7'OnTimer'#7#11'Timer1Timer'#4'l' +- +'eft'#3#24#1#3'top'#2#16#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tf_clock','FORMDATA',[ ++ 'TPF0'#8'Tf_clock'#7'f_clock'#4'Left'#3'_'#1#6'Height'#3#198#0#3'Top'#3#137#0 ++ +#5'Width'#3'w'#1#11'BorderIcons'#11#0#11'BorderStyle'#7#6'bsNone'#7'Caption' ++ +#6#5'Clock'#12'ClientHeight'#3#198#0#11'ClientWidth'#3'w'#1#5'Color'#7#7'clB' ++ +'lack'#9'FormStyle'#7#11'fsStayOnTop'#9'Icon.Data'#10#194#8#0#0#190#8#0#0#0#0 ++ +#1#0#1#0' '#0#0#1#0#8#0#168#8#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0#8 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'P'#0#25#0#14#14#14 ++ +#0#16#16#16#0'P'#0'2'#0#26#26#26#0'&&&'#0'111'#0'222'#0'JB)'#0'>>>'#0'JJJ'#0 ++ +'RRJ'#0'VVV'#0'cZJ'#0'ZZZ'#0#140'k!'#0'bbb'#0'ccc'#0#148's!'#0#148's1'#0#165 ++ +'{'#24#0#165'{!'#0#173'{!'#0'ZsZ'#0'nnn'#0#173#132#24#0#181#132#24#0#173#132 ++ +'!'#0#181#132'!'#0#173#132')'#0#165#132'B'#0#189#140'!'#0#181#140')'#0'zzz'#0 ++ +#189#140')'#0'{{{'#0#156#132'R'#0#181#140'1'#0#189#140'1'#0'k'#132'k'#0#198 ++ +#148'!'#0#206#148'!'#0#128#128#128#0#189#148')'#0#173#140'J'#0#198#148')'#0 ++ +#189#148'1'#0#173#140'R'#0#165#140'Z'#0#189#148'9'#0#132#132#132#0#198#148'9' ++ +#0#181#148'B'#0#189#148'B'#0#134#134#134#0#206#156')'#0#181#148'R'#0#206#156 ++ +'1'#0'B'#140#156#0#206#156'9'#0#173#148'c'#0#140#140#140#0#173#148'k'#0#198 ++ +#156'J'#0#189#156'R'#0#214#165'1'#0#165#148'{'#0'J'#148#156#0#206#165'9'#0 ++ +#214#165'9'#0#146#146#146#0#206#165'B'#0#181#156'k'#0#214#165'B'#0#156#148 ++ +#148#0#206#165'J'#0#165#156'{'#0#198#165'R'#0#173#156'{'#0#206#165'R'#0#214 ++ +#173'9'#0#198#165'Z'#0#173#156#132#0#156#156#140#0#214#173'B'#0#198#165'c'#0 ++ +#148#156#148#0#214#173'J'#0#181#165's'#0#156#156#156#0#206#173'R'#0#189#165 ++ +'s'#0#206#173'Z'#0#158#158#158#0#214#173'Z'#0#173#165#132#0#198#173'c'#0#164 ++ +#160#160#0#181#165#140#0#222#181'J'#0#206#173'k'#0#198#173's'#0#181#173#132#0 ++ +#198#173#132#0#181#173#140#0#181#173#148#0#189#173#148#0#214#181's'#0#170#170 ++ +#170#0#222#189'Z'#0#206#181'{'#0#231#189'Z'#0#214#181'{'#0#198#181#132#0#189 ++ +#181#165#0#181#181#173#0#156#181#189#0#181#181#181#0#231#198'k'#0#182#182#182 ++ +#0#222#198's'#0#214#189#148#0#198#189#156#0#231#198's'#0#222#198#132#0#198 ++ +#189#173#0#189#189#189#0#239#206's'#0#222#198#148#0#231#206'{'#0#192#192#192 ++ +#0#206#198#173#0#231#206#140#0#194#194#194#0#206#198#181#0#198#198#189#0#198 ++ +#198#198#0#239#214#132#0#239#214#140#0#206#206#189#0#231#214#156#0#214#206 ++ +#189#0#206#206#206#0#222#214#181#0#247#222#148#0#231#214#181#0#239#222#156#0 ++ +#222#214#198#0#247#222#165#0#173#214#222#0#239#222#173#0#214#214#214#0#218 ++ +#218#218#0#247#231#173#0#247#231#181#0#222#222#222#0#230#230#230#0#231#231 ++ +#231#0#0#254#254#0#247#239#231#0#255#247#214#0#242#242#242#0#255#247#231#0 ++ +#247#247#247#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0'{='#20#16#20'1c'#142#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0'I'#22' #/260i'#11#11#11#10#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'9,8. '#27 ++ +#29#29'/9S'#17#17#17#13#0#0#0#5#13#17#13#10#0#0#0#0#0#0#6'\.B<e'#146#14#135 ++ +#129'2'#26'4-s'#17#17#13#11#25'GxxxmmG'#10#0#0#2#11'G!QHh'#158#165#15#152#164 ++ +#148'A'#21'@%'#17#17#13'xxxxmmmbbbG7GbGJdV'#136#164#158#15'v3'#143#146'''&9W' ++ +'u'#13'mmmmmbbbbbbbbGGpnO'#143#164#158#15#7'3'#165#163'L'#28'5(D'#13'mmmbbbb' ++ +'b'#0'bbGGGG'#128'|'#9'Z'#164'Z'#3'"'#164#156#18#19#27#28'C'#150#13'bbbbbbbb' ++ +'bbGGGGG'#138#139'Mt'#158#164'$'#156#158#158#160'P '#23#24';'#13'bbbbbbbbbGG' ++ +'GGG7'#130#149'rK'#143#158#164#165#165#164#144'H*'#30'~'#13#11'bbbbbbGGGGGG7' ++ +'77_'#155#151'`Z'#127#137#156#156#140'e:)'#31#13#13#11'bbbGGGGGGGbGG77q'#147 ++ +#163#141'gT'#12'>jaEB'#29'k'#13#11#11'GGGGGGGGGb'#165#134'bG7+l'#155#161#139 ++ +'y][XUF#?'#13#13#11#11'GGGGGGG77G'#157#162#134'mb7"l'#133#154#155#145'wdE2Y' ++ +#13#13#11#11#11'GGG7'#162'G7777b'#162#165#153'xb7"z}oR@Nf'#132#13#13#11#11#11 ++ +#11#0'777777++7G'#134#165#165#157#131#0'G"'#25#17#17#17#13#13#13#13#11#11#11 ++ +#11#10'777+++++"+7b'#157#162#165#157#143'mG"'#25#17#13#13#13#13#11#11#11#11 ++ +#10#10'+++++""""""+b'#157#157#162#157#143'xb+'#25#17#13#13#13#11#11#11#159#11 ++ +#10'"""""""""'#25#25'"+'#134#153#143#157#157#153#134'b7'#25#17#13#11#11#11#11 ++ +#11#11#10'""""""'#25#25#25#25#25#25#25'+'#143#153#143#157#162#157#143'mG'#25 ++ +#17#11#11#11#10#10#10#4#25#25#25#25#25#25#25#25#25'"'#25#17#17#25'bx'#134#143 ++ +#157#162#157#153'xG"'#17#11#10#10#10#4#4#25#25#25#25#25#25#25#25'"'#159#25#17 ++ ,#17#17#17#131'xm'#143#157#162#157#153#131'b"'#17#11#10#4#4#4#25#25#25#25#25 ++ +#17#17#17#25#25#25#17#17#17#13'"b'#134'b'#143#157#162#157#153#131'b+'#17#11 ++ +#10#4#1#17#17#17#17#17#17#17#17#0#17#17#17#13#13#13#13'b7mb'#134#153#157#157 ++ +#0#134'b7'#17#11#10#1#17#17#17#17#17#17#17#17#17#13#13#13#13#13#13#13#17'^b7' ++ +'Gx'#143#153#153#143#134'm7'#25#11#10#17#17#17#17#17#17#17#13#13#13#13#13#13 ++ +#13#11#11#11'7'#25'b'#25'Gx'#143#153#153#143#131'mG'#25#13#13#13#13#13#13#13 ++ +#153#13#13#13#13#13#11#11#11#11#11#11'G'#17'7'#25'7m'#131#143#143#134'xmG'#25 ++ +#13#13#13#13#13#13#13#13#13#11#11#11#11#11#11#11#11#10#17#25'"'#17#17'+bx' ++ +#134#131#131'xbG'#13#13#13#13#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10'7' ++ +#10'7'#11#13'"^mxxxmb'#11#11#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 ++ +#4#11#25#11#25#10#13#25'Gbmmbb'#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 ++ +#10#4#4#4#4#25#10#25#10#8#11#25'7^bbb'#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#10'KeyPreview'#9#8'OnCreate'#7#10'FormCreate'#10'OnDblClick'#7#12'For' ++ +'mDblClick'#6'OnHide'#7#8'FormHide'#11'OnMouseDown'#7#13'FormMouseDown'#11'O' ++ +'nMouseMove'#7#13'FormMouseMove'#9'OnMouseUp'#7#11'FormMouseUp'#6'OnShow'#7#8 ++ +'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'H' ++ +'eight'#2#25#3'Top'#2#16#5'Width'#2'='#7'Caption'#6#7'Legal :'#10'Font.Color' ++ +#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMo' ++ +'useDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6 ++ +'Label2'#4'Left'#2#16#6'Height'#2#25#3'Top'#2','#5'Width'#2'&'#7'Caption'#6#4 ++ +'UT :'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 ++ +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' ++ +'seUp'#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'H'#5'Wid' ++ +'th'#2'l'#7'Caption'#6#12'Mean local :'#10'Font.Color'#7#5'clRed'#11'Font.He' ++ +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' ++ +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label4'#4'Left'#2#16 ++ +#6'Height'#2#25#3'Top'#2'd'#5'Width'#2'Y'#7'Caption'#6#10'True solar'#10'Fon' ++ +'t.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 ++ +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' ++ +'abel'#6'clock1'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'O'#7 ++ +'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'P' ++ +'arentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMous' ++ +'eUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock2'#4'Left'#3#168#0#6'Height'#2 ++ +#25#3'Top'#2','#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'cl' ++ +'Red'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDow' ++ +'n'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock' ++ +'3'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'H'#5'Width'#2'O'#7'Caption'#6#8 ++ +'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8 ++ +#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'Form' ++ +'MouseUp'#0#0#6'TLabel'#6'clock4'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'd' ++ +#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.He' ++ +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' ++ +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#16 ++ +#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Sideral'#10'Font' ++ +'.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 ++ +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' ++ +'abel'#6'clock5'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'O' ++ +#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11 ++ +'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMou' ++ +'seUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label6'#4'Left'#2#16#6'Height'#2#25 ++ +#3'Top'#3#156#0#5'Width'#2#31#7'Caption'#6#3'JD:'#10'Font.Color'#7#5'clRed' ++ +#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7 ++ +#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock6'#4 ++ +'Left'#3#168#0#6'Height'#2#25#3'Top'#3#156#0#5'Width'#2'O'#7'Caption'#6#8'00' ++ +':00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 ++ +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' ++ +'seUp'#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#7'OnTimer'#7#11'Timer1Timer'#4'l' ++ +'eft'#3#24#1#3'top'#2#16#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_config_catalog.lfm skychart_3.2_up/skychart/pu_config_catalog.lfm +--- skychart_3.2/skychart/pu_config_catalog.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_catalog.lfm 2011-03-09 15:18:57.139093108 +0100 +@@ -1,7 +1,7 @@ + object f_config_catalog: Tf_config_catalog +- Left = 540 ++ Left = 493 + Height = 573 +- Top = 102 ++ Top = 97 + Width = 523 + ActiveControl = MainPanel + BorderStyle = bsToolWindow +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 12 + Height = 520 +@@ -30,15 +30,14 @@ + Width = 498 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 1 + object Page1: TTabSheet + Caption = 'Catalog' +- ClientHeight = 460 +- ClientWidth = 494 ++ ClientHeight = 429 ++ ClientWidth = 492 + object Label37: TLabel +- Left = 98 ++ Left = 96 + Height = 14 + Top = 17 + Width = 246 +@@ -104,8 +103,8 @@ + end + object Page2: TTabSheet + Caption = 'CdC Stars' +- ClientHeight = 460 +- ClientWidth = 494 ++ ClientHeight = 429 ++ ClientWidth = 492 + object Label2: TLabel + Left = 8 + Height = 14 +@@ -425,7 +424,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 3 + OnChange = CDCStarPathChange + end +@@ -439,7 +437,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 7 + OnChange = CDCStarPathChange + end +@@ -453,7 +450,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 11 + OnChange = CDCStarPathChange + end +@@ -466,7 +462,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 15 + OnChange = gcv3Change + end +@@ -479,15 +474,14 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 20 + OnChange = wds3Change + end + end + object Page3: TTabSheet + Caption = 'CdC Nebulae' +- ClientHeight = 460 +- ClientWidth = 494 ++ ClientHeight = 429 ++ ClientWidth = 492 + object Label3: TLabel + Left = 9 + Height = 14 +@@ -617,7 +611,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 3 + OnChange = CDCNebPathChange + end +@@ -690,7 +683,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 3 + OnChange = CDCNebPathChange + end +@@ -973,7 +965,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 15 + OnChange = CDCNebPathChange + end +@@ -986,7 +977,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 16 + OnChange = CDCNebPathChange + end +@@ -999,7 +989,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 17 + OnChange = CDCNebPathChange + end +@@ -1012,7 +1001,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 18 + OnChange = CDCNebPathChange + end +@@ -1025,7 +1013,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 19 + OnChange = CDCNebPathChange + end +@@ -1033,8 +1020,17 @@ + end + object Page5: TTabSheet + Caption = 'Other software' +- ClientHeight = 460 +- ClientWidth = 494 ++ ClientHeight = 429 ++ ClientWidth = 492 ++ object Label21: TLabel ++ Left = 17 ++ Height = 14 ++ Top = 37 ++ Width = 78 ++ Caption = 'Deepsky 2000' ++ ParentColor = False ++ WordWrap = True ++ end + object dsgsc3: TDirectoryEdit + Tag = 13 + Left = 326 +@@ -1045,7 +1041,6 @@ + ShowHidden = False + ButtonWidth = 21 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + OnChange = CDCStarPathChange + end +@@ -1059,7 +1054,6 @@ + ShowHidden = False + ButtonWidth = 21 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 1 + OnChange = CDCStarPathChange + end +@@ -1073,7 +1067,6 @@ + ShowHidden = False + ButtonWidth = 21 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 2 + OnChange = CDCStarPathChange + end +@@ -1203,20 +1196,11 @@ + ShowHint = True + TabOrder = 11 + end +- object Label21: TLabel +- Left = 17 +- Height = 14 +- Top = 37 +- Width = 78 +- Caption = 'Deepsky 2000' +- ParentColor = False +- WordWrap = True +- end + end + object Page4: TTabSheet + Caption = 'Obsolete' +- ClientHeight = 460 +- ClientWidth = 494 ++ ClientHeight = 429 ++ ClientWidth = 492 + object Label88: TLabel + Left = 9 + Height = 14 +@@ -1265,6 +1249,16 @@ + ParentColor = False + WordWrap = True + end ++ object Label95: TLabel ++ Left = 9 ++ Height = 38 ++ Top = 349 ++ Width = 80 ++ AutoSize = False ++ Caption = 'Replaced by PGC' ++ ParentColor = False ++ WordWrap = True ++ end + object TYCbox: TCheckBox + Tag = 3 + Left = 87 +@@ -1443,7 +1437,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 3 + OnChange = CDCStarPathChange + end +@@ -1457,7 +1450,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 7 + OnChange = CDCStarPathChange + end +@@ -1471,7 +1463,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 11 + OnChange = CDCStarPathChange + end +@@ -1485,7 +1476,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 15 + OnChange = CDCStarPathChange + end +@@ -1499,7 +1489,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 16 + OnChange = CDCStarPathChange + end +@@ -1513,7 +1502,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 17 + OnChange = CDCStarPathChange + end +@@ -1527,7 +1515,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 18 + OnChange = CDCStarPathChange + end +@@ -1677,7 +1664,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 29 + OnChange = CDCNebPathChange + end +@@ -1723,16 +1709,6 @@ + ShowHint = True + TabOrder = 32 + end +- object Label95: TLabel +- Left = 9 +- Height = 38 +- Top = 349 +- Width = 80 +- AutoSize = False +- Caption = 'Replaced by PGC' +- ParentColor = False +- WordWrap = True +- end + end + end + object FOVPanel: TPanel +diff -ur skychart_3.2/skychart/pu_config_catalog.lrs skychart_3.2_up/skychart/pu_config_catalog.lrs +--- skychart_3.2/skychart/pu_config_catalog.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_catalog.lrs 2011-03-09 15:18:57.107097037 +0100 +@@ -1,79 +1,79 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_catalog','FORMDATA',[ +- 'TPF0'#17'Tf_config_catalog'#16'f_config_catalog'#4'Left'#3#28#2#6'Height'#3 +- +'='#2#3'Top'#2'f'#5'Width'#3#11#2#13'ActiveControl'#7#9'MainPanel'#11'Border' ++ 'TPF0'#17'Tf_config_catalog'#16'f_config_catalog'#4'Left'#3#237#1#6'Height'#3 ++ +'='#2#3'Top'#2'a'#5'Width'#3#11#2#13'ActiveControl'#7#9'MainPanel'#11'Border' + +'Style'#7#12'bsToolWindow'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3'='#2#11 + +'ClientWidth'#3#11#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCre' + +'ate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' +- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#12#6'Height'#3 +- +#8#2#3'Top'#2#8#5'Width'#3#244#1#12'ClientHeight'#3#8#2#11'ClientWidth'#3#244 +- +#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'PageControl1'#4'L' +- +'eft'#2#1#6'Height'#3#208#1#3'Top'#2#1#5'Width'#3#242#1#10'ActivePage'#7#5'P' +- +'age1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#1#0 +- +#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3#204#1#11'C' +- +'lientWidth'#3#238#1#0#6'TLabel'#7'Label37'#4'Left'#2'b'#6'Height'#2#14#3'To' +- +'p'#2#17#5'Width'#3#246#0#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11#5 +- +'akTop'#7'akRight'#0#7'Caption'#6')Stars and Nebulae catalogs prepared with ' +- +#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#0#6'Height' +- +#3'Y'#1#3'Top'#2'0'#5'Width'#3#226#1#8'ColCount'#2#6#15'DefaultColWidth'#2#18 +- +#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVer' +- +'tLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#11'goRowMoving'#9 +- +'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#2#8'TabOrder'#2#1#16'Titl' +- +'eFont.Height'#2#245#10'OnDrawCell'#7#19'StringGrid3DrawCell'#9'OnMouseUp'#7 +- +#18'StringGrid3MouseUp'#12'OnSelectCell'#7#21'StringGrid3SelectCell'#13'OnSe' +- +'tEditText'#7#22'StringGrid3SetEditText'#9'ColWidths'#1#2#18#2'6'#2'6'#2'6'#3 +- +#4#1#2#18#0#0#0#7'TButton'#12'CatgenButton'#4'Left'#3'p'#1#6'Height'#2#25#3 +- +'Top'#2#12#5'Width'#2'`'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Ca' +- +'tGen'#7'OnClick'#7#11'CatgenClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'addcat' +- +#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#3 +- +'Add'#7'OnClick'#7#11'AddCatClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'delcat'#4 +- +'Left'#3#248#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#6'De' +- +'lete'#7'OnClick'#7#11'DelCatClick'#8'TabOrder'#2#3#0#0#0#9'TTabSheet'#5'Pag' +- +'e2'#7'Caption'#6#9'CdC Stars'#12'ClientHeight'#3#204#1#11'ClientWidth'#3#238 +- +#1#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#3#139 +- +#0#7'Caption'#6#25'CDC Stars Catalog Setting'#11'ParentColor'#8#0#0#6'TLabel' +- +#7'Label65'#4'Left'#2'D'#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#18#7'Caption' +- +#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label66'#4'Left'#2'D'#6'Height'#2 +- +#14#3'Top'#2'h'#5'Width'#2#18#7'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLa' +- +'bel'#7'Label87'#4'Left'#2'D'#6'Height'#2#14#3'Top'#3#147#0#5'Width'#2#18#7 +- +'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#10#1#6 +- +'Height'#2#14#3'Top'#2#23#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor' +- +#8#0#0#6'TLabel'#7'Label28'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2#7#5'Width' +- +#2'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#7'Label17'#4'Left'#3'/'#1#6'Height'#2#14#3'Top'#2 +- +#23#5'Width'#2#28#7'Caption'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' +- +'el27'#4'Left'#3'Y'#1#6'Height'#2#14#3'Top'#2#23#5'Width'#2'4'#7'Caption'#6 +- +#10'Files Path'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left'#2#8#6'Hei' +- +'ght'#2#14#3'Top'#2'@'#5'Width'#2#27#7'Caption'#6#5'Stars'#11'ParentColor'#8 +- +#0#0#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#242#0#5'Width' +- +#2'2'#7'Caption'#6#9'Variables'#11'ParentColor'#8#0#0#6'TLabel'#7'Label20'#4 +- +'Left'#2#8#6'Height'#2#14#3'Top'#3'I'#1#5'Width'#2'-'#7'Caption'#6#7'Doubles' +- +#11'ParentColor'#8#0#0#9'TCheckBox'#6'BSCbox'#3'Tag'#2#1#4'Left'#2'\'#6'Heig' +- +'ht'#2#18#4'Hint'#6'1Bright Stars Catalog 5th Edition (Hoffleit 1991)'#3'To' +- +'p'#2'='#5'Width'#3#139#0#11'HelpContext'#2'd'#7'Caption'#6#19'Bright Star C' +- +'atalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9 +- +#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Fbsc1'#3'Tag'#2#1#4'Left'#3#10#1#6'Heigh' +- +'t'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8 +- +'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2 +- +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Fbsc2'#3'Tag'#2#1#4'Left'#3'2'#1#6'He' +- +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value' +- +#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'SKYbox'#3'Tag'#2#2#4'Left'#2'\'#6'H' +- +'eight'#2#18#4'Hint'#6',SKY2000 - Master Star Catalog (Sande+ 1998)'#3'Top' +- +#2'e'#5'Width'#2'M'#11'HelpContext'#2'e'#7'Caption'#6#7'SKY2000'#7'OnClick'#7 +- +#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9 +- +'TLongEdit'#5'Fsky1'#3'Tag'#2#2#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0.' +- +'.10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' +- ,'r'#2#5#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0 +- +#0#9'TLongEdit'#5'Fsky2'#3'Tag'#2#2#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5 +- +'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' +- +'der'#2#6#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10 +- +#0#0#9'TCheckBox'#6'TY2Box'#3'Tag'#2#4#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6 +- +'!The Tycho-2 Catalogue (Hog+ 2000)'#3'Top'#3#144#0#5'Width'#2'{'#11'HelpCon' +- +'text'#2'f'#7'Caption'#6#15'Tycho 2 Catalog'#7'OnClick'#7#15'CDCStarSelClick' +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'Fty21' +- +#3'Tag'#2#4#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#144#0#5 ++ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#12#6'Height' ++ +#3#8#2#3'Top'#2#8#5'Width'#3#244#1#12'ClientHeight'#3#8#2#11'ClientWidth'#3 ++ +#244#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'PageControl1' ++ +#4'Left'#2#1#6'Height'#3#208#1#3'Top'#2#1#5'Width'#3#242#1#10'ActivePage'#7#5 ++ +'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet' ++ +#5'Page1'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3#173#1#11'ClientWidth'#3 ++ +#236#1#0#6'TLabel'#7'Label37'#4'Left'#2'`'#6'Height'#2#14#3'Top'#2#17#5'Widt' ++ +'h'#3#246#0#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11#5'akTop'#7'akRig' ++ +'ht'#0#7'Caption'#6')Stars and Nebulae catalogs prepared with '#11'ParentCol' ++ +'or'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#0#6'Height'#3'Y'#1#3'To' ++ +'p'#2'0'#5'Width'#3#226#1#8'ColCount'#2#6#15'DefaultColWidth'#2#18#16'Defaul' ++ +'tRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15 ++ +'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#11'goRowMoving'#9'goEditing' ++ +#18'goAlwaysShowEditor'#0#8'RowCount'#2#2#8'TabOrder'#2#1#16'TitleFont.Heigh' ++ +'t'#2#245#10'OnDrawCell'#7#19'StringGrid3DrawCell'#9'OnMouseUp'#7#18'StringG' ++ +'rid3MouseUp'#12'OnSelectCell'#7#21'StringGrid3SelectCell'#13'OnSetEditText' ++ +#7#22'StringGrid3SetEditText'#9'ColWidths'#1#2#18#2'6'#2'6'#2'6'#3#4#1#2#18#0 ++ +#0#0#7'TButton'#12'CatgenButton'#4'Left'#3'p'#1#6'Height'#2#25#3'Top'#2#12#5 ++ +'Width'#2'`'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'CatGen'#7'OnCl' ++ +'ick'#7#11'CatgenClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'addcat'#4'Left'#3 ++ +#144#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#3'Add'#7'OnC' ++ +'lick'#7#11'AddCatClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'delcat'#4'Left'#3 ++ +#248#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#6'Delete'#7 ++ +'OnClick'#7#11'DelCatClick'#8'TabOrder'#2#3#0#0#0#9'TTabSheet'#5'Page2'#7'Ca' ++ +'ption'#6#9'CdC Stars'#12'ClientHeight'#3#173#1#11'ClientWidth'#3#236#1#0#6 ++ +'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#3#139#0#7 ++ +'Caption'#6#25'CDC Stars Catalog Setting'#11'ParentColor'#8#0#0#6'TLabel'#7 ++ +'Label65'#4'Left'#2'D'#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#18#7'Caption'#6 ++ +#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label66'#4'Left'#2'D'#6'Height'#2#14 ++ +#3'Top'#2'h'#5'Width'#2#18#7'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel' ++ +#7'Label87'#4'Left'#2'D'#6'Height'#2#14#3'Top'#3#147#0#5'Width'#2#18#7'Capti' ++ +'on'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#10#1#6'Hei' ++ +'ght'#2#14#3'Top'#2#23#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#7'Label28'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2#7#5'Width'#2 ++ +'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'Paren' ++ +'tColor'#8#0#0#6'TLabel'#7'Label17'#4'Left'#3'/'#1#6'Height'#2#14#3'Top'#2#23 ++ +#5'Width'#2#28#7'Caption'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#7'Label2' ++ +'7'#4'Left'#3'Y'#1#6'Height'#2#14#3'Top'#2#23#5'Width'#2'4'#7'Caption'#6#10 ++ +'Files Path'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left'#2#8#6'Height' ++ +#2#14#3'Top'#2'@'#5'Width'#2#27#7'Caption'#6#5'Stars'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#242#0#5'Width'#2'2'#7 ++ +'Caption'#6#9'Variables'#11'ParentColor'#8#0#0#6'TLabel'#7'Label20'#4'Left'#2 ++ +#8#6'Height'#2#14#3'Top'#3'I'#1#5'Width'#2'-'#7'Caption'#6#7'Doubles'#11'Par' ++ +'entColor'#8#0#0#9'TCheckBox'#6'BSCbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2 ++ +#18#4'Hint'#6'1Bright Stars Catalog 5th Edition (Hoffleit 1991)'#3'Top'#2'=' ++ +#5'Width'#3#139#0#11'HelpContext'#2'd'#7'Caption'#6#19'Bright Star Catalog'#7 ++ +'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#0#0#0#9'TLongEdit'#5'Fbsc1'#3'Tag'#2#1#4'Left'#3#10#1#6'Height'#2#21#4 ++ +'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxV' ++ +'alue'#2#10#0#0#9'TLongEdit'#5'Fbsc2'#3'Tag'#2#1#4'Left'#3'2'#1#6'Height'#2 ++ +#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 ++ +'MaxValue'#2#10#0#0#9'TCheckBox'#6'SKYbox'#3'Tag'#2#2#4'Left'#2'\'#6'Height' ++ +#2#18#4'Hint'#6',SKY2000 - Master Star Catalog (Sande+ 1998)'#3'Top'#2'e'#5 ++ +'Width'#2'M'#11'HelpContext'#2'e'#7'Caption'#6#7'SKY2000'#7'OnClick'#7#15'CD' ++ +'CStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLo' ++ +'ngEdit'#5'Fsky1'#3'Tag'#2#2#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10' ++ +#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5 ++ ,#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'T' ++ +'LongEdit'#5'Fsky2'#3'Tag'#2#2#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5'0..' ++ +'10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' ++ +#2#6#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0 ++ +#9'TCheckBox'#6'TY2Box'#3'Tag'#2#4#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'!Th' ++ +'e Tycho-2 Catalogue (Hog+ 2000)'#3'Top'#3#144#0#5'Width'#2'{'#11'HelpContex' ++ +'t'#2'f'#7'Caption'#6#15'Tycho 2 Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14 ++ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'Fty21'#3 ++ +'Tag'#2#4#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#144#0#5 + +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7 + +#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ft' + +'y22'#3'Tag'#2#4#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 +@@ -103,366 +103,360 @@ + +'ington Double Star'#7'OnClick'#7#11'WDSboxClick'#14'ParentShowHint'#8#8'Sho' + +'wHint'#9#8'TabOrder'#2#17#0#0#14'TDirectoryEdit'#4'bsc3'#3'Tag'#2#1#4'Left' + +#3'W'#1#6'Height'#2#21#3'Top'#2'='#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 +- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 +- +'MaxLength'#2#0#8'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'T' +- +'DirectoryEdit'#4'sky3'#3'Tag'#2#2#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#2'e' +- +#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden' +- +#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#7#8 +- +'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'ty23'#3'Tag'#2#4 +- +#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#3#144#0#5'Width'#2'o'#17'OnAcceptDirec' +- +'tory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumG' +- +'lyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#11#8'OnChange'#7#17'CDCStarPathCh' +- +'ange'#0#0#14'TDirectoryEdit'#4'gcv3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2 +- +#21#3'Top'#3#239#0#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Num' +- +'Glyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#10'gcv3Change'#0 +- +#0#14'TDirectoryEdit'#4'wds3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2#21#3'Top' +- +#3'F'#1#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1 +- +#9'MaxLength'#2#0#8'TabOrder'#2#20#8'OnChange'#7#10'wds3Change'#0#0#0#9'TTab' +- +'Sheet'#5'Page3'#7'Caption'#6#11'CdC Nebulae'#12'ClientHeight'#3#204#1#11'Cl' +- +'ientWidth'#3#238#1#0#6'TLabel'#6'Label3'#4'Left'#2#9#6'Height'#2#14#3'Top'#2 +- +#7#5'Width'#3#156#0#7'Caption'#6#27'CDC Nebulae Catalog Setting'#11'ParentCo' +- +'lor'#8#0#0#6'TLabel'#7'Label15'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#0#5 +- +'Width'#2'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number' +- +#11'ParentColor'#8#0#0#6'TLabel'#8'Label116'#4'Left'#3#23#1#6'Height'#2#14#3 +- +'Top'#2#16#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0#0#6'TLabel' +- +#8'Label117'#4'Left'#3'?'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#28#7'Capti' +- +'on'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#8'Label118'#4'Left'#3'i'#1#6 +- +'Height'#2#14#3'Top'#2#16#5'Width'#2'4'#7'Caption'#6#10'Files Path'#11'Paren' +- +'tColor'#8#0#0#6'TLabel'#8'Label120'#4'Left'#2#9#6'Height'#2#14#3'Top'#3#133 +- ,#1#5'Width'#3'L'#1#9'Alignment'#7#8'taCenter'#7'Caption'#6'=Use only catalog' +- +' from one of the three block at the same time'#11'ParentColor'#8#0#0#6'TLab' +- +'el'#12'LabelWarning'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#149#1#5'Width'#3 +- +#225#1#8'AutoSize'#8#7'Caption'#6#7'Warning'#11'ParentColor'#8#7'Visible'#8#8 +- +'WordWrap'#9#0#0#6'TPanel'#8'PanelDef'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'$' +- +#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'Clie' +- +'ntWidth'#3#232#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label119'#4'Left'#2#9#6'Heig' +- +'ht'#2#14#3'Top'#2#19#5'Width'#2'('#7'Caption'#6#7'Default'#11'ParentColor'#8 +- +#0#0#9'TCheckBox'#6'SACbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6 +- +'$Saguaro Astronomy Club Database 8.1'#3'Top'#2#16#5'Width'#2'2'#11'HelpCon' +- +'text'#2'k'#7'Caption'#6#4'SAC '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentSh' +- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fsac1'#3'Tag'#2#1 +- +#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30 +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebF' +- +'ield1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fsac2'#3'Tag' +- +#2#1#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2 +- +#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCN' +- +'ebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'sac3' +- +#3'Tag'#2#1#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#16#5'Width'#2'h'#10'ShowH' +- +'idden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder' +- +#2#3#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#6'TPanel'#8'PanelGen'#4'Left'#2 +- +#0#6'Height'#2'-'#3'Top'#2'T'#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised' +- +#12'ClientHeight'#2'-'#11'ClientWidth'#3#232#1#8'TabOrder'#2#1#0#6'TLabel'#7 +- +'Label69'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#14#5'Width'#2'*'#7'Caption'#6#7 +- +'General'#11'ParentColor'#8#0#0#9'TCheckBox'#6'NGCbox'#3'Tag'#2#2#4'Left'#2 +- +'\'#6'Height'#2#18#4'Hint'#6'YNew General Catalogue of Nebulae and Cluster o' +- +'f Stars (Dreyer 1888) (Sky Pub. Corp. 1988)'#3'Top'#2#11#5'Width'#3#152#0#11 +- +'HelpContext'#2'k'#7'Caption'#6#19'New General Catalog'#7'OnClick'#7#14'CDCN' +- +'ebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongE' +- +'dit'#5'fngc1'#3'Tag'#2#2#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 +- +'Top'#2#11#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8 ++ +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8 ++ +'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4 ++ +'sky3'#3'Tag'#2#2#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2'o'#17 ++ +'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth' ++ +#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStarPathChange'#0 ++ +#0#14'TDirectoryEdit'#4'ty23'#3'Tag'#2#4#4'Left'#3'W'#1#6'Height'#2#21#3'Top' ++ +#3#144#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'Sho' ++ +'wHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#11#8'OnChang' ++ +'e'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'gcv3'#3'Tag'#2#1#4'Left' ++ +#3'X'#1#6'Height'#2#21#3'Top'#3#239#0#5'Width'#2'o'#10'ShowHidden'#8#11'Butt' ++ +'onWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#10'gcv3Change' ++ +#0#0#14'TDirectoryEdit'#4'wds3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2#21#3'T' ++ +'op'#3'F'#1#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs' ++ +#2#1#8'TabOrder'#2#20#8'OnChange'#7#10'wds3Change'#0#0#0#9'TTabSheet'#5'Page' ++ +'3'#7'Caption'#6#11'CdC Nebulae'#12'ClientHeight'#3#173#1#11'ClientWidth'#3 ++ +#236#1#0#6'TLabel'#6'Label3'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'Width'#3 ++ +#156#0#7'Caption'#6#27'CDC Nebulae Catalog Setting'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#7'Label15'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#0#5'Width'#2'G'#9 ++ +'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'ParentColo' ++ +'r'#8#0#0#6'TLabel'#8'Label116'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#16#5 ++ +'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0#0#6'TLabel'#8'Label117' ++ +#4'Left'#3'?'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4' max' ++ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label118'#4'Left'#3'i'#1#6'Height'#2#14#3 ++ +'Top'#2#16#5'Width'#2'4'#7'Caption'#6#10'Files Path'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#8'Label120'#4'Left'#2#9#6'Height'#2#14#3'Top'#3#133#1#5'Width'#3'L' ++ +#1#9'Alignment'#7#8'taCenter'#7'Caption'#6'=Use only catalog from one of the' ++ ,' three block at the same time'#11'ParentColor'#8#0#0#6'TLabel'#12'LabelWarn' ++ +'ing'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#149#1#5'Width'#3#225#1#8'AutoSize' ++ +#8#7'Caption'#6#7'Warning'#11'ParentColor'#8#7'Visible'#8#8'WordWrap'#9#0#0#6 ++ +'TPanel'#8'PanelDef'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'$'#5'Width'#3#232#1 ++ +#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'ClientWidth'#3#232#1#8 ++ +'TabOrder'#2#0#0#6'TLabel'#8'Label119'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#19 ++ +#5'Width'#2'('#7'Caption'#6#7'Default'#11'ParentColor'#8#0#0#9'TCheckBox'#6 ++ +'SACbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'$Saguaro Astronomy' ++ +' Club Database 8.1'#3'Top'#2#16#5'Width'#2'2'#11'HelpContext'#2'k'#7'Capti' ++ +'on'#6#4'SAC '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHi' ++ +'nt'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fsac1'#3'Tag'#2#1#4'Left'#3#21#1#6 ++ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebField1Change'#5'Valu' ++ +'e'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fsac2'#3'Tag'#2#1#4'Left'#3'='#1 ++ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30#14'ParentShowHi' ++ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCNebField2Change'#5 ++ +'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'sac3'#3'Tag'#2#1#4'Lef' ++ +'t'#3'a'#1#6'Height'#2#21#3'Top'#2#16#5'Width'#2'h'#10'ShowHidden'#8#11'Butt' ++ +'onWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#16'CDCNebPathC' ++ +'hange'#0#0#0#6'TPanel'#8'PanelGen'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'T'#5 ++ +'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'Client' ++ +'Width'#3#232#1#8'TabOrder'#2#1#0#6'TLabel'#7'Label69'#4'Left'#2#9#6'Height' ++ +#2#14#3'Top'#2#14#5'Width'#2'*'#7'Caption'#6#7'General'#11'ParentColor'#8#0#0 ++ +#9'TCheckBox'#6'NGCbox'#3'Tag'#2#2#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'YNe' ++ +'w General Catalogue of Nebulae and Cluster of Stars (Dreyer 1888) (Sky Pub.' ++ +' Corp. 1988)'#3'Top'#2#11#5'Width'#3#152#0#11'HelpContext'#2'k'#7'Caption'#6 ++ +#19'New General Catalog'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 ++ +#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fngc1'#3'Tag'#2#2#4'Left'#3 ++ +#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#11#5'Width'#2#30#14'ParentS' ++ +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebField1Chang' ++ +'e'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fngc2'#3'Tag'#2#2#4'Lef' ++ +'t'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#11#5'Width'#2#30#14'Pa' ++ +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCNebField2' ++ +'Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'ngc3'#3'Tag' ++ +#2#2#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#11#5'Width'#2'h'#10'ShowHidden'#8 ++ +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#16'CDCN' ++ +'ebPathChange'#0#0#0#6'TPanel'#9'PanelSpec'#4'Left'#2#0#6'Height'#3#250#0#3 ++ +'Top'#3#132#0#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight' ++ +#3#250#0#11'ClientWidth'#3#232#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label22'#4'Le' ++ +'ft'#2#9#6'Height'#2#31#3'Top'#2#12#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6 ++ +#7'Nebulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label23'#4'Left' ++ +#2#9#6'Height'#2' '#3'Top'#2'<'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#8'G' ++ +'alaxies'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label24'#4'Left'#2 ++ +#9#6'Height'#2#30#3'Top'#2'l'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#13'Op' ++ +'en clusters'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label25'#4'Lef' ++ +'t'#2#9#6'Height'#2#30#3'Top'#3#157#0#5'Width'#2'Q'#8'AutoSize'#8#7'Caption' ++ +#6#17'Globular clusters'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Lab' ++ +'el26'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#204#0#5'Width'#2'R'#8'AutoSize'#8 ++ +#7'Caption'#6#17'Planetary nebulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TC' ++ +'heckBox'#6'OCLbox'#3'Tag'#2#6#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'-Open C' ++ +'luster Data 5th Edition (Lynga 1987)'#3'Top'#2'i'#5'Width'#3#136#0#11'He' ++ +'lpContext'#2'n'#7'Caption'#6#17'Open Cluster Data'#7'OnClick'#7#14'CDCNebSe' ++ +'lClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TCheckBox' ++ +#6'GCMbox'#3'Tag'#2#7#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'1Globular Cluste' ++ +'rs in the Milky Way (Harris, 1997)'#3'Top'#3#153#0#5'Width'#3#202#0#11'Help' ++ +'Context'#2'o'#7'Caption'#6#29'Globular Cl. in the Milky Way'#7'OnClick'#7#14 ++ +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#0#0#9'TC' ++ +'heckBox'#6'GPNbox'#3'Tag'#2#8#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'EStrasb' ++ +'ourg-ESO Catalogue of Galactic Planetary Nebulae (Acker+, 1992)'#3'Top'#3 ++ +#201#0#5'Width'#3#198#0#11'HelpContext'#2'p'#7'Caption'#6#29'Cat, Galactic P' ++ +'lanetary Neb. '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#2#0#0#9'TCheckBox'#6'LBNbox'#3'Tag'#2#3#4'Left'#2']'#6 ++ +'Height'#2#18#4'Hint'#6'2Lynds'' Catalogue of Bright Nebulae (Lynds 1965)' ++ +#3'Top'#2#9#5'Width'#3#154#0#11'HelpContext'#2'l'#7'Caption'#6#20'Lynds Brig' ++ ,'ht Nebulae'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#3#0#0#9'TCheckBox'#6'PGCBox'#3'Tag'#2#5#4'Left'#2']'#6'Heig' ++ +'ht'#2#18#4'Hint'#6#25'PGC/LEDA (Paturel+ 2009)'#3'Top'#2':'#5'Width'#2'^' ++ +#11'HelpContext'#2't'#7'Caption'#6#10'PGC / LEDA'#7'OnClick'#7#14'CDCNebSelC' ++ +'lick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5 ++ +'flbn1'#3'Tag'#2#3#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2 ++ +#9#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChan' ++ +'ge'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit' ++ +#5'flbn2'#3'Tag'#2#3#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top' ++ +#2#9#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnCh' ++ +'ange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdi' ++ +'t'#5'fpgc1'#3'Tag'#2#5#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'T' ++ +'op'#2':'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8 + +'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLon' +- +'gEdit'#5'fngc2'#3'Tag'#2#2#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10' +- +#3'Top'#2#11#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 +- +#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'T' +- +'DirectoryEdit'#4'ngc3'#3'Tag'#2#2#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#11 +- +#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxL' +- +'ength'#2#0#8'TabOrder'#2#3#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#6'TPane' +- +'l'#9'PanelSpec'#4'Left'#2#0#6'Height'#3#250#0#3'Top'#3#132#0#5'Width'#3#232 +- +#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#3#250#0#11'ClientWidth'#3 +- +#232#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label22'#4'Left'#2#9#6'Height'#2#31#3'T' +- +'op'#2#12#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#7'Nebulae'#11'ParentColor' +- +#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label23'#4'Left'#2#9#6'Height'#2' '#3'Top'#2 +- +'<'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#8'Galaxies'#11'ParentColor'#8#8 +- +'WordWrap'#9#0#0#6'TLabel'#7'Label24'#4'Left'#2#9#6'Height'#2#30#3'Top'#2'l' +- +#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#13'Open clusters'#11'ParentColor'#8 +- +#8'WordWrap'#9#0#0#6'TLabel'#7'Label25'#4'Left'#2#9#6'Height'#2#30#3'Top'#3 +- +#157#0#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#17'Globular clusters'#11'Par' +- +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label26'#4'Left'#2#9#6'Height'#2 +- +'&'#3'Top'#3#204#0#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#17'Planetary neb' +- +'ulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#6'OCLbox'#3'Tag'#2#6 +- +#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'-Open Cluster Data 5th Edition (Ly' +- +'nga 1987)'#3'Top'#2'i'#5'Width'#3#136#0#11'HelpContext'#2'n'#7'Caption'#6#17 +- +'Open Cluster Data'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'S' +- +'howHint'#9#8'TabOrder'#2#0#0#0#9'TCheckBox'#6'GCMbox'#3'Tag'#2#7#4'Left'#2 +- +']'#6'Height'#2#18#4'Hint'#6'1Globular Clusters in the Milky Way (Harris, 19' +- +'97)'#3'Top'#3#153#0#5'Width'#3#202#0#11'HelpContext'#2'o'#7'Caption'#6#29'G' +- +'lobular Cl. in the Milky Way'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShow' +- +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#1#0#0#9'TCheckBox'#6'GPNbox'#3'Tag'#2#8 +- +#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'EStrasbourg-ESO Catalogue of Galactic' +- +' Planetary Nebulae (Acker+, 1992)'#3'Top'#3#201#0#5'Width'#3#198#0#11'HelpC' +- +'ontext'#2'p'#7'Caption'#6#29'Cat, Galactic Planetary Neb. '#7'OnClick'#7#14 +- +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#0#0#9'TC' +- +'heckBox'#6'LBNbox'#3'Tag'#2#3#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'2Lynds' +- ,''' Catalogue of Bright Nebulae (Lynds 1965)'#3'Top'#2#9#5'Width'#3#154#0 +- +#11'HelpContext'#2'l'#7'Caption'#6#20'Lynds Bright Nebulae'#7'OnClick'#7#14 +- +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#9'TC' +- +'heckBox'#6'PGCBox'#3'Tag'#2#5#4'Left'#2']'#6'Height'#2#18#4'Hint'#6#25'PGC/' +- +'LEDA (Paturel+ 2009)'#3'Top'#2':'#5'Width'#2'^'#11'HelpContext'#2't'#7'Cap' +- +'tion'#6#10'PGC / LEDA'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'flbn1'#3'Tag'#2#3#4'Left'#3 +- +#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#9#5'Width'#2#30#14'ParentSh' +- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#18'CDCNebField1Change' +- +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'flbn2'#3'Tag'#2#3#4'Left'#3 +- +'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#9#5'Width'#2#30#14'ParentSh' +- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#18'CDCNebField2Change' +- +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fpgc1'#3'Tag'#2#5#4'Left'#3 +- +#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2':'#5'Width'#2#30#14'ParentS' +- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#18'CDCNebField1Chang' +- +'e'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fpgc2'#3'Tag'#2#5#4'Lef' +- +'t'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2':'#5'Width'#2#30#14'Pa' +- +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#18'CDCNebField2' +- +'Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'focl1'#3'Tag'#2#6#4 +- +'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'i'#5'Width'#2#30#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#18'CDCNebFiel' +- +'d1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'focl2'#3'Tag'#2#6 +- +#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'i'#5'Width'#2#30 +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange'#7#18'CDCNeb' +- +'Field2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgcm1'#3'Tag' +- +#2#7#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#153#0#5'Width' +- +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#8'OnChange'#7#18'C' +- +'DCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgcm2'#3 +- +'Tag'#2#7#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#153#0#5 +- +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#8'OnChange' +- +#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'f' +- +'gpn1'#3'Tag'#2#8#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 +- +#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'O' +- +'nChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLong' +- +'Edit'#5'fgpn2'#3'Tag'#2#8#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 +- +'Top'#3#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 +- +#14#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14 +- +'TDirectoryEdit'#4'lbn3'#3'Tag'#2#3#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#2#9 +- +#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxL' +- +'ength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDire' +- +'ctoryEdit'#4'pgc3'#3'Tag'#2#5#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#2':'#5'W' +- +'idth'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLeng' +- +'th'#2#0#8'TabOrder'#2#16#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirecto' +- +'ryEdit'#4'ocl3'#3'Tag'#2#6#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2'i'#5'Widt' +- +'h'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength' +- +#2#0#8'TabOrder'#2#17#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEd' +- +'it'#4'gcm3'#3'Tag'#2#7#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#153#0#5'Width' +- +#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0 +- +#8'TabOrder'#2#18#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4 +- +'gpn3'#3'Tag'#2#8#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#201#0#5'Width'#2'h' +- +#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'T' +- +'abOrder'#2#19#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#0#9'TTabSheet'#5'Pag' +- +'e5'#7'Caption'#6#14'Other software'#12'ClientHeight'#3#204#1#11'ClientWidth' +- +#3#238#1#0#14'TDirectoryEdit'#6'dsgsc3'#3'Tag'#2#13#4'Left'#3'F'#1#6'Height' +- +#2#21#3'Top'#3#165#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirec' +- +'tory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#9'MaxLength'#2 +- +#0#8'TabOrder'#2#0#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit' +- +#6'dstyc3'#3'Tag'#2#12#4'Left'#3'E'#1#6'Height'#2#21#3'Top'#2'w'#5'Width'#2 +- +'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'Butto' +- +'nWidth'#2#21#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#8'OnChange'#7 +- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#7'dsbase3'#3'Tag'#2#11#4'Left' +- +#3'E'#1#6'Height'#2#21#3'Top'#2'M'#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 +- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#9 +- +'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'TL' +- ,'ongEdit'#7'dsbase2'#3'Tag'#2#11#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0' +- +'..10'#3'Top'#2'M'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' +- +'er'#2#3#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10 +- +#0#0#9'TLongEdit'#6'dstyc2'#3'Tag'#2#12#4'Left'#3' '#1#6'Height'#2#21#4'Hint' +- +#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'T' +- +'abOrder'#2#4#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue' +- +#2#10#0#0#9'TLongEdit'#6'dsgsc2'#3'Tag'#2#13#4'Left'#3'!'#1#6'Height'#2#21#4 +- +'Hint'#6#5'0..10'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHi' +- +'nt'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 +- +'MaxValue'#2#10#0#0#9'TLongEdit'#6'dsgsc1'#3'Tag'#2#13#4'Left'#3#249#0#6'Hei' +- +'ght'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint' +- +#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCStarField1Change'#5'Val' +- +'ue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'dstyc1'#3'Tag'#2#12#4'Left'#3 +- +#249#0#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'Parent' +- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#19'CDCStarField1Cha' +- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#7'dsbase1'#3'Tag'#2#11#4 +- +'Left'#3#249#0#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2#30#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#19'CDCStarFie' +- +'ld1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#8'dsgscBox'#3'Tag' +- +#2#13#4'Left'#2'J'#6'Height'#2#18#4'Hint'#6'EThe Hubble Space Telescope Guid' +- +'e Star Catalog from Deepsky 2000 CDROM'#3'Top'#3#165#0#5'Width'#3#169#0#11 +- +'HelpContext'#2'h'#7'Caption'#6#20'Deepsky 2000 HST GSC'#7'OnClick'#7#15'CDC' +- +'StarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#0#0#9'TChe' +- +'ckBox'#8'dstycBox'#3'Tag'#2#12#4'Left'#2'I'#6'Height'#2#18#4'Hint'#6'%Tycho' +- +' Catalog from Deepsky 2000 CDROM'#3'Top'#2'w'#5'Width'#3#193#0#11'HelpConte' +- +'xt'#2'h'#7'Caption'#6#24'Deepsky 2000 Super Tycho'#7'OnClick'#7#15'CDCStarS' +- +'elClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#0#0#9'TCheckBo' +- +'x'#9'dsbasebox'#3'Tag'#2#11#4'Left'#2'J'#6'Height'#2#18#4'Hint'#6'7Deepsky ' +- +'2000 base directory with stars to magnitude 5.5'#3'Top'#2'M'#5'Width'#3#144 +- +#0#11'HelpContext'#2'h'#7'Caption'#6#17'Deepsky 2000 base'#7'OnClick'#7#15'C' +- +'DCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#0#0#6'T' +- +'Label'#7'Label21'#4'Left'#2#17#6'Height'#2#14#3'Top'#2'%'#5'Width'#2'N'#7'C' +- +'aption'#6#12'Deepsky 2000'#11'ParentColor'#8#8'WordWrap'#9#0#0#0#9'TTabShee' +- +'t'#5'Page4'#7'Caption'#6#8'Obsolete'#12'ClientHeight'#3#204#1#11'ClientWidt' +- +'h'#3#238#1#0#6'TLabel'#7'Label88'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'W' +- +'idth'#3#31#1#7'Caption'#6'1CDC Obsolete Catalog (but you can still use them' +- +')'#11'ParentColor'#8#0#0#6'TLabel'#7'Label91'#4'Left'#2#9#6'Height'#2'"'#3 +- +'Top'#2'5'#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2' +- +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label92'#4'Left'#2#9#6'Heig' +- +'ht'#2'%'#3'Top'#2'e'#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced b' +- +'y Tycho-2'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label93'#4'Left' +- +#2#9#6'Height'#2'&'#3'Top'#3#149#0#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6 +- +#17'Replaced by UCAC3'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label' +- +'94'#4'Left'#2#9#6'Height'#2' '#3'Top'#3'5'#1#5'Width'#2'F'#8'AutoSize'#8#7 +- +'Caption'#6#13'Not available'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBo' +- +'x'#6'TYCbox'#3'Tag'#2#3#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#30'The Tycho ' +- +'Catalogue (ESA 1997)'#3'Top'#2'5'#5'Width'#2'e'#11'HelpContext'#2'f'#7'Capt' +- +'ion'#6#13'Tycho Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint' +- +#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Ftyc1'#3'Tag'#2#3#4'Left' +- +#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'Parent' +- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Cha' +- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftyc2'#3'Tag'#2#3#4'L' +- +'eft'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarFie' +- +'ld2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'TICbox'#3'Tag'#2 +- +#5#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'4Tycho Input Catalog (Revised Vers' +- +'ion) (Egret+ 1992)'#3'Top'#2'e'#5'Width'#3#137#0#11'HelpContext'#2'g'#7'Cap' +- +'tion'#6#20'Tycho Input Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'Parent' +- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'Ftic1'#3'Tag'#2 +- +#5#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30 +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStar' +- +'Field1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftic2'#3'Tag' +- +#2#5#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2 +- +#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCS' +- ,'tarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'GSCbox'#3 +- +'Tag'#2#8#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'=The Hubble Space Telescope ' +- +'Guide Star Catalog ( Lasker 1990)'#3'Top'#3#149#0#5'Width'#3#158#0#11'Help' +- +'Context'#2'h'#7'Caption'#6#22'HST Guide Star Catalog'#7'OnClick'#7#15'CDCSt' +- +'arSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongE' +- +'dit'#5'fgsc1'#3'Tag'#2#8#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 +- +'Top'#3#149#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 +- +#9#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 +- +'TLongEdit'#5'fgsc2'#3'Tag'#2#8#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0.' +- +'.10'#3'Top'#3#149#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' +- +'rder'#2#10#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2 +- +#10#0#0#9'TCheckBox'#6'MCTBox'#3'Tag'#2#10#4'Left'#2'W'#6'Height'#2#21#4'Hin' +- +'t'#6#19'AUDE MicroCat CDROM'#3'Top'#3'5'#1#5'Width'#2'j'#11'HelpContext'#2 +- +'q'#7'Caption'#6#13'AUDE MicroCat'#7'OnClick'#7#15'CDCStarSelClick'#14'Paren' +- +'tShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#0#0#9'TLongEdit'#5'fmct1'#3'Tag' +- +#2#10#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width' +- +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#19'C' +- +'DCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fmct2' +- +#3'Tag'#2#10#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5 +- +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange' +- +#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEd' +- +'it'#4'tyc3'#3'Tag'#2#3#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'5'#5'Width'#2 +- +'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'Butto' +- +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#3#8'OnChange'#7 +- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'tic3'#3'Tag'#2#5#4'Left'#3'R' +- +#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAc' +- +'ceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'Max' +- +'Length'#2#0#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDir' +- +'ectoryEdit'#4'gsc3'#3'Tag'#2#8#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#149#0 +- +#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden' +- +#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#11#8 +- +'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'mct3'#3'Tag'#2#10 +- +#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3'5'#1#5'Width'#2'l'#17'OnAcceptDirect' ++ +'gEdit'#5'fpgc2'#3'Tag'#2#5#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10' ++ +#3'Top'#2':'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8 ++ +#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TL' ++ +'ongEdit'#5'focl1'#3'Tag'#2#6#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..1' ++ +'0'#3'Top'#2'i'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' ++ +#2#9#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 ++ +'TLongEdit'#5'focl2'#3'Tag'#2#6#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0.' ++ +'.10'#3'Top'#2'i'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#10#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0 ++ +#0#9'TLongEdit'#5'fgcm1'#3'Tag'#2#7#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5 ++ +'0..10'#3'Top'#3#153#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' ++ +'bOrder'#2#11#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2 ++ +#10#0#0#9'TLongEdit'#5'fgcm2'#3'Tag'#2#7#4'Left'#3'>'#1#6'Height'#2#21#4'Hin' ++ +'t'#6#5'0..10'#3'Top'#3#153#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#12#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxV' ++ +'alue'#2#10#0#0#9'TLongEdit'#5'fgpn1'#3'Tag'#2#8#4'Left'#3#22#1#6'Height'#2 ++ +#21#4'Hint'#6#5'0..10'#3'Top'#3#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'S' ++ +'howHint'#9#8'TabOrder'#2#13#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2 ++ +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgpn2'#3'Tag'#2#8#4'Left'#3'>'#1#6'He' ++ +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#201#0#5'Width'#2#30#14'ParentShowHin' ++ +'t'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#18'CDCNebField2Change'#5 ++ +'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'lbn3'#3'Tag'#2#3#4'Lef' ++ +'t'#3'b'#1#6'Height'#2#21#3'Top'#2#9#5'Width'#2'h'#10'ShowHidden'#8#11'Butto' ++ +'nWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#16'CDCNebPathC' ++ +'hange'#0#0#14'TDirectoryEdit'#4'pgc3'#3'Tag'#2#5#4'Left'#3'b'#1#6'Height'#2 ++ +#21#3'Top'#2':'#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGly' ++ +'phs'#2#1#8'TabOrder'#2#16#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirect' ++ +'oryEdit'#4'ocl3'#3'Tag'#2#6#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2'i'#5'Wid' ++ +'th'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder' ++ +#2#17#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4'gcm3'#3'Ta' ++ +'g'#2#7#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#153#0#5'Width'#2'h'#10'ShowHi' ++ +'dden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#18#8'OnChange'#7 ++ +#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4'gpn3'#3'Tag'#2#8#4'Left'#3'b' ++ +#1#6'Height'#2#21#3'Top'#3#201#0#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWid' ++ +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#19#8'OnChange'#7#16'CDCNebPathChang' ++ +'e'#0#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#14'Other software'#12'ClientH' ++ +'eight'#3#173#1#11'ClientWidth'#3#236#1#0#6'TLabel'#7'Label21'#4'Left'#2#17#6 ++ +'Height'#2#14#3'Top'#2'%'#5'Width'#2'N'#7'Caption'#6#12'Deepsky 2000'#11'Par' ++ +'entColor'#8#8'WordWrap'#9#0#0#14'TDirectoryEdit'#6'dsgsc3'#3'Tag'#2#13#4'Le' ++ +'ft'#3'F'#1#6'Height'#2#21#3'Top'#3#165#0#5'Width'#2'o'#17'OnAcceptDirectory' ++ +#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs' ++ +#2#1#8'TabOrder'#2#0#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEd' ++ +'it'#6'dstyc3'#3'Tag'#2#12#4'Left'#3'E'#1#6'Height'#2#21#3'Top'#2'w'#5'Width' ++ +#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'But' ++ +'tonWidth'#2#21#9'NumGlyphs'#2#1#8'TabOrder'#2#1#8'OnChange'#7#17'CDCStarPat' ++ +'hChange'#0#0#14'TDirectoryEdit'#7'dsbase3'#3'Tag'#2#11#4'Left'#3'E'#1#6'Hei' ++ +'ght'#2#21#3'Top'#2'M'#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDir' ++ +'ectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#8'TabOrder'#2 ++ +#2#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'TLongEdit'#7'dsbase2'#3'Tag'#2 ++ +#11#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2 ++ ,#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#19'CDCS' ++ +'tarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'dstyc2'#3 ++ +'Tag'#2#12#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'w'#5'Wi' ++ +'dth'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnChange'#7 ++ +#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'ds' ++ +'gsc2'#3'Tag'#2#13#4'Left'#3'!'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 ++ +#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'On' ++ +'Change'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLong' ++ +'Edit'#6'dsgsc1'#3'Tag'#2#13#4'Left'#3#249#0#6'Height'#2#21#4'Hint'#6#5'0..1' ++ +'0'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' ++ +'er'#2#6#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10 ++ +#0#0#9'TLongEdit'#6'dstyc1'#3'Tag'#2#12#4'Left'#3#249#0#6'Height'#2#21#4'Hin' ++ +'t'#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8 ++ +'TabOrder'#2#7#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue' ++ +#2#10#0#0#9'TLongEdit'#7'dsbase1'#3'Tag'#2#11#4'Left'#3#249#0#6'Height'#2#21 ++ +#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHin' ++ +'t'#9#8'TabOrder'#2#8#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'M' ++ +'axValue'#2#10#0#0#9'TCheckBox'#8'dsgscBox'#3'Tag'#2#13#4'Left'#2'J'#6'Heigh' ++ +'t'#2#18#4'Hint'#6'EThe Hubble Space Telescope Guide Star Catalog from Deeps' ++ +'ky 2000 CDROM'#3'Top'#3#165#0#5'Width'#3#169#0#11'HelpContext'#2'h'#7'Capti' ++ +'on'#6#20'Deepsky 2000 HST GSC'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentSh' ++ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'dstycBox'#3'Tag' ++ +#2#12#4'Left'#2'I'#6'Height'#2#18#4'Hint'#6'%Tycho Catalog from Deepsky 2000' ++ +' CDROM'#3'Top'#2'w'#5'Width'#3#193#0#11'HelpContext'#2'h'#7'Caption'#6#24'D' ++ +'eepsky 2000 Super Tycho'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'dsbasebox'#3'Tag'#2#11#4 ++ +'Left'#2'J'#6'Height'#2#18#4'Hint'#6'7Deepsky 2000 base directory with stars' ++ +' to magnitude 5.5'#3'Top'#2'M'#5'Width'#3#144#0#11'HelpContext'#2'h'#7'Capt' ++ +'ion'#6#17'Deepsky 2000 base'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShow' ++ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7'Captio' ++ +'n'#6#8'Obsolete'#12'ClientHeight'#3#173#1#11'ClientWidth'#3#236#1#0#6'TLabe' ++ +'l'#7'Label88'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'Width'#3#31#1#7'Capti' ++ +'on'#6'1CDC Obsolete Catalog (but you can still use them)'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#7'Label91'#4'Left'#2#9#6'Height'#2'"'#3'Top'#2'5'#5'Width'#2 ++ +'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2'#11'ParentColor'#8#8'W' ++ +'ordWrap'#9#0#0#6'TLabel'#7'Label92'#4'Left'#2#9#6'Height'#2'%'#3'Top'#2'e'#5 ++ +'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2'#11'ParentCol' ++ +'or'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label93'#4'Left'#2#9#6'Height'#2'&'#3'T' ++ +'op'#3#149#0#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#17'Replaced by UCAC3' ++ +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label94'#4'Left'#2#9#6'Heig' ++ +'ht'#2' '#3'Top'#3'5'#1#5'Width'#2'F'#8'AutoSize'#8#7'Caption'#6#13'Not avai' ++ +'lable'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label95'#4'Left'#2#9 ++ +#6'Height'#2'&'#3'Top'#3']'#1#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#15'Re' ++ +'placed by PGC'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#6'TYCbox'#3 ++ +'Tag'#2#3#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#30'The Tycho Catalogue (ESA ' ++ +'1997)'#3'Top'#2'5'#5'Width'#2'e'#11'HelpContext'#2'f'#7'Caption'#6#13'Tycho' ++ +' Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Ftyc1'#3'Tag'#2#3#4'Left'#3#5#1#6'Heig' ++ +'ht'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'ParentShowHint'#8#8 ++ +'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2 ++ +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftyc2'#3'Tag'#2#3#4'Left'#3'-'#1#6'He' ++ +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'ParentShowHint'#8 ++ +#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value' ++ +#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'TICbox'#3'Tag'#2#5#4'Left'#2'W'#6'H' ++ +'eight'#2#21#4'Hint'#6'4Tycho Input Catalog (Revised Version) (Egret+ 1992)' ++ +#3'Top'#2'e'#5'Width'#3#137#0#11'HelpContext'#2'g'#7'Caption'#6#20'Tycho In' ++ +'put Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHi' ++ +'nt'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'Ftic1'#3'Tag'#2#5#4'Left'#3#5#1#6 ++ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStarField1Change'#5'Val' ++ +'ue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftic2'#3'Tag'#2#5#4'Left'#3'-'#1 ++ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHi' ++ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCStarField2Change'#5 ++ +'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'GSCbox'#3'Tag'#2#8#4'Left'#2 ++ ,'W'#6'Height'#2#21#4'Hint'#6'=The Hubble Space Telescope Guide Star Catalog ' ++ +' ( Lasker 1990)'#3'Top'#3#149#0#5'Width'#3#158#0#11'HelpContext'#2'h'#7'Cap' ++ +'tion'#6#22'HST Guide Star Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'Pare' ++ +'ntShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'fgsc1'#3'Tag' ++ +#2#8#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#149#0#5'Width' ++ +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#19'CD' ++ +'CStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgsc2'#3 ++ +'Tag'#2#8#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#149#0#5 ++ +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange' ++ +#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6 ++ +'MCTBox'#3'Tag'#2#10#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#19'AUDE MicroCat ' ++ +'CDROM'#3'Top'#3'5'#1#5'Width'#2'j'#11'HelpContext'#2'q'#7'Caption'#6#13'AUD' ++ +'E MicroCat'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHin' ++ +'t'#9#8'TabOrder'#2#12#0#0#9'TLongEdit'#5'fmct1'#3'Tag'#2#10#4'Left'#3#5#1#6 ++ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width'#2#30#14'ParentShowHi' ++ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#19'CDCStarField1Change'#5 ++ +'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fmct2'#3'Tag'#2#10#4'Left'#3 ++ +'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width'#2#30#14'Paren' ++ +'tShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#19'CDCStarField2C' ++ +'hange'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'tyc3'#3'Tag'#2 ++ +#3#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'5'#5'Width'#2'l'#17'OnAcceptDirect' + +'ory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGl' +- +'yphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#17'CDCStarPathCha' +- +'nge'#0#0#14'TDirectoryEdit'#4'usn3'#3'Tag'#2#9#4'Left'#3'R'#1#6'Height'#2#21 +- +#3'Top'#3#13#1#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory' +- +#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'T' +- +'abOrder'#2#16#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5 +- +'gscc3'#3'Tag'#2#7#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#229#0#5'Width'#2'o' ++ +'yphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirec' ++ +'toryEdit'#4'tic3'#3'Tag'#2#5#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'e'#5'Wi' ++ +'dth'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11 ++ +'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStar' ++ +'PathChange'#0#0#14'TDirectoryEdit'#4'gsc3'#3'Tag'#2#8#4'Left'#3'R'#1#6'Heig' ++ +'ht'#2#21#3'Top'#3#149#0#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptD' ++ +'irectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder' ++ +#2#11#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'mct3'#3'T' ++ +'ag'#2#10#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3'5'#1#5'Width'#2'l'#17'OnAcc' ++ +'eptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23 ++ +#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#17'CDCStarPathChange'#0#0#14 ++ +'TDirectoryEdit'#4'usn3'#3'Tag'#2#9#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#13 ++ +#1#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidde' ++ +'n'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#16#8'OnChange'#7#17 ++ +'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'gscc3'#3'Tag'#2#7#4'Left'#3'R'#1 ++ +#6'Height'#2#21#3'Top'#3#229#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCA' ++ +'cceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Ta' ++ +'bOrder'#2#17#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'g' ++ +'scf3'#3'Tag'#2#6#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#189#0#5'Width'#2'o' + +#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWi' +- +'dth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#17#8'OnChange'#7 +- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'gscf3'#3'Tag'#2#6#4'Left'#3 +- +'R'#1#6'Height'#2#21#3'Top'#3#189#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 +- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 +- +'MaxLength'#2#0#8'TabOrder'#2#18#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'T' +- +'LongEdit'#6'fgscf2'#3'Tag'#2#6#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0.' +- +'.10'#3'Top'#3#189#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' +- +'rder'#2#19#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2 +- +#10#0#0#9'TLongEdit'#6'fgscc2'#3'Tag'#2#7#4'Left'#3'-'#1#6'Height'#2#21#4'Hi' +- +'nt'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' +- +#9#8'TabOrder'#2#20#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'Max' +- +'Value'#2#10#0#0#9'TLongEdit'#5'fusn2'#3'Tag'#2#9#4'Left'#3'-'#1#6'Height'#2 +- +#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShowHint'#8#8'Sh' +- +'owHint'#9#8'TabOrder'#2#21#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2 +- +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn1'#3'Tag'#2#9#4'Left'#3#5#1#6'Hei' +- +'ght'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShowHint' +- +#8#8'ShowHint'#9#8'TabOrder'#2#22#8'OnChange'#7#19'CDCStarField1Change'#5'Va' +- +'lue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc1'#3'Tag'#2#7#4'Left'#3#5 +- +#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentS' +- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#23#8'OnChange'#7#19'CDCStarField1Cha' +- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscf1'#3'Tag'#2#6#4 +- +'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Width'#2#30 +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#24#8'OnChange'#7#19'CDCSta' +- ,'rField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#9'USNBright'#3 +- +'Tag'#2#9#4'Left'#3#170#0#6'Height'#2#21#3'Top'#3#13#1#5'Width'#2'['#7'Capti' +- +'on'#6#12'Bright stars'#7'OnClick'#7#14'USNBrightClick'#8'TabOrder'#2#25#0#0 +- +#9'TCheckBox'#6'USNbox'#3'Tag'#2#9#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'J- ' +- +'USNO-SA1.0 '#13#10'- USNO-A1.0 '#13#10'- USNO-A2.0'#13#10' U.S. Naval Obse' +- +'rvatory CDROM''s'#3'Top'#3#13#1#5'Width'#2'C'#11'HelpContext'#2'q'#7'Captio' +- +'n'#6#6'USNO-A'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'Show' +- +'Hint'#9#8'TabOrder'#2#26#0#0#9'TCheckBox'#7'GSCCbox'#3'Tag'#2#7#4'Left'#2'W' +- +#6'Height'#2#21#4'Hint'#6'SThe Hubble Space Telescope Guide Star Catalog ( ' +- +'Lasker 1990) Compact CDS version '#3'Top'#3#229#0#5'Width'#2#127#11'HelpCo' +- +'ntext'#2'h'#7'Caption'#6#15'HST GSC compact'#7'OnClick'#7#15'CDCStarSelClic' +- +'k'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#27#0#0#9'TCheckBox'#7'G' +- +'SCFBox'#3'Tag'#2#6#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'RThe Hubble Space ' +- +'Telescope Guide Star Catalog ( Lasker 1990) original FITS CDROM'#3'Top'#3 +- +#189#0#5'Width'#3#149#0#11'HelpContext'#2'h'#7'Caption'#6#21'HST GSC origina' +- +'l FITS'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9 +- +#8'TabOrder'#2#28#0#0#14'TDirectoryEdit'#4'rc33'#3'Tag'#2#4#4'Left'#3'R'#1#6 +- +'Height'#2#21#3'Top'#3']'#1#5'Width'#2'h'#17'OnAcceptDirectory'#7#18'CDCAcce' +- +'ptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLe' +- +'ngth'#2#0#8'TabOrder'#2#29#8'OnChange'#7#16'CDCNebPathChange'#0#0#9'TLongEd' +- +'it'#5'frc32'#3'Tag'#2#4#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 +- +'Top'#3']'#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 +- +#30#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 +- +'TLongEdit'#5'frc31'#3'Tag'#2#4#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..' +- +'10'#3'Top'#3']'#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' +- +'er'#2#31#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10 +- +#0#0#9'TCheckBox'#6'RC3box'#3'Tag'#2#4#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6 +- +'IThird Reference Catalogue of Bright Galaxies (RC3) (de Vaucouleurs+ 1991)' +- +#3'Top'#3']'#1#5'Width'#3#176#0#11'HelpContext'#2'm'#7'Caption'#6#28'3'' Ref' +- +'. Cat. Bright Galaxies'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2' '#0#0#6'TLabel'#7'Label95'#4'Left'#2#9#6'Heigh' +- +'t'#2'&'#3'Top'#3']'#1#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#15'Replaced ' +- +'by PGC'#11'ParentColor'#8#8'WordWrap'#9#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Lef' +- +'t'#2#1#6'Height'#2'6'#3'Top'#3#209#1#5'Width'#3#242#1#5'Align'#7#8'alBottom' +- +#12'ClientHeight'#2'6'#11'ClientWidth'#3#242#1#8'TabOrder'#2#0#0#6'TLabel'#3 +- +'fw0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' +- +'aption'#6#3'fw0'#11'ParentColor'#8#0#0#6'TLabel'#3'fw1'#4'Left'#3#171#0#6'H' +- +'eight'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'P' +- +'arentColor'#8#0#0#6'TLabel'#3'fw2'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2#8 +- +#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11'ParentColor'#8#0#0#6'TLa' +- +'bel'#3'fw3'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSi' +- +'ze'#8#7'Caption'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fw4'#4'Left'#3 +- +#155#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3 +- +'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3'fw5'#4'Left'#2#11#6'Height'#2#17#3'T' +- +'op'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8#0 +- +#0#6'TLabel'#3'fw6'#4'Left'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8 +- +'AutoSize'#8#7'Caption'#6#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fw7'#4'Le' +- +'ft'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Captio' +- +'n'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fw8'#4'Left'#3#251#0#6'Height' +- +#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentC' +- +'olor'#8#0#0#6'TLabel'#3'fw9'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2' '#5'Wi' +- +'dth'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw9'#11'ParentColor'#8#0#0#6'TLabel' +- +#6'Label5'#4'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8 +- +#7'Caption'#6#10'fov number'#11'ParentColor'#8#0#0#6'TLabel'#4'fw10'#4'Left' +- +#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6 +- +#4'fw10'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height' +- +#2'2'#3'Top'#3#11#2#5'Width'#3#11#2#8'HelpType'#7#9'htKeyword'#11'HelpKeywor' +- +'d'#6#17'help/catalog.html'#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11 +- +'ClientWidth'#3#11#2#8'TabOrder'#2#1#0#6'TImage'#10'DirOpenImg'#4'Left'#2#8#6 +- +'Height'#2#16#3'Top'#2#15#5'Width'#2#16#8'AutoSize'#9#12'Picture.Data'#10#198 +- +#1#0#0#7'TPixmap'#186#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"16' +- +' 16 5 1",'#10'". c None",'#10'", c #7F7F7F",'#10'"- c #FFFF00",'#10'"* c #F' +- +'FFFFF",'#10'"a c #000000",'#10'"................",'#10'"................",' +- +#10'"................",'#10'"................",'#10'"...,,,,.........",'#10 +- ,'"..,-*-*,........",'#10'"..,,,,,,,,,,a...",'#10'"..,*********,a..",'#10'"..' +- +',*-.-.-.-.,a..",'#10'"..,*.-.-.-.-,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.' +- +'-.-.-.-,a..",'#10'"..,,,,,,,,,,,a..",'#10'"..aaaaaaaaaaa...",'#10'"........' +- +'........",'#10'"................"}'#10#7'Visible'#8#0#0#7'TButton'#7'Button' +- +'1'#4'Left'#3#240#0#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacin' +- +'g.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'Ta' +- +'bOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'P'#1#6'Height'#2#25#3'Top'#2 +- +#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7 +- +'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Lef' +- +'t'#3#176#1#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerB' +- +'order'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrde' +- +'r'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#2#15 +- +#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBor' +- +'der'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3 +- +#0#0#0#11'TOpenDialog'#11'OpenDialog1'#11'FilterIndex'#2#0#4'left'#3#238#1#3 +- +'top'#2#24#0#0#0 ++ +'dth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#18#8'OnChange'#7#17'CDCStarPathCha' ++ +'nge'#0#0#9'TLongEdit'#6'fgscf2'#3'Tag'#2#6#4'Left'#3'-'#1#6'Height'#2#21#4 ++ +'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHi' ++ +'nt'#9#8'TabOrder'#2#19#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 ++ +'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc2'#3'Tag'#2#7#4'Left'#3'-'#1#6'Heigh' ++ +'t'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentShowHint'#8 ++ +#8'ShowHint'#9#8'TabOrder'#2#20#8'OnChange'#7#19'CDCStarField2Change'#5'Valu' ++ +'e'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn2'#3'Tag'#2#9#4'Left'#3'-'#1 ++ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShow' ++ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#21#8'OnChange'#7#19'CDCStarField2Change' ++ +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn1'#3'Tag'#2#9#4'Left'#3 ++ +#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'Parent' ++ +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#22#8'OnChange'#7#19'CDCStarField1Ch' ++ +'ange'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc1'#3'Tag'#2#7#4 ++ +'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30 ++ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#23#8'OnChange'#7#19'CDCSta' ++ +'rField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscf1'#3'T' ++ +'ag'#2#6#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Wi' ++ +'dth'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#24#8'OnChange'#7 ++ +#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#9'US' ++ +'NBright'#3'Tag'#2#9#4'Left'#3#170#0#6'Height'#2#21#3'Top'#3#13#1#5'Width'#2 ++ +'['#7'Caption'#6#12'Bright stars'#7'OnClick'#7#14'USNBrightClick'#8'TabOrder' ++ ,#2#25#0#0#9'TCheckBox'#6'USNbox'#3'Tag'#2#9#4'Left'#2'W'#6'Height'#2#21#4'Hi' ++ +'nt'#6'J- USNO-SA1.0 '#13#10'- USNO-A1.0 '#13#10'- USNO-A2.0'#13#10' U.S. N' ++ +'aval Observatory CDROM''s'#3'Top'#3#13#1#5'Width'#2'C'#11'HelpContext'#2'q' ++ +#7'Caption'#6#6'USNO-A'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8 ++ +#8'ShowHint'#9#8'TabOrder'#2#26#0#0#9'TCheckBox'#7'GSCCbox'#3'Tag'#2#7#4'Lef' ++ +'t'#2'W'#6'Height'#2#21#4'Hint'#6'SThe Hubble Space Telescope Guide Star Cat' ++ +'alog ( Lasker 1990) Compact CDS version '#3'Top'#3#229#0#5'Width'#2#127#11 ++ +'HelpContext'#2'h'#7'Caption'#6#15'HST GSC compact'#7'OnClick'#7#15'CDCStarS' ++ +'elClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#27#0#0#9'TCheckBo' ++ +'x'#7'GSCFBox'#3'Tag'#2#6#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'RThe Hubble ' ++ +'Space Telescope Guide Star Catalog ( Lasker 1990) original FITS CDROM'#3 ++ +'Top'#3#189#0#5'Width'#3#149#0#11'HelpContext'#2'h'#7'Caption'#6#21'HST GSC ' ++ +'original FITS'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#28#0#0#14'TDirectoryEdit'#4'rc33'#3'Tag'#2#4#4'Left'#3 ++ +'R'#1#6'Height'#2#21#3'Top'#3']'#1#5'Width'#2'h'#17'OnAcceptDirectory'#7#18 ++ +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8 ++ +'TabOrder'#2#29#8'OnChange'#7#16'CDCNebPathChange'#0#0#9'TLongEdit'#5'frc32' ++ +#3'Tag'#2#4#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3']'#1#5 ++ +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#30#8'OnChange' ++ +#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'f' ++ +'rc31'#3'Tag'#2#4#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3']' ++ +#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#31#8'OnCha' ++ +'nge'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox' ++ +#6'RC3box'#3'Tag'#2#4#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'IThird Reference' ++ +' Catalogue of Bright Galaxies (RC3) (de Vaucouleurs+ 1991)'#3'Top'#3']'#1#5 ++ +'Width'#3#176#0#11'HelpContext'#2'm'#7'Caption'#6#28'3'' Ref. Cat. Bright Ga' ++ +'laxies'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8 ++ +'TabOrder'#2' '#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Left'#2#1#6'Height'#2'6'#3'T' ++ +'op'#3#209#1#5'Width'#3#242#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'6'#11 ++ +'ClientWidth'#3#242#1#8'TabOrder'#2#0#0#6'TLabel'#3'fw0'#4'Left'#2'['#6'Heig' ++ +'ht'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw0'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#3'fw1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2#8#5 ++ +'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'TLabe' ++ +'l'#3'fw2'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSiz' ++ +'e'#8#7'Caption'#6#3'fw2'#11'ParentColor'#8#0#0#6'TLabel'#3'fw3'#4'Left'#3'K' ++ +#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw3' ++ +#11'ParentColor'#8#0#0#6'TLabel'#3'fw4'#4'Left'#3#155#1#6'Height'#2#17#3'Top' ++ +#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#3'fw5'#4'Left'#2#11#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'Auto' ++ +'Size'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8#0#0#6'TLabel'#3'fw6'#4'Left'#2 ++ +'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw' ++ +'6'#11'ParentColor'#8#0#0#6'TLabel'#3'fw7'#4'Left'#3#171#0#6'Height'#2#17#3 ++ +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#3'fw8'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2 ++ +'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8#0#0#6'TLabel'#3'fw9' ++ +#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Cap' ++ +'tion'#6#3'fw9'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#2#11#6'Hei' ++ +'ght'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#10'fov number' ++ +#11'ParentColor'#8#0#0#6'TLabel'#4'fw10'#4'Left'#3#155#1#6'Height'#2#17#3'To' ++ +'p'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#4'fw10'#11'ParentColor'#8#0 ++ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#11#2#5'Width' ++ +#3#11#2#8'HelpType'#7#9'htKeyword'#11'HelpKeyword'#6#17'help/catalog.html'#5 ++ +'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#11#2#8'TabOrde' ++ +'r'#2#1#0#6'TImage'#10'DirOpenImg'#4'Left'#2#8#6'Height'#2#16#3'Top'#2#15#5 ++ +'Width'#2#16#8'AutoSize'#9#12'Picture.Data'#10#198#1#0#0#7'TPixmap'#186#1#0#0 ++ +'/* XPM */'#10'static char *graphic[] = {'#10'"16 16 5 1",'#10'". c None",' ++ +#10'", c #7F7F7F",'#10'"- c #FFFF00",'#10'"* c #FFFFFF",'#10'"a c #000000",' ++ +#10'"................",'#10'"................",'#10'"................",'#10 ++ +'"................",'#10'"...,,,,.........",'#10'"..,-*-*,........",'#10'"..' ++ +',,,,,,,,,,a...",'#10'"..,*********,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.' ++ +'-.-.-.-,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.-.-.-.-,a..",'#10'"..,,,,,,' ++ +',,,,,a..",'#10'"..aaaaaaaaaaa...",'#10'"................",'#10'"...........' ++ +'....."}'#10#7'Visible'#8#0#0#7'TButton'#7'Button1'#4'Left'#3#240#0#6'Height' ++ +#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' ++ ,#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'B' ++ +'utton2'#4'Left'#3'P'#1#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSp' ++ +'acing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8 ++ +'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#176#1#6'Height'#2#25#3'To' ++ +'p'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Capti' ++ +'on'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button' ++ +'4'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#7'Anchors'#11#5 ++ +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7 ++ +'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#11'TOpenDialog'#11'OpenDi' ++ +'alog1'#11'FilterIndex'#2#0#4'left'#3#238#1#3'top'#2#24#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_chart.lfm skychart_3.2_up/skychart/pu_config_chart.lfm +--- skychart_3.2/skychart/pu_config_chart.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_chart.lfm 2011-03-09 15:18:57.151091634 +0100 +@@ -1,7 +1,7 @@ + object f_config_chart: Tf_config_chart +- Left = 920 ++ Left = 504 + Height = 567 +- Top = 104 ++ Top = 101 + Width = 510 + ActiveControl = MainPanel + BorderStyle = bsToolWindow +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 517 +@@ -31,19 +31,18 @@ + Width = 508 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + OnPageChanged = PageControl1PageChanged + object Page1: TTabSheet + Caption = 'Page1' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Label31: TLabel + Left = 0 + Height = 14 + Top = 0 +- Width = 76 ++ Width = 72 + Caption = 'Chart Setting' + ParentColor = False + end +@@ -100,7 +99,7 @@ + end + object equinox2: TFloatEdit + Left = 104 +- Height = 21 ++ Height = 23 + Hint = '-20000..20000' + Top = 12 + Width = 89 +@@ -125,9 +124,9 @@ + TabOrder = 2 + object PMBox: TCheckBox + Left = 6 +- Height = 21 ++ Height = 22 + Top = 7 +- Width = 396 ++ Width = 378 + Caption = 'Use the proper motion to correct the position for the given epoch' + OnClick = PMBoxClick + TabOrder = 0 +@@ -135,7 +134,7 @@ + end + object epoch2: TFloatEdit + Left = 336 +- Height = 21 ++ Height = 23 + Hint = '-20000..20000' + Top = 12 + Width = 89 +@@ -180,9 +179,9 @@ + end + object ExpertMode: TCheckBox + Left = 21 +- Height = 21 ++ Height = 22 + Top = 357 +- Width = 95 ++ Width = 93 + Caption = 'Expert mode' + OnClick = ExpertModeClick + TabOrder = 3 +@@ -226,8 +225,8 @@ + end + object Page2: TTabSheet + Caption = 'Page2' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Label30: TLabel + Left = 0 + Height = 14 +@@ -679,8 +678,8 @@ + end + object Page3: TTabSheet + Caption = 'Page3' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Bevel7: TBevel + Left = 15 + Height = 375 +@@ -1008,8 +1007,8 @@ + end + object Page4: TTabSheet + Caption = 'Page4' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Label29: TLabel + Left = 0 + Height = 14 +@@ -1818,8 +1817,8 @@ + end + object Page5: TTabSheet + Caption = 'Page5' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Label159: TLabel + Left = 0 + Height = 14 +@@ -2361,8 +2360,8 @@ + end + object Page6: TTabSheet + Caption = 'Page6' +- ClientHeight = 457 +- ClientWidth = 504 ++ ClientHeight = 426 ++ ClientWidth = 502 + object Label95: TLabel + Left = 0 + Height = 14 +diff -ur skychart_3.2/skychart/pu_config_chart.lrs skychart_3.2_up/skychart/pu_config_chart.lrs +--- skychart_3.2/skychart/pu_config_chart.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_chart.lrs 2011-03-09 15:18:57.129094336 +0100 +@@ -1,626 +1,625 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_chart','FORMDATA',[ +- 'TPF0'#15'Tf_config_chart'#14'f_config_chart'#4'Left'#3#152#3#6'Height'#3'7'#2 +- +#3'Top'#2'h'#5'Width'#3#254#1#13'ActiveControl'#7#9'MainPanel'#11'BorderStyl' ++ 'TPF0'#15'Tf_config_chart'#14'f_config_chart'#4'Left'#3#248#1#6'Height'#3'7'#2 ++ +#3'Top'#2'e'#5'Width'#3#254#1#13'ActiveControl'#7#9'MainPanel'#11'BorderStyl' + +'e'#7#12'bsToolWindow'#7'Caption'#6#6'Charts'#12'ClientHeight'#3'7'#2#11'Cli' + +'entWidth'#3#254#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreat' + +'e'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' +- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3 +- +#5#2#3'Top'#2#0#5'Width'#3#254#1#5'Align'#7#8'alClient'#12'ClientHeight'#3#5 +- +#2#11'ClientWidth'#3#254#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageContr' +- +'ol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#205#1#3'Top'#2#1#5'Width'#3#252 +- +#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex' +- +#2#0#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTa' +- +'bSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight'#3#201#1#11'ClientWi' +- +'dth'#3#248#1#0#6'TLabel'#7'Label31'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5 +- +'Width'#2'L'#7'Caption'#6#13'Chart Setting'#11'ParentColor'#8#0#0#6'TPanel' +- +#11'PanelExpert'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width'#3#197 +- +#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#7'Visibl' +- +'e'#8#0#6'TLabel'#12'EquinoxLabel'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#20#5 +- +'Width'#2'1'#7'Caption'#6#8'Equinox:'#11'ParentColor'#8#0#0#6'TLabel'#6'Labe' +- +'l1'#4'Left'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2''''#7'Caption'#6#6 +- +'Epoch:'#11'ParentColor'#8#0#0#11'TRadioGroup'#12'ApparentType'#4'Left'#2#8#6 +- +'Height'#2'9'#3'Top'#2'x'#5'Width'#3#161#1#8'AutoFill'#9#7'Caption'#6#22'Nut' +- +'ation , Aberration'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.To' +- +'pBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChi' +- +'ldResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 +- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' +- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' +- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'*'#11'Cl' +- +'ientWidth'#3#157#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#13 +- +'Mean position'#6#13'True position'#0#7'OnClick'#7#17'ApparentTypeClick'#8'T' +- +'abOrder'#2#0#0#0#10'TFloatEdit'#8'equinox2'#4'Left'#2'h'#6'Height'#2#21#4'H' +- +'int'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint'#8#8'S' +- +'howHint'#9#8'TabOrder'#2#1#8'OnChange'#7#14'equinox2Change'#5'Value'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0#0#0 +- +#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#9'TGroupBox' +- +#9'GroupBox3'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2'8'#5'Width'#3#161#1#7'Capt' +- +'ion'#6'9Stars proper motion options (if available in the catalog)'#12'Clien' +- +'tHeight'#2'*'#11'ClientWidth'#3#157#1#8'TabOrder'#2#2#0#9'TCheckBox'#5'PMBo' +- +'x'#4'Left'#2#6#6'Height'#2#21#3'Top'#2#7#5'Width'#3#140#1#7'Caption'#6'AUse' +- +' the proper motion to correct the position for the given epoch'#7'OnClick'#7 +- +#10'PMBoxClick'#8'TabOrder'#2#0#0#0#0#10'TFloatEdit'#6'epoch2'#4'Left'#3'P'#1 +- +#6'Height'#2#21#4'Hint'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'Par' +- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#12'epoch2Change' +- +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'Ma' +- +'xValue'#5#0#0#0#0#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixe' +- +'d'#0#0#0#11'TRadioGroup'#14'projectiontype'#4'Left'#2#13#6'Height'#2'`'#3'T' +- +'op'#2'%'#5'Width'#3#194#1#8'AutoFill'#9#7'Caption'#6#23'Chart Coordinate Sy' +- +'stem'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' +- +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' +- +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' +- +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' +- +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 +- +'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'Q'#11'ClientWidth'#3#190 +- +#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#22'Equatorial Coord' +- +'inates'#6#21'Azimuthal Coordinates'#6#20'Galactic Coordinates'#6#20'Eclipti' +- +'c Coordinates'#0#7'OnClick'#7#19'projectiontypeClick'#8'TabOrder'#2#2#0#0#9 +- +'TCheckBox'#10'ExpertMode'#4'Left'#2#21#6'Height'#2#21#3'Top'#3'e'#1#5'Width' +- +#2'_'#7'Caption'#6#11'Expert mode'#7'OnClick'#7#15'ExpertModeClick'#8'TabOrd' +- +'er'#2#3#0#0#6'TPanel'#10'PanelCoord'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3 +- +#149#0#5'Width'#3#197#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'T' +- +'abOrder'#2#0#0#11'TRadioGroup'#9'CoordType'#4'Left'#2#3#6'Height'#3#139#0#3 +- +'Top'#2#16#5'Width'#3#184#1#8'AutoFill'#9#7'Caption'#6#19'Type of coordinate' +- +'s'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6 +- +#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSi' +- +'zing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkH' +- ,'orizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScal' +- +'eChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'Chil' +- +'dSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'|'#11'ClientWidth'#3#180#1#9 +- +'ItemIndex'#2#0#13'Items.Strings'#1#6#8'Apparent'#6#16'Mean of the date'#6#10 +- +'Mean J2000'#6#17'Astrometric J2000'#0#7'OnClick'#7#14'CoordTypeClick'#8'Tab' +- +'Order'#2#0#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHei' +- +'ght'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#7'Label30'#4'Left'#2#0#6'H' +- +'eight'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#23'Field of Vision Settin' +- +'g'#11'ParentColor'#8#0#0#6'TLabel'#7'Label96'#4'Left'#2'W'#6'Height'#2#14#3 +- +'Top'#3#131#0#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel' +- +#7'Label97'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#159#0#5'Width'#2#7#7'Captio' +- +'n'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label98'#4'Left'#2'W'#6'Height' +- +#2#14#3'Top'#3#187#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6 +- +'TLabel'#7'Label99'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#215#0#5'Width'#2#7#7 +- +'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label101'#4'Left'#2'W'#6 +- +'Height'#2#14#3'Top'#3#15#1#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8 +- +#0#0#6'TLabel'#8'Label102'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'+'#1#5'Width' +- +#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label103'#4'Left'#2 +- +'W'#6'Height'#2#14#3'Top'#3'G'#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentCol' +- +'or'#8#0#0#6'TLabel'#8'Label104'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'c'#1#5 +- +'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label105'#4 +- +'Left'#2'P'#6'Height'#2#14#3'Top'#3#127#1#5'Width'#2#13#7'Caption'#6#2'10'#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label106'#4'Left'#2'/'#6'Height'#2#14#3'Top' +- +#2'@'#5'Width'#2'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field ' +- +'Number'#11'ParentColor'#8#0#0#6'TLabel'#8'Label107'#4'Left'#3#207#0#6'Heigh' +- +'t'#2#14#3'Top'#2''''#5'Width'#2'G'#7'Caption'#6#15'Field Of Vision'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#8'Label114'#4'Left'#2'W'#6'Height'#2#14#3'Top'#2'g' +- +#5'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Label57'#4 +- +'Left'#3#183#0#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#25#9'Alignment'#7#14'ta' +- +'RightJustify'#7'Caption'#6#4'From'#11'ParentColor'#8#0#0#6'TLabel'#7'Label7' +- +'4'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#243#0#5'Width'#2#7#7'Caption'#6#1'5' +- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#31#1#6'Height'#2#14#3'T' +- +'op'#2'@'#5'Width'#2#12#7'Caption'#6#2'To'#11'ParentColor'#8#0#0#10'TFloatEd' +- +'it'#3'fw1'#3'Tag'#2#1#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3 +- +'Top'#3#151#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 +- +#4#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVal' +- +'ue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit' +- +#3'fw2'#3'Tag'#2#2#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top' +- +#3#179#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#5 +- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 +- +#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw' +- +'3'#3'Tag'#2#3#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3 +- +#207#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#5'Va' +- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 +- +#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw4' +- +#3'Tag'#2#4#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#235#0 +- +#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#5'Value'#5 +- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 +- +#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw5'#3'Tag' +- +#2#5#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#7#1#5'Width' +- +#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#5'Value'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 +- +#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw6'#3'Tag'#2#6#4 +- +'Left'#3#174#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'#'#1#5'Width'#2'<' +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#5'Value'#5#0#0#0#0#0#0#0 +- +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@' +- +#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw7'#3'Tag'#2#7#4'Left'#3 +- +#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'?'#1#5'Width'#2'<'#14'Par' +- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#16#5'Value'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'N' +- +'umericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw8'#3'Tag'#2#8#4'Left'#3#172 +- +#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'['#1#5'Width'#2'<'#14'ParentS' +- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#18#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' ++ +#3#5#2#3'Top'#2#0#5'Width'#3#254#1#5'Align'#7#8'alClient'#12'ClientHeight'#3 ++ +#5#2#11'ClientWidth'#3#254#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageCon' ++ +'trol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#205#1#3'Top'#2#1#5'Width'#3 ++ +#252#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'Ta' ++ +'bOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTabSheet'#5 ++ +'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight'#3#170#1#11'ClientWidth'#3#246 ++ +#1#0#6'TLabel'#7'Label31'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'H' ++ +#7'Caption'#6#13'Chart Setting'#11'ParentColor'#8#0#0#6'TPanel'#11'PanelExpe' ++ +'rt'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width'#3#197#1#12'Clien' ++ +'tHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#7'Visible'#8#0#6'T' ++ +'Label'#12'EquinoxLabel'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#20#5'Width'#2 ++ +'1'#7'Caption'#6#8'Equinox:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Lef' ++ +'t'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2''''#7'Caption'#6#6'Epoch:' ++ +#11'ParentColor'#8#0#0#11'TRadioGroup'#12'ApparentType'#4'Left'#2#8#6'Height' ++ +#2'9'#3'Top'#2'x'#5'Width'#3#161#1#8'AutoFill'#9#7'Caption'#6#22'Nutation , ' ++ +' Aberration'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomS' ++ +'pacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' ++ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' ++ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 ++ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' ++ +'m'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'*'#11'ClientWidth' ++ +#3#157#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#13'Mean posit' ++ +'ion'#6#13'True position'#0#7'OnClick'#7#17'ApparentTypeClick'#8'TabOrder'#2 ++ +#0#0#0#10'TFloatEdit'#8'equinox2'#4'Left'#2'h'#6'Height'#2#23#4'Hint'#6#13'-' ++ +'20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint'#8#8'ShowHint'#9#8 ++ +'TabOrder'#2#1#8'OnChange'#7#14'equinox2Change'#5'Value'#5#0#0#0#0#0#0#0#0#0 ++ +#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0#0#0#0#0'@'#156 ++ +#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#9'TGroupBox'#9'GroupBo' ++ +'x3'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2'8'#5'Width'#3#161#1#7'Caption'#6'9S' ++ +'tars proper motion options (if available in the catalog)'#12'ClientHeight'#2 ++ +'*'#11'ClientWidth'#3#157#1#8'TabOrder'#2#2#0#9'TCheckBox'#5'PMBox'#4'Left'#2 ++ +#6#6'Height'#2#22#3'Top'#2#7#5'Width'#3'z'#1#7'Caption'#6'AUse the proper mo' ++ +'tion to correct the position for the given epoch'#7'OnClick'#7#10'PMBoxClic' ++ +'k'#8'TabOrder'#2#0#0#0#0#10'TFloatEdit'#6'epoch2'#4'Left'#3'P'#1#6'Height'#2 ++ +#23#4'Hint'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#12'epoch2Change'#5'Value'#5#0 ++ +#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0 ++ +#0#0#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#0#11'TR' ++ +'adioGroup'#14'projectiontype'#4'Left'#2#13#6'Height'#2'`'#3'Top'#2'%'#5'Wid' ++ +'th'#3#194#1#8'AutoFill'#9#7'Caption'#6#23'Chart Coordinate System'#28'Child' ++ +'Sizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildS' ++ +'izing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enla' ++ +'rgeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal' ++ +#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18 ++ +'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Cont' ++ +'rolsPerLine'#2#2#12'ClientHeight'#2'Q'#11'ClientWidth'#3#190#1#7'Columns'#2 ++ +#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#22'Equatorial Coordinates'#6#21'Az' ++ +'imuthal Coordinates'#6#20'Galactic Coordinates'#6#20'Ecliptic Coordinates'#0 ++ +#7'OnClick'#7#19'projectiontypeClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#10'Ex' ++ +'pertMode'#4'Left'#2#21#6'Height'#2#22#3'Top'#3'e'#1#5'Width'#2']'#7'Caption' ++ +#6#11'Expert mode'#7'OnClick'#7#15'ExpertModeClick'#8'TabOrder'#2#3#0#0#6'TP' ++ +'anel'#10'PanelCoord'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width' ++ +#3#197#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#0#0 ++ +#11'TRadioGroup'#9'CoordType'#4'Left'#2#3#6'Height'#3#139#0#3'Top'#2#16#5'Wi' ++ +'dth'#3#184#1#8'AutoFill'#9#7'Caption'#6#19'Type of coordinates'#28'ChildSiz' ++ +'ing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizi' ++ +'ng.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarge' ++ +'Vertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 ++ ,#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' ++ +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' ++ +'olsPerLine'#2#1#12'ClientHeight'#2'|'#11'ClientWidth'#3#180#1#9'ItemIndex'#2 ++ +#0#13'Items.Strings'#1#6#8'Apparent'#6#16'Mean of the date'#6#10'Mean J2000' ++ +#6#17'Astrometric J2000'#0#7'OnClick'#7#14'CoordTypeClick'#8'TabOrder'#2#0#0 ++ +#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight'#3#170#1 ++ +#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label30'#4'Left'#2#0#6'Height'#2#14#3 ++ +'Top'#2#0#5'Width'#2'i'#7'Caption'#6#23'Field of Vision Setting'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#7'Label96'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#131#0#5 ++ +'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label97'#4'L' ++ +'eft'#2'W'#6'Height'#2#14#3'Top'#3#159#0#5'Width'#2#7#7'Caption'#6#1'2'#11'P' ++ +'arentColor'#8#0#0#6'TLabel'#7'Label98'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3 ++ +#187#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' ++ +'l99'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#215#0#5'Width'#2#7#7'Caption'#6#1 ++ +'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label101'#4'Left'#2'W'#6'Height'#2#14#3 ++ +'Top'#3#15#1#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label102'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'+'#1#5'Width'#2#7#7'Caption' ++ +#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label103'#4'Left'#2'W'#6'Height'#2 ++ +#14#3'Top'#3'G'#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLa' ++ +'bel'#8'Label104'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'c'#1#5'Width'#2#7#7'C' ++ +'aption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label105'#4'Left'#2'P'#6'H' ++ +'eight'#2#14#3'Top'#3#127#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor' ++ +#8#0#0#6'TLabel'#8'Label106'#4'Left'#2'/'#6'Height'#2#14#3'Top'#2'@'#5'Width' ++ +#2'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'Par' ++ +'entColor'#8#0#0#6'TLabel'#8'Label107'#4'Left'#3#207#0#6'Height'#2#14#3'Top' ++ +#2''''#5'Width'#2'G'#7'Caption'#6#15'Field Of Vision'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#8'Label114'#4'Left'#2'W'#6'Height'#2#14#3'Top'#2'g'#5'Width'#2#7#7 ++ +'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Label57'#4'Left'#3#183#0#6 ++ +'Height'#2#14#3'Top'#2'@'#5'Width'#2#25#9'Alignment'#7#14'taRightJustify'#7 ++ +'Caption'#6#4'From'#11'ParentColor'#8#0#0#6'TLabel'#7'Label74'#4'Left'#2'W'#6 ++ +'Height'#2#14#3'Top'#3#243#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#6'Label5'#4'Left'#3#31#1#6'Height'#2#14#3'Top'#2'@'#5'Width'#2 ++ +#12#7'Caption'#6#2'To'#11'ParentColor'#8#0#0#10'TFloatEdit'#3'fw1'#3'Tag'#2#1 ++ +#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#151#0#5'Width'#2 ++ +'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#5'Value'#5#0#0#0#0#0#0 ++ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7 ++ +'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw2'#3'Tag'#2#2#4'Left' ++ +#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#179#0#5'Width'#2'<'#14 ++ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#5'Value'#5#0#0#0#0#0#0#0#0#0 ++ +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11 ++ +'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw3'#3'Tag'#2#3#4'Left'#3#172 ++ +#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#207#0#5'Width'#2'<'#14'Parent' ++ +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 + +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Num' +- ,'ericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw9'#3'Tag'#2#9#4'Left'#3#172#0 +- +#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'w'#1#5'Width'#2'<'#14'ParentSho' +- +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#20#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Mi' +- +'nValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Numer' +- +'icType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw0'#4'Left'#3#172#0#6'Height'#2 +- +#21#4'Hint'#6#6'0..360'#3'Top'#2'{'#5'Width'#2'<'#14'ParentShowHint'#8#8'Sho' +- +'wHint'#9#8'TabOrder'#2#2#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFi' +- +'xed'#0#0#10'TFloatEdit'#4'fw00'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6 +- +'0..360'#3'Top'#2'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#14'ParentShowHint' +- +#8#8'ReadOnly'#9#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'N' +- +'umericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft0'#4'Left'#3#15#1#6'Height' +- +#2#21#3'Top'#2'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabO' +- +'rder'#2#1#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 +- +'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatE' +- +'dit'#3'ft1'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#2'{'#5'Width'#2'<'#5'Color' +- +#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#3#5'Value'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'Nume' +- +'ricType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft2'#4'Left'#3#15#1#6'Height'#2 +- +#21#3'Top'#3#151#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'Tab' +- +'Order'#2#5#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloa' +- +'tEdit'#3'ft3'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#179#0#5'Width'#2'<'#5 +- +'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#7#5'Value'#5#0#0#0#0#0#0#0 +- +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11 +- +'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft4'#4'Left'#3#15#1#6'Height' +- +#2#21#3'Top'#3#207#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'T' +- +'abOrder'#2#9#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0 +- +#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFl' +- +'oatEdit'#3'ft5'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#235#0#5'Width'#2'<'#5 +- +'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#11#5'Value'#5#0#0#0#0#0#0 +- +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0 +- +#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft6'#4'Left'#3#15#1#6'Hei' +- +'ght'#2#21#3'Top'#3#7#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8 +- +'TabOrder'#2#13#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0 +- +#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'T' +- +'FloatEdit'#3'ft7'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'#'#1#5'Width'#2'<' +- +#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#15#5'Value'#5#0#0#0#0#0 +- +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0 +- +#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft8'#4'Left'#3#15#1#6'H' +- +'eight'#2#21#3'Top'#3'?'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly' +- +#9#8'TabOrder'#2#17#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0 +- +#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0 +- +#10'TFloatEdit'#3'ft9'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'['#1#5'Width'#2 +- +'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#19#5'Value'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0 +- +#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#4'ft10'#4'Left'#3#15#1#6 +- +'Height'#2#21#3'Top'#3'w'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly' +- +#9#8'TabOrder'#2#21#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0 +- +#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#7 +- +'TButton'#7'Button1'#4'Left'#3#207#0#6'Height'#2#25#3'Top'#3#159#1#5'Width'#2 +- +'S'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#12 +- +'Button1Click'#8'TabOrder'#2#22#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'P' +- +'age3'#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TBevel'#6'Bevel7' +- +#4'Left'#2#15#6'Height'#3'w'#1#3'Top'#2#23#5'Width'#3'd'#1#5'Shape'#7#7'bsFr' +- +'ame'#0#0#6'TLabel'#8'Label158'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Widt' +- +'h'#2'T'#7'Caption'#6#18'Projection Setting'#11'ParentColor'#8#0#0#6'TLabel' +- +#7'Labelp1'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'h'#5'Width'#2#10#7'Caption' +- +#6#2'1 '#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp2'#4'Left'#2'>'#6'Height'#2 +- +#14#3'Top'#3#132#0#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TL' +- +'abel'#7'Labelp3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#160#0#5'Width'#2#7#7 +- +'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp4'#4'Left'#2'>'#6'H' +- +'eight'#2#14#3'Top'#3#188#0#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8 +- ,#0#0#6'TLabel'#8'Label165'#4'Left'#2#27#6'Height'#2#14#3'Top'#2'+'#5'Width'#2 +- +'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'Paren' +- +'tColor'#8#0#0#6'TLabel'#7'Labelp0'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'L'#5 +- +'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp5'#4'L' +- +'eft'#2'>'#6'Height'#2#14#3'Top'#3#216#0#5'Width'#2#7#7'Caption'#6#1'5'#11'P' +- +'arentColor'#8#0#0#6'TLabel'#7'Labelp6'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 +- +#244#0#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' +- +'lp7'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2#7#7'Caption'#6#1 +- +'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp8'#4'Left'#2'>'#6'Height'#2#14#3 +- +'Top'#3','#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7 +- +'Labelp9'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2#7#7'Caption'#6 +- +#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelp10'#4'Left'#2'>'#6'Height'#2#14 +- +#3'Top'#3'd'#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLab' +- +'el'#8'Label172'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'0'#7 +- +'Caption'#6#10'Projection'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox2'#3 +- +'Tag'#2#1#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2'c'#5'Width'#2'I'#16'AutoCo' +- +'mpleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2 +- +#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'Project' +- +'ionChange'#8'TabOrder'#2#1#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox1'#4 +- +'Left'#3#195#0#6'Height'#2#23#3'Top'#2'G'#5'Width'#2'I'#16'AutoCompleteText' +- +#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.' +- +'Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8 +- +'TabOrder'#2#0#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox3'#3'Tag'#2#2#4'L' +- +'eft'#3#195#0#6'Height'#2#23#3'Top'#2#127#5'Width'#2'I'#16'AutoCompleteText' ++ +'ericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw4'#3'Tag'#2#4#4'Left'#3#172#0 ++ +#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#235#0#5'Width'#2'<'#14'ParentSh' ++ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' ++ +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Nume' ++ +'ricType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw5'#3'Tag'#2#5#4'Left'#3#172#0#6 ++ +'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#7#1#5'Width'#2'<'#14'ParentShowHi' ++ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#12#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' ++ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericT' ++ +'ype'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw6'#3'Tag'#2#6#4'Left'#3#174#0#6'He' ++ +'ight'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'#'#1#5'Width'#2'<'#14'ParentShowHin' ++ +'t'#8#8'ShowHint'#9#8'TabOrder'#2#14#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVal' ++ +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericTy' ++ +'pe'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw7'#3'Tag'#2#7#4'Left'#3#172#0#6'Hei' ++ +'ght'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'?'#1#5'Width'#2'<'#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#16#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' ++ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7 ++ +#7'ntFixed'#0#0#10'TFloatEdit'#3'fw8'#3'Tag'#2#8#4'Left'#3#172#0#6'Height'#2 ++ +#21#4'Hint'#6#6'0..360'#3'Top'#3'['#1#5'Width'#2'<'#14'ParentShowHint'#8#8'S' ++ +'howHint'#9#8'TabOrder'#2#18#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'nt' ++ ,'Fixed'#0#0#10'TFloatEdit'#3'fw9'#3'Tag'#2#9#4'Left'#3#172#0#6'Height'#2#21#4 ++ +'Hint'#6#6'0..360'#3'Top'#3'w'#1#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHi' ++ +'nt'#9#8'TabOrder'#2#20#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 ++ +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixe' ++ +'d'#0#0#10'TFloatEdit'#3'fw0'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..' ++ +'360'#3'Top'#2'{'#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#2#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'M' ++ +'axValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloa' ++ +'tEdit'#4'fw00'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#2 ++ +'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#14'ParentShowHint'#8#8'ReadOnly'#9 ++ +#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 ++ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7 ++ +'ntFixed'#0#0#10'TFloatEdit'#3'ft0'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#2'_' ++ +#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#1#5'Value' ++ +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0 ++ +#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft1'#4'Left' ++ +#3#15#1#6'Height'#2#21#3'Top'#2'{'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'R' ++ +'eadOnly'#9#8'TabOrder'#2#3#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFix' ++ +'ed'#0#0#10'TFloatEdit'#3'ft2'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#151#0#5 ++ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#5#5'Value'#5 ++ +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 ++ +#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft3'#4'Left'#3 ++ +#15#1#6'Height'#2#21#3'Top'#3#179#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 ++ +'ReadOnly'#9#8'TabOrder'#2#7#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFix' ++ +'ed'#0#0#10'TFloatEdit'#3'ft4'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#207#0#5 ++ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#9#5'Value'#5 ++ +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 ++ +#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft5'#4'Left'#3 ++ +#15#1#6'Height'#2#21#3'Top'#3#235#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 ++ +'ReadOnly'#9#8'TabOrder'#2#11#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 ++ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntF' ++ +'ixed'#0#0#10'TFloatEdit'#3'ft6'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#7#1#5 ++ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#13#5'Value' ++ +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0 ++ +#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft7'#4'Left' ++ +#3#15#1#6'Height'#2#21#3'Top'#3'#'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 ++ +'ReadOnly'#9#8'TabOrder'#2#15#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 ++ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntF' ++ +'ixed'#0#0#10'TFloatEdit'#3'ft8'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'?'#1 ++ +#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#17#5'Valu' ++ +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0 ++ +#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft9'#4'Le' ++ +'ft'#3#15#1#6'Height'#2#21#3'Top'#3'['#1#5'Width'#2'<'#5'Color'#7#9'clBtnFac' ++ +'e'#8'ReadOnly'#9#8'TabOrder'#2#19#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' ++ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7 ++ +'ntFixed'#0#0#10'TFloatEdit'#4'ft10'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3 ++ +'w'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#21#5 ++ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 ++ +#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#7'TButton'#7'Button1'#4 ++ +'Left'#3#207#0#6'Height'#2#25#3'Top'#3#159#1#5'Width'#2'S'#25'BorderSpacing.' ++ +'InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button1Click'#8'Ta' ++ +'bOrder'#2#22#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHei' ++ +'ght'#3#170#1#11'ClientWidth'#3#246#1#0#6'TBevel'#6'Bevel7'#4'Left'#2#15#6'H' ++ +'eight'#3'w'#1#3'Top'#2#23#5'Width'#3'd'#1#5'Shape'#7#7'bsFrame'#0#0#6'TLabe' ++ +'l'#8'Label158'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'T'#7'Captio' ++ +'n'#6#18'Projection Setting'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp1'#4'Le' ++ +'ft'#2'>'#6'Height'#2#14#3'Top'#2'h'#5'Width'#2#10#7'Caption'#6#2'1 '#11'Par' ++ +'entColor'#8#0#0#6'TLabel'#7'Labelp2'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 ++ +#132#0#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' ++ +'lp3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#160#0#5'Width'#2#7#7'Caption'#6#1 ++ +'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp4'#4'Left'#2'>'#6'Height'#2#14#3 ++ +'Top'#3#188#0#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel' ++ ,#8'Label165'#4'Left'#2#27#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'?'#9'Alignme' ++ +'nt'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'ParentColor'#8#0#0 ++ +#6'TLabel'#7'Labelp0'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'L'#5'Width'#2#7#7 ++ +'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp5'#4'Left'#2'>'#6'H' ++ +'eight'#2#14#3'Top'#3#216#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#7'Labelp6'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#244#0#5'Width' ++ +#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp7'#4'Left'#2 ++ +'>'#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentCol' ++ +'or'#8#0#0#6'TLabel'#7'Labelp8'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3','#1#5 ++ +'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp9'#4'L' ++ +'eft'#2'>'#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'Pa' ++ +'rentColor'#8#0#0#6'TLabel'#8'Labelp10'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 ++ +'d'#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Lab' ++ +'el172'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'0'#7'Caption'#6 ++ +#10'Projection'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox2'#3'Tag'#2#1#4 ++ +'Left'#3#195#0#6'Height'#2#23#3'Top'#2'c'#5'Width'#2'I'#16'AutoCompleteText' + +#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.' + +'Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8 +- +'TabOrder'#2#2#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox4'#3'Tag'#2#3#4'L' +- +'eft'#3#195#0#6'Height'#2#23#3'Top'#3#155#0#5'Width'#2'I'#16'AutoCompleteTex' +- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Ite' +- +'ms.Strings'#1#6#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabO' +- +'rder'#2#3#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox5'#3'Tag'#2#4#4'Left' +- +#3#195#0#6'Height'#2#23#3'Top'#3#183#0#5'Width'#2'I'#16'AutoCompleteText'#11 +- +#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Str' +- +'ings'#1#6#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2 +- +#4#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox6'#3'Tag'#2#5#4'Left'#3#195#0 +- +#6'Height'#2#23#3'Top'#3#211#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbac' +- +'tSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1 +- +#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder' +- +#2#5#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox7'#3'Tag'#2#6#4'Left'#3#195 +- +#0#6'Height'#2#23#3'Top'#3#239#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cb' +- +'actSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings' +- +#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrde' +- +'r'#2#6#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox8'#3'Tag'#2#7#4'Left'#3 +- +#195#0#6'Height'#2#23#3'Top'#3#11#1#5'Width'#2'I'#16'AutoCompleteText'#11#20 +- +'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.String' +- +'s'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabO' +- +'rder'#2#7#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox9'#3'Tag'#2#8#4'Left' +- +#3#195#0#6'Height'#2#23#3'Top'#3''''#1#5'Width'#2'I'#16'AutoCompleteText'#11 +- +#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Str' +- +'ings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'T' +- +'abOrder'#2#8#4'Text'#6#3'ARC'#0#0#9'TComboBox'#10'ComboBox10'#3'Tag'#2#9#4 +- +'Left'#3#195#0#6'Height'#2#23#3'Top'#3'C'#1#5'Width'#2'I'#16'AutoCompleteTex' +- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Ite' +- +'ms.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChang' +- +'e'#8'TabOrder'#2#9#4'Text'#6#3'ARC'#0#0#9'TComboBox'#10'ComboBox11'#3'Tag'#2 +- +#10#4'Left'#3#195#0#6'Height'#2#23#3'Top'#3'`'#1#5'Width'#2'I'#16'AutoComple' +- +'teText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13 +- +'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionCh' +- +'ange'#8'TabOrder'#2#10#4'Text'#6#3'ARC'#0#0#7'TButton'#7'Button7'#4'Left'#3 +- +#195#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'I'#7'Caption'#6#7'Default'#7 +- +'OnClick'#7#12'Button7Click'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7 +- +'Caption'#6#5'Page4'#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TL' +- +'abel'#7'Label29'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'^'#7'Capt' +- +'ion'#6#21'Object Filter Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'Group' +- ,'Box2'#4'Left'#2#9#6'Height'#3#184#0#3'Top'#2#16#5'Width'#3#193#1#7'Caption' +- +#6#12'Stars Filter'#12'ClientHeight'#3#169#0#11'ClientWidth'#3#189#1#8'TabOr' +- +'der'#2#0#0#9'TCheckBox'#7'StarBox'#4'Left'#2#8#6'Height'#2#21#4'Hint'#6'6Co' +- +'py|Copies the selection and puts it on the Clipboard'#3'Top'#2#8#5'Width'#2 +- +'M'#7'Caption'#6#13'Filter stars '#7'OnClick'#7#12'StarBoxClick'#8'TabOrder' +- +#2#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#4#6'Height'#3#137#0#3'Top'#2' '#5'Wid' +- +'th'#3#186#1#12'ClientHeight'#3#137#0#11'ClientWidth'#3#186#1#8'TabOrder'#2#1 +- +#0#6'TPanel'#6'Panel2'#4'Left'#2#4#6'Height'#2'i'#3'Top'#2#30#5'Width'#3#178 +- +#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWidth'#3#178#1#8 +- +'TabOrder'#2#2#0#6'TLabel'#7'Label32'#4'Left'#2#25#6'Height'#2#14#3'Top'#2' ' +- +#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label33'#4 ++ +'TabOrder'#2#1#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#195#0 ++ +#6'Height'#2#23#3'Top'#2'G'#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSe' ++ +'archAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3 ++ +'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#0 ++ +#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox3'#3'Tag'#2#2#4'Left'#3#195#0#6 ++ +'Height'#2#23#3'Top'#2#127#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSea' ++ +'rchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3 ++ +'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#2 ++ +#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox4'#3'Tag'#2#3#4'Left'#3#195#0#6 ++ +'Height'#2#23#3'Top'#3#155#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactS' ++ +'earchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 ++ +#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#3#4'Text' ++ +#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox5'#3'Tag'#2#4#4'Left'#3#195#0#6'Height' ++ +#2#23#3'Top'#3#183#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAsc' ++ +'ending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6 ++ +#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#4#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#9'ComboBox6'#3'Tag'#2#5#4'Left'#3#195#0#6'Height'#2#23#3'T' ++ +'op'#3#211#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#5#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#9'ComboBox7'#3'Tag'#2#6#4'Left'#3#195#0#6'Height'#2#23#3'T' ++ +'op'#3#239#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#6#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#9'ComboBox8'#3'Tag'#2#7#4'Left'#3#195#0#6'Height'#2#23#3'T' ++ +'op'#3#11#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#7#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#9'ComboBox9'#3'Tag'#2#8#4'Left'#3#195#0#6'Height'#2#23#3'T' ++ +'op'#3''''#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#8#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#10'ComboBox10'#3'Tag'#2#9#4'Left'#3#195#0#6'Height'#2#23#3 ++ +'Top'#3'C'#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#9#4'Text'#6#3'ARC' ++ +#0#0#9'TComboBox'#10'ComboBox11'#3'Tag'#2#10#4'Left'#3#195#0#6'Height'#2#23#3 ++ +'Top'#3'`'#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 ++ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#10#4'Text'#6#3'AR' ++ +'C'#0#0#7'TButton'#7'Button7'#4'Left'#3#195#0#6'Height'#2#25#3'Top'#3#149#1#5 ++ +'Width'#2'I'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button7Click'#8'TabOrde' ++ +'r'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3 ++ +#170#1#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label29'#4'Left'#2#0#6'Height'#2 ++ +#14#3'Top'#2#0#5'Width'#2'^'#7'Caption'#6#21'Object Filter Setting'#11'Paren' ++ +'tColor'#8#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#9#6'Height'#3#184#0#3'Top' ++ ,#2#16#5'Width'#3#193#1#7'Caption'#6#12'Stars Filter'#12'ClientHeight'#3#169#0 ++ +#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#9'TCheckBox'#7'StarBox'#4'Left'#2 ++ +#8#6'Height'#2#21#4'Hint'#6'6Copy|Copies the selection and puts it on the Cl' ++ +'ipboard'#3'Top'#2#8#5'Width'#2'M'#7'Caption'#6#13'Filter stars '#7'OnClick' ++ +#7#12'StarBoxClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#4#6'He' ++ +'ight'#3#137#0#3'Top'#2' '#5'Width'#3#186#1#12'ClientHeight'#3#137#0#11'Clie' ++ +'ntWidth'#3#186#1#8'TabOrder'#2#1#0#6'TPanel'#6'Panel2'#4'Left'#2#4#6'Height' ++ +#2'i'#3'Top'#2#30#5'Width'#3#178#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeigh' ++ +'t'#2'i'#11'ClientWidth'#3#178#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label32'#4'Le' ++ +'ft'#2#25#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'1'#11'Paren' ++ +'tColor'#8#0#0#6'TLabel'#7'Label33'#4'Left'#2'B'#6'Height'#2#14#3'Top'#2' '#5 ++ +'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label34'#4'L' ++ +'eft'#2'k'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'3'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#7'Label35'#4'Left'#3#148#0#6'Height'#2#14#3'Top'#2 ++ +' '#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#7'Label36' ++ +#4'Left'#3#189#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'5'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#7'Label38'#4'Left'#3#230#0#6'Height'#2#14#3'To' ++ +'p'#2' '#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'La' ++ +'bel39'#4'Left'#3#15#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1 ++ +'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Label40'#4'Left'#3'8'#1#6'Height'#2#14 ++ +#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7 ++ +'Label76'#4'Left'#3'a'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 ++ +#1'9'#11'ParentColor'#8#0#0#6'TLabel'#7'Label78'#4'Left'#3#138#1#6'Height'#2 ++ +#14#3'Top'#2' '#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLa' ++ +'bel'#8'Label108'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#2'p'#7'Capt' ++ +'ion'#6#24'Field of vision number :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label' ++ +'109'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'L' ++ +'imiting magnitude :'#11'ParentColor'#8#0#0#10'TFloatEdit'#6'fsmag0'#3'Tag'#2 ++ +#1#4'Left'#2#10#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'(' ++ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#11'fsmagCh' ++ +'ange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'Ma' ++ +'xValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag1'#3'Tag'#2#2#4 ++ +'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'P' ++ +'arentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'fsmagChange' ++ +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' ++ +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag2'#3'Tag'#2#3#4'Left'#2 ++ +'['#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentSho' ++ +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#11'fsmagChange'#5'Valu' ++ +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0 ++ +#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag3'#3'Tag'#2#4#4'Left'#3#133#0#6 ++ +'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 ++ +#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height' ++ +#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Sh' ++ +'owHint'#9#8'TabOrder'#2#4#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0 ++ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198 ++ +#5'@'#0#0#10'TFloatEdit'#6'fsmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21 ++ +#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHin' ++ +'t'#9#8'TabOrder'#2#5#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0 ++ +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@' ++ +#0#0#10'TFloatEdit'#6'fsmag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint' ++ +#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'T' ++ +'abOrder'#2#6#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10 ++ +'TFloatEdit'#6'fsmag7'#3'Tag'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5 ++ +'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' ++ +'der'#2#7#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Min' ++ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TF' ++ +'loatEdit'#6'fsmag8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0.' ++ +'.99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#8#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' ++ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFlo' ++ +'atEdit'#6'fsmag9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4'Hint'#6#5'0.' ++ ,'.99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#9#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' ++ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#6'TPa' ++ +'nel'#6'Panel3'#4'Left'#2#4#6'Height'#2'-'#3'Top'#2#30#5'Width'#3#178#1#10'B' ++ +'evelOuter'#7#6'bvNone'#12'ClientHeight'#2'-'#11'ClientWidth'#3#178#1#8'TabO' ++ +'rder'#2#1#0#6'TLabel'#8'Label110'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#12#5 ++ +'Width'#2'g'#7'Caption'#6#19'Naked eye reference'#11'ParentColor'#8#0#0#10'T' ++ +'FloatEdit'#8'fsmagvis'#4'Left'#3#188#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 ++ +'Top'#2#7#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8 ++ +'OnChange'#7#14'fsmagvisChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5 ++ +#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#9'TCheckBox' ++ +#11'StarAutoBox'#4'Left'#2#4#6'Height'#2#21#3'Top'#2#6#5'Width'#2'G'#7'Capti' ++ +'on'#6#9'Automatic'#7'OnClick'#7#16'StarAutoBoxClick'#8'TabOrder'#2#0#0#0#0#7 ++ +'TButton'#7'Button8'#4'Left'#3'j'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#7 ++ +'Caption'#6#7'Default'#7'OnClick'#7#12'Button8Click'#8'TabOrder'#2#2#0#0#0#9 ++ +'TGroupBox'#9'GroupBox1'#4'Left'#2#9#6'Height'#3#200#0#3'Top'#3#213#0#5'Widt' ++ +'h'#3#193#1#7'Caption'#6#14'Nebulae Filter'#12'ClientHeight'#3#185#0#11'Clie' ++ +'ntWidth'#3#189#1#8'TabOrder'#2#1#0#6'TLabel'#10'BigNebUnit'#4'Left'#3#133#1 ++ +#6'Height'#2#14#3'Top'#2#15#5'Width'#2'&'#7'Caption'#6#7'minutes'#11'ParentC' ++ +'olor'#8#0#0#9'TCheckBox'#6'NebBox'#4'Left'#2#9#6'Height'#2#21#3'Top'#2#11#5 ++ +'Width'#2'W'#7'Caption'#6#14'Filter nebulae'#7'OnClick'#7#11'NebBoxClick'#8 ++ +'TabOrder'#2#0#0#0#9'TCheckBox'#9'BigNebBox'#4'Left'#3#157#0#6'Height'#2#21#3 ++ +'Top'#2#11#5'Width'#3#131#0#7'Caption'#6#22'Hide object wider than'#7'OnClic' ++ +'k'#7#14'BigNebBoxClick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel5'#4'Left'#2#5 ++ +#6'Height'#3#153#0#3'Top'#2','#5'Width'#3#186#1#12'ClientHeight'#3#153#0#11 ++ +'ClientWidth'#3#186#1#8'TabOrder'#2#3#0#6'TLabel'#7'Label48'#4'Left'#2#8#6'H' ++ +'eight'#2#14#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'Limiting Magnitude :' ++ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label49'#4'Left'#2#8#6'Height'#2#14#3'Top' ++ +#2'e'#5'Width'#3#130#0#7'Caption'#6#28'Limiting Size (arcminutes) :'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#7'Label41'#4'Left'#2#25#6'Height'#2#14#3'Top'#2' ' ++ +#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label42'#4 + +'Left'#2'B'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'2'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#7'Label34'#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' ' +- +#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Label35'#4 ++ +'entColor'#8#0#0#6'TLabel'#7'Label43'#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' ' ++ +#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Label44'#4 + +'Left'#3#148#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'4'#11 +- +'ParentColor'#8#0#0#6'TLabel'#7'Label36'#4'Left'#3#189#0#6'Height'#2#14#3'To' ++ +'ParentColor'#8#0#0#6'TLabel'#7'Label45'#4'Left'#3#189#0#6'Height'#2#14#3'To' + +'p'#2' '#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#7'La' +- +'bel38'#4'Left'#3#230#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 +- +#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Label39'#4'Left'#3#15#1#6'Height'#2 ++ +'bel46'#4'Left'#3#230#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 ++ +#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Label47'#4'Left'#3#15#1#6'Height'#2 + +#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#7'Label40'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' +- +'ion'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Label76'#4'Left'#3'a'#1#6'Hei' ++ +'l'#7'Label79'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' ++ +'ion'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Label80'#4'Left'#3'a'#1#6'Hei' + +'ght'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6 +- +'TLabel'#7'Label78'#4'Left'#3#138#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#13 +- +#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Label108'#4'Left'#2#8#6 ++ +'TLabel'#8'Label111'#4'Left'#3#138#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#13 ++ +#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Label112'#4'Left'#2#8#6 + +'Height'#2#14#3'Top'#2#8#5'Width'#2'p'#7'Caption'#6#24'Field of vision numbe' +- +'r :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label109'#4'Left'#2#8#6'Height'#2#14 +- +#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'Limiting magnitude :'#11'ParentCo' +- +'lor'#8#0#0#10'TFloatEdit'#6'fsmag0'#3'Tag'#2#1#4'Left'#2#10#6'Height'#2#21#4 +- +'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' +- +#9#8'TabOrder'#2#0#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 +- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 +- +#10'TFloatEdit'#6'fsmag1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5 ++ +'r :'#11'ParentColor'#8#0#0#10'TFloatEdit'#5'fmag0'#3'Tag'#2#1#4'Left'#2#8#6 ++ +'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 ++ +#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2 ++ +#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#1#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0 ++ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5 ++ +'@'#0#0#10'TFloatEdit'#5'fmag2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hin' ++ +'t'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8 ++ +'TabOrder'#2#2#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10 ++ +'TFloatEdit'#5'fmag3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#5 + +'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' +- +'der'#2#1#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Min' +- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TF' +- +'loatEdit'#6'fsmag2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#5'0..9' +- +'9'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' +- +#2#2#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' ++ +'der'#2#3#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinV' ++ +'alue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFl' ++ +'oatEdit'#5'fmag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#5'0..' ++ +'99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' ++ ,#2#4#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' + +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdi' +- +'t'#6'fsmag3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 +- +'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8 +- +'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 +- +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'f' +- +'smag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2 +- +'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnCha' +- +'nge'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag' +- +'5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B' +- +#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange' +- +#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 +- +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag6'#3'T' +- +'ag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width' +- +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#11'fs' +- +'magChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag7'#3'Tag'#2#8 +- +#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'(' +- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#11'fsmagCh' ++ +'t'#5'fmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 ++ +'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8 ++ +'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 ++ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'f' ++ +'mag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B' ++ +#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange' ++ +#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 ++ +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fdim0'#3'Ta' ++ +'g'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width' ++ +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange'#7#10'f' ++ +'dimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 ++ +#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim1'#3'Tag'#2#2 ++ +#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'(' ++ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#8'OnChange'#7#10'fdimCh' + +'ange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'Ma' +- +'xValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag8'#3'Tag'#2#9#4 +- +'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#11'fsmagChang' ++ +'xValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim2'#3'Tag'#2#3#4'L' ++ +'eft'#2'['#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14 ++ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#8'OnChange'#7#10'fdimChang' + +'e'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' +- +'lue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag9'#3'Tag'#2#10#4'Le' +- ,'ft'#3#128#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#11'fsmagChang' +- +'e'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' +- +'lue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#4#6'Heigh' +- +'t'#2'-'#3'Top'#2#30#5'Width'#3#178#1#10'BevelOuter'#7#6'bvNone'#12'ClientHe' +- +'ight'#2'-'#11'ClientWidth'#3#178#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label110'#4 +- +'Left'#2#8#6'Height'#2#14#3'Top'#2#12#5'Width'#2'g'#7'Caption'#6#19'Naked ey' +- +'e reference'#11'ParentColor'#8#0#0#10'TFloatEdit'#8'fsmagvis'#4'Left'#3#188 +- +#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2#7#5'Width'#2'('#14'ParentShowH' +- +'int'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#14'fsmagvisChange'#5'Val' +- +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 +- +#0#0#0#0#0#0#198#5'@'#0#0#0#9'TCheckBox'#11'StarAutoBox'#4'Left'#2#4#6'Heigh' +- +'t'#2#21#3'Top'#2#6#5'Width'#2'G'#7'Caption'#6#9'Automatic'#7'OnClick'#7#16 +- +'StarAutoBoxClick'#8'TabOrder'#2#0#0#0#0#7'TButton'#7'Button8'#4'Left'#3'j'#1 +- +#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#7'Caption'#6#7'Default'#7'OnClick'#7 +- +#12'Button8Click'#8'TabOrder'#2#2#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#9 +- +#6'Height'#3#200#0#3'Top'#3#213#0#5'Width'#3#193#1#7'Caption'#6#14'Nebulae F' +- +'ilter'#12'ClientHeight'#3#185#0#11'ClientWidth'#3#189#1#8'TabOrder'#2#1#0#6 +- +'TLabel'#10'BigNebUnit'#4'Left'#3#133#1#6'Height'#2#14#3'Top'#2#15#5'Width'#2 +- +'&'#7'Caption'#6#7'minutes'#11'ParentColor'#8#0#0#9'TCheckBox'#6'NebBox'#4'L' +- +'eft'#2#9#6'Height'#2#21#3'Top'#2#11#5'Width'#2'W'#7'Caption'#6#14'Filter ne' +- +'bulae'#7'OnClick'#7#11'NebBoxClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'BigN' +- +'ebBox'#4'Left'#3#157#0#6'Height'#2#21#3'Top'#2#11#5'Width'#3#131#0#7'Captio' +- +'n'#6#22'Hide object wider than'#7'OnClick'#7#14'BigNebBoxClick'#8'TabOrder' +- +#2#1#0#0#6'TPanel'#6'Panel5'#4'Left'#2#5#6'Height'#3#153#0#3'Top'#2','#5'Wid' +- +'th'#3#186#1#12'ClientHeight'#3#153#0#11'ClientWidth'#3#186#1#8'TabOrder'#2#3 +- +#0#6'TLabel'#7'Label48'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'^' +- +#7'Caption'#6#20'Limiting Magnitude :'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' +- +'el49'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'e'#5'Width'#3#130#0#7'Caption'#6 +- +#28'Limiting Size (arcminutes) :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label41' +- +#4'Left'#2#25#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'1'#11'P' +- +'arentColor'#8#0#0#6'TLabel'#7'Label42'#4'Left'#2'B'#6'Height'#2#14#3'Top'#2 +- +' '#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label43' +- +#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'3'#11'P' +- +'arentColor'#8#0#0#6'TLabel'#7'Label44'#4'Left'#3#148#0#6'Height'#2#14#3'Top' +- +#2' '#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' +- +'45'#4'Left'#3#189#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1 +- +'5'#11'ParentColor'#8#0#0#6'TLabel'#7'Label46'#4'Left'#3#230#0#6'Height'#2#14 +- +#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7 +- +'Label47'#4'Left'#3#15#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 +- +#1'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Label79'#4'Left'#3'8'#1#6'Height'#2 +- +#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#7'Label80'#4'Left'#3'a'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' +- +'ion'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label111'#4'Left'#3#138#1#6'H' +- +'eight'#2#14#3'Top'#2' '#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0 +- +#0#6'TLabel'#8'Label112'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#2'p' +- +#7'Caption'#6#24'Field of vision number :'#11'ParentColor'#8#0#0#10'TFloatEd' +- +'it'#5'fmag0'#3'Tag'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top' +- +#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnC' +- +'hange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag1' +- +#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Wid' +- +'th'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#10 +- +'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 +- +#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag2'#3'Tag'#2#3 +- +#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#10'fmagChange' ++ +'lue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim3'#3'Tag'#2#4#4'Left' ++ +#3#133#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'Pa' ++ +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#10'fdimChange' + +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' +- +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag3'#3'Tag'#2#4#4'Left'#3 +- +#133#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'Parent' +- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#10'fmagChange'#5'Va' +- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 +- +#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag4'#3'Tag'#2#5#4'Left'#3#175#0 +- +#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHi' +- ,'nt'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnChange'#7#10'fmagChange'#5'Value'#5 ++ +#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim4'#3'Tag'#2#5#4'Left'#3 ++ +#175#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'Pare' ++ +'ntShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#10'fdimChange'#5 ++ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 ++ +#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim5'#3'Tag'#2#6#4'Left'#3#216 ++ +#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentSh' ++ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#15#8'OnChange'#7#10'fdimChange'#5'Val' ++ +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 ++ +#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim6'#3'Tag'#2#7#4'Left'#3#2#1#6 ++ +'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHi' ++ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#16#8'OnChange'#7#10'fdimChange'#5'Value'#5 + +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 +- +#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Hei' +- +'ght'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 +- +#198#5'@'#0#0#10'TFloatEdit'#5'fmag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21 +- +#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHin' +- +'t'#9#8'TabOrder'#2#6#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0 +- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0 +- +#0#10'TFloatEdit'#5'fdim0'#3'Tag'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#7 ++ +#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fmag7'#3'Tag'#2#8#4'Left'#3','#1#6'Heig' ++ +'ht'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8 ++ +'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0 ++ +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 ++ +#198#5'@'#0#0#10'TFloatEdit'#5'fmag8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2 ++ +#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#8#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0 ++ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5 ++ +'@'#0#0#10'TFloatEdit'#5'fmag9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4 ++ +'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#9#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 ++ +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 ++ +#10'TFloatEdit'#5'fdim7'#3'Tag'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#7 + +'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' +- +'Order'#2#10#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' ++ +'Order'#2#17#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' + +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10 +- +'TFloatEdit'#5'fdim1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#7'0..' +- +'1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' +- +'er'#2#11#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinV' +- +'alue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFl' +- +'oatEdit'#5'fdim2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#7'0..100' +- +'0'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' +- +#2#12#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' +- +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdi' +- +'t'#5'fdim3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3 +- +'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13 +- +#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 +- +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5 +- +'fdim4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top' +- +#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'On' +- +'Change'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdi' +- +'m5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2 +- +'t'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#15#8'OnCh' +- +'ange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 +- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim6' +- +#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5 +- +'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#16#8'OnChange' +- +#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 +- +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fmag7'#3'Ta' +- +'g'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width' +- +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#10'fm' +- +'agChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 +- +'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag8'#3'Tag'#2#9#4 +- +'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#10'fmagChange' +- +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' +- +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag9'#3'Tag'#2#10#4'Left'#3 +- +#128#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'Parent' +- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#10'fmagChange'#5'Va' +- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 +- +#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fdim7'#3'Tag'#2#8#4'Left'#3','#1#6 +- +'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHi' +- +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#17#8'OnChange'#7#10'fdimChange'#5'Value'#5 +- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 +- +#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Heig' +- +'ht'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2#18#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0 +- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 +- +#250#8'@'#0#0#10'TFloatEdit'#5'fdim9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2 +- +#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'Sh' +- +'owHint'#9#8'TabOrder'#2#19#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0 +- +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250 +- +#8'@'#0#0#0#9'TLongEdit'#12'fBigNebLimit'#4'Left'#3']'#1#6'Height'#2#21#4'Hi' +- +'nt'#6#8'0..20000'#3'Top'#2#11#5'Width'#2'!'#14'ParentShowHint'#8#8'ShowHint' +- +#9#8'TabOrder'#2#2#8'OnChange'#7#18'fBigNebLimitChange'#5'Value'#2#0#8'MaxVa' +- ,'lue'#3' N'#0#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Page5'#12'ClientHei' +- +'ght'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#8'Label159'#4'Left'#2#0#6 +- +'Height'#2#14#3'Top'#2#0#5'Width'#2'9'#7'Caption'#6#12'Grid Setting'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#8'Label160'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#21 +- +#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#12'Field Number'#11'ParentColor'#8 +- +#8'WordWrap'#9#0#0#6'TLabel'#8'Label176'#4'Left'#2'U'#6'Height'#2'"'#3'Top'#2 +- +#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#19'Degree Grid Spacing'#11'Pare' +- +'ntColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label175'#4'Left'#3#5#1#6'Height'#2 +- +'"'#3'Top'#2#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#17'Hour Grid Spacin' +- +'g'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label161'#4'Left'#2#29#6 +- +'Height'#2#14#3'Top'#2'k'#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0 +- +#0#6'TLabel'#8'Label162'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#132#0#5'Width' +- +#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#8'Label163'#4'Left'#2 +- +#29#6'Height'#2#14#3'Top'#3#157#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentCo' +- +'lor'#8#0#0#6'TLabel'#8'Label164'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#182#0 +- +#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label166'#4 +- +'Left'#2#29#6'Height'#2#14#3'Top'#2'R'#5'Width'#2#7#7'Caption'#6#1'0'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#8'Label167'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 +- +#207#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' +- +'l168'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2#7#7'Caption'#6#1 +- +'6'#11'ParentColor'#8#0#0#6'TLabel'#8'Label169'#4'Left'#2#29#6'Height'#2#14#3 +- +'Top'#3#1#1#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8 +- +'Label170'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2#7#7'Caption' +- +#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#8'Label174'#4'Left'#2#29#6'Height'#2 +- +#14#3'Top'#3'3'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLa' +- +'bel'#8'Label177'#4'Left'#2#29#6'Height'#2#14#3'Top'#3'L'#1#5'Width'#2#13#7 +- +'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#133#1#6 +- +'Height'#2' '#3'Top'#2#23#5'Width'#2'C'#8'AutoSize'#8#7'Caption'#6#9'Show Gr' +- +'id'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label4'#4'Left'#2'C'#6 +- +'Height'#2#14#3'Top'#3'm'#1#5'Width'#2'^'#7'Caption'#6#17'Compass rose size' +- +#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3#197#1#6'Height'#2 +- +#21#3'Top'#2'L'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2 +- +#25#0#0#9'TCheckBox'#9'CheckBox2'#3'Tag'#2#1#4'Left'#3#197#1#6'Height'#2#21#3 +- +'Top'#2'e'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#26#0 +- +#0#9'TCheckBox'#9'CheckBox4'#3'Tag'#2#3#4'Left'#3#197#1#6'Height'#2#21#3'Top' +- +#3#151#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#27#0#0 +- +#9'TCheckBox'#9'CheckBox5'#3'Tag'#2#4#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +#176#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#28#0#0#9 +- +'TCheckBox'#9'CheckBox6'#3'Tag'#2#5#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +#201#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#29#0#0#9 +- +'TCheckBox'#9'CheckBox7'#3'Tag'#2#6#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +#226#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#30#0#0#9 +- +'TCheckBox'#9'CheckBox8'#3'Tag'#2#7#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +#251#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#31#0#0#9 +- +'TCheckBox'#9'CheckBox9'#3'Tag'#2#8#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +#20#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2' '#0#0#9 +- +'TCheckBox'#10'CheckBox10'#3'Tag'#2#9#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 +- +'-'#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2'!'#0#0#9 +- +'TCheckBox'#10'CheckBox13'#4'Left'#3#5#1#6'Height'#2#21#3'Top'#3#131#1#5'Wid' +- +'th'#3#164#0#7'Caption'#6#24'Always show compass rose'#7'OnClick'#7#15'Check' +- +'Box13Click'#8'TabOrder'#2#23#0#0#9'TCheckBox'#9'CheckBox3'#3'Tag'#2#2#4'Lef' +- +'t'#3#197#1#6'Height'#2#21#3'Top'#2'~'#5'Width'#2#23#7'OnClick'#7#16'ShowGri' +- +'dBoxClick'#8'TabOrder'#2'"'#0#0#9'TCheckBox'#10'CheckBox11'#3'Tag'#2#10#4'L' +- +'eft'#3#197#1#6'Height'#2#21#3'Top'#3'F'#1#5'Width'#2#23#7'OnClick'#7#16'Sho' +- +'wGridBoxClick'#8'TabOrder'#2'#'#0#0#7'TButton'#7'Button2'#4'Left'#3#5#1#6'H' +- +'eight'#2#25#3'Top'#3#157#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#7'Default'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#24#0#0#9 +- +'TTrackBar'#9'TrackBar1'#4'Left'#2#21#6'Height'#2#23#3'Top'#3#131#1#5'Width' +- +#3#220#0#9'Frequency'#2#5#8'LineSize'#2#5#3'Max'#3#130#0#3'Min'#2#30#8'OnCha' +- +'nge'#7#15'TrackBar1Change'#8'PageSize'#2#10#8'Position'#2'P'#9'TickStyle'#7 +- +#6'tsNone'#8'TabOrder'#2#22#0#0#6'TRaDec'#6'RaDec1'#4'Left'#2'A'#6'Height'#2 +- +#23#3'Top'#2'L'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0 +- +#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#0#0#0#6'TRa' +- +'Dec'#6'RaDec2'#3'Tag'#2#1#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'e'#5'Width'#3 +- ,#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' +- +'e'#7#16'DegSpacingChange'#8'TabOrder'#2#2#0#0#6'TRaDec'#6'RaDec3'#3'Tag'#2#2 +- +#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'DE'#5 ++ +'TFloatEdit'#5'fdim8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#7'0' ++ +'..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' ++ +'rder'#2#18#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Mi' ++ +'nValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'T' ++ +'FloatEdit'#5'fdim9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4'Hint'#6#7 ++ +'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' ++ +'Order'#2#19#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' ++ +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#0#9 ++ +'TLongEdit'#12'fBigNebLimit'#4'Left'#3']'#1#6'Height'#2#21#4'Hint'#6#8'0..20' ++ +'000'#3'Top'#2#11#5'Width'#2'!'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#2#8'OnChange'#7#18'fBigNebLimitChange'#5'Value'#2#0#8'MaxValue'#3' N'#0 ++ ,#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Page5'#12'ClientHeight'#3#170#1 ++ +#11'ClientWidth'#3#246#1#0#6'TLabel'#8'Label159'#4'Left'#2#0#6'Height'#2#14#3 ++ +'Top'#2#0#5'Width'#2'9'#7'Caption'#6#12'Grid Setting'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#8'Label160'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#21#5'Width'#2'P'#8 ++ +'AutoSize'#8#7'Caption'#6#12'Field Number'#11'ParentColor'#8#8'WordWrap'#9#0 ++ +#0#6'TLabel'#8'Label176'#4'Left'#2'U'#6'Height'#2'"'#3'Top'#2#21#5'Width'#2 ++ +'p'#8'AutoSize'#8#7'Caption'#6#19'Degree Grid Spacing'#11'ParentColor'#8#8'W' ++ +'ordWrap'#9#0#0#6'TLabel'#8'Label175'#4'Left'#3#5#1#6'Height'#2'"'#3'Top'#2 ++ +#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#17'Hour Grid Spacing'#11'Parent' ++ +'Color'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label161'#4'Left'#2#29#6'Height'#2#14 ++ +#3'Top'#2'k'#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label162'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#132#0#5'Width'#2#7#7'Caption' ++ +#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#8'Label163'#4'Left'#2#29#6'Height'#2 ++ +#14#3'Top'#3#157#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TL' ++ +'abel'#8'Label164'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#182#0#5'Width'#2#7#7 ++ +'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label166'#4'Left'#2#29#6 ++ +'Height'#2#14#3'Top'#2'R'#5'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#8'Label167'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#207#0#5'Width' ++ +#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label168'#4'Left'#2 ++ +#29#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#8'Label169'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#1#1#5 ++ +'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label170'#4 ++ +'Left'#2#29#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2#7#7'Caption'#6#1'8'#11'P' ++ +'arentColor'#8#0#0#6'TLabel'#8'Label174'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 ++ +'3'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label' ++ +'177'#4'Left'#2#29#6'Height'#2#14#3'Top'#3'L'#1#5'Width'#2#13#7'Caption'#6#2 ++ +'10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#133#1#6'Height'#2' ' ++ +#3'Top'#2#23#5'Width'#2'C'#8'AutoSize'#8#7'Caption'#6#9'Show Grid'#11'Parent' ++ +'Color'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label4'#4'Left'#2'C'#6'Height'#2#14#3 ++ +'Top'#3'm'#1#5'Width'#2'^'#7'Caption'#6#17'Compass rose size'#11'ParentColor' ++ +#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3#197#1#6'Height'#2#21#3'Top'#2'L'#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#25#0#0#9'TCheck' ++ +'Box'#9'CheckBox2'#3'Tag'#2#1#4'Left'#3#197#1#6'Height'#2#21#3'Top'#2'e'#5'W' ++ +'idth'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#26#0#0#9'TCheckB' ++ +'ox'#9'CheckBox4'#3'Tag'#2#3#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#151#0#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#27#0#0#9'TCheck' ++ +'Box'#9'CheckBox5'#3'Tag'#2#4#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#176#0#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#28#0#0#9'TCheck' ++ +'Box'#9'CheckBox6'#3'Tag'#2#5#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#201#0#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#29#0#0#9'TCheck' ++ +'Box'#9'CheckBox7'#3'Tag'#2#6#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#226#0#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#30#0#0#9'TCheck' ++ +'Box'#9'CheckBox8'#3'Tag'#2#7#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#251#0#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#31#0#0#9'TCheck' ++ +'Box'#9'CheckBox9'#3'Tag'#2#8#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#20#1#5 ++ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2' '#0#0#9'TCheck' ++ +'Box'#10'CheckBox10'#3'Tag'#2#9#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3'-'#1 ++ +#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2'!'#0#0#9'TChe' ++ +'ckBox'#10'CheckBox13'#4'Left'#3#5#1#6'Height'#2#21#3'Top'#3#131#1#5'Width'#3 ++ +#164#0#7'Caption'#6#24'Always show compass rose'#7'OnClick'#7#15'CheckBox13C' ++ +'lick'#8'TabOrder'#2#23#0#0#9'TCheckBox'#9'CheckBox3'#3'Tag'#2#2#4'Left'#3 ++ +#197#1#6'Height'#2#21#3'Top'#2'~'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxC' ++ +'lick'#8'TabOrder'#2'"'#0#0#9'TCheckBox'#10'CheckBox11'#3'Tag'#2#10#4'Left'#3 ++ +#197#1#6'Height'#2#21#3'Top'#3'F'#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBo' ++ +'xClick'#8'TabOrder'#2'#'#0#0#7'TButton'#7'Button2'#4'Left'#3#5#1#6'Height'#2 ++ +#25#3'Top'#3#157#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' ++ +#6#7'Default'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#24#0#0#9'TTrackBar' ++ +#9'TrackBar1'#4'Left'#2#21#6'Height'#2#23#3'Top'#3#131#1#5'Width'#3#220#0#9 ++ +'Frequency'#2#5#8'LineSize'#2#5#3'Max'#3#130#0#3'Min'#2#30#8'OnChange'#7#15 ++ +'TrackBar1Change'#8'PageSize'#2#10#8'Position'#2'P'#9'TickStyle'#7#6'tsNone' ++ +#8'TabOrder'#2#22#0#0#6'TRaDec'#6'RaDec1'#4'Left'#2'A'#6'Height'#2#23#3'Top' ++ +#2'L'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enab' ++ +'led'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#0#0#0#6'TRaDec'#6'R' ++ +'aDec2'#3'Tag'#2#1#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4 ++ ,'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16 ++ +'DegSpacingChange'#8'TabOrder'#2#2#0#0#6'TRaDec'#6'RaDec3'#3'Tag'#2#2#4'Left' ++ +#2'A'#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5 ++ +#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOr' ++ +'der'#2#4#0#0#6'TRaDec'#6'RaDec4'#3'Tag'#2#3#4'Left'#2'A'#6'Height'#2#23#3'T' ++ +'op'#3#151#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0 ++ +#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#6#0#0#6'TRaDe' ++ +'c'#6'RaDec5'#3'Tag'#2#4#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#176#0#5'Width' ++ +#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' ++ +'nge'#7#16'DegSpacingChange'#8'TabOrder'#2#8#0#0#6'TRaDec'#6'RaDec6'#3'Tag'#2 ++ +#5#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7#2'D' ++ +'E'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingC' ++ +'hange'#8'TabOrder'#2#10#0#0#6'TRaDec'#6'RaDec7'#3'Tag'#2#6#4'Left'#2'A'#6'H' ++ +'eight'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0 ++ +#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2 ++ +#12#0#0#6'TRaDec'#6'RaDec8'#3'Tag'#2#7#4'Left'#2'A'#6'Height'#2#23#3'Top'#3 ++ +#251#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Ena' ++ +'bled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#14#0#0#6'TRaDec'#6 ++ +'RaDec9'#3'Tag'#2#8#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#20#1#5'Width'#3#176 ++ +#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7 ++ +#16'DegSpacingChange'#8'TabOrder'#2#16#0#0#6'TRaDec'#7'RaDec10'#3'Tag'#2#9#4 ++ +'Left'#2'A'#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5 + +'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange' +- +#8'TabOrder'#2#4#0#0#6'TRaDec'#6'RaDec4'#3'Tag'#2#3#4'Left'#2'A'#6'Height'#2 +- +#23#3'Top'#3#151#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0 +- +#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#6#0#0#6 +- +'TRaDec'#6'RaDec5'#3'Tag'#2#4#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#176#0#5'W' +- +'idth'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8 +- +'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#8#0#0#6'TRaDec'#6'RaDec6'#3 +- +'Tag'#2#5#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind' +- +#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpa' +- +'cingChange'#8'TabOrder'#2#10#0#0#6'TRaDec'#6'RaDec7'#3'Tag'#2#6#4'Left'#2'A' +- +#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0 +- +#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrde' +- +'r'#2#12#0#0#6'TRaDec'#6'RaDec8'#3'Tag'#2#7#4'Left'#2'A'#6'Height'#2#23#3'To' +- +'p'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7 +- +'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#14#0#0#6'TRaDec' +- +#6'RaDec9'#3'Tag'#2#8#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#20#1#5'Width'#3 +- +#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' +- +'e'#7#16'DegSpacingChange'#8'TabOrder'#2#16#0#0#6'TRaDec'#7'RaDec10'#3'Tag'#2 +- +#9#4'Left'#2'A'#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0#4'kind'#7#2'DE' +- +#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChan' +- +'ge'#8'TabOrder'#2#18#0#0#6'TRaDec'#7'RaDec11'#3'Tag'#2#10#4'Left'#2'A'#6'He' +- +'ight'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0 +- +#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#20 +- +#0#0#6'TRaDec'#7'RaDec12'#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'L'#5'Width' +- +#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' +- +'nge'#7#17'HourSpacingChange'#8'TabOrder'#2#1#0#0#6'TRaDec'#7'RaDec13'#3'Tag' +- +#2#1#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4'kind'#7#2 +- +'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacin' +- +'gChange'#8'TabOrder'#2#3#0#0#6'TRaDec'#7'RaDec14'#3'Tag'#2#2#4'Left'#3#253#0 +- +#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0 +- +#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2 +- +#5#0#0#6'TRaDec'#7'RaDec15'#3'Tag'#2#3#4'Left'#3#253#0#6'Height'#2#23#3'Top' +- +#3#151#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'E' +- +'nabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#7#0#0#6'TRaDec' +- +#7'RaDec16'#3'Tag'#2#4#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#176#0#5'Width' +- +#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' +- +'nge'#7#17'HourSpacingChange'#8'TabOrder'#2#9#0#0#6'TRaDec'#7'RaDec17'#3'Tag' +- +#2#5#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7 +- +#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpac' +- +'ingChange'#8'TabOrder'#2#11#0#0#6'TRaDec'#7'RaDec18'#3'Tag'#2#6#4'Left'#3 +- +#253#0#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'valu' +- +'e'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8 +- +'TabOrder'#2#13#0#0#6'TRaDec'#7'RaDec19'#3'Tag'#2#7#4'Left'#3#253#0#6'Height' +- +#2#23#3'Top'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0 +- +#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#15#0 +- +#0#6'TRaDec'#7'RaDec20'#3'Tag'#2#8#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#20 +- +#1#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled' +- +#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#17#0#0#6'TRaDec'#7'RaDe' +- +'c21'#3'Tag'#2#9#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176 ++ +#8'TabOrder'#2#18#0#0#6'TRaDec'#7'RaDec11'#3'Tag'#2#10#4'Left'#2'A'#6'Height' ++ +#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0 ++ +#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#20#0#0#6 ++ +'TRaDec'#7'RaDec12'#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'L'#5'Width'#3#176 + +#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7 +- +#17'HourSpacingChange'#8'TabOrder'#2#19#0#0#6'TRaDec'#7'RaDec22'#3'Tag'#2#10 +- +#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'R' +- +'A'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacing' +- +'Change'#8'TabOrder'#2#21#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#5'Page6' +- +#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#7'Label95'#4'L' +- +'eft'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#19'Object Lis' +- +'t Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#24#6'H' +- +'eight'#3#223#0#3'Top'#2'('#5'Width'#3'q'#1#7'Caption'#6'!Type of object to ' +- +'add to the list'#12'ClientHeight'#3#208#0#11'ClientWidth'#3'm'#1#8'TabOrder' +- +#2#0#0#9'TCheckBox'#8'liststar'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#24#5'Wi' +- +'dth'#2'6'#7'Caption'#6#5'Stars'#7'OnClick'#7#13'liststarClick'#8'TabOrder'#2 +- ,#0#0#0#9'TCheckBox'#7'listneb'#4'Left'#2' '#6'Height'#2#21#3'Top'#2':'#5'Wid' +- +'th'#2'E'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#12'listnebClick'#8'TabOrder'#2 +- +#1#0#0#9'TCheckBox'#7'listpla'#4'Left'#2' '#6'Height'#2#21#3'Top'#2'\'#5'Wid' +- +'th'#3#138#0#7'Caption'#6#19'Solar System object'#7'OnClick'#7#12'listplaCli' +- +'ck'#8'TabOrder'#2#2#0#0#9'TCheckBox'#7'listvar'#4'Left'#2' '#6'Height'#2#21 +- +#3'Top'#2'~'#5'Width'#2'g'#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#12'l' +- +'istvarClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#7'listdbl'#4'Left'#2' '#6'Hei' +- +'ght'#2#21#3'Top'#3#160#0#5'Width'#2'a'#7'Caption'#6#12'Double Stars'#7'OnCl' +- +'ick'#7#12'listdblClick'#8'TabOrder'#2#4#0#0#0#0#0#6'TPanel'#8'FOVPanel'#4'L' +- +'eft'#2#1#6'Height'#2'6'#3'Top'#3#206#1#5'Width'#3#252#1#5'Align'#7#8'alBott' +- +'om'#12'ClientHeight'#2'6'#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#7'Visible' +- +#8#0#6'TLabel'#4'fv10'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2 +- +'N'#8'AutoSize'#8#7'Caption'#6#4'fv10'#11'ParentColor'#8#0#0#6'TLabel'#6'Lab' +- +'el2'#4'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' +- +'aption'#6#11'fov number:'#11'ParentColor'#8#0#0#6'TLabel'#3'fv9'#4'Left'#3 +- +'K'#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3 +- +'fw9'#11'ParentColor'#8#0#0#6'TLabel'#3'fv8'#4'Left'#3#251#0#6'Height'#2#17#3 +- +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8 +- +#0#0#6'TLabel'#3'fv7'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2 +- +'N'#8'AutoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fv6' +- +#4'Left'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Capti' +- +'on'#6#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fv5'#4'Left'#2#11#6'Height'#2 +- +#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentCol' +- +'or'#8#0#0#6'TLabel'#3'fv4'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2#8#5'Widt' +- +'h'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3 +- +'fv3'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7 +- +'Caption'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fv2'#4'Left'#3#251#0#6 +- +'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11 +- +'ParentColor'#8#0#0#6'TLabel'#3'fv1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2 +- +#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'T' +- +'Label'#3'fv0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSi' +- +'ze'#8#7'Caption'#6#3'fw0'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'L' +- +'eft'#2#0#6'Height'#2'2'#3'Top'#3#5#2#5'Width'#3#254#1#5'Align'#7#8'alBottom' +- +#12'ClientHeight'#2'2'#11'ClientWidth'#3#254#1#8'TabOrder'#2#1#0#7'TButton'#7 +- +'Button3'#4'Left'#3#212#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' +- +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'O' +- +'K'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' +- +'4'#4'Left'#3'4'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 +- +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply' +- +#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'L' +- +'eft'#3#156#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop' +- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'C' +- +'ancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left' +- +#2'x'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRi' +- +'ght'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0 +- +#0#0#0 ++ +#17'HourSpacingChange'#8'TabOrder'#2#1#0#0#6'TRaDec'#7'RaDec13'#3'Tag'#2#1#4 ++ +'Left'#3#253#0#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4'kind'#7#2'RA'#5 ++ +'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChang' ++ +'e'#8'TabOrder'#2#3#0#0#6'TRaDec'#7'RaDec14'#3'Tag'#2#2#4'Left'#3#253#0#6'He' ++ +'ight'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0 ++ +#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#5#0 ++ +#0#6'TRaDec'#7'RaDec15'#3'Tag'#2#3#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3 ++ +#151#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Ena' ++ +'bled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#7#0#0#6'TRaDec'#7 ++ +'RaDec16'#3'Tag'#2#4#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#176#0#5'Width'#3 ++ +#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' ++ +'e'#7#17'HourSpacingChange'#8'TabOrder'#2#9#0#0#6'TRaDec'#7'RaDec17'#3'Tag'#2 ++ +#5#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7#2 ++ +'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacin' ++ +'gChange'#8'TabOrder'#2#11#0#0#6'TRaDec'#7'RaDec18'#3'Tag'#2#6#4'Left'#3#253 ++ +#0#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5 ++ +#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabO' ++ +'rder'#2#13#0#0#6'TRaDec'#7'RaDec19'#3'Tag'#2#7#4'Left'#3#253#0#6'Height'#2 ++ +#23#3'Top'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0 ++ +#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#15#0#0 ++ +#6'TRaDec'#7'RaDec20'#3'Tag'#2#8#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#20#1 ++ +#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9 ++ +#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#17#0#0#6'TRaDec'#7'RaDec2' ++ +'1'#3'Tag'#2#9#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0 ++ +#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17 ++ +'HourSpacingChange'#8'TabOrder'#2#19#0#0#6'TRaDec'#7'RaDec22'#3'Tag'#2#10#4 ++ +'Left'#3#253#0#6'Height'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'RA' ++ +#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingCha' ++ +'nge'#8'TabOrder'#2#21#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#5'Page6'#12 ++ +'ClientHeight'#3#170#1#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label95'#4'Left' ++ +#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#19'Object List Set' ++ +'ting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#24#6'Height' ++ +#3#223#0#3'Top'#2'('#5'Width'#3'q'#1#7'Caption'#6'!Type of object to add to ' ++ +'the list'#12'ClientHeight'#3#208#0#11'ClientWidth'#3'm'#1#8'TabOrder'#2#0#0 ++ +#9'TCheckBox'#8'liststar'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#24#5'Width'#2 ++ +'6'#7'Caption'#6#5'Stars'#7'OnClick'#7#13'liststarClick'#8'TabOrder'#2#0#0#0 ++ ,#9'TCheckBox'#7'listneb'#4'Left'#2' '#6'Height'#2#21#3'Top'#2':'#5'Width'#2 ++ +'E'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#12'listnebClick'#8'TabOrder'#2#1#0#0 ++ +#9'TCheckBox'#7'listpla'#4'Left'#2' '#6'Height'#2#21#3'Top'#2'\'#5'Width'#3 ++ +#138#0#7'Caption'#6#19'Solar System object'#7'OnClick'#7#12'listplaClick'#8 ++ +'TabOrder'#2#2#0#0#9'TCheckBox'#7'listvar'#4'Left'#2' '#6'Height'#2#21#3'Top' ++ +#2'~'#5'Width'#2'g'#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#12'listvarC' ++ +'lick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#7'listdbl'#4'Left'#2' '#6'Height'#2 ++ +#21#3'Top'#3#160#0#5'Width'#2'a'#7'Caption'#6#12'Double Stars'#7'OnClick'#7 ++ +#12'listdblClick'#8'TabOrder'#2#4#0#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Left'#2#1 ++ +#6'Height'#2'6'#3'Top'#3#206#1#5'Width'#3#252#1#5'Align'#7#8'alBottom'#12'Cl' ++ +'ientHeight'#2'6'#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#7'Visible'#8#0#6'T' ++ +'Label'#4'fv10'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'A' ++ +'utoSize'#8#7'Caption'#6#4'fv10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4 ++ +'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption' ++ +#6#11'fov number:'#11'ParentColor'#8#0#0#6'TLabel'#3'fv9'#4'Left'#3'K'#1#6'H' ++ +'eight'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw9'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#3'fv8'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2 ++ +' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#3'fv7'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'A' ++ +'utoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fv6'#4'Lef' ++ +'t'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6 ++ +#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fv5'#4'Left'#2#11#6'Height'#2#17#3 ++ +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#3'fv4'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N' ++ +#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3'fv3'#4 ++ +'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Captio' ++ +'n'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fv2'#4'Left'#3#251#0#6'Height' ++ +#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#3'fv1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2#8#5'Wid' ++ +'th'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'TLabel'#3 ++ +'fv0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' ++ +'aption'#6#3'fw0'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6 ++ +'Height'#2'2'#3'Top'#3#5#2#5'Width'#3#254#1#5'Align'#7#8'alBottom'#12'Client' ++ +'Height'#2'2'#11'ClientWidth'#3#254#1#8'TabOrder'#2#1#0#7'TButton'#7'Button3' ++ +#4'Left'#3#212#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'ak' ++ +'Top'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'De' ++ +'fault'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4'#4'Le' ++ +'ft'#3'4'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 ++ +'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClic' ++ +'k'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'Left'#3 ++ +#156#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akR' ++ +'ight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel' ++ +#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#2'x'#6 ++ +'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7 ++ +'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_display.lfm skychart_3.2_up/skychart/pu_config_display.lfm +--- skychart_3.2/skychart/pu_config_display.lfm 2010-09-28 18:29:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_display.lfm 2011-03-09 15:18:57.113096300 +0100 +@@ -1,7 +1,7 @@ + object f_config_display: Tf_config_display +- Left = 842 ++ Left = 501 + Height = 560 +- Top = 111 ++ Top = 109 + Width = 515 + ActiveControl = MainPanel + BorderStyle = bsToolWindow +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 510 +@@ -31,13 +31,12 @@ + Width = 513 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Display' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object stardisplay: TRadioGroup + Left = 8 + Height = 65 +@@ -91,9 +90,9 @@ + end + object red_moveBox: TCheckBox + Left = 28 +- Height = 21 ++ Height = 22 + Top = 429 +- Width = 202 ++ Width = 227 + Caption = 'Reduce detail when moving the chart' + OnClick = red_moveBoxClick + TabOrder = 2 +@@ -110,13 +109,13 @@ + Left = 38 + Height = 14 + Top = 48 +- Width = 78 ++ Width = 90 + Caption = 'Stars bitmap file' + ParentColor = False + end + object FileNameEdit1: TFileNameEdit + Left = 37 +- Height = 21 ++ Height = 23 + Top = 84 + Width = 332 + DialogOptions = [] +@@ -124,7 +123,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 0 +- MaxLength = 0 + TabOrder = 0 + OnChange = FileNameEdit1Change + end +@@ -146,6 +144,22 @@ + ClientHeight = 242 + ClientWidth = 441 + TabOrder = 3 ++ object Label259: TLabel ++ Left = 24 ++ Height = 14 ++ Top = 75 ++ Width = 42 ++ Caption = 'Contrast' ++ ParentColor = False ++ end ++ object Label258: TLabel ++ Left = 24 ++ Height = 14 ++ Top = 38 ++ Width = 85 ++ Caption = 'Bright Stars Size ' ++ ParentColor = False ++ end + object StarButton7: TButton + Left = 224 + Height = 25 +@@ -202,31 +216,47 @@ + Position = 1 + TabOrder = 4 + end +- object Label259: TLabel ++ end ++ object Panel7: TPanel ++ Left = 8 ++ Height = 242 ++ Top = 172 ++ Width = 441 ++ ClientHeight = 242 ++ ClientWidth = 441 ++ TabOrder = 5 ++ object Label257: TLabel + Left = 24 + Height = 14 +- Top = 75 ++ Top = 79 ++ Width = 125 ++ Caption = 'Increment for Bright Stars' ++ ParentColor = False ++ end ++ object Label263: TLabel ++ Left = 24 ++ Height = 14 ++ Top = 161 ++ Width = 77 ++ Caption = 'Color saturation' ++ ParentColor = False ++ end ++ object Label262: TLabel ++ Left = 24 ++ Height = 14 ++ Top = 120 + Width = 42 + Caption = 'Contrast' + ParentColor = False + end +- object Label258: TLabel ++ object Label256: TLabel + Left = 24 + Height = 14 + Top = 38 +- Width = 85 +- Caption = 'Bright Stars Size ' ++ Width = 80 ++ Caption = 'Faint Stars Size ' + ParentColor = False + end +- end +- object Panel7: TPanel +- Left = 8 +- Height = 242 +- Top = 172 +- Width = 441 +- ClientHeight = 242 +- ClientWidth = 441 +- TabOrder = 5 + object StarButton4: TButton + Left = 336 + Height = 25 +@@ -318,44 +348,12 @@ + Position = 1 + TabOrder = 7 + end +- object Label257: TLabel +- Left = 24 +- Height = 14 +- Top = 79 +- Width = 125 +- Caption = 'Increment for Bright Stars' +- ParentColor = False +- end +- object Label263: TLabel +- Left = 24 +- Height = 14 +- Top = 161 +- Width = 77 +- Caption = 'Color saturation' +- ParentColor = False +- end +- object Label262: TLabel +- Left = 24 +- Height = 14 +- Top = 120 +- Width = 42 +- Caption = 'Contrast' +- ParentColor = False +- end +- object Label256: TLabel +- Left = 24 +- Height = 14 +- Top = 38 +- Width = 80 +- Caption = 'Faint Stars Size ' +- ParentColor = False +- end + end + end + object Page2: TTabSheet + Caption = 'Colour' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object Label181: TLabel + Left = 86 + Height = 14 +@@ -872,8 +870,8 @@ + end + object Page3: TTabSheet + Caption = 'Deep-sky colour' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object lblDSOCScheme: TLabel + Left = 13 + Height = 14 +@@ -1321,7 +1319,7 @@ + end + object NebBrightBar: TTrackBar + Left = 232 +- Height = 33 ++ Height = 38 + Top = 35 + Width = 217 + Frequency = 26 +@@ -1333,7 +1331,7 @@ + end + object NebGrayBar: TTrackBar + Left = 8 +- Height = 33 ++ Height = 38 + Top = 35 + Width = 209 + Frequency = 26 +@@ -1396,8 +1394,8 @@ + end + object Page4: TTabSheet + Caption = 'Sky colour' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object Panel2: TPanel + Left = 24 + Height = 147 +@@ -1574,8 +1572,8 @@ + end + object Page5: TTabSheet + Caption = 'Lines' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object EqGrid: TCheckBox + Left = 16 + Height = 21 +@@ -1658,7 +1656,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 2 + OnChange = ConstlFileChange + end +@@ -1720,7 +1717,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 2 + OnChange = ConstbFileChange + end +@@ -1906,8 +1902,8 @@ + end + object Page6: TTabSheet + Caption = 'Labels' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object MagLabel: TRadioGroup + Left = 16 + Height = 81 +@@ -2484,8 +2480,8 @@ + end + object Page7: TTabSheet + Caption = 'Fonts' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object Bevel10: TBevel + Left = 8 + Height = 329 +@@ -3020,8 +3016,8 @@ + end + object Page8: TTabSheet + Caption = 'Finder circle' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object Label307: TLabel + Left = 80 + Height = 14 +@@ -3167,8 +3163,8 @@ + end + object Page9: TTabSheet + Caption = 'Finder rectangle' +- ClientHeight = 504 +- ClientWidth = 509 ++ ClientHeight = 473 ++ ClientWidth = 507 + object Label308: TLabel + Left = 80 + Height = 14 +diff -ur skychart_3.2/skychart/pu_config_display.lrs skychart_3.2_up/skychart/pu_config_display.lrs +--- skychart_3.2/skychart/pu_config_display.lrs 2010-09-28 18:29:57.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_display.lrs 2011-03-09 15:18:57.148092003 +0100 +@@ -1,621 +1,743 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_display','FORMDATA',[ +- 'TPF0'#17'Tf_config_display'#16'f_config_display'#4'Left'#3'J'#3#6'Height'#3 +- +'0'#2#3'Top'#2'o'#5'Width'#3#3#2#13'ActiveControl'#7#9'MainPanel'#11'BorderS' ++ 'TPF0'#17'Tf_config_display'#16'f_config_display'#4'Left'#3#245#1#6'Height'#3 ++ +'0'#2#3'Top'#2'm'#5'Width'#3#3#2#13'ActiveControl'#7#9'MainPanel'#11'BorderS' + +'tyle'#7#12'bsToolWindow'#7'Caption'#6#7'Display'#12'ClientHeight'#3'0'#2#11 + +'ClientWidth'#3#3#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCrea' + +'te'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' +- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3 +- +#254#1#3'Top'#2#0#5'Width'#3#3#2#5'Align'#7#8'alClient'#12'ClientHeight'#3 ++ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' ++ +#3#254#1#3'Top'#2#0#5'Width'#3#3#2#5'Align'#7#8'alClient'#12'ClientHeight'#3 + +#254#1#11'ClientWidth'#3#3#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageCon' + +'trol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#252#1#3'Top'#2#1#5'Width'#3#1 +- +#2#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex' +- +#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Display'#12'Clie' +- +'ntHeight'#3#248#1#11'ClientWidth'#3#253#1#0#11'TRadioGroup'#11'stardisplay' +- +#4'Left'#2#8#6'Height'#2'A'#3'Top'#2'd'#5'Width'#3#185#1#8'AutoFill'#9#7'Cap' +- +'tion'#6#12'Star Display'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizin' +- +'g.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenou' +- +'sChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' +- +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' +- +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' +- +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'2'#11 +- +'ClientWidth'#3#181#1#7'Columns'#2#3#13'Items.Strings'#1#6#9'Line mode'#6#12 +- +'Photographic'#6#10'Parametric'#0#7'OnClick'#7#16'stardisplayClick'#8'TabOrd' +- +'er'#2#1#0#0#11'TRadioGroup'#13'nebuladisplay'#4'Left'#2#8#6'Height'#2'A'#3 +- +'Top'#2#20#5'Width'#3#185#1#8'AutoFill'#9#7'Caption'#6#14'Nebula Display'#28 +- +'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'C' +- +'hildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing' +- +'.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHoriz' +- +'ontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChi' +- +'lds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSiz' +- +'ing.ControlsPerLine'#2#2#12'ClientHeight'#2'2'#11'ClientWidth'#3#181#1#7'Co' +- +'lumns'#2#2#13'Items.Strings'#1#6#9'Line mode'#6#7'Graphic'#0#7'OnClick'#7#18 +- +'nebuladisplayClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#11'red_moveBox'#4'Left' +- +#2#28#6'Height'#2#21#3'Top'#3#173#1#5'Width'#3#202#0#7'Caption'#6'#Reduce de' +- +'tail when moving the chart'#7'OnClick'#7#16'red_moveBoxClick'#8'TabOrder'#2 +- +#2#0#0#6'TPanel'#6'Panel5'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#173#0#5'Wi' +- +'dth'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2 +- +#4#0#6'TLabel'#6'Label9'#4'Left'#2'&'#6'Height'#2#14#3'Top'#2'0'#5'Width'#2 +- +'N'#7'Caption'#6#17'Stars bitmap file'#11'ParentColor'#8#0#0#13'TFileNameEdi' +- +'t'#13'FileNameEdit1'#4'Left'#2'%'#6'Height'#2#21#3'Top'#2'T'#5'Width'#3'L'#1 +- +#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonW' +- +'idth'#2#23#9'NumGlyphs'#2#0#9'MaxLength'#2#0#8'TabOrder'#2#0#8'OnChange'#7 +- +#19'FileNameEdit1Change'#0#0#7'TButton'#7'Button7'#4'Left'#2'&'#6'Height'#2 +- +#25#3'Top'#3#145#0#5'Width'#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'But' +- +'ton7Click'#8'TabOrder'#2#1#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#8#6'Height'#3 +- +#242#0#3'Top'#3#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWid' +- +'th'#3#185#1#8'TabOrder'#2#3#0#7'TButton'#11'StarButton7'#4'Left'#3#224#0#6 +- +'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4 +- +#7'Caption'#6#9'Big stars'#7'OnClick'#7#16'StarButton7Click'#8'TabOrder'#2#0 +- +#0#0#7'TButton'#11'StarButton6'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5 +- +'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11'Small stars'#7 +- +'OnClick'#7#16'StarButton6Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarButto' +- +'n5'#4'Left'#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpaci' +- +'ng.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton5Clic' +- +'k'#8'TabOrder'#2#2#0#0#9'TTrackBar'#11'StarDynBar1'#4'Left'#3#192#0#6'Heigh' +- +'t'#2'#'#3'Top'#2'C'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#3#150#0#3'Min' +- +#2'2'#8'OnChange'#7#17'StarDynBar1Change'#8'PageSize'#2#10#8'Position'#2'2'#8 +- +'TabOrder'#2#3#0#0#9'TTrackBar'#12'StarSizeBar1'#4'Left'#3#192#0#6'Height'#2 +- +'#'#3'Top'#2#30#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'O' +- +'nChange'#7#18'StarSizeBar1Change'#8'PageSize'#2#5#8'Position'#2#1#8'TabOrde' +- +'r'#2#4#0#0#6'TLabel'#8'Label259'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'K'#5 +- +'Width'#2'*'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' +- +'l258'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'&'#5'Width'#2'U'#7'Caption'#6#18 +- +'Bright Stars Size '#11'ParentColor'#8#0#0#0#6'TPanel'#6'Panel7'#4'Left'#2#8 +- +#6'Height'#3#242#0#3'Top'#3#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0 +- +#11'ClientWidth'#3#185#1#8'TabOrder'#2#5#0#7'TButton'#11'StarButton4'#4'Left' +- ,#3'P'#1#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBo' +- +'rder'#2#4#7'Caption'#6#11'Black/White'#7'OnClick'#7#16'StarButton4Click'#8 +- +'TabOrder'#2#0#0#0#7'TButton'#11'StarButton3'#4'Left'#3#224#0#6'Height'#2#25 +- +#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#10'High Color'#7'OnClick'#7#16'StarButton3Click'#8'TabOrder'#2#1#0#0#7'TBut' +- +'ton'#11'StarButton2'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2 +- +'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Naked Eye'#7'OnClick'#7 +- +#16'StarButton2Click'#8'TabOrder'#2#2#0#0#7'TButton'#11'StarButton1'#4'Left' +- +#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBord' +- +'er'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton1Click'#8'TabOrde' +- +'r'#2#3#0#0#9'TTrackBar'#15'SizeContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3 +- +'Top'#2'<'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#2'd'#3'Min'#2#10#8'OnCh' +- +'ange'#7#21'SizeContrastBarChange'#8'PageSize'#2#10#8'Position'#2#10#8'TabOr' +- +'der'#2#4#0#0#9'TTrackBar'#13'SaturationBar'#4'Left'#3#193#0#6'Height'#2'!'#3 +- +'Top'#3#142#0#5'Width'#3#225#0#9'Frequency'#2#28#3'Max'#3#255#0#8'OnChange'#7 +- +#19'SaturationBarChange'#8'PageSize'#2#28#8'Position'#2#0#8'TabOrder'#2#5#0#0 +- +#9'TTrackBar'#15'StarContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'e' +- +#5'Width'#3#225#0#9'Frequency'#2'd'#3'Max'#3#232#3#3'Min'#2'd'#8'OnChange'#7 +- +#21'StarContrastBarChange'#8'PageSize'#2'd'#8'Position'#2'd'#8'TabOrder'#2#6 +- +#0#0#9'TTrackBar'#11'StarSizeBar'#4'Left'#3#193#0#6'Height'#2'$'#3'Top'#2#16 +- +#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'OnChange'#7#17'S' +- +'tarSizeBarChange'#8'PageSize'#2#5#8'Position'#2#1#8'TabOrder'#2#7#0#0#6'TLa' +- +'bel'#8'Label257'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'O'#5'Width'#2'}'#7'Ca' +- +'ption'#6#26'Increment for Bright Stars'#11'ParentColor'#8#0#0#6'TLabel'#8'L' +- +'abel263'#4'Left'#2#24#6'Height'#2#14#3'Top'#3#161#0#5'Width'#2'M'#7'Caption' +- +#6#16'Color saturation'#11'ParentColor'#8#0#0#6'TLabel'#8'Label262'#4'Left'#2 +- +#24#6'Height'#2#14#3'Top'#2'x'#5'Width'#2'*'#7'Caption'#6#8'Contrast'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#8'Label256'#4'Left'#2#24#6'Height'#2#14#3'Top'#2 +- +'&'#5'Width'#2'P'#7'Caption'#6#17'Faint Stars Size '#11'ParentColor'#8#0#0#0 +- +#0#9'TTabSheet'#5'Page2'#7'Caption'#6#6'Colour'#12'ClientHeight'#3#248#1#11 +- +'ClientWidth'#3#253#1#0#6'TLabel'#8'Label181'#4'Left'#2'V'#6'Height'#2#14#3 +- +'Top'#2'"'#5'Width'#2#20#7'Caption'#6#4'-0.3'#11'ParentColor'#8#0#0#6'TLabel' +- +#8'Label182'#4'Left'#3#142#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20#7'Capt' +- +'ion'#6#4'-0.1'#11'ParentColor'#8#0#0#6'TLabel'#8'Label183'#4'Left'#3#198#0#6 +- +'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.2'#11'ParentColor'#8 +- +#0#0#6'TLabel'#8'Label184'#4'Left'#3#254#0#6'Height'#2#14#3'Top'#2'"'#5'Widt' +- +'h'#2#16#7'Caption'#6#3'0.5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label185'#4'L' +- +'eft'#3'0'#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.8'#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label186'#4'Left'#3'f'#1#6'Height'#2#14#3'To' +- +'p'#2'"'#5'Width'#2#16#7'Caption'#6#3'1.3'#11'ParentColor'#8#0#0#6'TLabel'#8 +- +'Label187'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#7#7'Caption' +- +#6#1'>'#11'ParentColor'#8#0#0#6'TLabel'#8'Label188'#4'Left'#2'('#6'Height'#2 +- +#14#3'Top'#2'"'#5'Width'#2#7#7'Caption'#6#1'<'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#8'Label189'#4'Left'#2' '#6'Height'#2#14#3'Top'#2#10#5'Width'#2'Z'#7'Capt' +- +'ion'#6#19'Star colour (B-V) :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label193'#4 +- +'Left'#3#208#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'8'#9'Alignment'#7#8 +- +'taCenter'#7'Caption'#6#11'Coord. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'La' +- +'bel194'#4'Left'#3'#'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2''''#9'Align' +- +'ment'#7#8'taCenter'#7'Caption'#6#8'Eq. Grid'#11'ParentColor'#8#0#0#6'TLabel' +- +#8'Label195'#4'Left'#3#184#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#24#9'Alig' +- +'nment'#7#8'taCenter'#7'Caption'#6#5'Orbit'#11'ParentColor'#8#0#0#6'TLabel'#8 +- +'Label197'#4'Left'#2'0'#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'>'#9'Alignm' +- +'ent'#7#8'taCenter'#7'Caption'#6#13'Constellation'#11'ParentColor'#8#0#0#6'T' +- +'Label'#8'Label198'#4'Left'#3#136#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2 +- +'0'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Boundary'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label199'#4'Left'#3'p'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2 +- +'-'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Eyepiece'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label196'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width' +- +#2'7'#9'Alignment'#7#8'taCenter'#7'Caption'#6#11'Misc. Lines'#11'ParentColor' +- +#8#0#0#6'TLabel'#7'Label11'#4'Left'#3'4'#1#6'Height'#2#14#3'Top'#2'b'#5'Widt' +- +'h'#2'&'#9'Alignment'#7#8'taCenter'#7'Caption'#6#7'Horizon'#11'ParentColor'#8 +- +#0#0#6'TLabel'#6'Label6'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2 +- +'*'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Asteroid'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label234'#4'Left'#2'x'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#31 +- ,#9'Alignment'#7#8'taCenter'#7'Caption'#6#5'Comet'#11'ParentColor'#8#0#0#6'TL' +- +'abel'#8'Label269'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'1'#7 +- +'Caption'#6#9'Milky Way'#11'ParentColor'#8#0#0#6'TPanel'#3'bg1'#4'Left'#2' ' +- +#6'Height'#2'&'#3'Top'#2'0'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'Client' +- +'Width'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#0#0#6'TShape'#6'Shape1'#3'Ta' +- +'g'#2#1#4'Left'#2#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7 +- +#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape2'#3'Tag'#2#2#4 +- +'Left'#2'M'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeM' +- +'ouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape3'#3'Tag'#2#3#4'Left'#3 +- +#130#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseU' +- +'p'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape4'#3'Tag'#2#4#4'Left'#3#184#0 ++ +#2#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'TabOrd' ++ +'er'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Display'#12'ClientHeight'#3 ++ +#217#1#11'ClientWidth'#3#251#1#0#11'TRadioGroup'#11'stardisplay'#4'Left'#2#8 ++ +#6'Height'#2'A'#3'Top'#2'd'#5'Width'#3#185#1#8'AutoFill'#9#7'Caption'#6#12'S' ++ +'tar Display'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomS' ++ +'pacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' ++ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' ++ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 ++ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' ++ +'m'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'2'#11'ClientWidth' ++ +#3#181#1#7'Columns'#2#3#13'Items.Strings'#1#6#9'Line mode'#6#12'Photographic' ++ +#6#10'Parametric'#0#7'OnClick'#7#16'stardisplayClick'#8'TabOrder'#2#1#0#0#11 ++ +'TRadioGroup'#13'nebuladisplay'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#20#5'Wid' ++ +'th'#3#185#1#8'AutoFill'#9#7'Caption'#6#14'Nebula Display'#28'ChildSizing.Le' ++ +'ftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enl' ++ +'argeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertic' ++ +'al'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'cr' ++ +'sScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildS' ++ +'izing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPe' ++ +'rLine'#2#2#12'ClientHeight'#2'2'#11'ClientWidth'#3#181#1#7'Columns'#2#2#13 ++ +'Items.Strings'#1#6#9'Line mode'#6#7'Graphic'#0#7'OnClick'#7#18'nebuladispla' ++ +'yClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#11'red_moveBox'#4'Left'#2#28#6'Hei' ++ +'ght'#2#22#3'Top'#3#173#1#5'Width'#3#227#0#7'Caption'#6'#Reduce detail when ' ++ +'moving the chart'#7'OnClick'#7#16'red_moveBoxClick'#8'TabOrder'#2#2#0#0#6'T' ++ +'Panel'#6'Panel5'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#173#0#5'Width'#3#185 ++ +#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2#4#0#6'TLab' ++ +'el'#6'Label9'#4'Left'#2'&'#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'Z'#7'Capti' ++ +'on'#6#17'Stars bitmap file'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'File' ++ +'NameEdit1'#4'Left'#2'%'#6'Height'#2#23#3'Top'#2'T'#5'Width'#3'L'#1#13'Dialo' ++ +'gOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2 ++ +#23#9'NumGlyphs'#2#0#8'TabOrder'#2#0#8'OnChange'#7#19'FileNameEdit1Change'#0 ++ +#0#7'TButton'#7'Button7'#4'Left'#2'&'#6'Height'#2#25#3'Top'#3#145#0#5'Width' ++ +#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button7Click'#8'TabOrder'#2#1#0 ++ +#0#0#6'TPanel'#6'Panel4'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#172#0#5'Widt' ++ +'h'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2#3 ++ +#0#6'TLabel'#8'Label259'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'K'#5'Width'#2 ++ +'*'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Label258'#4'L' ++ +'eft'#2#24#6'Height'#2#14#3'Top'#2'&'#5'Width'#2'U'#7'Caption'#6#18'Bright S' ++ +'tars Size '#11'ParentColor'#8#0#0#7'TButton'#11'StarButton7'#4'Left'#3#224#0 ++ +#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2 ++ +#4#7'Caption'#6#9'Big stars'#7'OnClick'#7#16'StarButton7Click'#8'TabOrder'#2 ++ +#0#0#0#7'TButton'#11'StarButton6'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0 ++ +#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11'Small stars' ++ +#7'OnClick'#7#16'StarButton6Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarBut' ++ +'ton5'#4'Left'#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpa' ++ +'cing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton5Cl' ++ +'ick'#8'TabOrder'#2#2#0#0#9'TTrackBar'#11'StarDynBar1'#4'Left'#3#192#0#6'Hei' ++ +'ght'#2'#'#3'Top'#2'C'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#3#150#0#3'M' ++ +'in'#2'2'#8'OnChange'#7#17'StarDynBar1Change'#8'PageSize'#2#10#8'Position'#2 ++ +'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#12'StarSizeBar1'#4'Left'#3#192#0#6'Heig' ++ +'ht'#2'#'#3'Top'#2#30#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2 ++ +#1#8'OnChange'#7#18'StarSizeBar1Change'#8'PageSize'#2#5#8'Position'#2#1#8'Ta' ++ +'bOrder'#2#4#0#0#0#6'TPanel'#6'Panel7'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3 ++ +#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'T' ++ +'abOrder'#2#5#0#6'TLabel'#8'Label257'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'O' ++ ,#5'Width'#2'}'#7'Caption'#6#26'Increment for Bright Stars'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#8'Label263'#4'Left'#2#24#6'Height'#2#14#3'Top'#3#161#0#5'Widt' ++ +'h'#2'M'#7'Caption'#6#16'Color saturation'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label262'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'x'#5'Width'#2'*'#7'Caption'#6 ++ +#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Label256'#4'Left'#2#24#6'Heig' ++ +'ht'#2#14#3'Top'#2'&'#5'Width'#2'P'#7'Caption'#6#17'Faint Stars Size '#11'Pa' ++ +'rentColor'#8#0#0#7'TButton'#11'StarButton4'#4'Left'#3'P'#1#6'Height'#2#25#3 ++ +'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11 ++ +'Black/White'#7'OnClick'#7#16'StarButton4Click'#8'TabOrder'#2#0#0#0#7'TButto' ++ +'n'#11'StarButton3'#4'Left'#3#224#0#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2 ++ +'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'High Color'#7'OnClick' ++ +#7#16'StarButton3Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarButton2'#4'Lef' ++ +'t'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerB' ++ +'order'#2#4#7'Caption'#6#9'Naked Eye'#7'OnClick'#7#16'StarButton2Click'#8'Ta' ++ +'bOrder'#2#2#0#0#7'TButton'#11'StarButton1'#4'Left'#2#16#6'Height'#2#25#3'To' ++ +'p'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'D' ++ +'efault'#7'OnClick'#7#16'StarButton1Click'#8'TabOrder'#2#3#0#0#9'TTrackBar' ++ +#15'SizeContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'<'#5'Width'#3 ++ +#225#0#9'Frequency'#2#10#3'Max'#2'd'#3'Min'#2#10#8'OnChange'#7#21'SizeContra' ++ +'stBarChange'#8'PageSize'#2#10#8'Position'#2#10#8'TabOrder'#2#4#0#0#9'TTrack' ++ +'Bar'#13'SaturationBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#3#142#0#5'Widt' ++ +'h'#3#225#0#9'Frequency'#2#28#3'Max'#3#255#0#8'OnChange'#7#19'SaturationBarC' ++ +'hange'#8'PageSize'#2#28#8'Position'#2#0#8'TabOrder'#2#5#0#0#9'TTrackBar'#15 ++ +'StarContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'e'#5'Width'#3#225#0 ++ +#9'Frequency'#2'd'#3'Max'#3#232#3#3'Min'#2'd'#8'OnChange'#7#21'StarContrastB' ++ +'arChange'#8'PageSize'#2'd'#8'Position'#2'd'#8'TabOrder'#2#6#0#0#9'TTrackBar' ++ +#11'StarSizeBar'#4'Left'#3#193#0#6'Height'#2'$'#3'Top'#2#16#5'Width'#3#225#0 ++ +#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'OnChange'#7#17'StarSizeBarChange' ++ +#8'PageSize'#2#5#8'Position'#2#1#8'TabOrder'#2#7#0#0#0#0#9'TTabSheet'#5'Page' ++ +'2'#7'Caption'#6#6'Colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0 ++ +#6'TLabel'#8'Label181'#4'Left'#2'V'#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20 ++ +#7'Caption'#6#4'-0.3'#11'ParentColor'#8#0#0#6'TLabel'#8'Label182'#4'Left'#3 ++ +#142#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20#7'Caption'#6#4'-0.1'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#8'Label183'#4'Left'#3#198#0#6'Height'#2#14#3'Top'#2 ++ +'"'#5'Width'#2#16#7'Caption'#6#3'0.2'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' ++ +'l184'#4'Left'#3#254#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6 ++ +#3'0.5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label185'#4'Left'#3'0'#1#6'Height' ++ +#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.8'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#8'Label186'#4'Left'#3'f'#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16 ++ +#7'Caption'#6#3'1.3'#11'ParentColor'#8#0#0#6'TLabel'#8'Label187'#4'Left'#3 ++ +#160#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#7#7'Caption'#6#1'>'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#8'Label188'#4'Left'#2'('#6'Height'#2#14#3'Top'#2'"'#5 ++ +'Width'#2#7#7'Caption'#6#1'<'#11'ParentColor'#8#0#0#6'TLabel'#8'Label189'#4 ++ +'Left'#2' '#6'Height'#2#14#3'Top'#2#10#5'Width'#2'Z'#7'Caption'#6#19'Star co' ++ +'lour (B-V) :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label193'#4'Left'#3#208#0#6 ++ +'Height'#2#14#3'Top'#3#162#0#5'Width'#2'8'#9'Alignment'#7#8'taCenter'#7'Capt' ++ +'ion'#6#11'Coord. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label194'#4'Left'#3 ++ +'#'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2''''#9'Alignment'#7#8'taCenter' ++ +#7'Caption'#6#8'Eq. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label195'#4'Left' ++ +#3#184#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#24#9'Alignment'#7#8'taCenter' ++ +#7'Caption'#6#5'Orbit'#11'ParentColor'#8#0#0#6'TLabel'#8'Label197'#4'Left'#2 ++ +'0'#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'>'#9'Alignment'#7#8'taCenter'#7 ++ +'Caption'#6#13'Constellation'#11'ParentColor'#8#0#0#6'TLabel'#8'Label198'#4 ++ +'Left'#3#136#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'0'#9'Alignment'#7#8 ++ +'taCenter'#7'Caption'#6#8'Boundary'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' ++ +'99'#4'Left'#3'p'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'-'#9'Alignment'#7#8 ++ +'taCenter'#7'Caption'#6#8'Eyepiece'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' ++ +'96'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'7'#9'Alignment' ++ +#7#8'taCenter'#7'Caption'#6#11'Misc. Lines'#11'ParentColor'#8#0#0#6'TLabel'#7 ++ +'Label11'#4'Left'#3'4'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'&'#9'Alignmen' ++ +'t'#7#8'taCenter'#7'Caption'#6#7'Horizon'#11'ParentColor'#8#0#0#6'TLabel'#6 ++ +'Label6'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'*'#9'Alignment'#7 ++ +#8'taCenter'#7'Caption'#6#8'Asteroid'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' ++ +'l234'#4'Left'#2'x'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#31#9'Alignment'#7#8 ++ ,'taCenter'#7'Caption'#6#5'Comet'#11'ParentColor'#8#0#0#6'TLabel'#8'Label269' ++ +#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'1'#7'Caption'#6#9'Mil' ++ +'ky Way'#11'ParentColor'#8#0#0#6'TPanel'#3'bg1'#4'Left'#2' '#6'Height'#2'&'#3 ++ +'Top'#2'0'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11 ++ +'ParentColor'#8#8'TabOrder'#2#0#0#6'TShape'#6'Shape1'#3'Tag'#2#1#4'Left'#2#24 + +#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'S' +- +'hape'#7#8'stCircle'#0#0#6'TShape'#6'Shape5'#3'Tag'#2#5#4'Left'#3#237#0#6'He' +- +'ight'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' +- +#7#8'stCircle'#0#0#6'TShape'#6'Shape6'#3'Tag'#2#6#4'Left'#3'"'#1#6'Height'#2 ++ +'hape'#7#8'stCircle'#0#0#6'TShape'#6'Shape2'#3'Tag'#2#2#4'Left'#2'M'#6'Heigh' ++ +'t'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7 ++ +#8'stCircle'#0#0#6'TShape'#6'Shape3'#3'Tag'#2#3#4'Left'#3#130#0#6'Height'#2 + +#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'st' +- +'Circle'#0#0#6'TShape'#6'Shape7'#3'Tag'#2#7#4'Left'#3'X'#1#6'Height'#2#30#3 ++ +'Circle'#0#0#6'TShape'#6'Shape4'#3'Tag'#2#4#4'Left'#3#184#0#6'Height'#2#30#3 + +'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircl' +- +'e'#0#0#0#6'TPanel'#3'bg3'#4'Left'#2' '#6'Height'#2'&'#3'Top'#3#176#0#5'Widt' +- +'h'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11'ParentColor'#8#8 +- +'TabOrder'#2#2#0#6'TShape'#7'Shape15'#3'Tag'#2#16#4'Left'#2' '#6'Height'#2#30 +- +#3'Top'#2#4#5'Width'#2'!'#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWh' +- +'ite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare' +- +#0#0#6'TShape'#7'Shape16'#3'Tag'#2#17#4'Left'#2'l'#6'Height'#2#30#3'Top'#2#4 +- +#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.' +- +'Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TSh' +- +'ape'#7'Shape14'#3'Tag'#2#15#4'Left'#3'P'#1#6'Height'#2#30#3'Top'#2#4#5'Widt' +- +'h'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width' ++ +'e'#0#0#6'TShape'#6'Shape5'#3'Tag'#2#5#4'Left'#3#237#0#6'Height'#2#30#3'Top' ++ +#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0 ++ +#6'TShape'#6'Shape6'#3'Tag'#2#6#4'Left'#3'"'#1#6'Height'#2#30#3'Top'#2#4#5'W' ++ +'idth'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TSh' ++ +'ape'#6'Shape7'#3'Tag'#2#7#4'Left'#3'X'#1#6'Height'#2#30#3'Top'#2#4#5'Width' ++ +#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#0#6'TPanel' ++ +#3'bg3'#4'Left'#2' '#6'Height'#2'&'#3'Top'#3#176#0#5'Width'#3#145#1#12'Clien' ++ +'tHeight'#2'&'#11'ClientWidth'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#2#0#6 ++ +'TShape'#7'Shape15'#3'Tag'#2#16#4'Left'#2' '#6'Height'#2#30#3'Top'#2#4#5'Wid' ++ +'th'#2'!'#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width' + +#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7 +- +'Shape12'#3'Tag'#2#13#4'Left'#3#8#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30 +- +#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'O' +- +'nMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape11' +- +#3'Tag'#2#12#4'Left'#3#188#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brus' +- +'h.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseU' +- +'p'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#0#6'TPanel'#3'bg4'#4'Left' +- +#2'!'#6'Height'#2'&'#3'Top'#2'p'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'C' +- +'lientWidth'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#1#0#6'TShape'#7'Shape26' +- +#3'Tag'#2#20#4'Left'#2#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseU' +- +'p'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape27'#3'Tag' +- +#2#21#4'Left'#2'W'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12 +- +'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape28'#3'Tag'#2#22#4 +- +'Left'#3#214#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'Sha' +- +'peMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape25'#3'Tag'#2#19#4'Le' +- +'ft'#3#21#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeM' +- +'ouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape13'#3'Tag'#2#14#4'Left' +- +#3#150#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear' ++ +'Shape16'#3'Tag'#2#17#4'Left'#2'l'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11 ++ +'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMo' ++ +'useUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape14'#3 ++ +'Tag'#2#15#4'Left'#3'P'#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.S' ++ +'tyle'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7 ++ +#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape12'#3'Tag'#2#13 ++ +#4'Left'#3#8#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'b' ++ +'sClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeM' ++ +'ouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape11'#3'Tag'#2#12#4'Left' ++ +#3#188#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear' + +#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5 +- +'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape17'#3'Tag'#2#18#4'Left'#3'U'#1#6 +- +'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Co' +- +'lor'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' +- +#7#8'stCircle'#0#0#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#29#6'Height'#3#168#0 +- +#3'Top'#3'5'#1#5'Width'#3#145#1#7'Caption'#6#5'Theme'#12'ClientHeight'#3#153 +- +#0#11'ClientWidth'#3#141#1#8'TabOrder'#2#3#0#9'TComboBox'#9'ThemeList'#4'Lef' +- +'t'#2'e'#6'Height'#2#23#3'Top'#2#1#5'Width'#3#164#0#10'ItemHeight'#2#0#8'OnS' +- +'elect'#7#15'ThemeListChange'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'NightBu' +- +'tton'#4'Left'#3#205#0#6'Height'#2'd'#3'Top'#2')'#5'Width'#3#180#0#8'AutoFil' +- +'l'#9#7'Caption'#6#19'Night Vision Button'#28'ChildSizing.LeftRightSpacing'#2 +- +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 +- +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' +- +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' +- +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 +- +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' +- +'tHeight'#2'U'#11'ClientWidth'#3#176#0#13'Items.Strings'#1#6#14'Normal (colo' +- +'r)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnClick'#7#16'NightButtonClick'#8'Tab' +- ,'Order'#2#2#0#0#11'TRadioGroup'#14'StandardButton'#4'Left'#2#5#6'Height'#2'd' +- +#3'Top'#2')'#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#14'Default Button' +- +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 +- +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' +- +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' +- +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' +- +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' +- +'zing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#176#0#13 +- +'Items.Strings'#1#6#14'Normal (color)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnC' +- +'lick'#7#19'StandardButtonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupB' +- +'ox7'#4'Left'#2' '#6'Height'#2'T'#3'Top'#3#221#0#5'Width'#3#146#1#7'Caption' +- +#6#14'Standard Color'#12'ClientHeight'#2'E'#11'ClientWidth'#3#142#1#8'TabOrd' +- +'er'#2#4#0#7'TButton'#15'BtnDefaultColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2 +- +#7#5'Width'#2'h'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7 +- +'OnClick'#7#20'BtnDefaultColorClick'#8'TabOrder'#2#0#0#0#7'TButton'#11'BtnRe' +- +'dColor'#4'Left'#3#251#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25'BorderSp' +- +'acing.InnerBorder'#2#4#7'Caption'#6#3'Red'#7'OnClick'#7#16'BtnRedColorClick' +- +#8'TabOrder'#2#1#0#0#7'TButton'#10'BtnWBColor'#4'Left'#2#7#6'Height'#2#25#3 +- +'Top'#2''''#5'Width'#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#14'White on Black'#7'OnClick'#7#15'BtnWBColorClick'#8'TabOrder'#2#2#0#0#7'T' +- +'Button'#10'BtnBWColor'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#2''''#5'Width' +- +#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'Black on White'#7 +- +'OnClick'#7#15'BtnBWColorClick'#8'TabOrder'#2#3#0#0#7'TButton'#7'Button8'#4 +- +'Left'#3#129#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#7'Caption'#6#6'Pastel' +- +#7'OnClick'#7#12'Button8Click'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page3' +- +#7'Caption'#6#15'Deep-sky colour'#12'ClientHeight'#3#248#1#11'ClientWidth'#3 +- +#253#1#0#6'TLabel'#13'lblDSOCScheme'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#28 +- +#5'Width'#3#143#0#7'Caption'#6#28'Use a preset colour scheme :'#11'ParentCol' +- +'or'#8#0#0#9'TGroupBox'#15'gbDSOCOverrides'#4'Left'#2#253#6'Height'#3#209#0#3 +- +'Top'#2'K'#5'Width'#3#253#1#7'Caption'#6'! Choose colours for object type ' +- +#12'ClientHeight'#3#194#0#11'ClientWidth'#3#249#1#8'TabOrder'#2#0#0#6'TLabel' +- +#6'lblAst'#4'Left'#2#16#6'Height'#2#14#3'Top'#2','#5'Width'#2'{'#8'AutoSize' +- +#8#7'Caption'#6#8'Asterism'#11'ParentColor'#8#0#0#6'TShape'#6'shpAst'#4'Left' +- +#3#139#0#6'Height'#2#13#3'Top'#2','#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSO' +- +'MouseUp'#0#0#6'TLabel'#5'lblSN'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2','#5 +- +'Width'#3#131#0#8'AutoSize'#8#7'Caption'#6#17'Supernova remnant'#11'ParentCo' +- +'lor'#8#0#0#6'TShape'#5'shpSN'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2','#5'W' +- +'idth'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#6'lblOCl'#4'Lef' +- +'t'#2#16#6'Height'#2#14#3'Top'#2'@'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6 +- +#12'Open cluster'#11'ParentColor'#8#0#0#6'TLabel'#6'lblGCl'#4'Left'#2#16#6'H' +- +'eight'#2#14#3'Top'#2'T'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Globula' +- +'r cluster'#11'ParentColor'#8#0#0#6'TLabel'#6'lblPNe'#4'Left'#2#16#6'Height' +- +#2#14#3'Top'#2'h'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Planetary nebu' +- +'la'#11'ParentColor'#8#0#0#6'TLabel'#5'lblDN'#4'Left'#2#16#6'Height'#2#14#3 +- +'Top'#2'|'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#11'Dark nebula'#11'Paren' +- +'tColor'#8#0#0#6'TLabel'#5'lblEN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#144#0 +- +#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#15'Emission nebula'#11'ParentColor' +- +#8#0#0#6'TLabel'#5'lblRN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#164#0#5'Width' +- +#2'{'#8'AutoSize'#8#7'Caption'#6#17'Reflection nebula'#11'ParentColor'#8#0#0 +- +#6'TShape'#5'shpRN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#3#164#0#5'Width'#2 +- +'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpEN'#4'Left'#3#139#0 +- +#6'Height'#2#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouse' +- +'Up'#0#0#6'TShape'#5'shpDN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'|'#5'Wid' +- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpPNe'#4'Left' +- +#3#139#0#6'Height'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSO' +- +'MouseUp'#0#0#6'TShape'#6'shpGCl'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'T' +- +#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpOCl'#4 +- +'Left'#3#139#0#6'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9'OnMouseUp'#7#15'Sh' +- +'apeDSOMouseUp'#0#0#6'TLabel'#6'lblGxy'#4'Left'#3#240#0#6'Height'#2#14#3'Top' +- +#2'@'#5'Width'#3#131#0#8'AutoSize'#8#7'Caption'#6#6'Galaxy'#11'ParentColor'#8 +- +#0#0#6'TLabel'#8'lblGxyCl'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'T'#5'Widt' +- +'h'#3#131#0#8'AutoSize'#8#7'Caption'#6#14'Galaxy cluster'#11'ParentColor'#8#0 +- +#0#6'TLabel'#4'lblQ'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#3 +- +#131#0#8'AutoSize'#8#7'Caption'#6#6'Quasar'#11'ParentColor'#8#0#0#6'TLabel'#5 +- ,'lblGL'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'|'#5'Width'#3#131#0#8'AutoSi' +- +'ze'#8#7'Caption'#6#18'Gravitational lens'#11'ParentColor'#8#0#0#6'TLabel'#5 +- +'lblNE'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#131#0#8'Aut' +- +'oSize'#8#7'Caption'#6#20'Non-existent/unknown'#11'ParentColor'#8#8'WordWrap' +- +#9#0#0#6'TShape'#5'shpNE'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#3#144#0#5'Wid' +- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpGL'#4'Left'#3 +- +'v'#1#6'Height'#2#13#3'Top'#2'|'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMou' +- +'seUp'#0#0#6'TShape'#4'shpQ'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'h'#5'Wid' +- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#8'shpGxyCl'#4'Lef' +- +'t'#3'v'#1#6'Height'#2#13#3'Top'#2'T'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeD' +- +'SOMouseUp'#0#0#6'TShape'#6'shpGxy'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'@' +- +#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#10'lblDSOTyp' +- +'e'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'x'#8'AutoSize'#8#7 +- +'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Tra' +- +'nsparent'#8#0#0#6'TLabel'#12'lblDSOColour'#4'Left'#3'v'#1#6'Height'#2#14#3 ++ +'Shape'#7#8'stSquare'#0#0#0#6'TPanel'#3'bg4'#4'Left'#2'!'#6'Height'#2'&'#3'T' ++ +'op'#2'p'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11 ++ +'ParentColor'#8#8'TabOrder'#2#1#0#6'TShape'#7'Shape26'#3'Tag'#2#20#4'Left'#2 ++ +#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5 ++ +'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape27'#3'Tag'#2#21#4'Left'#2'W'#6'He' ++ +'ight'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' ++ +#7#8'stCircle'#0#0#6'TShape'#7'Shape28'#3'Tag'#2#22#4'Left'#3#214#0#6'Height' ++ +#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8 ++ +'stSquare'#0#0#6'TShape'#7'Shape25'#3'Tag'#2#19#4'Left'#3#21#1#6'Height'#2#30 ++ +#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSqu' ++ +'are'#0#0#6'TShape'#7'Shape13'#3'Tag'#2#14#4'Left'#3#150#0#6'Height'#2#30#3 ++ +'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhit' ++ +'e'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0 ++ +#0#6'TShape'#7'Shape17'#3'Tag'#2#18#4'Left'#3'U'#1#6'Height'#2#30#3'Top'#2#4 ++ +#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.' ++ +'Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#0#9'T' ++ +'GroupBox'#9'GroupBox6'#4'Left'#2#29#6'Height'#3#168#0#3'Top'#3'5'#1#5'Width' ++ +#3#145#1#7'Caption'#6#5'Theme'#12'ClientHeight'#3#153#0#11'ClientWidth'#3#141 ++ +#1#8'TabOrder'#2#3#0#9'TComboBox'#9'ThemeList'#4'Left'#2'e'#6'Height'#2#23#3 ++ +'Top'#2#1#5'Width'#3#164#0#10'ItemHeight'#2#0#8'OnSelect'#7#15'ThemeListChan' ++ +'ge'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'NightButton'#4'Left'#3#205#0#6'H' ++ +'eight'#2'd'#3'Top'#2')'#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#19'Nigh' ++ +'t Vision Button'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBot' ++ +'tomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildRe' ++ +'size'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'Chi' ++ +'ldSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertic' ++ +'al'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopT' ++ +'oBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'Clien' ++ +'tWidth'#3#176#0#13'Items.Strings'#1#6#14'Normal (color)'#6#3'Red'#6#4'Blue' ++ +#6#5'Green'#0#7'OnClick'#7#16'NightButtonClick'#8'TabOrder'#2#2#0#0#11'TRadi' ++ ,'oGroup'#14'StandardButton'#4'Left'#2#5#6'Height'#2'd'#3'Top'#2')'#5'Width'#3 ++ +#180#0#8'AutoFill'#9#7'Caption'#6#14'Default Button'#28'ChildSizing.LeftRigh' ++ +'tSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHo' ++ +'rizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7 ++ +#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScale' ++ +'Childs'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.' ++ +'Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine' ++ +#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#176#0#13'Items.Strings'#1#6#14 ++ +'Normal (color)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnClick'#7#19'StandardBut' ++ +'tonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupBox7'#4'Left'#2' '#6'He' ++ +'ight'#2'T'#3'Top'#3#221#0#5'Width'#3#146#1#7'Caption'#6#14'Standard Color' ++ +#12'ClientHeight'#2'E'#11'ClientWidth'#3#142#1#8'TabOrder'#2#4#0#7'TButton' ++ +#15'BtnDefaultColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#20'BtnD' ++ +'efaultColorClick'#8'TabOrder'#2#0#0#0#7'TButton'#11'BtnRedColor'#4'Left'#3 ++ +#251#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25'BorderSpacing.InnerBorder' ++ +#2#4#7'Caption'#6#3'Red'#7'OnClick'#7#16'BtnRedColorClick'#8'TabOrder'#2#1#0 ++ +#0#7'TButton'#10'BtnWBColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2''''#5'Width' ++ +#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'White on Black'#7 ++ +'OnClick'#7#15'BtnWBColorClick'#8'TabOrder'#2#2#0#0#7'TButton'#10'BtnBWColor' ++ +#4'Left'#3#191#0#6'Height'#2#25#3'Top'#2''''#5'Width'#3#164#0#25'BorderSpaci' ++ +'ng.InnerBorder'#2#4#7'Caption'#6#14'Black on White'#7'OnClick'#7#15'BtnBWCo' ++ +'lorClick'#8'TabOrder'#2#3#0#0#7'TButton'#7'Button8'#4'Left'#3#129#0#6'Heigh' ++ +'t'#2#25#3'Top'#2#7#5'Width'#2'h'#7'Caption'#6#6'Pastel'#7'OnClick'#7#12'But' ++ +'ton8Click'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#15'De' ++ +'ep-sky colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0#6'TLabel' ++ +#13'lblDSOCScheme'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#28#5'Width'#3#143#0#7 ++ +'Caption'#6#28'Use a preset colour scheme :'#11'ParentColor'#8#0#0#9'TGroupB' ++ +'ox'#15'gbDSOCOverrides'#4'Left'#2#253#6'Height'#3#209#0#3'Top'#2'K'#5'Width' ++ +#3#253#1#7'Caption'#6'! Choose colours for object type '#12'ClientHeight'#3 ++ +#194#0#11'ClientWidth'#3#249#1#8'TabOrder'#2#0#0#6'TLabel'#6'lblAst'#4'Left' ++ +#2#16#6'Height'#2#14#3'Top'#2','#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#8 ++ +'Asterism'#11'ParentColor'#8#0#0#6'TShape'#6'shpAst'#4'Left'#3#139#0#6'Heigh' ++ +'t'#2#13#3'Top'#2','#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6 ++ +'TLabel'#5'lblSN'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2','#5'Width'#3#131#0 ++ +#8'AutoSize'#8#7'Caption'#6#17'Supernova remnant'#11'ParentColor'#8#0#0#6'TS' ++ +'hape'#5'shpSN'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2','#5'Width'#2'!'#9'On' ++ +'MouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#6'lblOCl'#4'Left'#2#16#6'Heigh' ++ +'t'#2#14#3'Top'#2'@'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#12'Open cluste' ++ +'r'#11'ParentColor'#8#0#0#6'TLabel'#6'lblGCl'#4'Left'#2#16#6'Height'#2#14#3 ++ +'Top'#2'T'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Globular cluster'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#6'lblPNe'#4'Left'#2#16#6'Height'#2#14#3'Top'#2 ++ +'h'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Planetary nebula'#11'ParentC' ++ +'olor'#8#0#0#6'TLabel'#5'lblDN'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|'#5'Wi' ++ +'dth'#2'{'#8'AutoSize'#8#7'Caption'#6#11'Dark nebula'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#5'lblEN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#144#0#5'Width'#2'{'#8 ++ +'AutoSize'#8#7'Caption'#6#15'Emission nebula'#11'ParentColor'#8#0#0#6'TLabel' ++ +#5'lblRN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#164#0#5'Width'#2'{'#8'AutoSiz' ++ +'e'#8#7'Caption'#6#17'Reflection nebula'#11'ParentColor'#8#0#0#6'TShape'#5's' ++ +'hpRN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#3#164#0#5'Width'#2'!'#9'OnMouse' ++ +'Up'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpEN'#4'Left'#3#139#0#6'Height'#2 ++ +#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TS' ++ +'hape'#5'shpDN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'|'#5'Width'#2'!'#9'O' ++ +'nMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpPNe'#4'Left'#3#139#0#6'H' ++ +'eight'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0 ++ +#6'TShape'#6'shpGCl'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'T'#5'Width'#2'!' ++ +#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpOCl'#4'Left'#3#139#0#6 ++ +'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0 ++ +#0#6'TLabel'#6'lblGxy'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'@'#5'Width'#3 ++ +#131#0#8'AutoSize'#8#7'Caption'#6#6'Galaxy'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'lblGxyCl'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'T'#5'Width'#3#131#0#8'Aut' ++ +'oSize'#8#7'Caption'#6#14'Galaxy cluster'#11'ParentColor'#8#0#0#6'TLabel'#4 ++ +'lblQ'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#3#131#0#8'AutoSiz' ++ +'e'#8#7'Caption'#6#6'Quasar'#11'ParentColor'#8#0#0#6'TLabel'#5'lblGL'#4'Left' ++ ,#3#240#0#6'Height'#2#14#3'Top'#2'|'#5'Width'#3#131#0#8'AutoSize'#8#7'Caption' ++ +#6#18'Gravitational lens'#11'ParentColor'#8#0#0#6'TLabel'#5'lblNE'#4'Left'#3 ++ +#240#0#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#131#0#8'AutoSize'#8#7'Captio' ++ +'n'#6#20'Non-existent/unknown'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TShape' ++ +#5'shpNE'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMou' ++ +'seUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpGL'#4'Left'#3'v'#1#6'Height' ++ +#2#13#3'Top'#2'|'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TSh' ++ +'ape'#4'shpQ'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMo' ++ +'useUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#8'shpGxyCl'#4'Left'#3'v'#1#6'Hei' ++ +'ght'#2#13#3'Top'#2'T'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6 ++ +'TShape'#6'shpGxy'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9 ++ +'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#10'lblDSOType'#4'Left'#3#240 ++ +#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'x'#8'AutoSize'#8#7'Caption'#6#11'Ob' ++ +'ject type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6 ++ +'TLabel'#12'lblDSOColour'#4'Left'#3'v'#1#6'Height'#2#14#3'Top'#2#24#5'Width' ++ +#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colour'#5'Color'#7#9'clBtnFace'#11'Parent' ++ +'Color'#8#11'Transparent'#8#0#0#6'TLabel'#16'lblDSOColourFill'#4'Left'#3#174 ++ +#1#6'Height'#2#14#3'Top'#2#24#5'Width'#2'A'#8'AutoSize'#8#7'Caption'#6#5'Fil' ++ +'l?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabe' ++ +'l'#6'Label7'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#24#5'Width'#2's'#8'AutoSi' ++ +'ze'#8#7'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8 ++ +#11'Transparent'#8#0#0#6'TLabel'#7'Label12'#4'Left'#3#139#0#6'Height'#2#14#3 + +'Top'#2#24#5'Width'#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colour'#5'Color'#7#9'c' +- +'lBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#16'lblDSOColour' +- +'Fill'#4'Left'#3#174#1#6'Height'#2#14#3'Top'#2#24#5'Width'#2'A'#8'AutoSize'#8 +- +#7'Caption'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transpar' +- +'ent'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#24#5'Wi' +- +'dth'#2's'#8'AutoSize'#8#7'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace' +- +#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#7'Label12'#4'Left'#3#139#0 +- +#6'Height'#2#14#3'Top'#2#24#5'Width'#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colou' +- +'r'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel' +- +#7'Label13'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'*'#8'AutoS' +- +'ize'#8#7'Caption'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'T' +- +'ransparent'#8#0#0#9'TCheckBox'#10'chkFillAst'#4'Left'#3#194#0#6'Height'#2#21 +- +#3'Top'#2')'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#15'chkFillAstClick'#8'T' +- +'abOrder'#2#0#7'Visible'#8#0#0#9'TCheckBox'#10'chkFillOCl'#4'Left'#3#195#0#6 +- +'Height'#2#21#3'Top'#2'='#5'Width'#2#23#7'OnClick'#7#15'chkFillOClClick'#8'T' +- +'abOrder'#2#1#0#0#9'TCheckBox'#10'chkFillGCl'#4'Left'#3#195#0#6'Height'#2#21 +- +#3'Top'#2'Q'#5'Width'#2#23#7'OnClick'#7#15'chkFillGClClick'#8'TabOrder'#2#2#0 +- +#0#9'TCheckBox'#10'chkFillPNe'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'e'#5 +- +'Width'#2#23#7'OnClick'#7#15'chkFillPNeClick'#8'TabOrder'#2#3#0#0#9'TCheckBo' +- +'x'#9'chkFillDN'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7 +- +'OnClick'#7#14'chkFillDNClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#9'chkFillEN' +- +#4'Left'#3#195#0#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'OnClick'#7#14 +- +'chkFillENClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#9'chkFillRN'#4'Left'#3#195 +- +#0#6'Height'#2#21#3'Top'#3#161#0#5'Width'#2#23#7'OnClick'#7#14'chkFillRNClic' +- +'k'#8'TabOrder'#2#6#0#0#9'TCheckBox'#9'chkFillSN'#4'Left'#3#174#1#6'Height'#2 +- +#21#3'Top'#2')'#5'Width'#2#23#7'OnClick'#7#14'chkFillSNClick'#8'TabOrder'#2#7 +- +#0#0#9'TCheckBox'#10'chkFillGxy'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'='#5 +- +'Width'#2#23#7'OnClick'#7#15'chkFillGxyClick'#8'TabOrder'#2#8#0#0#9'TCheckBo' +- +'x'#12'chkFillGxyCl'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'Q'#5'Width'#2#23 +- +#7'OnClick'#7#17'chkFillGxyClClick'#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'chkFi' +- +'llQ'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'OnClick'#7 +- +#13'chkFillQClick'#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'chkFillGL'#4'Left'#3 +- +#174#1#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14 +- +'chkFillGLClick'#8'TabOrder'#2#11#7'Visible'#8#0#0#9'TCheckBox'#9'chkFillNE' +- +#4'Left'#3#174#1#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'Enabled'#8#7 +- +'OnClick'#7#14'chkFillNEClick'#8'TabOrder'#2#12#7'Visible'#8#0#0#0#9'TGroupB' +- +'ox'#9'GroupBox2'#4'Left'#2#5#6'Height'#3#163#0#3'Top'#3'*'#1#5'Width'#3#254 +- +#1#7'Caption'#6#26' Adjust colour brightness '#12'ClientHeight'#3#148#0#11'C' +- +'lientWidth'#3#250#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2#24#6'He' +- +'ight'#2#14#3'Top'#2#20#5'Width'#2'v'#7'Caption'#6#22'Low surface brightness' +- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#248#0#6'Height'#2#14#3 +- +'Top'#2#20#5'Width'#2'u'#7'Caption'#6#23'High surface brightness'#11'ParentC' +- +'olor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'E'#5'Wi' +- +'dth'#2'"'#7'Caption'#6#7'Fainter'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' +- +#4'Left'#3#139#1#6'Height'#2#14#3'Top'#2'E'#5'Width'#2'M'#7'Anchors'#11#5'ak' +- +'Top'#6'akLeft'#7'akRight'#0#7'Caption'#6#10'Brighter '#11'ParentColor'#8#0 +- +#0#9'TTrackBar'#12'NebBrightBar'#4'Left'#3#232#0#6'Height'#2'!'#3'Top'#2'#'#5 +- +'Width'#3#217#0#9'Frequency'#2#26#3'Max'#3#255#0#8'OnChange'#7#18'NebBrightB' +- +'arChange'#8'PageSize'#2#26#8'Position'#2#0#8'TabOrder'#2#1#0#0#9'TTrackBar' +- ,#10'NebGrayBar'#4'Left'#2#8#6'Height'#2'!'#3'Top'#2'#'#5'Width'#3#209#0#9'Fr' +- +'equency'#2#26#3'Max'#3#255#0#8'OnChange'#7#16'NebGrayBarChange'#8'PageSize' +- +#2#26#8'Position'#2#0#8'TabOrder'#2#0#0#0#7'TButton'#17'DefNebColorButton'#4 +- +'Left'#3'v'#1#6'Height'#2#25#3'Top'#2'f'#5'Width'#2'K'#25'BorderSpacing.Inne' +- +'rBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#22'DefNebColorButtonClick' +- +#8'TabOrder'#2#3#0#0#6'TPanel'#13'NebColorPanel'#4'Left'#2'p'#6'Height'#2')' +- +#3'Top'#2']'#5'Width'#3#233#0#12'ClientHeight'#2')'#11'ClientWidth'#3#233#0#8 +- +'TabOrder'#2#2#0#6'TShape'#7'Shape29'#4'Left'#2' '#6'Height'#2'!'#3'Top'#2#4 +- +#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#6'TShape'#7'Shape30'#4'Left'#3#136 +- +#0#6'Height'#2'!'#3'Top'#2#4#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#0#0#9 +- +'TComboBox'#13'lstDSOCScheme'#4'Left'#3#253#0#6'Height'#2#24#3'Top'#2#21#5'W' +- +'idth'#3#168#0#10'ItemHeight'#2#0#13'Items.Strings'#1#6#14'CdC v2 default'#6 +- +#14'CdC v3 default'#6#13'Printed atlas'#6#5'Green'#0#8'OnChange'#7#19'lstDSO' +- +'CSchemeChange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#9'TTabSh' +- +'eet'#5'Page4'#7'Caption'#6#10'Sky colour'#12'ClientHeight'#3#248#1#11'Clien' +- +'tWidth'#3#253#1#0#6'TPanel'#6'Panel2'#4'Left'#2#24#6'Height'#3#147#0#3'Top' +- +#3#142#0#5'Width'#3#160#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#147#0 +- +#11'ClientWidth'#3#160#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label205'#4'Left'#2'v' +- +#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'%'#9'Alignment'#7#8'taCenter'#7'Capti' +- +'on'#6#8'Twilight'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label202' +- +#4'Left'#2#11#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'-'#9'Alignment'#7#8'taCe' +- +'nter'#7'Caption'#6#8'Day Time'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' +- +#8'Label208'#4'Left'#3#13#1#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'g'#9'Align' +- +'ment'#7#8'taCenter'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#21'Ast' +- +'ronomical Twilight'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel'#6'Panel6' +- +#4'Left'#2#8#6'Height'#2'a'#3'Top'#2#8#5'Width'#3'l'#1#12'ClientHeight'#2'a' +- +#11'ClientWidth'#3'l'#1#8'TabOrder'#2#0#0#6'TShape'#7'Shape18'#3'Tag'#2#1#4 +- +'Left'#2#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' +- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape19'#3'Tag'#2#2#4'Le' +- +'ft'#2'4'#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' +- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape20'#3'Tag'#2#3#4'Le' +- +'ft'#2'h'#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' +- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape21'#3'Tag'#2#4#4'Le' +- +'ft'#3#156#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilv' +- +'er'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape22'#3'Tag'#2#5#4 +- +'Left'#3#208#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSi' +- +'lver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape23'#3'Tag'#2#6 +- +#4'Left'#3#4#1#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSi' +- +'lver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape24'#3'Tag'#2#7 +- +#4'Left'#3'8'#1#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clS' +- +'ilver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#0#0#6'TPanel'#6'Panel3'#4'Lef' +- +'t'#2#30#6'Height'#2'x'#3'Top'#3'&'#1#5'Width'#3#176#0#10'BevelOuter'#7#6'bv' +- +'None'#12'ClientHeight'#2'x'#11'ClientWidth'#3#176#0#8'TabOrder'#2#2#0#6'TSh' +- +'ape'#6'Shape8'#4'Left'#2#5#6'Height'#2'I'#3'Top'#2#8#5'Width'#3#139#0#9'OnM' +- +'ouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#8#6'Height' +- +#2#14#3'Top'#2'`'#5'Width'#2'M'#7'Caption'#6#16'Fixed sky color '#11'ParentC' +- +'olor'#8#0#0#0#11'TRadioGroup'#11'skycolorbox'#4'Left'#2#24#6'Height'#2'Y'#3 +- +'Top'#2'0'#5'Width'#3'l'#1#8'AutoFill'#9#7'Caption'#6#9'Sky Color'#28'ChildS' +- +'izing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSi' +- +'zing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlar' +- +'geVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal' +- +#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18 +- +'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Cont' +- +'rolsPerLine'#2#2#12'ClientHeight'#2'J'#11'ClientWidth'#3'h'#1#7'Columns'#2#2 +- +#13'Items.Strings'#1#6#11'Fixed Black'#6#9'Automatic'#0#7'OnClick'#7#16'skyc' +- +'olorboxClick'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button3'#4'Left'#3#245#0#6'H' +- +'eight'#2#25#3'Top'#3'E'#1#5'Width'#2'~'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#13'Default color'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#3#0 +- +#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Lines'#12'ClientHeight'#3#248#1#11 +- +'ClientWidth'#3#253#1#0#9'TCheckBox'#6'EqGrid'#4'Left'#2#16#6'Height'#2#21#3 +- +'Top'#2'e'#5'Width'#2't'#7'Caption'#6#19'Add Equatorial Grid'#7'OnClick'#7#11 +- +'EqGridClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#5'CGrid'#4'Left'#2#16#6'Heigh' +- +'t'#2#21#3'Top'#2' '#5'Width'#3#130#0#7'Caption'#6#20'Show Coordinate Grid'#7 +- +'OnClick'#7#10'CGridClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#8'ecliptic'#4'Le' +- ,'ft'#3#210#0#6'Height'#2#21#3'Top'#2' '#5'Width'#2'X'#7'Caption'#6#13'Show E' +- +'cliptic'#7'OnClick'#7#13'eclipticClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#8 +- +'galactic'#4'Left'#3#210#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#3#134#0#7'Cap' +- +'tion'#6#21'Show Galactic Equator'#7'OnClick'#7#13'galacticClick'#8'TabOrder' +- +#2#7#0#0#9'TCheckBox'#7'GridNum'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Wi' +- +'dth'#2'h'#7'Caption'#6#15'Show Grid Label'#7'OnClick'#7#12'GridNumClick'#8 +- +'TabOrder'#2#4#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#3#140#0#3 +- +'Top'#3#157#0#5'Width'#3#17#1#7'Caption'#6#21'Constellation Figures'#12'Clie' +- +'ntHeight'#2'}'#11'ClientWidth'#3#13#1#8'TabOrder'#2#9#0#6'TLabel'#8'Label13' +- +'2'#4'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#153#0#7'Caption'#6'!C' +- +'onstellation Figure File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Cons' +- +'tl'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#3#149#0#7'Caption'#6#25 +- +'Show Constellation Figure'#7'OnClick'#7#11'ConstlClick'#8'TabOrder'#2#0#0#0 +- +#13'TFileNameEdit'#10'ConstlFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5 +- +'Width'#3#208#0#13'DialogOptions'#11#0#6'Filter'#6#26'Constellation Figure|*' +- +'.cln'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumG' +- +'lyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#16'ConstlFileChan' +- +'ge'#0#0#9'TComboBox'#7'CFStyle'#4'Left'#2#29#6'Height'#2#23#3'Top'#2' '#5'W' +- +'idth'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Lin' +- +'e'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'C' +- +'FStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawF' +- +'ixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#0#9'TGroupBox'#9'GroupBox3'#4'L' +- +'eft'#2#8#6'Height'#3#140#0#3'Top'#3'-'#1#5'Width'#3#17#1#7'Caption'#6#24'Co' +- +'nstellation Boundaries'#12'ClientHeight'#2'}'#11'ClientWidth'#3#13#1#8'TabO' +- +'rder'#2#11#0#6'TLabel'#7'Label72'#4'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5 +- +'Width'#3#170#0#7'Caption'#6'#Constellation Boundary File Name : '#11'Parent' +- +'Color'#8#0#0#9'TCheckBox'#6'Constb'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5 +- +'Width'#3#166#0#7'Caption'#6#27'Show Constellation Boundary'#7'OnClick'#7#11 +- +'ConstbClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#10'ConstbFile'#4'Left'#2 +- +#29#6'Height'#2#21#3'Top'#2'Z'#5'Width'#3#208#0#13'DialogOptions'#11#0#6'Fil' +- +'ter'#6#28'Constellation Boundary|*.cby'#11'FilterIndex'#2#0#15'HideDirector' +- +'ies'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 +- +#2#8'OnChange'#7#16'ConstbFileChange'#0#0#9'TComboBox'#7'CBStyle'#4'Left'#2 +- +#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex' +- +#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Das' +- +'h Dot Dot'#0#8'OnChange'#7#13'CBStyleChange'#10'OnDrawItem'#7#13'StyleDrawI' +- +'tem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#0 +- +#9'TGroupBox'#9'GroupBox4'#4'Left'#3'%'#1#6'Height'#3#140#0#3'Top'#3#157#0#5 +- +'Width'#3#185#0#7'Caption'#6#9'Milky Way'#12'ClientHeight'#2'}'#11'ClientWid' +- +'th'#3#181#0#8'TabOrder'#2#10#0#9'TCheckBox'#8'milkyway'#4'Left'#2#8#6'Heigh' +- +'t'#2#21#3'Top'#2#24#5'Width'#2'g'#7'Caption'#6#14'Show Milky Way'#7'OnClick' +- +#7#13'milkywayClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'fillmilkyway'#4'Lef' +- +'t'#2#8#6'Height'#2#21#3'Top'#2'8'#5'Width'#2'V'#7'Caption'#6#14'Fill Milky ' +- +'Way'#7'OnClick'#7#17'fillmilkywayClick'#8'TabOrder'#2#1#0#0#0#9'TComboBox'#9 +- +'GridStyle'#4'Left'#2''''#6'Height'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'ItemHe' +- +'ight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot' +- +#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#15'GridStyleChange'#10'OnD' +- +'rawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1 +- +#4'Text'#6#4'Line'#0#0#9'TComboBox'#13'EclipticStyle'#4'Left'#3#230#0#6'Heig' +- +'ht'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13 +- +'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot D' +- +'ot'#0#8'OnChange'#7#19'EclipticStyleChange'#10'OnDrawItem'#7#13'StyleDrawIt' +- +'em'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#3#4'Text'#6#4'Line'#0#0#9 +- +'TComboBox'#11'EqGridStyle'#4'Left'#2''''#6'Height'#2#23#3'Top'#2'}'#5'Width' +- +#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4 +- +'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#17'EqGridSt' +- +'yleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixe' +- +'d'#8'TabOrder'#2#6#4'Text'#6#4'Line'#0#0#9'TComboBox'#10'GalEqStyle'#4'Left' +- +#3#230#0#6'Height'#2#23#3'Top'#2'}'#5'Width'#2'd'#10'ItemHeight'#2#16#9'Item' +- +'Index'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6 +- +#12'Dash Dot Dot'#0#8'OnChange'#7#16'GalEqStyleChange'#10'OnDrawItem'#7#13'S' +- +'tyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#8#4'Text'#6#4'L' +- +'ine'#0#0#9'TGroupBox'#9'GroupBox8'#4'Left'#3'%'#1#6'Height'#3#140#0#3'Top'#3 +- +'-'#1#5'Width'#3#185#0#7'Caption'#6#13'Proper Motion'#12'ClientHeight'#2'}' +- ,#11'ClientWidth'#3#181#0#8'TabOrder'#2#12#0#6'TLabel'#7'Label68'#4'Left'#2'[' +- +#6'Height'#2#14#3'Top'#2'_'#5'Width'#2#29#7'Caption'#6#5'years'#11'ParentCol' +- +'or'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2'$'#6'Height'#2'?'#3'Top'#2#15#5'Wid' +- +'th'#3#142#0#8'AutoSize'#8#7'Caption'#6':Draw a line that represent the prop' +- +'er motion for the next '#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#9 +- +'DrawPmBox'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#2#23#7'OnClick'#7 +- +#14'DrawPmBoxClick'#8'TabOrder'#2#0#0#0#9'TLongEdit'#7'DrawPMy'#4'Left'#2#22 +- +#6'Height'#2#21#4'Hint'#6#13'-99999..99999'#3'Top'#2'Z'#5'Width'#2'8'#14'Par' +- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#13'DrawPMyChange' +- +#5'Value'#2#0#8'MinValue'#4'ay'#254#255#8'MaxValue'#4#159#134#1#0#0#0#0#0#9 +- +'TTabSheet'#5'Page6'#7'Caption'#6#6'Labels'#12'ClientHeight'#3#248#1#11'Clie' +- +'ntWidth'#3#253#1#0#11'TRadioGroup'#8'MagLabel'#4'Left'#2#16#6'Height'#2'Q'#3 +- +'Top'#3']'#1#5'Width'#3#221#0#8'AutoFill'#9#7'Caption'#6#10'Star Label'#28'C' +- +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' +- +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' +- +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' +- +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' +- +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' +- +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#217#0#7'Col' +- +'umns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Name'#6#11'Common Name'#6 +- +#9'Magnitude'#0#7'OnClick'#7#13'MagLabelClick'#8'TabOrder'#2#3#0#0#11'TRadio' +- +'Group'#10'constlabel'#4'Left'#3#245#0#6'Height'#2'Q'#3'Top'#3']'#1#5'Width' +- +#3#220#0#8'AutoFill'#9#7'Caption'#6#19'Constellation Label'#28'ChildSizing.L' +- +'eftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.En' +- +'largeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVerti' +- +'cal'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'c' +- +'rsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Child' +- +'Sizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsP' +- +'erLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#216#0#7'Columns'#2#2#9 +- +'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Full Name'#6#12'Abbreviation'#6#10'L' +- +'atin Name'#0#7'OnClick'#7#15'constlabelClick'#8'TabOrder'#2#4#0#0#9'TCheckB' +- +'ox'#12'Showlabelall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'1'#5'Width'#2'k'#7 +- +'Caption'#6#18'Display the labels'#7'OnClick'#7#17'ShowlabelallClick'#8'TabO' +- +'rder'#2#0#0#0#9'TCheckBox'#13'ShowChartInfo'#4'Left'#2#16#6'Height'#2#21#3 +- +'Top'#2#5#5'Width'#3#239#0#7'Caption'#6'.Display the chart information in th' +- +'e menu bar.'#7'OnClick'#7#18'ShowChartInfoClick'#8'TabOrder'#2#1#0#0#9'TGro' +- +'upBox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#9#1#3'Top'#2'M'#5'Width'#3#221 +- +#1#7'Caption'#6#12'Label Object'#12'ClientHeight'#3#250#0#11'ClientWidth'#3 +- +#217#1#8'TabOrder'#2#2#0#6'TLabel'#8'Label237'#4'Left'#3#227#0#6'Height'#2'!' +- +#3'Top'#2#15#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#20'Magnitude differenc' +- +'e'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label252'#4'Left'#3':'#1 +- +#6'Height'#2#14#3'Top'#2' '#5'Width'#2#26#7'Caption'#6#5'Color'#11'ParentCol' +- +'or'#8#0#0#6'TLabel'#8'Label240'#4'Left'#3'9'#1#6'Height'#2#14#3'Top'#2#16#5 +- +'Width'#2#27#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#6'TShape'#14'labelc' +- +'olorStar'#3'Tag'#2#1#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'6'#5'Width'#2'!' +- +#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorVar'#3'Tag' +- +#2#2#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'N'#5'Width'#2'!'#9'OnMouseUp'#7 +- +#17'labelcolorMouseUp'#0#0#6'TShape'#14'labelcolorMult'#3'Tag'#2#3#4'Left'#3 +- +'6'#1#6'Height'#2#17#3'Top'#2'f'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorM' +- +'ouseUp'#0#0#6'TShape'#13'labelcolorNeb'#3'Tag'#2#4#4'Left'#3'6'#1#6'Height' +- +#2#17#3'Top'#2'~'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'T' +- +'Shape'#13'labelcolorSol'#3'Tag'#2#5#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3 +- +#150#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#15'l' +- +'abelcolorConst'#3'Tag'#2#6#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#174#0#5'W' +- +'idth'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#14'labelcolor' +- +'Misc'#3'Tag'#2#7#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#198#0#5'Width'#2'!' +- +#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#19'labelcolorchartinfo'#3 +- +'Tag'#2#8#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#222#0#5'Width'#2'!'#9'OnMou' +- +'seUp'#7#17'labelcolorMouseUp'#0#0#6'TLabel'#8'Label255'#4'Left'#3'n'#1#6'He' +- +'ight'#2#14#3'Top'#2' '#5'Width'#2#22#7'Caption'#6#4'Size'#11'ParentColor'#8 +- +#0#0#9'TCheckBox'#13'showlabelStar'#3'Tag'#2#1#4'Left'#2#16#6'Height'#2#21#3 +- +'Top'#2'8'#5'Width'#2'1'#7'Caption'#6#5'Stars'#7'OnClick'#7#14'showlabelClic' +- +'k'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'showlabelVar'#3'Tag'#2#2#4'Left'#2#16 +- +#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'['#7'Caption'#6#14'Variable Stars'#7 +- ,'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#13'showlabel' +- +'Mult'#3'Tag'#2#3#4'Left'#2#16#6'Height'#2#21#3'Top'#2'h'#5'Width'#2'W'#7'Ca' +- +'ption'#6#14'Multiple Stars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#2 +- +#0#0#9'TCheckBox'#12'showlabelNeb'#3'Tag'#2#4#4'Left'#2#16#6'Height'#2#21#3 +- +'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#14'showlabe' +- +'lClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#12'showlabelSol'#3'Tag'#2#5#4'Left' +- +#2#16#6'Height'#2#21#3'Top'#3#152#0#5'Width'#2'W'#7'Caption'#6#12'Solar Syst' +- +'em'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#14'sho' +- +'wlabelConst'#3'Tag'#2#6#4'Left'#2#16#6'Height'#2#21#3'Top'#3#176#0#5'Width' +- +#2'q'#7'Caption'#6#18'Constellation name'#7'OnClick'#7#14'showlabelClick'#8 +- +'TabOrder'#2#5#0#0#9'TCheckBox'#13'showlabelMisc'#3'Tag'#2#7#4'Left'#2#16#6 +- +'Height'#2#21#3'Top'#3#200#0#5'Width'#2'Q'#7'Caption'#6#12'Other labels'#7'O' +- +'nClick'#7#14'showlabelClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#18'ShowLabelC' +- +'hartInfo'#3'Tag'#2#8#4'Left'#2#16#6'Height'#2#21#3'Top'#3#224#0#5'Width'#2 +- +'i'#7'Caption'#6#17'Chart Information'#7'OnClick'#7#14'showlabelClick'#8'Tab' +- +'Order'#2#7#0#0#5'TEdit'#5'Edit1'#3'Tag'#2#1#4'Left'#3#227#0#6'Height'#2#21#3 +- +'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#8#0 +- +#0#7'TUpDown'#12'labelmagStar'#3'Tag'#2#1#4'Left'#3#9#1#6'Height'#2#21#3'Top' +- +#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit1'#3'Min'#2#0#3'Max'#2#10#8'Positio' +- +'n'#2#1#8'TabOrder'#2#9#4'Wrap'#8#0#0#5'TEdit'#5'Edit2'#3'Tag'#2#2#4'Left'#3 +- +#227#0#6'Height'#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange'#7#15'labelmagCha' +- +'nged'#8'TabOrder'#2#10#0#0#7'TUpDown'#11'labelmagVar'#3'Tag'#2#2#4'Left'#3#9 +- +#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associate'#7#5'Edit2'#3'Min'#2 +- +#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#11#4'Wrap'#8#0#0#7'TUpDown'#12 +- +'labelmagMult'#3'Tag'#2#3#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2 +- +#17#9'Associate'#7#5'Edit3'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrde' +- +'r'#2#12#4'Wrap'#8#0#0#5'TEdit'#5'Edit3'#3'Tag'#2#3#4'Left'#3#227#0#6'Height' +- +#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder' +- +#2#13#0#0#7'TUpDown'#11'labelmagNeb'#3'Tag'#2#4#4'Left'#3#9#1#6'Height'#2#21 +- +#3'Top'#2'|'#5'Width'#2#17#9'Associate'#7#5'Edit4'#3'Min'#2#0#3'Max'#2#10#8 +- +'Position'#2#1#8'TabOrder'#2#14#4'Wrap'#8#0#0#5'TEdit'#5'Edit4'#3'Tag'#2#4#4 +- +'Left'#3#227#0#6'Height'#2#21#3'Top'#2'|'#5'Width'#2'&'#8'OnChange'#7#15'lab' +- +'elmagChanged'#8'TabOrder'#2#15#0#0#7'TUpDown'#11'labelmagSol'#3'Tag'#2#5#4 +- +'Left'#3#9#1#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2#17#9'Associate'#7#5'Ed' +- +'it5'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#16#4'Wrap'#8#0#0#5 +- +'TEdit'#5'Edit5'#3'Tag'#2#5#4'Left'#3#227#0#6'Height'#2#21#3'Top'#3#148#0#5 +- +'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#17#0#0#5'TEdit' +- +#5'Edit6'#3'Tag'#2#1#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2'&' +- +#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#18#0#0#7'TUpDown'#13'label' +- +'SizeStar'#3'Tag'#2#1#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2 +- +#17#9'Associate'#7#5'Edit6'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrde' +- +'r'#2#19#4'Wrap'#8#0#0#5'TEdit'#5'Edit7'#3'Tag'#2#2#4'Left'#3'k'#1#6'Height' +- +#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrde' +- +'r'#2#20#0#0#7'TUpDown'#12'labelsizeVar'#3'Tag'#2#2#4'Left'#3#145#1#6'Height' +- +#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associate'#7#5'Edit7'#3'Min'#2#4#3'Max'#2 +- +'0'#8'Position'#2#6#8'TabOrder'#2#21#4'Wrap'#8#0#0#5'TEdit'#5'Edit8'#3'Tag'#2 +- +#3#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChange'#7#16 +- +'labelsizeChanged'#8'TabOrder'#2#22#0#0#7'TUpDown'#13'labelsizeMult'#3'Tag'#2 +- +#3#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2#17#9'Associate'#7#5 +- +'Edit8'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#23#4'Wrap'#8#0#0 +- +#5'TEdit'#5'Edit9'#3'Tag'#2#4#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'|'#5'Wi' +- +'dth'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#24#0#0#7'TUpDown' +- +#12'labelsizeNeb'#3'Tag'#2#4#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'|'#5'Wi' +- +'dth'#2#17#9'Associate'#7#5'Edit9'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 +- +'TabOrder'#2#25#4'Wrap'#8#0#0#5'TEdit'#6'Edit10'#3'Tag'#2#5#4'Left'#3'k'#1#6 +- +'Height'#2#21#3'Top'#3#148#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' +- +#8'TabOrder'#2#26#0#0#7'TUpDown'#12'labelsizeSol'#3'Tag'#2#5#4'Left'#3#145#1 +- +#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2#17#9'Associate'#7#6'Edit10'#3'Min' +- +#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#27#4'Wrap'#8#0#0#5'TEdit'#6'E' +- +'dit11'#3'Tag'#2#6#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#172#0#5'Width'#2'&' +- +#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#28#0#0#7'TUpDown'#14'label' +- +'sizeConst'#3'Tag'#2#6#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#172#0#5'Width' +- +#2#17#9'Associate'#7#6'Edit11'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabO' +- +'rder'#2#29#4'Wrap'#8#0#0#5'TEdit'#6'Edit12'#3'Tag'#2#7#4'Left'#3'k'#1#6'Hei' +- ,'ght'#2#21#3'Top'#3#196#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8 +- +'TabOrder'#2#30#0#0#7'TUpDown'#13'labelsizeMisc'#3'Tag'#2#7#4'Left'#3#145#1#6 +- +'Height'#2#21#3'Top'#3#196#0#5'Width'#2#17#9'Associate'#7#6'Edit12'#3'Min'#2 +- +#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#31#4'Wrap'#8#0#0#5'TEdit'#6'Edi' +- +'t13'#3'Tag'#2#8#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#220#0#5'Width'#2'&'#8 +- +'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2' '#0#0#7'TUpDown'#18'labelsi' +- +'zeChartInfo'#3'Tag'#2#8#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#220#0#5'Wid' +- +'th'#2#17#9'Associate'#7#6'Edit13'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 +- +'TabOrder'#2'!'#4'Wrap'#8#0#0#0#9'TCheckBox'#16'DrawAllStarLabel'#4'Left'#2 +- +#26#6'Height'#2#21#3'Top'#3#181#1#5'Width'#3#179#0#7'Caption'#6'#Display lab' +- +'els for all star catalog'#7'OnClick'#7#21'DrawAllStarLabelClick'#8'TabOrder' +- +#2#5#0#0#7'TButton'#7'Button9'#4'Left'#3'e'#1#6'Height'#2#25#3'Top'#3#177#1#5 +- +'Width'#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button9Click'#8'TabOrde' +- +'r'#2#6#0#0#9'TCheckBox'#9'ShowTitle'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#27 +- +#5'Width'#3#141#0#7'Caption'#6#26'Show position in title bar'#7'OnClick'#7#14 +- +'ShowTitleClick'#8'TabOrder'#2#7#0#0#0#9'TTabSheet'#5'Page7'#7'Caption'#6#5 +- +'Fonts'#12'ClientHeight'#3#248#1#11'ClientWidth'#3#253#1#0#6'TBevel'#7'Bevel' +- +'10'#4'Left'#2#8#6'Height'#3'I'#1#3'Top'#2' '#5'Width'#3#137#1#5'Shape'#7#7 +- +'bsFrame'#0#0#6'TLabel'#8'Label121'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'J'#5 +- +'Width'#2'R'#7'Caption'#6#16'Coordinates Grid'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#8'Label122'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'('#5'Width'#2' '#7'Capt' +- +'ion'#6#6'Object'#11'ParentColor'#8#0#0#6'TLabel'#8'Label123'#4'Left'#2#16#6 +- +'Height'#2#14#3'Top'#2's'#5'Width'#2'!'#7'Caption'#6#6'Labels'#11'ParentColo' +- +'r'#8#0#0#6'TLabel'#8'Label124'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#157#0#5 +- +'Width'#2'%'#7'Caption'#6#6'Legend'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' +- +'25'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#198#0#5'Width'#2'R'#7'Caption'#6#18 +- +'Information detail'#11'ParentColor'#8#0#0#6'TLabel'#8'Label126'#4'Left'#2#16 +- +#6'Height'#2#14#3'Top'#3#240#0#5'Width'#2'0'#7'Caption'#6#11'Object list'#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label127'#4'Left'#2#16#6'Height'#2#14#3'Top' +- +#3#26#1#5'Width'#2'C'#7'Caption'#6#14'Printer legend'#11'ParentColor'#8#0#0#6 +- +'TLabel'#8'Label128'#4'Left'#3#192#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2#22 +- +#7'Caption'#6#4'Font'#11'ParentColor'#8#0#0#6'TLabel'#8'Label129'#4'Left'#3 +- +'X'#1#6'Height'#2#14#3'Top'#2'('#5'Width'#2'!'#7'Caption'#6#6'Modify'#11'Par' +- +'entColor'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#3'Tag'#2#1#4'Left'#3'`'#1 +- +#6'Height'#2#22#3'Top'#2'E'#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.D' +- +'ata'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0 +- +#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +'lBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#7'Label13'#4'Le' ++ +'ft'#3#195#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'*'#8'AutoSize'#8#7'Captio' ++ +'n'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0 ++ +#0#9'TCheckBox'#10'chkFillAst'#4'Left'#3#194#0#6'Height'#2#21#3'Top'#2')'#5 ++ +'Width'#2#23#7'Enabled'#8#7'OnClick'#7#15'chkFillAstClick'#8'TabOrder'#2#0#7 ++ +'Visible'#8#0#0#9'TCheckBox'#10'chkFillOCl'#4'Left'#3#195#0#6'Height'#2#21#3 ++ +'Top'#2'='#5'Width'#2#23#7'OnClick'#7#15'chkFillOClClick'#8'TabOrder'#2#1#0#0 ++ +#9'TCheckBox'#10'chkFillGCl'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'Q'#5'Wi' ++ +'dth'#2#23#7'OnClick'#7#15'chkFillGClClick'#8'TabOrder'#2#2#0#0#9'TCheckBox' ++ +#10'chkFillPNe'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'O' ++ +'nClick'#7#15'chkFillPNeClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#9'chkFillDN' ++ +#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7'OnClick'#7#14'ch' ++ +'kFillDNClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#9'chkFillEN'#4'Left'#3#195#0 ++ +#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'OnClick'#7#14'chkFillENClick' ++ +#8'TabOrder'#2#5#0#0#9'TCheckBox'#9'chkFillRN'#4'Left'#3#195#0#6'Height'#2#21 ++ +#3'Top'#3#161#0#5'Width'#2#23#7'OnClick'#7#14'chkFillRNClick'#8'TabOrder'#2#6 ++ +#0#0#9'TCheckBox'#9'chkFillSN'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2')'#5 ++ +'Width'#2#23#7'OnClick'#7#14'chkFillSNClick'#8'TabOrder'#2#7#0#0#9'TCheckBox' ++ +#10'chkFillGxy'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'='#5'Width'#2#23#7'O' ++ +'nClick'#7#15'chkFillGxyClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#12'chkFillGx' ++ +'yCl'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'Q'#5'Width'#2#23#7'OnClick'#7 ++ +#17'chkFillGxyClClick'#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'chkFillQ'#4'Left'#3 ++ +#174#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'OnClick'#7#13'chkFillQClic' ++ +'k'#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'chkFillGL'#4'Left'#3#174#1#6'Height' ++ +#2#21#3'Top'#2'y'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14'chkFillGLClick' ++ +#8'TabOrder'#2#11#7'Visible'#8#0#0#9'TCheckBox'#9'chkFillNE'#4'Left'#3#174#1 ++ +#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14'ch' ++ +'kFillNEClick'#8'TabOrder'#2#12#7'Visible'#8#0#0#0#9'TGroupBox'#9'GroupBox2' ++ +#4'Left'#2#5#6'Height'#3#163#0#3'Top'#3'*'#1#5'Width'#3#254#1#7'Caption'#6#26 ++ +' Adjust colour brightness '#12'ClientHeight'#3#148#0#11'ClientWidth'#3#250#1 ++ +#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2#24#6'Height'#2#14#3'Top'#2 ++ +#20#5'Width'#2'v'#7'Caption'#6#22'Low surface brightness'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#6'Label2'#4'Left'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2 ++ +'u'#7'Caption'#6#23'High surface brightness'#11'ParentColor'#8#0#0#6'TLabel' ++ +#6'Label3'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'E'#5'Width'#2'"'#7'Caption'#6 ++ +#7'Fainter'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#3#139#1#6'Heig' ++ +'ht'#2#14#3'Top'#2'E'#5'Width'#2'M'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRig' ++ +'ht'#0#7'Caption'#6#10'Brighter '#11'ParentColor'#8#0#0#9'TTrackBar'#12'Neb' ++ +'BrightBar'#4'Left'#3#232#0#6'Height'#2'&'#3'Top'#2'#'#5'Width'#3#217#0#9'Fr' ++ +'equency'#2#26#3'Max'#3#255#0#8'OnChange'#7#18'NebBrightBarChange'#8'PageSiz' ++ +'e'#2#26#8'Position'#2#0#8'TabOrder'#2#1#0#0#9'TTrackBar'#10'NebGrayBar'#4'L' ++ ,'eft'#2#8#6'Height'#2'&'#3'Top'#2'#'#5'Width'#3#209#0#9'Frequency'#2#26#3'Ma' ++ +'x'#3#255#0#8'OnChange'#7#16'NebGrayBarChange'#8'PageSize'#2#26#8'Position'#2 ++ +#0#8'TabOrder'#2#0#0#0#7'TButton'#17'DefNebColorButton'#4'Left'#3'v'#1#6'Hei' ++ +'ght'#2#25#3'Top'#2'f'#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' ++ +'tion'#6#7'Default'#7'OnClick'#7#22'DefNebColorButtonClick'#8'TabOrder'#2#3#0 ++ +#0#6'TPanel'#13'NebColorPanel'#4'Left'#2'p'#6'Height'#2')'#3'Top'#2']'#5'Wid' ++ +'th'#3#233#0#12'ClientHeight'#2')'#11'ClientWidth'#3#233#0#8'TabOrder'#2#2#0 ++ +#6'TShape'#7'Shape29'#4'Left'#2' '#6'Height'#2'!'#3'Top'#2#4#5'Width'#2'A'#5 ++ +'Shape'#7#9'stEllipse'#0#0#6'TShape'#7'Shape30'#4'Left'#3#136#0#6'Height'#2 ++ +'!'#3'Top'#2#4#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#0#0#9'TComboBox'#13 ++ +'lstDSOCScheme'#4'Left'#3#253#0#6'Height'#2#24#3'Top'#2#21#5'Width'#3#168#0 ++ +#10'ItemHeight'#2#0#13'Items.Strings'#1#6#14'CdC v2 default'#6#14'CdC v3 def' ++ +'ault'#6#13'Printed atlas'#6#5'Green'#0#8'OnChange'#7#19'lstDSOCSchemeChange' ++ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page4'#7 ++ +'Caption'#6#10'Sky colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0 ++ +#6'TPanel'#6'Panel2'#4'Left'#2#24#6'Height'#3#147#0#3'Top'#3#142#0#5'Width'#3 ++ +#160#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#147#0#11'ClientWidth'#3 ++ +#160#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label205'#4'Left'#2'v'#6'Height'#2#14#3 ++ +'Top'#2'n'#5'Width'#2'%'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Twilight' ++ +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label202'#4'Left'#2#11#6'He' ++ +'ight'#2#14#3'Top'#2'n'#5'Width'#2'-'#9'Alignment'#7#8'taCenter'#7'Caption'#6 ++ +#8'Day Time'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label208'#4'Lef' ++ +'t'#3#13#1#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'g'#9'Alignment'#7#8'taCente' ++ +'r'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#21'Astronomical Twiligh' ++ +'t'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel'#6'Panel6'#4'Left'#2#8#6'He' ++ +'ight'#2'a'#3'Top'#2#8#5'Width'#3'l'#1#12'ClientHeight'#2'a'#11'ClientWidth' ++ +#3'l'#1#8'TabOrder'#2#0#0#6'TShape'#7'Shape18'#3'Tag'#2#1#4'Left'#2#0#6'Heig' ++ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 ++ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape19'#3'Tag'#2#2#4'Left'#2'4'#6'Heig' ++ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 ++ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape20'#3'Tag'#2#3#4'Left'#2'h'#6'Heig' ++ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 ++ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape21'#3'Tag'#2#4#4'Left'#3#156#0#6'H' ++ +'eight'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp' ++ +#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape22'#3'Tag'#2#5#4'Left'#3#208#0#6 ++ +'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseU' ++ +'p'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape23'#3'Tag'#2#6#4'Left'#3#4#1#6 ++ +'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseU' ++ +'p'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape24'#3'Tag'#2#7#4'Left'#3'8'#1 ++ +#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMous' ++ +'eUp'#7#15'ShapeSkyMouseUp'#0#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#30#6'Heigh' ++ +'t'#2'x'#3'Top'#3'&'#1#5'Width'#3#176#0#10'BevelOuter'#7#6'bvNone'#12'Client' ++ +'Height'#2'x'#11'ClientWidth'#3#176#0#8'TabOrder'#2#2#0#6'TShape'#6'Shape8'#4 ++ +'Left'#2#5#6'Height'#2'I'#3'Top'#2#8#5'Width'#3#139#0#9'OnMouseUp'#7#15'Shap' ++ +'eSkyMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'`' ++ +#5'Width'#2'M'#7'Caption'#6#16'Fixed sky color '#11'ParentColor'#8#0#0#0#11 ++ +'TRadioGroup'#11'skycolorbox'#4'Left'#2#24#6'Height'#2'Y'#3'Top'#2'0'#5'Widt' ++ +'h'#3'l'#1#8'AutoFill'#9#7'Caption'#6#9'Sky Color'#28'ChildSizing.LeftRightS' ++ +'pacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHori' ++ +'zontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24 ++ +'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChi' ++ +'lds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Lay' ++ +'out'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2 ++ +#12'ClientHeight'#2'J'#11'ClientWidth'#3'h'#1#7'Columns'#2#2#13'Items.String' ++ +'s'#1#6#11'Fixed Black'#6#9'Automatic'#0#7'OnClick'#7#16'skycolorboxClick'#8 ++ +'TabOrder'#2#0#0#0#7'TButton'#7'Button3'#4'Left'#3#245#0#6'Height'#2#25#3'To' ++ +'p'#3'E'#1#5'Width'#2'~'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'D' ++ +'efault color'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#3#0#0#0#9'TTabShe' ++ +'et'#5'Page5'#7'Caption'#6#5'Lines'#12'ClientHeight'#3#217#1#11'ClientWidth' ++ +#3#251#1#0#9'TCheckBox'#6'EqGrid'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'e'#5 ++ +'Width'#2't'#7'Caption'#6#19'Add Equatorial Grid'#7'OnClick'#7#11'EqGridClic' ++ +'k'#8'TabOrder'#2#5#0#0#9'TCheckBox'#5'CGrid'#4'Left'#2#16#6'Height'#2#21#3 ++ +'Top'#2' '#5'Width'#3#130#0#7'Caption'#6#20'Show Coordinate Grid'#7'OnClick' ++ +#7#10'CGridClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#8'ecliptic'#4'Left'#3#210 ++ ,#0#6'Height'#2#21#3'Top'#2' '#5'Width'#2'X'#7'Caption'#6#13'Show Ecliptic'#7 ++ +'OnClick'#7#13'eclipticClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#8'galactic'#4 ++ +'Left'#3#210#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#3#134#0#7'Caption'#6#21'S' ++ +'how Galactic Equator'#7'OnClick'#7#13'galacticClick'#8'TabOrder'#2#7#0#0#9 ++ +'TCheckBox'#7'GridNum'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Width'#2'h'#7 ++ +'Caption'#6#15'Show Grid Label'#7'OnClick'#7#12'GridNumClick'#8'TabOrder'#2#4 ++ +#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#3#140#0#3'Top'#3#157#0#5 ++ +'Width'#3#17#1#7'Caption'#6#21'Constellation Figures'#12'ClientHeight'#2'}' ++ +#11'ClientWidth'#3#13#1#8'TabOrder'#2#9#0#6'TLabel'#8'Label132'#4'Left'#2#29 ++ +#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#153#0#7'Caption'#6'!Constellation Fig' ++ +'ure File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Constl'#4'Left'#2#8#6 ++ +'Height'#2#21#3'Top'#2#11#5'Width'#3#149#0#7'Caption'#6#25'Show Constellatio' ++ +'n Figure'#7'OnClick'#7#11'ConstlClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit' ++ +#10'ConstlFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5'Width'#3#208#0#13 ++ +'DialogOptions'#11#0#6'Filter'#6#26'Constellation Figure|*.cln'#11'FilterInd' ++ +'ex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOr' ++ +'der'#2#2#8'OnChange'#7#16'ConstlFileChange'#0#0#9'TComboBox'#7'CFStyle'#4'L' ++ +'eft'#2#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'ItemHeight'#2#16#9'It' ++ +'emIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot' ++ +#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'CFStyleChange'#10'OnDrawItem'#7#13'St' ++ +'yleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Li' ++ +'ne'#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#8#6'Height'#3#140#0#3'Top'#3 ++ +'-'#1#5'Width'#3#17#1#7'Caption'#6#24'Constellation Boundaries'#12'ClientHei' ++ +'ght'#2'}'#11'ClientWidth'#3#13#1#8'TabOrder'#2#11#0#6'TLabel'#7'Label72'#4 ++ +'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#170#0#7'Caption'#6'#Conste' ++ +'llation Boundary File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Constb' ++ +#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#3#166#0#7'Caption'#6#27'Sho' ++ +'w Constellation Boundary'#7'OnClick'#7#11'ConstbClick'#8'TabOrder'#2#0#0#0 ++ +#13'TFileNameEdit'#10'ConstbFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5 ++ +'Width'#3#208#0#13'DialogOptions'#11#0#6'Filter'#6#28'Constellation Boundary' ++ +'|*.cby'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'Nu' ++ +'mGlyphs'#2#1#8'TabOrder'#2#2#8'OnChange'#7#16'ConstbFileChange'#0#0#9'TComb' ++ +'oBox'#7'CBStyle'#4'Left'#2#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'I' ++ +'temHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3 ++ +'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'CBStyleChange'#10 ++ +'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder' ++ +#2#1#4'Text'#6#4'Line'#0#0#0#9'TGroupBox'#9'GroupBox4'#4'Left'#3'%'#1#6'Heig' ++ +'ht'#3#140#0#3'Top'#3#157#0#5'Width'#3#185#0#7'Caption'#6#9'Milky Way'#12'Cl' ++ +'ientHeight'#2'}'#11'ClientWidth'#3#181#0#8'TabOrder'#2#10#0#9'TCheckBox'#8 ++ +'milkyway'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#24#5'Width'#2'g'#7'Caption'#6 ++ +#14'Show Milky Way'#7'OnClick'#7#13'milkywayClick'#8'TabOrder'#2#0#0#0#9'TCh' ++ +'eckBox'#12'fillmilkyway'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'8'#5'Width'#2 ++ +'V'#7'Caption'#6#14'Fill Milky Way'#7'OnClick'#7#17'fillmilkywayClick'#8'Tab' ++ +'Order'#2#1#0#0#0#9'TComboBox'#9'GridStyle'#4'Left'#2''''#6'Height'#2#23#3'T' ++ +'op'#2'5'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.String' ++ +'s'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnCh' ++ +'ange'#7#15'GridStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16 ++ +'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#9'TComboBox'#13'Ecl' ++ +'ipticStyle'#4'Left'#3#230#0#6'Height'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'Ite' ++ +'mHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3 ++ +'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#19'EclipticStyleChang' ++ +'e'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'Tab' ++ +'Order'#2#3#4'Text'#6#4'Line'#0#0#9'TComboBox'#11'EqGridStyle'#4'Left'#2'''' ++ +#6'Height'#2#23#3'Top'#2'}'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2 ++ +#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash ' ++ +'Dot Dot'#0#8'OnChange'#7#17'EqGridStyleChange'#10'OnDrawItem'#7#13'StyleDra' ++ +'wItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#6#4'Text'#6#4'Line'#0#0 ++ +#9'TComboBox'#10'GalEqStyle'#4'Left'#3#230#0#6'Height'#2#23#3'Top'#2'}'#5'Wi' ++ +'dth'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line' ++ +#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#16'GalE' ++ +'qStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawF' ++ +'ixed'#8'TabOrder'#2#8#4'Text'#6#4'Line'#0#0#9'TGroupBox'#9'GroupBox8'#4'Lef' ++ +'t'#3'%'#1#6'Height'#3#140#0#3'Top'#3'-'#1#5'Width'#3#185#0#7'Caption'#6#13 ++ +'Proper Motion'#12'ClientHeight'#2'}'#11'ClientWidth'#3#181#0#8'TabOrder'#2 ++ ,#12#0#6'TLabel'#7'Label68'#4'Left'#2'['#6'Height'#2#14#3'Top'#2'_'#5'Width'#2 ++ +#29#7'Caption'#6#5'years'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2 ++ +'$'#6'Height'#2'?'#3'Top'#2#15#5'Width'#3#142#0#8'AutoSize'#8#7'Caption'#6':' ++ +'Draw a line that represent the proper motion for the next '#11'ParentColor' ++ +#8#8'WordWrap'#9#0#0#9'TCheckBox'#9'DrawPmBox'#4'Left'#2#8#6'Height'#2#21#3 ++ +'Top'#2#11#5'Width'#2#23#7'OnClick'#7#14'DrawPmBoxClick'#8'TabOrder'#2#0#0#0 ++ +#9'TLongEdit'#7'DrawPMy'#4'Left'#2#22#6'Height'#2#21#4'Hint'#6#13'-99999..99' ++ +'999'#3'Top'#2'Z'#5'Width'#2'8'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' ++ +'r'#2#1#8'OnChange'#7#13'DrawPMyChange'#5'Value'#2#0#8'MinValue'#4'ay'#254 ++ +#255#8'MaxValue'#4#159#134#1#0#0#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#6 ++ +'Labels'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0#11'TRadioGroup'#8 ++ +'MagLabel'#4'Left'#2#16#6'Height'#2'Q'#3'Top'#3']'#1#5'Width'#3#221#0#8'Auto' ++ +'Fill'#9#7'Caption'#6#10'Star Label'#28'ChildSizing.LeftRightSpacing'#2#6#28 ++ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' ++ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' ++ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' ++ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' ++ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHei' ++ +'ght'#2'B'#11'ClientWidth'#3#217#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.' ++ +'Strings'#1#6#4'Name'#6#11'Common Name'#6#9'Magnitude'#0#7'OnClick'#7#13'Mag' ++ +'LabelClick'#8'TabOrder'#2#3#0#0#11'TRadioGroup'#10'constlabel'#4'Left'#3#245 ++ +#0#6'Height'#2'Q'#3'Top'#3']'#1#5'Width'#3#220#0#8'AutoFill'#9#7'Caption'#6 ++ +#19'Constellation Label'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing' ++ +'.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenous' ++ +'ChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' ++ +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' ++ +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' ++ +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11 ++ +'ClientWidth'#3#216#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9 ++ +'Full Name'#6#12'Abbreviation'#6#10'Latin Name'#0#7'OnClick'#7#15'constlabel' ++ +'Click'#8'TabOrder'#2#4#0#0#9'TCheckBox'#12'Showlabelall'#4'Left'#2#16#6'Hei' ++ +'ght'#2#21#3'Top'#2'1'#5'Width'#2'k'#7'Caption'#6#18'Display the labels'#7'O' ++ +'nClick'#7#17'ShowlabelallClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#13'ShowCha' ++ +'rtInfo'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Width'#3#239#0#7'Caption'#6 ++ +'.Display the chart information in the menu bar.'#7'OnClick'#7#18'ShowChartI' ++ +'nfoClick'#8'TabOrder'#2#1#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#16#6'Heig' ++ +'ht'#3#9#1#3'Top'#2'M'#5'Width'#3#221#1#7'Caption'#6#12'Label Object'#12'Cli' ++ +'entHeight'#3#250#0#11'ClientWidth'#3#217#1#8'TabOrder'#2#2#0#6'TLabel'#8'La' ++ +'bel237'#4'Left'#3#227#0#6'Height'#2'!'#3'Top'#2#15#5'Width'#2'P'#8'AutoSize' ++ +#8#7'Caption'#6#20'Magnitude difference'#11'ParentColor'#8#8'WordWrap'#9#0#0 ++ +#6'TLabel'#8'Label252'#4'Left'#3':'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2 ++ +#26#7'Caption'#6#5'Color'#11'ParentColor'#8#0#0#6'TLabel'#8'Label240'#4'Left' ++ +#3'9'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#27#7'Caption'#6#5'Label'#11'Pa' ++ +'rentColor'#8#0#0#6'TShape'#14'labelcolorStar'#3'Tag'#2#1#4'Left'#3'6'#1#6'H' ++ +'eight'#2#17#3'Top'#2'6'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0 ++ +#0#6'TShape'#13'labelcolorVar'#3'Tag'#2#2#4'Left'#3'6'#1#6'Height'#2#17#3'To' ++ +'p'#2'N'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#14 ++ +'labelcolorMult'#3'Tag'#2#3#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'f'#5'Widt' ++ +'h'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorNeb' ++ +#3'Tag'#2#4#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'~'#5'Width'#2'!'#9'OnMous' ++ +'eUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorSol'#3'Tag'#2#5#4'L' ++ +'eft'#3'6'#1#6'Height'#2#17#3'Top'#3#150#0#5'Width'#2'!'#9'OnMouseUp'#7#17'l' ++ +'abelcolorMouseUp'#0#0#6'TShape'#15'labelcolorConst'#3'Tag'#2#6#4'Left'#3'6' ++ +#1#6'Height'#2#17#3'Top'#3#174#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorM' ++ +'ouseUp'#0#0#6'TShape'#14'labelcolorMisc'#3'Tag'#2#7#4'Left'#3'6'#1#6'Height' ++ +#2#17#3'Top'#3#198#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6 ++ +'TShape'#19'labelcolorchartinfo'#3'Tag'#2#8#4'Left'#3'6'#1#6'Height'#2#17#3 ++ +'Top'#3#222#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TLabe' ++ +'l'#8'Label255'#4'Left'#3'n'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#22#7'Ca' ++ +'ption'#6#4'Size'#11'ParentColor'#8#0#0#9'TCheckBox'#13'showlabelStar'#3'Tag' ++ +#2#1#4'Left'#2#16#6'Height'#2#21#3'Top'#2'8'#5'Width'#2'1'#7'Caption'#6#5'St' ++ +'ars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'sh' ++ +'owlabelVar'#3'Tag'#2#2#4'Left'#2#16#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'[' ++ +#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder' ++ ,#2#1#0#0#9'TCheckBox'#13'showlabelMult'#3'Tag'#2#3#4'Left'#2#16#6'Height'#2 ++ +#21#3'Top'#2'h'#5'Width'#2'W'#7'Caption'#6#14'Multiple Stars'#7'OnClick'#7#14 ++ +'showlabelClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#12'showlabelNeb'#3'Tag'#2#4 ++ +#4'Left'#2#16#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Neb' ++ +'ulae'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#12's' ++ +'howlabelSol'#3'Tag'#2#5#4'Left'#2#16#6'Height'#2#21#3'Top'#3#152#0#5'Width' ++ +#2'W'#7'Caption'#6#12'Solar System'#7'OnClick'#7#14'showlabelClick'#8'TabOrd' ++ +'er'#2#4#0#0#9'TCheckBox'#14'showlabelConst'#3'Tag'#2#6#4'Left'#2#16#6'Heigh' ++ +'t'#2#21#3'Top'#3#176#0#5'Width'#2'q'#7'Caption'#6#18'Constellation name'#7 ++ +'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#13'showlabel' ++ +'Misc'#3'Tag'#2#7#4'Left'#2#16#6'Height'#2#21#3'Top'#3#200#0#5'Width'#2'Q'#7 ++ +'Caption'#6#12'Other labels'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#6 ++ +#0#0#9'TCheckBox'#18'ShowLabelChartInfo'#3'Tag'#2#8#4'Left'#2#16#6'Height'#2 ++ +#21#3'Top'#3#224#0#5'Width'#2'i'#7'Caption'#6#17'Chart Information'#7'OnClic' ++ +'k'#7#14'showlabelClick'#8'TabOrder'#2#7#0#0#5'TEdit'#5'Edit1'#3'Tag'#2#1#4 ++ +'Left'#3#227#0#6'Height'#2#21#3'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#15'lab' ++ +'elmagChanged'#8'TabOrder'#2#8#0#0#7'TUpDown'#12'labelmagStar'#3'Tag'#2#1#4 ++ +'Left'#3#9#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit1' ++ +#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#9#4'Wrap'#8#0#0#5'TEdi' ++ +'t'#5'Edit2'#3'Tag'#2#2#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'L'#5'Width'#2 ++ +'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#10#0#0#7'TUpDown'#11'lab' ++ +'elmagVar'#3'Tag'#2#2#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17 ++ +#9'Associate'#7#5'Edit2'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2 ++ +#11#4'Wrap'#8#0#0#7'TUpDown'#12'labelmagMult'#3'Tag'#2#3#4'Left'#3#9#1#6'Hei' ++ +'ght'#2#21#3'Top'#2'd'#5'Width'#2#17#9'Associate'#7#5'Edit3'#3'Min'#2#0#3'Ma' ++ +'x'#2#10#8'Position'#2#1#8'TabOrder'#2#12#4'Wrap'#8#0#0#5'TEdit'#5'Edit3'#3 ++ +'Tag'#2#3#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChang' ++ +'e'#7#15'labelmagChanged'#8'TabOrder'#2#13#0#0#7'TUpDown'#11'labelmagNeb'#3 ++ +'Tag'#2#4#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2#17#9'Associate' ++ +#7#5'Edit4'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#14#4'Wrap'#8 ++ +#0#0#5'TEdit'#5'Edit4'#3'Tag'#2#4#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'|' ++ +#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#15#0#0#7'TUpD' ++ +'own'#11'labelmagSol'#3'Tag'#2#5#4'Left'#3#9#1#6'Height'#2#21#3'Top'#3#148#0 ++ +#5'Width'#2#17#9'Associate'#7#5'Edit5'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1 ++ +#8'TabOrder'#2#16#4'Wrap'#8#0#0#5'TEdit'#5'Edit5'#3'Tag'#2#5#4'Left'#3#227#0 ++ +#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2'&'#8'OnChange'#7#15'labelmagChange' ++ +'d'#8'TabOrder'#2#17#0#0#5'TEdit'#5'Edit6'#3'Tag'#2#1#4'Left'#3'k'#1#6'Heigh' ++ +'t'#2#21#3'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabO' ++ +'rder'#2#18#0#0#7'TUpDown'#13'labelSizeStar'#3'Tag'#2#1#4'Left'#3#145#1#6'He' ++ +'ight'#2#21#3'Top'#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit6'#3'Min'#2#4#3'M' ++ +'ax'#2'0'#8'Position'#2#6#8'TabOrder'#2#19#4'Wrap'#8#0#0#5'TEdit'#5'Edit7'#3 ++ +'Tag'#2#2#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange' ++ +#7#16'labelsizeChanged'#8'TabOrder'#2#20#0#0#7'TUpDown'#12'labelsizeVar'#3'T' ++ +'ag'#2#2#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associat' ++ +'e'#7#5'Edit7'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#21#4'Wra' ++ +'p'#8#0#0#5'TEdit'#5'Edit8'#3'Tag'#2#3#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2 ++ +'d'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#22#0#0#7 ++ +'TUpDown'#13'labelsizeMult'#3'Tag'#2#3#4'Left'#3#145#1#6'Height'#2#21#3'Top' ++ +#2'd'#5'Width'#2#17#9'Associate'#7#5'Edit8'#3'Min'#2#4#3'Max'#2'0'#8'Positio' ++ +'n'#2#6#8'TabOrder'#2#23#4'Wrap'#8#0#0#5'TEdit'#5'Edit9'#3'Tag'#2#4#4'Left'#3 ++ +'k'#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeCha' ++ +'nged'#8'TabOrder'#2#24#0#0#7'TUpDown'#12'labelsizeNeb'#3'Tag'#2#4#4'Left'#3 ++ +#145#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2#17#9'Associate'#7#5'Edit9'#3'Mi' ++ +'n'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#25#4'Wrap'#8#0#0#5'TEdit'#6 ++ +'Edit10'#3'Tag'#2#5#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2 ++ +'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#26#0#0#7'TUpDown'#12'la' ++ +'belsizeSol'#3'Tag'#2#5#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#148#0#5'Widt' ++ +'h'#2#17#9'Associate'#7#6'Edit10'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'T' ++ +'abOrder'#2#27#4'Wrap'#8#0#0#5'TEdit'#6'Edit11'#3'Tag'#2#6#4'Left'#3'k'#1#6 ++ +'Height'#2#21#3'Top'#3#172#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' ++ +#8'TabOrder'#2#28#0#0#7'TUpDown'#14'labelsizeConst'#3'Tag'#2#6#4'Left'#3#145 ++ +#1#6'Height'#2#21#3'Top'#3#172#0#5'Width'#2#17#9'Associate'#7#6'Edit11'#3'Mi' ++ +'n'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#29#4'Wrap'#8#0#0#5'TEdit'#6 ++ +'Edit12'#3'Tag'#2#7#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#196#0#5'Width'#2 ++ ,'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#30#0#0#7'TUpDown'#13'la' ++ +'belsizeMisc'#3'Tag'#2#7#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#196#0#5'Wid' ++ +'th'#2#17#9'Associate'#7#6'Edit12'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 ++ +'TabOrder'#2#31#4'Wrap'#8#0#0#5'TEdit'#6'Edit13'#3'Tag'#2#8#4'Left'#3'k'#1#6 ++ +'Height'#2#21#3'Top'#3#220#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' ++ +#8'TabOrder'#2' '#0#0#7'TUpDown'#18'labelsizeChartInfo'#3'Tag'#2#8#4'Left'#3 ++ +#145#1#6'Height'#2#21#3'Top'#3#220#0#5'Width'#2#17#9'Associate'#7#6'Edit13'#3 ++ +'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2'!'#4'Wrap'#8#0#0#0#9'TCh' ++ +'eckBox'#16'DrawAllStarLabel'#4'Left'#2#26#6'Height'#2#21#3'Top'#3#181#1#5'W' ++ +'idth'#3#179#0#7'Caption'#6'#Display labels for all star catalog'#7'OnClick' ++ +#7#21'DrawAllStarLabelClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'Button9'#4'Lef' ++ +'t'#3'e'#1#6'Height'#2#25#3'Top'#3#177#1#5'Width'#2'c'#7'Caption'#6#7'Defaul' ++ +'t'#7'OnClick'#7#12'Button9Click'#8'TabOrder'#2#6#0#0#9'TCheckBox'#9'ShowTit' ++ +'le'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#27#5'Width'#3#141#0#7'Caption'#6#26 ++ +'Show position in title bar'#7'OnClick'#7#14'ShowTitleClick'#8'TabOrder'#2#7 ++ +#0#0#0#9'TTabSheet'#5'Page7'#7'Caption'#6#5'Fonts'#12'ClientHeight'#3#217#1 ++ +#11'ClientWidth'#3#251#1#0#6'TBevel'#7'Bevel10'#4'Left'#2#8#6'Height'#3'I'#1 ++ +#3'Top'#2' '#5'Width'#3#137#1#5'Shape'#7#7'bsFrame'#0#0#6'TLabel'#8'Label121' ++ +#4'Left'#2#16#6'Height'#2#14#3'Top'#2'J'#5'Width'#2'R'#7'Caption'#6#16'Coord' ++ +'inates Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label122'#4'Left'#2#16#6'Hei' ++ +'ght'#2#14#3'Top'#2'('#5'Width'#2' '#7'Caption'#6#6'Object'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#8'Label123'#4'Left'#2#16#6'Height'#2#14#3'Top'#2's'#5'Width'#2 ++ +'!'#7'Caption'#6#6'Labels'#11'ParentColor'#8#0#0#6'TLabel'#8'Label124'#4'Lef' ++ +'t'#2#16#6'Height'#2#14#3'Top'#3#157#0#5'Width'#2'%'#7'Caption'#6#6'Legend' ++ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label125'#4'Left'#2#16#6'Height'#2#14#3'T' ++ +'op'#3#198#0#5'Width'#2'R'#7'Caption'#6#18'Information detail'#11'ParentColo' ++ +'r'#8#0#0#6'TLabel'#8'Label126'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#240#0#5 ++ +'Width'#2'0'#7'Caption'#6#11'Object list'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label127'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2'C'#7'Caption' ++ +#6#14'Printer legend'#11'ParentColor'#8#0#0#6'TLabel'#8'Label128'#4'Left'#3 ++ +#192#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2#22#7'Caption'#6#4'Font'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#8'Label129'#4'Left'#3'X'#1#6'Height'#2#14#3'Top'#2 ++ +'('#5'Width'#2'!'#7'Caption'#6#6'Modify'#11'ParentColor'#8#0#0#12'TSpeedButt' ++ +'on'#12'SpeedButton1'#3'Tag'#2#1#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#2'E'#5 ++ +'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'B' ++ +'M'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0 ++ +#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#255#0#255#0#0#127#255#0#255#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191 ++ +#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#255#0#255#127#0#127#191#191#191#191#191 ++ ,#191#191#191#191#0#0#127#191#191#191#191#191#191#255#0#255#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191 ++ +#191#191#191#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127#0 ++ +#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 ++ +#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#255#0#0#255#0#0#255#0#0 ++ +#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255 ++ +#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255#255#255#0#255#255#0#255#255#0 ++ +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 ++ +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 ++ +#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0 ++ +#0#12'TSpeedButton'#12'SpeedButton2'#3'Tag'#2#2#4'Left'#3'`'#1#6'Height'#2#22 ++ +#3'Top'#2'n'#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0 ++ +#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24 ++ +#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127 ++ +#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0 ++ +#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#255#0#255#0#0#127#255#0#255#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127 ++ +#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#0#0#127#0#0#127#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0 ++ +#127#0#0#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#255#0#255#127#0#127#191#191 ++ +#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191#255#0#255#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127 ++ ,#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0 ++ +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#255#0#0#255#0 ++ +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0 ++ +#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255#255#255#0#255#255#0 ++ +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 ++ +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 ++ +#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFo' ++ +'ntClick'#0#0#12'TSpeedButton'#12'SpeedButton3'#3'Tag'#2#3#4'Left'#3'`'#1#6 ++ +'Height'#2#22#3'Top'#3#152#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.' ++ +'Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0 ++ +#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +@@ -641,13 +763,13 @@ + +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0 +- ,#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 ++ +#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 + +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0 + +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ ,#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191 +@@ -671,57 +793,57 @@ + +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 + +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 + +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'On' +- +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton2'#3'Tag'#2 +- +#2#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#2'n'#5'Width'#2#23#5'Color'#7#9'clBt' +- +'nFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0 +- +'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0 ++ +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton4'#3'Tag'#2 ++ +#4#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#193#0#5'Width'#2#23#5'Color'#7#9'c' ++ +'lBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0 ++ +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255 +- +#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0#127 +- +#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191 +- +#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#255#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191 +- +#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127 +- +#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0 ++ +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 ++ +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127 ++ +#191#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0 ++ +#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ ,#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 +- +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 ++ +#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +@@ -733,7 +855,7 @@ + +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 + +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'Num' + +'Glyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedB' +- +'utton3'#3'Tag'#2#3#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#152#0#5'Width'#2 ++ +'utton5'#3'Tag'#2#5#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#235#0#5'Width'#2 + +#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0 + +#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd' + +#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +@@ -769,13 +891,13 @@ + +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 + +#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191 ++ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 +@@ -794,12 +916,12 @@ + +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 + +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 + +#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#12'TSpe' +- +'edButton'#12'SpeedButton4'#3'Tag'#2#4#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3 +- +#193#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230 +- +#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0 +- +#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +'edButton'#12'SpeedButton6'#3'Tag'#2#6#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3 ++ +#21#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4 ++ +#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0 ++ +#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191 +@@ -833,13 +955,13 @@ + +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127 + +#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 + +#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +@@ -855,8 +977,8 @@ + +#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 + +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 + +#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0 +- +#0#12'TSpeedButton'#12'SpeedButton5'#3'Tag'#2#5#4'Left'#3'`'#1#6'Height'#2#22 +- +#3'Top'#3#235#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4 ++ +#0#12'TSpeedButton'#12'SpeedButton7'#3'Tag'#2#7#4'Left'#3'`'#1#6'Height'#2#22 ++ +#3'Top'#3'='#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4 + +#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0 + +#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +@@ -897,13 +1019,13 @@ + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0 + +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 ++ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 + +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +@@ -916,237 +1038,115 @@ + +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 + +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 + +#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFo' +- +'ntClick'#0#0#12'TSpeedButton'#12'SpeedButton6'#3'Tag'#2#6#4'Left'#3'`'#1#6 +- +'Height'#2#22#3'Top'#3#21#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.D' +- +'ata'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0 +- +#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0#255#0#0#127 +- +#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 +- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#0#0 +- +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 +- +#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0#127#127#0#127#191 +- +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0 +- +#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 +- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0 +- +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255 +- +#0#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0 +- +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255 +- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 +- +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 +- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'On' +- +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton7'#3'Tag'#2 +- +#7#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3'='#1#5'Width'#2#23#5'Color'#7#9'cl' +- +'BtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0 +- +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#255#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0 +- +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 +- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127 +- +#191#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0 +- +#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 +- +#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 +- +#191#191#191#191#191#191#191#191#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#255#255#255#0#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0 +- +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255 +- +#0#0#0#255#255#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 +- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 +- +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'Num' +- +'Glyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#6'TLabel'#8'Label235'#4'Le' +- +'ft'#2#16#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2'C'#7'Caption'#6#12'Greek s' +- +'ymbol'#11'ParentColor'#8#0#0#5'TEdit'#8'gridfont'#4'Left'#3#184#0#6'Height' +- +#2#21#3'Top'#2'A'#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'T' +- +'abStop'#8#8'TabOrder'#2#0#0#0#5'TEdit'#9'labelfont'#4'Left'#3#184#0#6'Heigh' +- +'t'#2#21#3'Top'#2'j'#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7 +- +'TabStop'#8#8'TabOrder'#2#1#0#0#5'TEdit'#10'legendfont'#4'Left'#3#184#0#6'He' +- +'ight'#2#21#3'Top'#3#148#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOn' +- +'ly'#9#7'TabStop'#8#8'TabOrder'#2#2#0#0#5'TEdit'#10'statusfont'#4'Left'#3#184 +- +#0#6'Height'#2#21#3'Top'#3#189#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8 +- +'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#3#0#0#5'TEdit'#8'listfont'#4'Left'#3 +- +#184#0#6'Height'#2#21#3'Top'#3#231#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace' +- +#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#7'prtfont'#4'Left'#3 +- +#184#0#6'Height'#2#21#3'Top'#3#17#1#5'Width'#3#160#0#5'Color'#7#9'clBtnFace' +- +#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#5#0#0#7'TButton'#7'Button1'#4'Left' +- +#3#184#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBo' +- +'rder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'DefaultFontClick'#8'TabOr' +- +'der'#2#6#0#0#5'TEdit'#8'symbfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3'9' +- +#1#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'Tab' +- +'Order'#2#7#0#0#0#9'TTabSheet'#5'Page8'#7'Caption'#6#13'Finder circle'#12'Cl' +- +'ientHeight'#3#248#1#11'ClientWidth'#3#253#1#0#6'TLabel'#8'Label307'#4'Left' +- +#2'P'#6'Height'#2#14#3'Top'#2#8#5'Width'#3#147#0#7'Caption'#6#31'Finder circ' +- +'le (Eyepiece/Telrad)'#11'ParentColor'#8#0#0#9'TCheckBox'#3'cb1'#3'Tag'#2#1#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#2'W'#5'Width'#2'0'#7'Caption'#6#5'No. 1'#7 +- +'OnClick'#7#7'cbClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#3'cb2'#3'Tag'#2#2#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5'Width'#2'0'#7'Caption'#6#5'No. 2'#7 +- +'OnClick'#7#7'cbClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#3'cb3'#3'Tag'#2#3#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0#5'Width'#2'0'#7'Caption'#6#5'No. 3' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#3'cb4'#3'Tag'#2#4#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3#177#0#5'Width'#2'0'#7'Caption'#6#5'No. 4' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#3'cb5'#3'Tag'#2#5#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3#207#0#5'Width'#2'0'#7'Caption'#6#5'No. 5' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#3'cb6'#3'Tag'#2#6#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3#237#0#5'Width'#2'0'#7'Caption'#6#5'No. 6' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#3'cb7'#3'Tag'#2#7#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3#11#1#5'Width'#2'0'#7'Caption'#6#5'No. 7' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#3'cb8'#3'Tag'#2#8#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3')'#1#5'Width'#2'0'#7'Caption'#6#5'No. 8' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#7#0#0#9'TCheckBox'#3'cb9'#3'Tag'#2#9#4 +- +'Left'#2#24#6'Height'#2#21#3'Top'#3'G'#1#5'Width'#2'0'#7'Caption'#6#5'No. 9' +- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#4'cb10'#3'Tag'#2#10 +- +#4'Left'#2#24#6'Height'#2#21#3'Top'#3'e'#1#5'Width'#2'6'#7'Caption'#6#6'No. ' +- +'10'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#9#0#0#11'TStringGrid'#10'Circlegr' +- +'id'#4'Left'#2'_'#6'Height'#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#8'ColCount'#2 +- +#4#15'DefaultColWidth'#2'F'#16'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'Gr' +- +'idLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'g' +- +'oVertLine'#10'goHorzLine'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount' +- +#2#11#8'TabOrder'#2#10#16'TitleFont.Height'#2#245#13'OnSetEditText'#7#21'Cir' +- +'clegridSetEditText'#0#0#9'TCheckBox'#11'CenterMark1'#4'Left'#2#23#6'Height' +- +#2#21#3'Top'#3#149#1#5'Width'#3#129#0#7'Caption'#6#22'Mark the chart center ' +- +#7'OnClick'#7#16'CenterMark1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'Check' +- ,'Box1'#4'Left'#3'%'#1#6'Height'#2#21#3'Top'#3#149#1#5'Width'#2'M'#7'Caption' +- +#6#10'Show label'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#12#0#0#0#9'T' +- +'TabSheet'#5'Page9'#7'Caption'#6#16'Finder rectangle'#12'ClientHeight'#3#248 +- +#1#11'ClientWidth'#3#253#1#0#6'TLabel'#8'Label308'#4'Left'#2'P'#6'Height'#2 +- +#14#3'Top'#2#8#5'Width'#3#185#0#7'Caption'#6#31'Finder rectangle (CCD / Came' +- +'ra)'#11'ParentColor'#8#0#0#9'TCheckBox'#3'rb1'#3'Tag'#2#1#4'Left'#2#24#6'He' +- +'ight'#2#21#3'Top'#2'W'#5'Width'#2'5'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'r' +- +'bClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#3'rb2'#3'Tag'#2#2#4'Left'#2#24#6'H' +- +'eight'#2#21#3'Top'#2'u'#5'Width'#2'5'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7 +- +'rbClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#3'rb3'#3'Tag'#2#3#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3#147#0#5'Width'#2'5'#7'Caption'#6#5'No. 3'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#3'rb4'#3'Tag'#2#4#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3#177#0#5'Width'#2'5'#7'Caption'#6#5'No. 4'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#3'rb5'#3'Tag'#2#5#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3#207#0#5'Width'#2'5'#7'Caption'#6#5'No. 5'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#3'rb6'#3'Tag'#2#6#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3#237#0#5'Width'#2'5'#7'Caption'#6#5'No. 6'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#3'rb7'#3'Tag'#2#7#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3#11#1#5'Width'#2'5'#7'Caption'#6#5'No. 7'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#3'rb8'#3'Tag'#2#8#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3')'#1#5'Width'#2'5'#7'Caption'#6#5'No. 8'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#7#0#0#9'TCheckBox'#3'rb9'#3'Tag'#2#9#4'Left'#2#24#6 +- +'Height'#2#21#3'Top'#3'G'#1#5'Width'#2'5'#7'Caption'#6#5'No. 9'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#4'rb10'#3'Tag'#2#10#4'Left'#2#24 +- +#6'Height'#2#21#3'Top'#3'e'#1#5'Width'#2'4'#7'Caption'#6#4'No10'#7'OnClick'#7 +- +#7'rbClick'#8'TabOrder'#2#9#0#0#11'TStringGrid'#13'RectangleGrid'#4'Left'#2 +- +'_'#6'Height'#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#15'DefaultColWidth'#2'<'#16 +- +'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11 +- +#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9'goE' +- +'diting'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'Title' +- +'Font.Height'#2#245#13'OnSetEditText'#7#24'RectangleGridSetEditText'#0#0#9'T' +- +'CheckBox'#11'CenterMark2'#4'Left'#2#24#6'Height'#2#21#3'Top'#3#157#1#5'Widt' +- +'h'#3#149#0#7'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMa' +- +'rk1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#3'-'#1#6'H' +- +'eight'#2#21#3'Top'#3#157#1#5'Width'#2'U'#7'Caption'#6#10'Show label'#7'OnCl' +- +'ick'#7#14'CheckBox2Click'#8'TabOrder'#2#12#0#0#0#0#0#6'TPanel'#6'Panel1'#4 +- +'Left'#2#0#6'Height'#2'2'#3'Top'#3#254#1#5'Width'#3#3#2#5'Align'#7#8'alBotto' +- +'m'#12'ClientHeight'#2'2'#11'ClientWidth'#3#3#2#8'TabOrder'#2#1#0#7'TButton' +- +#7'Button2'#4'Left'#3#195#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Ancho' +- +'rs'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'But' +- +'ton4'#4'Left'#3'+'#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11 +- +#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Appl' +- +'y'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4 +- +'Left'#3#152#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTo' +- +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 +- +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Lef' +- +'t'#2']'#6'Height'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'a' +- +'kRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3 +- +#0#0#0#11'TFontDialog'#11'FontDialog1'#11'Font.Height'#2#245#9'Font.Name'#6 +- +#13'MS Sans Serif'#11'MinFontSize'#2#0#11'MaxFontSize'#2#0#7'Options'#11#14 +- +'fdTrueTypeOnly'#9'fdEffects'#16'fdForceFontExist'#14'fdScalableOnly'#0#4'le' +- +'ft'#3#216#1#3'top'#2'@'#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7 +- +'clBlack'#20'CustomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080' +- +#6#13'ColorC=008000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800' +- +'080'#6#13'ColorG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'Color' +- +'J=0000FF'#6#13'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13 +- +'ColorN=FF00FF'#6#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6 +- +#13'ColorR=F0CAA6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#216#1 +- +#3'top'#2#8#0#0#0 ++ +'ntClick'#0#0#6'TLabel'#8'Label235'#4'Left'#2#16#6'Height'#2#14#3'Top'#3'H'#1 ++ +#5'Width'#2'C'#7'Caption'#6#12'Greek symbol'#11'ParentColor'#8#0#0#5'TEdit'#8 ++ +'gridfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#3#160#0#5'Col' ++ +'or'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#0#0#0#5'TEdit'#9 ++ +'labelfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2'j'#5'Width'#3#160#0#5'Co' ++ +'lor'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#1#0#0#5'TEdit' ++ +#10'legendfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#148#0#5'Width'#3#160 ++ +#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#2#0#0#5 ++ +'TEdit'#10'statusfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#189#0#5'Width' ++ +#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#3#0 ++ +#0#5'TEdit'#8'listfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#231#0#5'Widt' ++ +'h'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2 ++ +#4#0#0#5'TEdit'#7'prtfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#17#1#5'Wi' ++ +'dth'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder' ++ +#2#5#0#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'Height'#2#25#3'Top'#3'x'#1#5 ++ +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnC' ++ +'lick'#7#16'DefaultFontClick'#8'TabOrder'#2#6#0#0#5'TEdit'#8'symbfont'#4'Lef' ++ +'t'#3#184#0#6'Height'#2#21#3'Top'#3'9'#1#5'Width'#3#160#0#5'Color'#7#9'clBtn' ++ +'Face'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#7#0#0#0#9'TTabSheet'#5'Page8' ++ +#7'Caption'#6#13'Finder circle'#12'ClientHeight'#3#217#1#11'ClientWidth'#3 ++ +#251#1#0#6'TLabel'#8'Label307'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#8#5'Widt' ++ +'h'#3#147#0#7'Caption'#6#31'Finder circle (Eyepiece/Telrad)'#11'ParentColor' ++ +#8#0#0#9'TCheckBox'#3'cb1'#3'Tag'#2#1#4'Left'#2#24#6'Height'#2#21#3'Top'#2'W' ++ +#5'Width'#2'0'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#0 ++ +#0#0#9'TCheckBox'#3'cb2'#3'Tag'#2#2#4'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5 ++ +'Width'#2'0'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#1#0 ++ +#0#9'TCheckBox'#3'cb3'#3'Tag'#2#3#4'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0 ++ +#5'Width'#2'0'#7'Caption'#6#5'No. 3'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#2 ++ +#0#0#9'TCheckBox'#3'cb4'#3'Tag'#2#4#4'Left'#2#24#6'Height'#2#21#3'Top'#3#177 ++ +#0#5'Width'#2'0'#7'Caption'#6#5'No. 4'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2 ++ +#3#0#0#9'TCheckBox'#3'cb5'#3'Tag'#2#5#4'Left'#2#24#6'Height'#2#21#3'Top'#3 ++ +#207#0#5'Width'#2'0'#7'Caption'#6#5'No. 5'#7'OnClick'#7#7'cbClick'#8'TabOrde' ++ +'r'#2#4#0#0#9'TCheckBox'#3'cb6'#3'Tag'#2#6#4'Left'#2#24#6'Height'#2#21#3'Top' ++ +#3#237#0#5'Width'#2'0'#7'Caption'#6#5'No. 6'#7'OnClick'#7#7'cbClick'#8'TabOr' ++ +'der'#2#5#0#0#9'TCheckBox'#3'cb7'#3'Tag'#2#7#4'Left'#2#24#6'Height'#2#21#3'T' ++ +'op'#3#11#1#5'Width'#2'0'#7'Caption'#6#5'No. 7'#7'OnClick'#7#7'cbClick'#8'Ta' ++ +'bOrder'#2#6#0#0#9'TCheckBox'#3'cb8'#3'Tag'#2#8#4'Left'#2#24#6'Height'#2#21#3 ++ +'Top'#3')'#1#5'Width'#2'0'#7'Caption'#6#5'No. 8'#7'OnClick'#7#7'cbClick'#8'T' ++ +'abOrder'#2#7#0#0#9'TCheckBox'#3'cb9'#3'Tag'#2#9#4'Left'#2#24#6'Height'#2#21 ++ +#3'Top'#3'G'#1#5'Width'#2'0'#7'Caption'#6#5'No. 9'#7'OnClick'#7#7'cbClick'#8 ++ +'TabOrder'#2#8#0#0#9'TCheckBox'#4'cb10'#3'Tag'#2#10#4'Left'#2#24#6'Height'#2 ++ +#21#3'Top'#3'e'#1#5'Width'#2'6'#7'Caption'#6#6'No. 10'#7'OnClick'#7#7'cbClic' ++ +'k'#8'TabOrder'#2#9#0#0#11'TStringGrid'#10'Circlegrid'#4'Left'#2'_'#6'Height' ++ +#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#8'ColCount'#2#4#15'DefaultColWidth'#2'F' ++ +#16'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options' ++ +#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9 ++ +'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'Ti' ++ +'tleFont.Height'#2#245#13'OnSetEditText'#7#21'CirclegridSetEditText'#0#0#9'T' ++ +'CheckBox'#11'CenterMark1'#4'Left'#2#23#6'Height'#2#21#3'Top'#3#149#1#5'Widt' ++ +'h'#3#129#0#7'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMa' ++ +'rk1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3'%'#1#6'H' ++ ,'eight'#2#21#3'Top'#3#149#1#5'Width'#2'M'#7'Caption'#6#10'Show label'#7'OnCl' ++ +'ick'#7#14'CheckBox1Click'#8'TabOrder'#2#12#0#0#0#9'TTabSheet'#5'Page9'#7'Ca' ++ +'ption'#6#16'Finder rectangle'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251 ++ +#1#0#6'TLabel'#8'Label308'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#8#5'Width'#3 ++ +#185#0#7'Caption'#6#31'Finder rectangle (CCD / Camera)'#11'ParentColor'#8#0#0 ++ +#9'TCheckBox'#3'rb1'#3'Tag'#2#1#4'Left'#2#24#6'Height'#2#21#3'Top'#2'W'#5'Wi' ++ +'dth'#2'5'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#0#0#0 ++ +#9'TCheckBox'#3'rb2'#3'Tag'#2#2#4'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5'Wi' ++ +'dth'#2'5'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#1#0#0 ++ +#9'TCheckBox'#3'rb3'#3'Tag'#2#3#4'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0#5 ++ +'Width'#2'5'#7'Caption'#6#5'No. 3'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#2#0 ++ +#0#9'TCheckBox'#3'rb4'#3'Tag'#2#4#4'Left'#2#24#6'Height'#2#21#3'Top'#3#177#0 ++ +#5'Width'#2'5'#7'Caption'#6#5'No. 4'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#3 ++ +#0#0#9'TCheckBox'#3'rb5'#3'Tag'#2#5#4'Left'#2#24#6'Height'#2#21#3'Top'#3#207 ++ +#0#5'Width'#2'5'#7'Caption'#6#5'No. 5'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2 ++ +#4#0#0#9'TCheckBox'#3'rb6'#3'Tag'#2#6#4'Left'#2#24#6'Height'#2#21#3'Top'#3 ++ +#237#0#5'Width'#2'5'#7'Caption'#6#5'No. 6'#7'OnClick'#7#7'rbClick'#8'TabOrde' ++ +'r'#2#5#0#0#9'TCheckBox'#3'rb7'#3'Tag'#2#7#4'Left'#2#24#6'Height'#2#21#3'Top' ++ +#3#11#1#5'Width'#2'5'#7'Caption'#6#5'No. 7'#7'OnClick'#7#7'rbClick'#8'TabOrd' ++ +'er'#2#6#0#0#9'TCheckBox'#3'rb8'#3'Tag'#2#8#4'Left'#2#24#6'Height'#2#21#3'To' ++ +'p'#3')'#1#5'Width'#2'5'#7'Caption'#6#5'No. 8'#7'OnClick'#7#7'rbClick'#8'Tab' ++ +'Order'#2#7#0#0#9'TCheckBox'#3'rb9'#3'Tag'#2#9#4'Left'#2#24#6'Height'#2#21#3 ++ +'Top'#3'G'#1#5'Width'#2'5'#7'Caption'#6#5'No. 9'#7'OnClick'#7#7'rbClick'#8'T' ++ +'abOrder'#2#8#0#0#9'TCheckBox'#4'rb10'#3'Tag'#2#10#4'Left'#2#24#6'Height'#2 ++ +#21#3'Top'#3'e'#1#5'Width'#2'4'#7'Caption'#6#4'No10'#7'OnClick'#7#7'rbClick' ++ +#8'TabOrder'#2#9#0#0#11'TStringGrid'#13'RectangleGrid'#4'Left'#2'_'#6'Height' ++ +#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#15'DefaultColWidth'#2'<'#16'DefaultRowHe' ++ +'ight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedV' ++ +'ertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9'goEditing'#18 ++ +'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'TitleFont.Height' ++ +#2#245#13'OnSetEditText'#7#24'RectangleGridSetEditText'#0#0#9'TCheckBox'#11 ++ +'CenterMark2'#4'Left'#2#24#6'Height'#2#21#3'Top'#3#157#1#5'Width'#3#149#0#7 ++ +'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMark1Click'#8'T' ++ +'abOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#3'-'#1#6'Height'#2#21#3 ++ +'Top'#3#157#1#5'Width'#2'U'#7'Caption'#6#10'Show label'#7'OnClick'#7#14'Chec' ++ +'kBox2Click'#8'TabOrder'#2#12#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'He' ++ +'ight'#2'2'#3'Top'#3#254#1#5'Width'#3#3#2#5'Align'#7#8'alBottom'#12'ClientHe' ++ +'ight'#2'2'#11'ClientWidth'#3#3#2#8'TabOrder'#2#1#0#7'TButton'#7'Button2'#4 ++ +'Left'#3#195#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTo' ++ +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Defa' ++ +'ult'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4'#4'Left' ++ +#3'+'#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTop'#7'ak' ++ +'Right'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick' ++ +#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'Left'#3#152#1 ++ +#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTop'#7'akRight'#0 ++ +#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'Mod' ++ +'alResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#2']'#6'Heig' ++ +'ht'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Ca' ++ +'ption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#0#11'TFo' ++ +'ntDialog'#11'FontDialog1'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans S' ++ +'erif'#11'MinFontSize'#2#0#11'MaxFontSize'#2#0#7'Options'#11#14'fdTrueTypeOn' ++ +'ly'#9'fdEffects'#16'fdForceFontExist'#14'fdScalableOnly'#0#4'left'#3#216#1#3 ++ +'top'#2'@'#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7'clBlack'#20'Cu' ++ +'stomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080'#6#13'ColorC=0' ++ +'08000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800080'#6#13'Col' ++ +'orG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'ColorJ=0000FF'#6#13 ++ +'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6 ++ +#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6#13'ColorR=F0CAA' ++ +'6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#216#1#3'top'#2#8#0#0 ++ +#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_internet.lfm skychart_3.2_up/skychart/pu_config_internet.lfm +--- skychart_3.2/skychart/pu_config_internet.lfm 2010-10-04 12:38:56.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_internet.lfm 2011-03-09 15:18:57.116095932 +0100 +@@ -1,7 +1,7 @@ + object f_config_internet: Tf_config_internet +- Left = 559 ++ Left = 516 + Height = 484 +- Top = 88 ++ Top = 82 + Width = 482 + ActiveControl = MainPanel + BorderIcons = [biSystemMenu] +@@ -14,7 +14,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 434 +@@ -34,13 +34,12 @@ + ActivePage = Page1 + Align = alClient + Anchors = [akLeft, akRight, akBottom] +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Proxy' +- ClientHeight = 430 +- ClientWidth = 478 ++ ClientHeight = 399 ++ ClientWidth = 476 + object GroupBox1: TGroupBox + Left = 20 + Height = 201 +@@ -52,9 +51,9 @@ + TabOrder = 0 + object httpproxy: TCheckBox + Left = 30 +- Height = 21 ++ Height = 22 + Top = 11 +- Width = 101 ++ Width = 108 + Caption = 'Use HTTP Proxy' + OnClick = httpproxyClick + TabOrder = 0 +@@ -67,43 +66,11 @@ + ClientHeight = 137 + ClientWidth = 378 + TabOrder = 1 +- object proxypass: TEdit +- Left = 123 +- Height = 21 +- Top = 98 +- Width = 90 +- OnChange = proxypassChange +- TabOrder = 0 +- end +- object proxyuser: TEdit +- Left = 123 +- Height = 21 +- Top = 57 +- Width = 90 +- OnChange = proxyuserChange +- TabOrder = 1 +- end +- object proxyport: TEdit +- Left = 307 +- Height = 21 +- Top = 13 +- Width = 40 +- OnChange = proxyportChange +- TabOrder = 2 +- end +- object proxyhost: TEdit +- Left = 123 +- Height = 21 +- Top = 13 +- Width = 90 +- OnChange = proxyhostChange +- TabOrder = 3 +- end + object Label5: TLabel + Left = 22 + Height = 14 + Top = 105 +- Width = 51 ++ Width = 53 + Caption = 'Password' + ParentColor = False + end +@@ -111,7 +78,7 @@ + Left = 22 + Height = 14 + Top = 61 +- Width = 54 ++ Width = 61 + Caption = 'User Name' + ParentColor = False + end +@@ -119,7 +86,7 @@ + Left = 227 + Height = 14 + Top = 17 +- Width = 51 ++ Width = 55 + Caption = 'Proxy port' + ParentColor = False + end +@@ -127,10 +94,42 @@ + Left = 22 + Height = 14 + Top = 17 +- Width = 53 ++ Width = 57 + Caption = 'Proxy host' + ParentColor = False + end ++ object proxypass: TEdit ++ Left = 123 ++ Height = 23 ++ Top = 98 ++ Width = 90 ++ OnChange = proxypassChange ++ TabOrder = 0 ++ end ++ object proxyuser: TEdit ++ Left = 123 ++ Height = 23 ++ Top = 57 ++ Width = 90 ++ OnChange = proxyuserChange ++ TabOrder = 1 ++ end ++ object proxyport: TEdit ++ Left = 307 ++ Height = 23 ++ Top = 13 ++ Width = 40 ++ OnChange = proxyportChange ++ TabOrder = 2 ++ end ++ object proxyhost: TEdit ++ Left = 123 ++ Height = 23 ++ Top = 13 ++ Width = 90 ++ OnChange = proxyhostChange ++ TabOrder = 3 ++ end + end + end + object GroupBox2: TGroupBox +@@ -146,22 +145,22 @@ + Left = 39 + Height = 14 + Top = 60 +- Width = 112 ++ Width = 121 + Caption = 'Anonymous password' + ParentColor = False + end + object ftppassive: TCheckBox + Left = 39 +- Height = 21 ++ Height = 22 + Top = 18 +- Width = 111 ++ Width = 120 + Caption = 'FTP Passive Mode' + OnClick = ftppassiveClick + TabOrder = 0 + end + object anonpass: TEdit + Left = 210 +- Height = 21 ++ Height = 23 + Top = 52 + Width = 144 + OnChange = anonpassChange +@@ -170,9 +169,9 @@ + end + object CheckBox1: TCheckBox + Left = 20 +- Height = 21 ++ Height = 22 + Top = 350 +- Width = 255 ++ Width = 287 + Caption = 'Ask confirmation before any Internet connection' + OnClick = CheckBox1Click + TabOrder = 2 +@@ -180,8 +179,8 @@ + end + object Page2: TTabSheet + Caption = 'Orbital Elements' +- ClientHeight = 430 +- ClientWidth = 478 ++ ClientHeight = 399 ++ ClientWidth = 476 + object Label6: TLabel + Left = 28 + Height = 14 +@@ -202,7 +201,7 @@ + Left = 16 + Height = 90 + Top = 48 +- Width = 438 ++ Width = 436 + Anchors = [akTop, akLeft, akRight] + OnExit = CometUrlListExit + TabOrder = 0 +@@ -211,7 +210,7 @@ + Left = 16 + Height = 90 + Top = 228 +- Width = 438 ++ Width = 436 + Anchors = [akTop, akLeft, akRight] + OnExit = AsteroidUrlListExit + TabOrder = 4 +@@ -319,8 +318,8 @@ + end + object Page3: TTabSheet + Caption = 'Online DSS' +- ClientHeight = 430 +- ClientWidth = 478 ++ ClientHeight = 399 ++ ClientWidth = 476 + object Label8: TLabel + Left = 20 + Height = 14 +@@ -333,7 +332,7 @@ + Left = 16 + Height = 324 + Top = 48 +- Width = 454 ++ Width = 452 + Anchors = [akTop, akLeft, akRight] + ColCount = 2 + DefaultColWidth = 120 +diff -ur skychart_3.2/skychart/pu_config_internet.lrs skychart_3.2_up/skychart/pu_config_internet.lrs +--- skychart_3.2/skychart/pu_config_internet.lrs 2010-10-04 12:38:56.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_internet.lrs 2011-03-09 15:18:57.152091512 +0100 +@@ -1,110 +1,110 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_internet','FORMDATA',[ +- 'TPF0'#18'Tf_config_internet'#17'f_config_internet'#4'Left'#3'/'#2#6'Height'#3 +- +#228#1#3'Top'#2'X'#5'Width'#3#226#1#13'ActiveControl'#7#9'MainPanel'#11'Bord' ++ 'TPF0'#18'Tf_config_internet'#17'f_config_internet'#4'Left'#3#4#2#6'Height'#3 ++ +#228#1#3'Top'#2'R'#5'Width'#3#226#1#13'ActiveControl'#7#9'MainPanel'#11'Bord' + +'erIcons'#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7'Caption' + +#6#8'Internet'#12'ClientHeight'#3#228#1#11'ClientWidth'#3#226#1#11'Font.Heig' + +'ht'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestro' +- +'y'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6 +- +'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3#226 +- +#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#178#1 +- +#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl' +- +#12'PageControl1'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3#226#1 +- +#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7 +- +'akRight'#8'akBottom'#0#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TT' +- +'abSheet'#5'Page1'#7'Caption'#6#5'Proxy'#12'ClientHeight'#3#174#1#11'ClientW' +- +'idth'#3#222#1#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#20#6'Height'#3#201#0#3 +- +'Top'#2#12#5'Width'#3#145#1#7'Caption'#6#10'HTTP Proxy'#12'ClientHeight'#3 +- +#186#0#11'ClientWidth'#3#141#1#8'TabOrder'#2#0#0#9'TCheckBox'#9'httpproxy'#4 +- +'Left'#2#30#6'Height'#2#21#3'Top'#2#11#5'Width'#2'e'#7'Caption'#6#14'Use HTT' +- +'P Proxy'#7'OnClick'#7#14'httpproxyClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Pa' +- +'nel2'#4'Left'#2#16#6'Height'#3#137#0#3'Top'#2'('#5'Width'#3'z'#1#12'ClientH' +- +'eight'#3#137#0#11'ClientWidth'#3'z'#1#8'TabOrder'#2#1#0#5'TEdit'#9'proxypas' +- +'s'#4'Left'#2'{'#6'Height'#2#21#3'Top'#2'b'#5'Width'#2'Z'#8'OnChange'#7#15'p' +- +'roxypassChange'#8'TabOrder'#2#0#0#0#5'TEdit'#9'proxyuser'#4'Left'#2'{'#6'He' +- +'ight'#2#21#3'Top'#2'9'#5'Width'#2'Z'#8'OnChange'#7#15'proxyuserChange'#8'Ta' +- +'bOrder'#2#1#0#0#5'TEdit'#9'proxyport'#4'Left'#3'3'#1#6'Height'#2#21#3'Top'#2 +- +#13#5'Width'#2'('#8'OnChange'#7#15'proxyportChange'#8'TabOrder'#2#2#0#0#5'TE' +- +'dit'#9'proxyhost'#4'Left'#2'{'#6'Height'#2#21#3'Top'#2#13#5'Width'#2'Z'#8'O' +- +'nChange'#7#15'proxyhostChange'#8'TabOrder'#2#3#0#0#6'TLabel'#6'Label5'#4'Le' +- +'ft'#2#22#6'Height'#2#14#3'Top'#2'i'#5'Width'#2'3'#7'Caption'#6#8'Password' +- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#22#6'Height'#2#14#3'Top' +- +#2'='#5'Width'#2'6'#7'Caption'#6#9'User Name'#11'ParentColor'#8#0#0#6'TLabel' +- +#6'Label3'#4'Left'#3#227#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'3'#7'Captio' +- +'n'#6#10'Proxy port'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#22#6 +- +'Height'#2#14#3'Top'#2#17#5'Width'#2'5'#7'Caption'#6#10'Proxy host'#11'Paren' +- +'tColor'#8#0#0#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#20#6'Height'#2'x'#3'T' +- +'op'#3#222#0#5'Width'#3#145#1#7'Caption'#6#4'FTP '#12'ClientHeight'#2'i'#11 +- +'ClientWidth'#3#141#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2''''#6 +- +'Height'#2#14#3'Top'#2'<'#5'Width'#2'p'#7'Caption'#6#18'Anonymous password' +- +#11'ParentColor'#8#0#0#9'TCheckBox'#10'ftppassive'#4'Left'#2''''#6'Height'#2 +- +#21#3'Top'#2#18#5'Width'#2'o'#7'Caption'#6#16'FTP Passive Mode'#7'OnClick'#7 +- +#15'ftppassiveClick'#8'TabOrder'#2#0#0#0#5'TEdit'#8'anonpass'#4'Left'#3#210#0 +- +#6'Height'#2#21#3'Top'#2'4'#5'Width'#3#144#0#8'OnChange'#7#14'anonpassChange' +- +#8'TabOrder'#2#1#0#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#20#6'Height'#2#21 +- +#3'Top'#3'^'#1#5'Width'#3#255#0#7'Caption'#6'/Ask confirmation before any In' +- +'ternet connection'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#2#0#0#0#9 +- +'TTabSheet'#5'Page2'#7'Caption'#6#16'Orbital Elements'#12'ClientHeight'#3#174 +- +#1#11'ClientWidth'#3#222#1#0#6'TLabel'#6'Label6'#4'Left'#2#28#6'Height'#2#14 +- +#3'Top'#2#23#5'Width'#3#235#0#7'Caption'#6'/Comet elements in MPC format (on' +- +'e URL by line) '#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#28#6'H' +- +'eight'#2#14#3'Top'#3#196#0#5'Width'#3#243#0#7'Caption'#6'1Asteroid elements' +- +' in MPC format (one URL by line)'#11'ParentColor'#8#0#0#5'TMemo'#12'CometUr' +- +'lList'#4'Left'#2#16#6'Height'#2'Z'#3'Top'#2'0'#5'Width'#3#182#1#7'Anchors' +- +#11#5'akTop'#6'akLeft'#7'akRight'#0#6'OnExit'#7#16'CometUrlListExit'#8'TabOr' +- +'der'#2#0#0#0#5'TMemo'#15'AsteroidUrlList'#4'Left'#2#16#6'Height'#2'Z'#3'Top' +- +#3#228#0#5'Width'#3#182#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#6'On' +- +'Exit'#7#19'AsteroidUrlListExit'#8'TabOrder'#2#4#0#0#7'TButton'#10'comdefaul' +- +'t'#4'Left'#3's'#1#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpac' +- +'ing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#15'comdefaultClic' +- +'k'#8'TabOrder'#2#3#0#0#7'TButton'#10'astdefault'#4'Left'#3's'#1#6'Height'#2 +- +#25#3'Top'#3'F'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' +- +#6#7'Default'#7'OnClick'#7#15'astdefaultClick'#8'TabOrder'#2#8#0#0#7'TButton' +- +#9'brightneo'#4'Left'#3#151#0#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2'x'#25 +- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#18'Bright + NEO + TNO'#7'OnClic' +- +'k'#7#14'brightneoClick'#8'TabOrder'#2#7#0#0#7'TButton'#6'mpcorb'#4'Left'#3 +- +#151#0#6'Height'#2#25#3'Top'#3'f'#1#5'Width'#2'x'#25'BorderSpacing.InnerBord' +- ,'er'#2#4#7'Caption'#6#14'MPCORB > 70Mb!'#7'OnClick'#7#11'mpcorbClick'#8'TabO' +- +'rder'#2#5#0#0#7'TButton'#7'comhttp'#4'Left'#3#19#1#6'Height'#2#25#3'Top'#3 +- +#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'MPC Ht' +- +'tp'#7'OnClick'#7#12'comhttpClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'comftp'#4 +- +'Left'#3#178#0#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.' +- +'InnerBorder'#2#4#7'Caption'#6#7'MPC Ftp'#7'OnClick'#7#11'comftpClick'#8'Tab' +- +'Order'#2#1#7'Visible'#8#0#0#7'TButton'#6'astcdc'#4'Left'#2#30#6'Height'#2#25 +- +#3'Top'#3'F'#1#5'Width'#2'j'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#10'First 5000'#7'OnClick'#7#11'astcdcClick'#8'TabOrder'#2#6#0#0#7'TButton'#7 +- +'Button4'#4'Left'#2'>'#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'['#7'Caption' +- +#6#13'astro.cz HTTP'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#9#7'Visible' +- +#8#0#0#7'TButton'#7'Button5'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'd'#1#5'Wid' +- +'th'#2'j'#7'Caption'#6#16'astro.cz > 70MB!'#7'OnClick'#7#12'Button5Click'#8 +- +'TabOrder'#2#10#7'Visible'#8#0#0#7'TButton'#9'astcdcneo'#4'Left'#3#27#1#6'He' +- +'ight'#2#25#3'Top'#3'f'#1#5'Width'#3#163#0#7'Caption'#6#22'First 5000 + NEO ' +- +'+ TNO'#7'OnClick'#7#14'astcdcneoClick'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5 +- +'Page3'#7'Caption'#6#10'Online DSS'#12'ClientHeight'#3#174#1#11'ClientWidth' +- +#3#222#1#0#6'TLabel'#6'Label8'#4'Left'#2#20#6'Height'#2#14#3'Top'#2#19#5'Wid' +- +'th'#3#135#0#7'Caption'#6#23'Online pictures servers'#11'ParentColor'#8#0#0 +- +#11'TStringGrid'#11'DSSpictures'#4'Left'#2#16#6'Height'#3'D'#1#3'Top'#2'0'#5 +- +'Width'#3#198#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'ColCount'#2#2 +- +#15'DefaultColWidth'#2'x'#9'FixedCols'#2#0#7'Options'#11#15'goFixedVertLine' +- +#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#11'goCo' +- +'lSizing'#9'goEditing'#18'goAlwaysShowEditor'#14'goSmoothScroll'#0#8'RowCoun' +- +'t'#2#11#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#13'OnEditingDone'#7#22'D' +- +'SSpicturesEditingDone'#0#0#7'TButton'#10'DefaultDSS'#4'Left'#3#138#1#6'Heig' +- +'ht'#2#25#3'Top'#3'u'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Ca' +- +'ption'#6#7'Default'#7'OnClick'#7#15'DefaultDSSClick'#8'TabOrder'#2#1#0#0#0#0 +- +#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#178#1#5'Width'#3 +- +#226#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#226#1#8 +- +'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#187#0#6'Height'#2#25#3'Top' +- +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' +- +'erBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrde' +- +'r'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#29#1#6'Height'#2#25#3'Top'#2#12#5 +- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' +- +'r'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0 +- +#0#7'TButton'#7'Button3'#4'Left'#3#127#1#6'Height'#2#25#3'Top'#2#12#5'Width' +- +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6 +- +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7 +- +'TButton'#7'Button6'#4'Left'#2'Y'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7 +- +'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Butt' +- +'on6Click'#8'TabOrder'#2#3#0#0#0#0 ++ +'y'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#8'0.9.28.2'#0 ++ +#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3 ++ +#226#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3 ++ +#178#1#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageC' ++ +'ontrol'#12'PageControl1'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3 ++ +#226#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLe' ++ +'ft'#7'akRight'#8'akBottom'#0#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet' ++ +#5'Page1'#7'Caption'#6#5'Proxy'#12'ClientHeight'#3#143#1#11'ClientWidth'#3 ++ +#220#1#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#20#6'Height'#3#201#0#3'Top'#2#12 ++ +#5'Width'#3#145#1#7'Caption'#6#10'HTTP Proxy'#12'ClientHeight'#3#186#0#11'Cl' ++ +'ientWidth'#3#141#1#8'TabOrder'#2#0#0#9'TCheckBox'#9'httpproxy'#4'Left'#2#30 ++ +#6'Height'#2#22#3'Top'#2#11#5'Width'#2'l'#7'Caption'#6#14'Use HTTP Proxy'#7 ++ +'OnClick'#7#14'httpproxyClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Panel2'#4'Lef' ++ +'t'#2#16#6'Height'#3#137#0#3'Top'#2'('#5'Width'#3'z'#1#12'ClientHeight'#3#137 ++ +#0#11'ClientWidth'#3'z'#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label5'#4'Left'#2#22 ++ +#6'Height'#2#14#3'Top'#2'i'#5'Width'#2'5'#7'Caption'#6#8'Password'#11'Parent' ++ +'Color'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#22#6'Height'#2#14#3'Top'#2'='#5 ++ +'Width'#2'='#7'Caption'#6#9'User Name'#11'ParentColor'#8#0#0#6'TLabel'#6'Lab' ++ +'el3'#4'Left'#3#227#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'7'#7'Caption'#6 ++ +#10'Proxy port'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#22#6'Hei' ++ +'ght'#2#14#3'Top'#2#17#5'Width'#2'9'#7'Caption'#6#10'Proxy host'#11'ParentCo' ++ +'lor'#8#0#0#5'TEdit'#9'proxypass'#4'Left'#2'{'#6'Height'#2#23#3'Top'#2'b'#5 ++ +'Width'#2'Z'#8'OnChange'#7#15'proxypassChange'#8'TabOrder'#2#0#0#0#5'TEdit'#9 ++ +'proxyuser'#4'Left'#2'{'#6'Height'#2#23#3'Top'#2'9'#5'Width'#2'Z'#8'OnChange' ++ +#7#15'proxyuserChange'#8'TabOrder'#2#1#0#0#5'TEdit'#9'proxyport'#4'Left'#3'3' ++ +#1#6'Height'#2#23#3'Top'#2#13#5'Width'#2'('#8'OnChange'#7#15'proxyportChange' ++ +#8'TabOrder'#2#2#0#0#5'TEdit'#9'proxyhost'#4'Left'#2'{'#6'Height'#2#23#3'Top' ++ +#2#13#5'Width'#2'Z'#8'OnChange'#7#15'proxyhostChange'#8'TabOrder'#2#3#0#0#0#0 ++ +#9'TGroupBox'#9'GroupBox2'#4'Left'#2#20#6'Height'#2'x'#3'Top'#3#222#0#5'Widt' ++ +'h'#3#145#1#7'Caption'#6#4'FTP '#12'ClientHeight'#2'i'#11'ClientWidth'#3#141 ++ +#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2''''#6'Height'#2#14#3'Top' ++ +#2'<'#5'Width'#2'y'#7'Caption'#6#18'Anonymous password'#11'ParentColor'#8#0#0 ++ +#9'TCheckBox'#10'ftppassive'#4'Left'#2''''#6'Height'#2#22#3'Top'#2#18#5'Widt' ++ +'h'#2'x'#7'Caption'#6#16'FTP Passive Mode'#7'OnClick'#7#15'ftppassiveClick'#8 ++ +'TabOrder'#2#0#0#0#5'TEdit'#8'anonpass'#4'Left'#3#210#0#6'Height'#2#23#3'Top' ++ +#2'4'#5'Width'#3#144#0#8'OnChange'#7#14'anonpassChange'#8'TabOrder'#2#1#0#0#0 ++ +#9'TCheckBox'#9'CheckBox1'#4'Left'#2#20#6'Height'#2#22#3'Top'#3'^'#1#5'Width' ++ +#3#31#1#7'Caption'#6'/Ask confirmation before any Internet connection'#7'OnC' ++ +'lick'#7#14'CheckBox1Click'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7'Ca' ++ +'ption'#6#16'Orbital Elements'#12'ClientHeight'#3#143#1#11'ClientWidth'#3#220 ++ +#1#0#6'TLabel'#6'Label6'#4'Left'#2#28#6'Height'#2#14#3'Top'#2#23#5'Width'#3 ++ +#235#0#7'Caption'#6'/Comet elements in MPC format (one URL by line) '#11'Par' ++ +'entColor'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#28#6'Height'#2#14#3'Top'#3#196 ++ +#0#5'Width'#3#243#0#7'Caption'#6'1Asteroid elements in MPC format (one URL b' ++ +'y line)'#11'ParentColor'#8#0#0#5'TMemo'#12'CometUrlList'#4'Left'#2#16#6'Hei' ++ +'ght'#2'Z'#3'Top'#2'0'#5'Width'#3#180#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'a' ++ +'kRight'#0#6'OnExit'#7#16'CometUrlListExit'#8'TabOrder'#2#0#0#0#5'TMemo'#15 ++ +'AsteroidUrlList'#4'Left'#2#16#6'Height'#2'Z'#3'Top'#3#228#0#5'Width'#3#180#1 ++ +#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#6'OnExit'#7#19'AsteroidUrlLis' ++ +'tExit'#8'TabOrder'#2#4#0#0#7'TButton'#10'comdefault'#4'Left'#3's'#1#6'Heigh' ++ +'t'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Ca' ++ +'ption'#6#7'Default'#7'OnClick'#7#15'comdefaultClick'#8'TabOrder'#2#3#0#0#7 ++ +'TButton'#10'astdefault'#4'Left'#3's'#1#6'Height'#2#25#3'Top'#3'F'#1#5'Width' ++ +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7 ++ +#15'astdefaultClick'#8'TabOrder'#2#8#0#0#7'TButton'#9'brightneo'#4'Left'#3 ++ +#151#0#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2'x'#25'BorderSpacing.InnerBord' ++ +'er'#2#4#7'Caption'#6#18'Bright + NEO + TNO'#7'OnClick'#7#14'brightneoClick' ++ +#8'TabOrder'#2#7#0#0#7'TButton'#6'mpcorb'#4'Left'#3#151#0#6'Height'#2#25#3'T' ++ +'op'#3'f'#1#5'Width'#2'x'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14 ++ ,'MPCORB > 70Mb!'#7'OnClick'#7#11'mpcorbClick'#8'TabOrder'#2#5#0#0#7'TButton' ++ +#7'comhttp'#4'Left'#3#19#1#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'Bo' ++ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#8'MPC Http'#7'OnClick'#7#12'comht' ++ +'tpClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'comftp'#4'Left'#3#178#0#6'Height' ++ +#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' ++ +'on'#6#7'MPC Ftp'#7'OnClick'#7#11'comftpClick'#8'TabOrder'#2#1#7'Visible'#8#0 ++ +#0#7'TButton'#6'astcdc'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2 ++ +'j'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'First 5000'#7'OnClick' ++ +#7#11'astcdcClick'#8'TabOrder'#2#6#0#0#7'TButton'#7'Button4'#4'Left'#2'>'#6 ++ +'Height'#2#25#3'Top'#3#150#0#5'Width'#2'['#7'Caption'#6#13'astro.cz HTTP'#7 ++ +'OnClick'#7#12'Button4Click'#8'TabOrder'#2#9#7'Visible'#8#0#0#7'TButton'#7'B' ++ +'utton5'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'd'#1#5'Width'#2'j'#7'Caption'#6 ++ +#16'astro.cz > 70MB!'#7'OnClick'#7#12'Button5Click'#8'TabOrder'#2#10#7'Visib' ++ +'le'#8#0#0#7'TButton'#9'astcdcneo'#4'Left'#3#27#1#6'Height'#2#25#3'Top'#3'f' ++ +#1#5'Width'#3#163#0#7'Caption'#6#22'First 5000 + NEO + TNO'#7'OnClick'#7#14 ++ +'astcdcneoClick'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#10 ++ +'Online DSS'#12'ClientHeight'#3#143#1#11'ClientWidth'#3#220#1#0#6'TLabel'#6 ++ +'Label8'#4'Left'#2#20#6'Height'#2#14#3'Top'#2#19#5'Width'#3#135#0#7'Caption' ++ +#6#23'Online pictures servers'#11'ParentColor'#8#0#0#11'TStringGrid'#11'DSSp' ++ +'ictures'#4'Left'#2#16#6'Height'#3'D'#1#3'Top'#2'0'#5'Width'#3#196#1#7'Ancho' ++ +'rs'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'ColCount'#2#2#15'DefaultColWidth'#2 ++ +'x'#9'FixedCols'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10 ++ +'goVertLine'#10'goHorzLine'#13'goRangeSelect'#11'goColSizing'#9'goEditing'#18 ++ +'goAlwaysShowEditor'#14'goSmoothScroll'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16 ++ +'TitleFont.Height'#2#245#13'OnEditingDone'#7#22'DSSpicturesEditingDone'#0#0#7 ++ +'TButton'#10'DefaultDSS'#4'Left'#3#138#1#6'Height'#2#25#3'Top'#3'u'#1#5'Widt' ++ +'h'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick' ++ +#7#15'DefaultDSSClick'#8'TabOrder'#2#1#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left' ++ +#2#0#6'Height'#2'2'#3'Top'#3#178#1#5'Width'#3#226#1#5'Align'#7#8'alBottom'#12 ++ +'ClientHeight'#2'2'#11'ClientWidth'#3#226#1#8'TabOrder'#2#1#0#7'TButton'#7'B' ++ +'utton1'#4'Left'#3#187#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' ++ +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'O' ++ +'K'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' ++ +'2'#4'Left'#3#29#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 ++ +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply' ++ +#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'L' ++ +'eft'#3#127#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop' ++ +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'C' ++ +'ancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left' ++ +#2'Y'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRi' ++ +'ght'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0 ++ +#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config.lrs skychart_3.2_up/skychart/pu_config.lrs +--- skychart_3.2/skychart/pu_config.lrs 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config.lrs 2011-03-09 15:18:23.151272234 +0100 +@@ -1,268 +1,268 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tf_config','FORMDATA',[ +- 'TPF0'#9'Tf_config'#8'f_config'#4'Left'#3't'#1#6'Height'#3';'#2#3'Top'#2'o'#5 +- +'Width'#3#228#2#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#12'bsToolWin' +- +'dow'#7'Caption'#6#13'Configuration'#12'ClientHeight'#3';'#2#11'ClientWidth' +- +#3#228#2#11'Font.Height'#2#245#9'Icon.Data'#10#194#16#0#0#190#16#0#0#0#0#1#0 +- +#1#0' '#0#0#1#0' '#0#168#16#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0' '#0 +- +#0#0#0#0#0#16#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'222'#255'JJJ'#255'JJJ'#255 +- +'JJJ'#255'>>>'#255'222'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 +- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'&' +- +'&&'#255'222'#255'222'#255'>>>'#255'VVV'#255'bbb'#255'nnn'#255'nnn'#255'bbb' +- +#255'bbb'#255'bbb'#255'VVV'#255#0#0#0#255#0#0#0#255#0#0#0#255#26#26#26#255'V' +- +'VV'#255'bbb'#255'VVV'#255'>>>'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255'&&&'#255'>>>'#255'&&&'#255#14#14#14#255'&&&'#255'nnn'#255 +- +#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 +- +'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'JJJ'#255'nnn'#255#146 +- +#146#146#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170#255 +- +#170#170#170#255#146#146#146#255'>>>'#255#0#0#0#255#0#0#0#255#14#14#14#255'J' +- +'JJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 +- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' +- +#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 +- +#182#182#182#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 +- +#255#170#170#170#255#170#170#170#255#164#160#160#255#164#160#160#255#164#160 +- +#160#255#146#146#146#255#134#134#134#255#146#146#146#255#164#160#160#255#146 +- +#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255 +- +#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255 +- +'nnn'#255'bbb'#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170 +- +#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#164#160#160#255 +- +#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 +- +#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146 +- +#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128#255#128 +- +#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 +- +#255#255#255#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170#170#170#255 +- +#170#170#170#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 +- +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146 +- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 +- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' +- +#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 +- +'VVV'#255'VVV'#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 +- +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164 +- +#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146#146#255 +- +#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128 +- +#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'b' +- +'bb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255#164#160#160 +- +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 +- +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146 +- +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255 +- +#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zz' +- +'z'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' +- +#255'VVV'#255'VVV'#255'JJJ'#255#164#160#160#255#164#160#160#255#164#160#160 +- +#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146 +- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 +- +#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255 +- ,#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb' +- +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255#164#160 +- +#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146 +- +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255 +- +#164#160#160#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134 +- +#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn' +- +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 +- +'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 +- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146 +- +#146#146#255#164#160#160#255#255#255#255#255#194#194#194#255#164#160#160#255 +- +#146#146#146#255#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 +- +'nnn'#255'nnn'#255'k'#255#255#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' +- +#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146 +- +#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 +- +#146#255#134#134#134#255#134#134#134#255#146#146#146#255#230#230#230#255#242 +- +#242#242#255#194#194#194#255#170#170#170#255#164#160#160#255#134#134#134#255 +- +'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb' +- +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255#146#146 +- +#146#255#146#146#146#255#146#146#146#255#134#134#134#255#242#242#242#255#146 +- +#146#146#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134#134#255 +- +#164#160#160#255#242#242#242#255#255#255#255#255#218#218#218#255#182#182#182 +- +#255#164#160#160#255#134#134#134#255'zzz'#255'nnn'#255'nnn'#255'bbb'#255'bbb' +- +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255 +- +'JJJ'#255'JJJ'#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134 +- +#134#255#134#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128 +- +#128#128#255#134#134#134#255#146#146#146#255#194#194#194#255#255#255#255#255 +- +#255#255#255#255#230#230#230#255#192#192#192#255#164#160#160#255#146#146#146 +- +#255'zzz'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 +- +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255#134#134#134#255#134 +- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255#128#128#128#255 +- +#128#128#128#255#128#128#128#255'zzz'#255#128#128#128#255#134#134#134#255#164 +- +#160#160#255#230#230#230#255#242#242#242#255#255#255#255#255#230#230#230#255 +- +#206#206#206#255#170#170#170#255#146#146#146#255'zzz'#255'nnn'#255'bbb'#255 +- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>' +- +#255'>>>'#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 +- +#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255#128 +- +#128#128#255#164#160#160#255#230#230#230#255#230#230#230#255#242#242#242#255 +- +#230#230#230#255#206#206#206#255#182#182#182#255#164#160#160#255#128#128#128 +- +#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 +- +#0#254#254#255'JJJ'#255'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255 +- +'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'zzz'#255#128#128#128 +- +#255#194#194#194#255#218#218#218#255#206#206#206#255#230#230#230#255#230#230 +- +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'nnn' +- +#255'bbb'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 +- +'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn' +- +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255#128#128#128#255#206#206#206 +- +#255#218#218#218#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230 +- +#230#255#206#206#206#255#170#170#170#255#146#146#146#255'nnn'#255'bbb'#255'J' +- +'JJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'nnn'#255'n' +- +'nn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz' +- +#255'nnn'#255'bbb'#255'bbb'#255'nnn'#255#164#160#160#255#182#182#182#255#194 +- +#194#194#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 +- +#218#218#218#255#182#182#182#255#146#146#146#255'zzz'#255'bbb'#255'JJJ'#255 +- +'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn' +- +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz'#255#0#254#254#255'nnn' +- +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255#192#192#192#255#182#182#182#255#170 +- +#170#170#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 +- +#218#218#218#255#192#192#192#255#164#160#160#255'zzz'#255'bbb'#255'JJJ'#255 +- +'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn'#255'nnn' +- +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 +- +'bbb'#255'bbb'#255'VVV'#255'zzz'#255#164#160#160#255#194#194#194#255#164#160 +- +#160#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255#218 +- +#218#218#255#192#192#192#255#164#160#160#255#128#128#128#255'bbb'#255'JJJ' +- +#255'>>>'#255'P'#0'2'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bb' +- ,'b'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV' +- +#255'VVV'#255'VVV'#255'VVV'#255#164#160#160#255#134#134#134#255#170#170#170 +- +#255#164#160#160#255#194#194#194#255#218#218#218#255#230#230#230#255#230#230 +- +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'bbb' +- +#255'JJJ'#255'>>>'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' +- +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 +- +'VVV'#255'VVV'#255'VVV'#255'bbb'#255#158#158#158#255#164#160#160#255#134#134 +- +#134#255#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218 +- +#218#218#255#206#206#206#255#194#194#194#255#170#170#170#255#134#134#134#255 +- +'nnn'#255'JJJ'#255'>>>'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' +- +#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 +- +'JJJ'#255'JJJ'#255'JJJ'#255#134#134#134#255'nnn'#255#164#160#160#255'nnn'#255 +- +#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218#218#218 +- +#255#206#206#206#255#192#192#192#255#170#170#170#255#146#146#146#255'nnn'#255 +- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255#218#218#218 +- +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 +- +'JJJ'#255'JJJ'#255'JJJ'#255#146#146#146#255'bbb'#255#134#134#134#255'nnn'#255 +- +#134#134#134#255#170#170#170#255#192#192#192#255#206#206#206#255#206#206#206 +- +#255#194#194#194#255#182#182#182#255#170#170#170#255#146#146#146#255'nnn'#255 +- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV' +- +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 +- +'>>>'#255'bbb'#255'nnn'#255'zzz'#255'bbb'#255'bbb'#255#128#128#128#255#164 +- +#160#160#255#182#182#182#255#194#194#194#255#192#192#192#255#192#192#192#255 +- +#182#182#182#255#164#160#160#255#146#146#146#255'VVV'#255'VVV'#255'VVV'#255 +- +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ' +- +#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255#134#134 +- +#134#255'>>>'#255#134#134#134#255'JJJ'#255'VVV'#255'zzz'#255#158#158#158#255 +- +#170#170#170#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 +- +#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'J' +- +'JJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>' +- +#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'JJJ'#255'nnn'#255'JJJ'#255'nnn' +- +#255'>>>'#255'VVV'#255'nnn'#255#146#146#146#255#164#160#160#255#170#170#170 +- +#255#170#170#170#255#164#160#160#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ' +- +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255 +- +'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2' +- +#255'P'#0'2'#255'nnn'#255'>>>'#255'nnn'#255'>>>'#255'222'#255'JJJ'#255'nnn' +- +#255#134#134#134#255#158#158#158#255#164#160#160#255#164#160#160#255#164#160 +- +#160#255#255#255#255#255#255#255#255#255#255#255#255#192#255#255#240#0#224 +- +#252#0#0#0'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'O' +- +'nClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormD' +- +'estroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Pa' +- +'nel2'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#18#2#5'Width'#3#228#2#5'Align'#7#8 +- +'alBottom'#12'ClientHeight'#2')'#11'ClientWidth'#3#228#2#8'TabOrder'#2#0#0#9 +- +'TCheckBox'#8'Applyall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#12#5'Width'#3 +- +#148#0#7'Caption'#6#25'Apply Change To All Chart'#7'Checked'#9#5'State'#7#9 +- +'cbChecked'#8'TabOrder'#2#0#0#0#7'TButton'#5'OKBtn'#4'Left'#3#14#1#6'Height' +- +#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#7'TButton'#5'App' +- +'ly'#4'Left'#3'f'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing' +- +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#10'ApplyClick'#8'TabOr' +- +'der'#2#2#0#0#7'TButton'#9'CancelBtn'#4'Left'#3#190#1#6'Height'#2#25#3'Top'#2 +- +#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 +- +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#3#0#0#7'TButton'#7'HelpBtn'#4'Lef' +- +'t'#3#22#2#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBor' +- +'der'#2#4#7'Caption'#6#5'&Help'#7'OnClick'#7#12'HelpBtnClick'#8'TabOrder'#2#4 +- +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#3 +- +#232#0#5'Align'#7#6'alLeft'#12'ClientHeight'#3#18#2#11'ClientWidth'#3#232#0#8 +- +'TabOrder'#2#1#0#9'TTreeView'#9'TreeView1'#4'Left'#2#1#6'Height'#3#232#1#3'T' +- +'op'#2#1#5'Width'#3#230#0#5'Align'#7#8'alClient'#10'AutoExpand'#9#17'Default' +- +'ItemHeight'#2#15#14'ExpandSignType'#7#10'tvestArrow'#13'HideSelection'#8#8 +- +'HotTrack'#9#6'Indent'#2#19#8'ReadOnly'#9#16'RightClickSelect'#9#9'RowSelect' +- +#9#10'ScrollBars'#7#6'ssNone'#8'SortType'#7#6'stBoth'#8'TabOrder'#2#0#8'OnCh' +- ,'ange'#7#15'TreeView1Change'#7'Options'#11#13'tvoAutoExpand'#17'tvoAutoItemH' +- +'eight'#11'tvoHotTrack'#21'tvoKeepCollapsedNodes'#11'tvoReadOnly'#19'tvoRigh' +- +'tClickSelect'#12'tvoRowSelect'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoSh' +- +'owRoot'#11'tvoToolTips'#0#10'Items.Data'#10#194#7#0#0#249#255#255#255#2#0#9 +- +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#0#0#0#0#2#0#0#0#0#0#0#0#1#12#0#0#0'1-' +- +' Date/Time'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 +- +#0#12#0#0#0'1- Date/Time'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#18#0#0#0'2- Time Simulation'#255#255#255#255#255#255#255#255#160#169'uA'#0 +- +#0#0#0#2#0#0#0#0#0#0#0#1#14#0#0#0'2- Observatory'#0#0#0#0#0#0#0#0#255#255#255 +- +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'1- Observatory'#0#0#0#0#0#0#0 +- +#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Horizon'#0#0 +- +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#6#0#0#0#0#0#0#0#1#21#0#0#0'3- Chart, Coordi' +- +'nates'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#21 +- +#0#0#0'1- Chart, Coordinates'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#18#0#0#0'2- Field of vision'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#13#0#0#0'3- Projection'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#16#0#0#0'4- Object Filter'#255#255#255#255#255#255#255#255#160 +- +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#15#0#0#0'5- Grid Spacing'#0#0#0#0#0#0#0#0 +- +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'6- Object List'#0 +- +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#13#0#0#0'4- Catalogues' +- +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#13#0#0#0 +- +'1- Catalogues'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0 +- +#0#0#12#0#0#0'2- CdC Stars'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0 +- +#0#0#0#0#0#0#0#0#14#0#0#0'3- CdC Nebulae'#0#0#0#0#0#0#0#0#255#255#255#255#255 +- +#255#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Obsolete'#0#0#0#0#0#0#0#0#160#169 +- +'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#15#0#0#0'5- Solar System'#0#0#0#0#0#0#0#0#255 +- +#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#15#0#0#0'1- Solar System'#0#0 +- +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Planets'#0#0#0 +- +#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'3- Comets'#0#0#0#0#0 +- +#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#12#0#0#0'4- Asteroids'#0#0#0#0#0 +- +#0#0#0#160#169'uA'#0#0#0#0#9#0#0#0#0#0#0#0#1#10#0#0#0'6- Display'#0#0#0#0#0#0 +- +#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'1- Display'#0 +- +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#17#0#0#0'2- Display col' +- +'our'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0 +- +#0#0'3- Deep sky object colour'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 +- +#255#0#0#0#0#0#0#0#0#0#24#0#0#0'4- Sky background colour'#0#0#0#0#0#0#0#0#160 +- +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'5- Lines'#0#0#0#0#0#0#0#0#160#169 +- +'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'6- Labels'#0#0#0#0#0#0#0#0#160#169'uA' +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'7- Fonts'#0#0#0#0#0#0#0#0#255#255#255#255 +- +#255#255#255#255#0#0#0#0#0#0#0#0#0#27#0#0#0'8- Finder circle (Eyepiece)'#0#0 +- +#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0#0#0'9- F' +- +'inder rectangle (CCD)'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#3#0#0#0#0#0#0#0#1 +- +#11#0#0#0'7- Pictures'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 +- +#0#0#0#0#0#0#9#0#0#0'1- Object'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 +- +#255#0#0#0#0#0#0#0#0#0#13#0#0#0'2- Background'#0#0#0#0#0#0#0#0#255#255#255 +- +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'3- DSS RealSky'#255#255#255 +- +#255#255#255#255#255#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#9#0#0#0'8- System' +- +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#9#0#0#0'1' +- +'- System'#255#255#255#255#255#255#255#255#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#9#0#0#0'2- Server'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 +- +#0#0#0#0#0#0#12#0#0#0'3- Telescope'#0#0#0#0#0#0#0#0#255#255#255#255#255#255 +- +#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Language'#0#0#0#0#0#0#0#0#255#255#255 +- +#255#255#255#255#255#3#0#0#0#0#0#0#0#1#11#0#0#0'9- Internet'#0#0#0#0#0#0#0#0 +- +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'1- Proxy'#0#0#0#0 +- +#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#19#0#0#0'2- Orbit' +- +'al Elements'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 +- +#0#22#0#0#0'3- Online DSS pictures'#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'He' +- +'ight'#2'('#3'Top'#3#233#1#5'Width'#3#230#0#5'Align'#7#8'alBottom'#12'Client' +- +'Height'#2'('#11'ClientWidth'#3#230#0#8'TabOrder'#2#1#0#7'TButton'#8'previou' +- +'s'#4'Left'#2'?'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akL' +- +'eft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'<'#7'On' +- +'Click'#7#13'previousClick'#8'TabOrder'#2#0#0#0#7'TButton'#4'next'#4'Left'#2 +- +'o'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akLeft'#8'akBott' +- +'om'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'>'#7'OnClick'#7#9'ne' +- ,'xtClick'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel4'#4'Left'#3#237#0#6'Heig' +- +'ht'#3#18#2#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientHeig' +- +'ht'#3#18#2#11'ClientWidth'#3#247#1#8'TabOrder'#2#2#0#9'TMultiDoc'#9'MultiDo' +- +'c1'#4'Left'#2#1#6'Height'#3#16#2#3'Top'#2#1#5'Width'#3#245#1#9'Maximized'#9 +- +#11'BorderWidth'#2#3#11'TitleHeight'#2#12#13'KeepLastChild'#8#19'WireframeMo' +- +'veResize'#8#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#5'Color'#7#7 +- +'clBlack'#11'ParentColor'#8#8'TabOrder'#2#0#0#0#0#9'TSplitter'#9'Splitter1'#4 +- +'Left'#3#232#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#2#5#7'Beveled'#9#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tf_config','FORMDATA',[ ++ 'TPF0'#9'Tf_config'#8'f_config'#4'Left'#3't'#1#6'Height'#3';'#2#3'Top'#2'o'#5 ++ +'Width'#3#228#2#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#12'bsToolWin' ++ +'dow'#7'Caption'#6#13'Configuration'#12'ClientHeight'#3';'#2#11'ClientWidth' ++ +#3#228#2#11'Font.Height'#2#245#9'Icon.Data'#10#194#16#0#0#190#16#0#0#0#0#1#0 ++ +#1#0' '#0#0#1#0' '#0#168#16#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0' '#0 ++ +#0#0#0#0#0#16#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'222'#255'JJJ'#255'JJJ'#255 ++ +'JJJ'#255'>>>'#255'222'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 ++ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'&' ++ +'&&'#255'222'#255'222'#255'>>>'#255'VVV'#255'bbb'#255'nnn'#255'nnn'#255'bbb' ++ +#255'bbb'#255'bbb'#255'VVV'#255#0#0#0#255#0#0#0#255#0#0#0#255#26#26#26#255'V' ++ +'VV'#255'bbb'#255'VVV'#255'>>>'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255'&&&'#255'>>>'#255'&&&'#255#14#14#14#255'&&&'#255'nnn'#255 ++ +#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 ++ +'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'JJJ'#255'nnn'#255#146 ++ +#146#146#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170#255 ++ +#170#170#170#255#146#146#146#255'>>>'#255#0#0#0#255#0#0#0#255#14#14#14#255'J' ++ +'JJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 ++ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' ++ +#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 ++ +#182#182#182#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 ++ +#255#170#170#170#255#170#170#170#255#164#160#160#255#164#160#160#255#164#160 ++ +#160#255#146#146#146#255#134#134#134#255#146#146#146#255#164#160#160#255#146 ++ +#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255 ++ +#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255 ++ +'nnn'#255'bbb'#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170 ++ +#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#164#160#160#255 ++ +#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 ++ +#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146 ++ +#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128#255#128 ++ +#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 ++ +#255#255#255#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170#170#170#255 ++ +#170#170#170#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 ++ +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146 ++ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 ++ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' ++ +#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 ++ +'VVV'#255'VVV'#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 ++ +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164 ++ +#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146#146#255 ++ +#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128 ++ +#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'b' ++ +'bb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255#164#160#160 ++ +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 ++ +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146 ++ +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255 ++ +#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zz' ++ +'z'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' ++ +#255'VVV'#255'VVV'#255'JJJ'#255#164#160#160#255#164#160#160#255#164#160#160 ++ +#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146 ++ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 ++ +#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255 ++ ,#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb' ++ +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255#164#160 ++ +#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146 ++ +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255 ++ +#164#160#160#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134 ++ +#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn' ++ +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 ++ +'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 ++ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146 ++ +#146#146#255#164#160#160#255#255#255#255#255#194#194#194#255#164#160#160#255 ++ +#146#146#146#255#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 ++ +'nnn'#255'nnn'#255'k'#255#255#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' ++ +#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146 ++ +#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 ++ +#146#255#134#134#134#255#134#134#134#255#146#146#146#255#230#230#230#255#242 ++ +#242#242#255#194#194#194#255#170#170#170#255#164#160#160#255#134#134#134#255 ++ +'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb' ++ +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255#146#146 ++ +#146#255#146#146#146#255#146#146#146#255#134#134#134#255#242#242#242#255#146 ++ +#146#146#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134#134#255 ++ +#164#160#160#255#242#242#242#255#255#255#255#255#218#218#218#255#182#182#182 ++ +#255#164#160#160#255#134#134#134#255'zzz'#255'nnn'#255'nnn'#255'bbb'#255'bbb' ++ +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255 ++ +'JJJ'#255'JJJ'#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134 ++ +#134#255#134#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128 ++ +#128#128#255#134#134#134#255#146#146#146#255#194#194#194#255#255#255#255#255 ++ +#255#255#255#255#230#230#230#255#192#192#192#255#164#160#160#255#146#146#146 ++ +#255'zzz'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 ++ +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255#134#134#134#255#134 ++ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255#128#128#128#255 ++ +#128#128#128#255#128#128#128#255'zzz'#255#128#128#128#255#134#134#134#255#164 ++ +#160#160#255#230#230#230#255#242#242#242#255#255#255#255#255#230#230#230#255 ++ +#206#206#206#255#170#170#170#255#146#146#146#255'zzz'#255'nnn'#255'bbb'#255 ++ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>' ++ +#255'>>>'#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 ++ +#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255#128 ++ +#128#128#255#164#160#160#255#230#230#230#255#230#230#230#255#242#242#242#255 ++ +#230#230#230#255#206#206#206#255#182#182#182#255#164#160#160#255#128#128#128 ++ +#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 ++ +#0#254#254#255'JJJ'#255'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255 ++ +'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'zzz'#255#128#128#128 ++ +#255#194#194#194#255#218#218#218#255#206#206#206#255#230#230#230#255#230#230 ++ +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'nnn' ++ +#255'bbb'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 ++ +'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn' ++ +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255#128#128#128#255#206#206#206 ++ +#255#218#218#218#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230 ++ +#230#255#206#206#206#255#170#170#170#255#146#146#146#255'nnn'#255'bbb'#255'J' ++ +'JJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'nnn'#255'n' ++ +'nn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz' ++ +#255'nnn'#255'bbb'#255'bbb'#255'nnn'#255#164#160#160#255#182#182#182#255#194 ++ +#194#194#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 ++ +#218#218#218#255#182#182#182#255#146#146#146#255'zzz'#255'bbb'#255'JJJ'#255 ++ +'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn' ++ +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz'#255#0#254#254#255'nnn' ++ +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255#192#192#192#255#182#182#182#255#170 ++ +#170#170#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 ++ +#218#218#218#255#192#192#192#255#164#160#160#255'zzz'#255'bbb'#255'JJJ'#255 ++ +'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn'#255'nnn' ++ +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 ++ +'bbb'#255'bbb'#255'VVV'#255'zzz'#255#164#160#160#255#194#194#194#255#164#160 ++ +#160#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255#218 ++ +#218#218#255#192#192#192#255#164#160#160#255#128#128#128#255'bbb'#255'JJJ' ++ +#255'>>>'#255'P'#0'2'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bb' ++ ,'b'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV' ++ +#255'VVV'#255'VVV'#255'VVV'#255#164#160#160#255#134#134#134#255#170#170#170 ++ +#255#164#160#160#255#194#194#194#255#218#218#218#255#230#230#230#255#230#230 ++ +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'bbb' ++ +#255'JJJ'#255'>>>'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' ++ +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 ++ +'VVV'#255'VVV'#255'VVV'#255'bbb'#255#158#158#158#255#164#160#160#255#134#134 ++ +#134#255#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218 ++ +#218#218#255#206#206#206#255#194#194#194#255#170#170#170#255#134#134#134#255 ++ +'nnn'#255'JJJ'#255'>>>'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' ++ +#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 ++ +'JJJ'#255'JJJ'#255'JJJ'#255#134#134#134#255'nnn'#255#164#160#160#255'nnn'#255 ++ +#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218#218#218 ++ +#255#206#206#206#255#192#192#192#255#170#170#170#255#146#146#146#255'nnn'#255 ++ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255#218#218#218 ++ +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 ++ +'JJJ'#255'JJJ'#255'JJJ'#255#146#146#146#255'bbb'#255#134#134#134#255'nnn'#255 ++ +#134#134#134#255#170#170#170#255#192#192#192#255#206#206#206#255#206#206#206 ++ +#255#194#194#194#255#182#182#182#255#170#170#170#255#146#146#146#255'nnn'#255 ++ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV' ++ +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 ++ +'>>>'#255'bbb'#255'nnn'#255'zzz'#255'bbb'#255'bbb'#255#128#128#128#255#164 ++ +#160#160#255#182#182#182#255#194#194#194#255#192#192#192#255#192#192#192#255 ++ +#182#182#182#255#164#160#160#255#146#146#146#255'VVV'#255'VVV'#255'VVV'#255 ++ +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ' ++ +#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255#134#134 ++ +#134#255'>>>'#255#134#134#134#255'JJJ'#255'VVV'#255'zzz'#255#158#158#158#255 ++ +#170#170#170#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 ++ +#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'J' ++ +'JJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>' ++ +#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'JJJ'#255'nnn'#255'JJJ'#255'nnn' ++ +#255'>>>'#255'VVV'#255'nnn'#255#146#146#146#255#164#160#160#255#170#170#170 ++ +#255#170#170#170#255#164#160#160#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ' ++ +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255 ++ +'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2' ++ +#255'P'#0'2'#255'nnn'#255'>>>'#255'nnn'#255'>>>'#255'222'#255'JJJ'#255'nnn' ++ +#255#134#134#134#255#158#158#158#255#164#160#160#255#164#160#160#255#164#160 ++ +#160#255#255#255#255#255#255#255#255#255#255#255#255#192#255#255#240#0#224 ++ +#252#0#0#0'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'O' ++ +'nClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormD' ++ +'estroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Pa' ++ +'nel2'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#18#2#5'Width'#3#228#2#5'Align'#7#8 ++ +'alBottom'#12'ClientHeight'#2')'#11'ClientWidth'#3#228#2#8'TabOrder'#2#0#0#9 ++ +'TCheckBox'#8'Applyall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#12#5'Width'#3 ++ +#148#0#7'Caption'#6#25'Apply Change To All Chart'#7'Checked'#9#5'State'#7#9 ++ +'cbChecked'#8'TabOrder'#2#0#0#0#7'TButton'#5'OKBtn'#4'Left'#3#14#1#6'Height' ++ +#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 ++ +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#7'TButton'#5'App' ++ +'ly'#4'Left'#3'f'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing' ++ +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#10'ApplyClick'#8'TabOr' ++ +'der'#2#2#0#0#7'TButton'#9'CancelBtn'#4'Left'#3#190#1#6'Height'#2#25#3'Top'#2 ++ +#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 ++ +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#3#0#0#7'TButton'#7'HelpBtn'#4'Lef' ++ +'t'#3#22#2#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBor' ++ +'der'#2#4#7'Caption'#6#5'&Help'#7'OnClick'#7#12'HelpBtnClick'#8'TabOrder'#2#4 ++ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#3 ++ +#232#0#5'Align'#7#6'alLeft'#12'ClientHeight'#3#18#2#11'ClientWidth'#3#232#0#8 ++ +'TabOrder'#2#1#0#9'TTreeView'#9'TreeView1'#4'Left'#2#1#6'Height'#3#232#1#3'T' ++ +'op'#2#1#5'Width'#3#230#0#5'Align'#7#8'alClient'#10'AutoExpand'#9#17'Default' ++ +'ItemHeight'#2#15#14'ExpandSignType'#7#10'tvestArrow'#13'HideSelection'#8#8 ++ +'HotTrack'#9#6'Indent'#2#19#8'ReadOnly'#9#16'RightClickSelect'#9#9'RowSelect' ++ +#9#10'ScrollBars'#7#6'ssNone'#8'SortType'#7#6'stBoth'#8'TabOrder'#2#0#8'OnCh' ++ ,'ange'#7#15'TreeView1Change'#7'Options'#11#13'tvoAutoExpand'#17'tvoAutoItemH' ++ +'eight'#11'tvoHotTrack'#21'tvoKeepCollapsedNodes'#11'tvoReadOnly'#19'tvoRigh' ++ +'tClickSelect'#12'tvoRowSelect'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoSh' ++ +'owRoot'#11'tvoToolTips'#0#10'Items.Data'#10#194#7#0#0#249#255#255#255#2#0#9 ++ +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#0#0#0#0#2#0#0#0#0#0#0#0#1#12#0#0#0'1-' ++ +' Date/Time'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 ++ +#0#12#0#0#0'1- Date/Time'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#18#0#0#0'2- Time Simulation'#255#255#255#255#255#255#255#255#160#169'uA'#0 ++ +#0#0#0#2#0#0#0#0#0#0#0#1#14#0#0#0'2- Observatory'#0#0#0#0#0#0#0#0#255#255#255 ++ +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'1- Observatory'#0#0#0#0#0#0#0 ++ +#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Horizon'#0#0 ++ +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#6#0#0#0#0#0#0#0#1#21#0#0#0'3- Chart, Coordi' ++ +'nates'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#21 ++ +#0#0#0'1- Chart, Coordinates'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#18#0#0#0'2- Field of vision'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#13#0#0#0'3- Projection'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#16#0#0#0'4- Object Filter'#255#255#255#255#255#255#255#255#160 ++ +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#15#0#0#0'5- Grid Spacing'#0#0#0#0#0#0#0#0 ++ +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'6- Object List'#0 ++ +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#13#0#0#0'4- Catalogues' ++ +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#13#0#0#0 ++ +'1- Catalogues'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0 ++ +#0#0#12#0#0#0'2- CdC Stars'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0 ++ +#0#0#0#0#0#0#0#0#14#0#0#0'3- CdC Nebulae'#0#0#0#0#0#0#0#0#255#255#255#255#255 ++ +#255#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Obsolete'#0#0#0#0#0#0#0#0#160#169 ++ +'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#15#0#0#0'5- Solar System'#0#0#0#0#0#0#0#0#255 ++ +#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#15#0#0#0'1- Solar System'#0#0 ++ +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Planets'#0#0#0 ++ +#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'3- Comets'#0#0#0#0#0 ++ +#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#12#0#0#0'4- Asteroids'#0#0#0#0#0 ++ +#0#0#0#160#169'uA'#0#0#0#0#9#0#0#0#0#0#0#0#1#10#0#0#0'6- Display'#0#0#0#0#0#0 ++ +#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'1- Display'#0 ++ +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#17#0#0#0'2- Display col' ++ +'our'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0 ++ +#0#0'3- Deep sky object colour'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 ++ +#255#0#0#0#0#0#0#0#0#0#24#0#0#0'4- Sky background colour'#0#0#0#0#0#0#0#0#160 ++ +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'5- Lines'#0#0#0#0#0#0#0#0#160#169 ++ +'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'6- Labels'#0#0#0#0#0#0#0#0#160#169'uA' ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'7- Fonts'#0#0#0#0#0#0#0#0#255#255#255#255 ++ +#255#255#255#255#0#0#0#0#0#0#0#0#0#27#0#0#0'8- Finder circle (Eyepiece)'#0#0 ++ +#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0#0#0'9- F' ++ +'inder rectangle (CCD)'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#3#0#0#0#0#0#0#0#1 ++ +#11#0#0#0'7- Pictures'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 ++ +#0#0#0#0#0#0#9#0#0#0'1- Object'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 ++ +#255#0#0#0#0#0#0#0#0#0#13#0#0#0'2- Background'#0#0#0#0#0#0#0#0#255#255#255 ++ +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'3- DSS RealSky'#255#255#255 ++ +#255#255#255#255#255#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#9#0#0#0'8- System' ++ +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#9#0#0#0'1' ++ +'- System'#255#255#255#255#255#255#255#255#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#9#0#0#0'2- Server'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 ++ +#0#0#0#0#0#0#12#0#0#0'3- Telescope'#0#0#0#0#0#0#0#0#255#255#255#255#255#255 ++ +#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Language'#0#0#0#0#0#0#0#0#255#255#255 ++ +#255#255#255#255#255#3#0#0#0#0#0#0#0#1#11#0#0#0'9- Internet'#0#0#0#0#0#0#0#0 ++ +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'1- Proxy'#0#0#0#0 ++ +#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#19#0#0#0'2- Orbit' ++ +'al Elements'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 ++ +#0#22#0#0#0'3- Online DSS pictures'#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'He' ++ +'ight'#2'('#3'Top'#3#233#1#5'Width'#3#230#0#5'Align'#7#8'alBottom'#12'Client' ++ +'Height'#2'('#11'ClientWidth'#3#230#0#8'TabOrder'#2#1#0#7'TButton'#8'previou' ++ +'s'#4'Left'#2'?'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akL' ++ +'eft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'<'#7'On' ++ +'Click'#7#13'previousClick'#8'TabOrder'#2#0#0#0#7'TButton'#4'next'#4'Left'#2 ++ +'o'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akLeft'#8'akBott' ++ +'om'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'>'#7'OnClick'#7#9'ne' ++ ,'xtClick'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel4'#4'Left'#3#237#0#6'Heig' ++ +'ht'#3#18#2#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientHeig' ++ +'ht'#3#18#2#11'ClientWidth'#3#247#1#8'TabOrder'#2#2#0#9'TMultiDoc'#9'MultiDo' ++ +'c1'#4'Left'#2#1#6'Height'#3#16#2#3'Top'#2#1#5'Width'#3#245#1#9'Maximized'#9 ++ +#11'BorderWidth'#2#3#11'TitleHeight'#2#12#13'KeepLastChild'#8#19'WireframeMo' ++ +'veResize'#8#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#5'Color'#7#7 ++ +'clBlack'#11'ParentColor'#8#8'TabOrder'#2#0#0#0#0#9'TSplitter'#9'Splitter1'#4 ++ +'Left'#3#232#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#2#5#7'Beveled'#9#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_config_observatory.lfm skychart_3.2_up/skychart/pu_config_observatory.lfm +--- skychart_3.2/skychart/pu_config_observatory.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_observatory.lfm 2011-03-09 15:18:57.153091389 +0100 +@@ -1,7 +1,7 @@ + object f_config_observatory: Tf_config_observatory +- Left = 965 ++ Left = 503 + Height = 605 +- Top = 108 ++ Top = 104 + Width = 481 + ActiveControl = MainPanel + BorderIcons = [biSystemMenu] +@@ -16,7 +16,7 @@ + OnDestroy = FormDestroy + OnShow = FormShow + Position = poScreenCenter +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 553 +@@ -34,13 +34,12 @@ + Width = 480 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Observatory' +- ClientHeight = 547 +- ClientWidth = 476 ++ ClientHeight = 516 ++ ClientWidth = 474 + object Memo1: TMemo + Left = 8 + Height = 141 +@@ -140,13 +139,13 @@ + Left = 422 + Height = 14 + Top = 35 +- Width = 23 ++ Width = 21 + Caption = 'Km.' + ParentColor = False + end + object citylist: TComboBox + Left = 8 +- Height = 23 ++ Height = 27 + Top = 31 + Width = 233 + AutoComplete = True +@@ -169,7 +168,7 @@ + end + object countrylist: TComboBox + Left = 8 +- Height = 25 ++ Height = 31 + Top = 1 + Width = 234 + DropDownCount = 10 +@@ -180,7 +179,7 @@ + end + object cityfilter: TEdit + Left = 248 +- Height = 21 ++ Height = 23 + Top = 1 + Width = 104 + OnKeyDown = cityfilterKeyDown +@@ -219,7 +218,7 @@ + object LocCode: TEdit + Cursor = crHandPoint + Left = 8 +- Height = 21 ++ Height = 23 + Hint = 'Designation Code' + Top = 60 + Width = 80 +@@ -242,14 +241,14 @@ + end + object vicinityrangeEdit: TEdit + Left = 339 +- Height = 21 ++ Height = 23 + Top = 33 + Width = 56 + TabOrder = 9 + end + object vicinityrange: TUpDown + Left = 395 +- Height = 21 ++ Height = 23 + Top = 33 + Width = 17 + Associate = vicinityrangeEdit +@@ -273,7 +272,7 @@ + Left = 4 + Height = 14 + Top = 4 +- Width = 42 ++ Width = 41 + Caption = 'Degree' + ParentColor = False + end +@@ -281,7 +280,7 @@ + Left = 48 + Height = 14 + Top = 4 +- Width = 24 ++ Width = 23 + Caption = 'Min.' + ParentColor = False + end +@@ -289,13 +288,13 @@ + Left = 80 + Height = 14 + Top = 4 +- Width = 26 ++ Width = 24 + Caption = 'Sec.' + ParentColor = False + end + object hemis: TComboBox + Left = 112 +- Height = 23 ++ Height = 27 + Top = 19 + Width = 65 + AutoCompleteText = [cbactSearchAscending] +@@ -311,7 +310,7 @@ + end + object latdeg: TLongEdit + Left = 4 +- Height = 21 ++ Height = 23 + Hint = '0..90' + Top = 20 + Width = 33 +@@ -325,7 +324,7 @@ + end + object latmin: TLongEdit + Left = 48 +- Height = 21 ++ Height = 23 + Hint = '0..59' + Top = 20 + Width = 25 +@@ -339,7 +338,7 @@ + end + object latsec: TLongEdit + Left = 80 +- Height = 21 ++ Height = 23 + Hint = '0..59' + Top = 20 + Width = 25 +@@ -365,7 +364,7 @@ + Left = 4 + Height = 14 + Top = 4 +- Width = 42 ++ Width = 41 + Caption = 'Degree' + ParentColor = False + end +@@ -373,7 +372,7 @@ + Left = 48 + Height = 14 + Top = 4 +- Width = 24 ++ Width = 23 + Caption = 'Min.' + ParentColor = False + end +@@ -381,13 +380,13 @@ + Left = 80 + Height = 14 + Top = 4 +- Width = 26 ++ Width = 24 + Caption = 'Sec.' + ParentColor = False + end + object long: TComboBox + Left = 112 +- Height = 23 ++ Height = 27 + Top = 19 + Width = 65 + AutoCompleteText = [cbactSearchAscending] +@@ -403,7 +402,7 @@ + end + object longdeg: TLongEdit + Left = 4 +- Height = 21 ++ Height = 23 + Hint = '0..180' + Top = 20 + Width = 33 +@@ -417,7 +416,7 @@ + end + object longmin: TLongEdit + Left = 48 +- Height = 21 ++ Height = 23 + Hint = '0..59' + Top = 20 + Width = 25 +@@ -431,7 +430,7 @@ + end + object longsec: TLongEdit + Left = 80 +- Height = 21 ++ Height = 23 + Hint = '0..59' + Top = 20 + Width = 25 +@@ -457,13 +456,13 @@ + Left = 8 + Height = 14 + Top = 4 +- Width = 40 ++ Width = 38 + Caption = 'Meters' + ParentColor = False + end + object altmeter: TFloatEdit + Left = 4 +- Height = 21 ++ Height = 23 + Hint = '-500..15000' + Top = 20 + Width = 65 +@@ -490,7 +489,7 @@ + TabOrder = 4 + object TZComboBox: TComboBox + Left = 8 +- Height = 25 ++ Height = 31 + Top = 23 + Width = 433 + ItemHeight = 0 +@@ -500,9 +499,9 @@ + end + object CountryTZ: TCheckBox + Left = 8 +- Height = 21 ++ Height = 22 + Top = 1 +- Width = 125 ++ Width = 123 + Caption = 'Country Timezone' + Checked = True + OnChange = CountryTZChange +@@ -513,8 +512,8 @@ + end + object Page2: TTabSheet + Caption = 'Horizon' +- ClientHeight = 547 +- ClientWidth = 476 ++ ClientHeight = 516 ++ ClientWidth = 474 + object GroupBox2: TGroupBox + Left = 8 + Height = 89 +@@ -570,7 +569,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 2 + OnChange = horizonfileChange + end +diff -ur skychart_3.2/skychart/pu_config_observatory.lrs skychart_3.2_up/skychart/pu_config_observatory.lrs +--- skychart_3.2/skychart/pu_config_observatory.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_observatory.lrs 2011-03-09 15:18:57.138093231 +0100 +@@ -1,188 +1,187 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_observatory','FORMDATA',[ +- 'TPF0'#21'Tf_config_observatory'#20'f_config_observatory'#4'Left'#3#197#3#6'H' +- +'eight'#3']'#2#3'Top'#2'l'#5'Width'#3#225#1#13'ActiveControl'#7#9'MainPanel' ++ 'TPF0'#21'Tf_config_observatory'#20'f_config_observatory'#4'Left'#3#247#1#6'H' ++ +'eight'#3']'#2#3'Top'#2'h'#5'Width'#3#225#1#13'ActiveControl'#7#9'MainPanel' + +#11'BorderIcons'#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7 + +'Caption'#6#11'Observatory'#28'ChildSizing.LeftRightSpacing'#3#13#2#12'Clien' + +'tHeight'#3']'#2#11'ClientWidth'#3#225#1#11'Font.Height'#2#245#7'OnClose'#7#9 + +'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'On' +- +'Show'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9' +- +'.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3')'#2#3'Top'#2#8#5'Wid' +- +'th'#3#226#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#12'Cl' +- +'ientHeight'#3')'#2#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0 +- +#0#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3''''#2#3'Top'#2#1 +- +#5'Width'#3#224#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTab' +- +'s'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#11 +- +'Observatory'#12'ClientHeight'#3'#'#2#11'ClientWidth'#3#220#1#0#5'TMemo'#5'M' +- +'emo1'#4'Left'#2#8#6'Height'#3#141#0#3'Top'#2'i'#5'Width'#3#193#1#8'TabOrder' +- +#2#7#7'TabStop'#8#7'Visible'#8#0#0#7'TButton'#5'Obszp'#4'Left'#2#3#6'Height' +- +#2#25#3'Top'#3'%'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' +- +'n'#6#1'+'#7'OnClick'#7#10'ObszpClick'#8'TabOrder'#2#8#0#0#7'TButton'#5'Obsz' +- +'m'#4'Left'#2#3#6'Height'#2#25#3'Top'#3'M'#1#5'Width'#2')'#25'BorderSpacing.' +- +'InnerBorder'#2#4#7'Caption'#6#1'-'#7'OnClick'#7#10'ObszmClick'#8'TabOrder'#2 +- +#6#0#0#7'TButton'#6'Obsmap'#4'Left'#2'-'#6'Height'#2#25#3'Top'#3#227#1#5'Wid' +- +'th'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Load'#7'OnClick'#7 +- +#11'ObsmapClick'#8'TabOrder'#2#10#0#0#10'TZoomImage'#10'ZoomImage1'#6'Cursor' +- +#7#7'crCross'#4'Left'#2'/'#6'Height'#3#200#0#3'Top'#3#5#1#5'Width'#3#144#1#17 +- +'Canvas.AutoRedraw'#8#18'Canvas.Brush.Color'#7#7'clBlack'#18'Canvas.Font.Hei' +- +'ght'#2#245#4'Zoom'#5#0#0#0#0#0#0#0#200#3'@'#7'ZoomMin'#5#0#0#0#0#0#0#0#200#3 +- +'@'#7'ZoomMax'#5#0#0#0#0#0#0#0#208#3'@'#7'Xcentre'#2#0#7'Ycentre'#2#0#9'OnMo' +- +'useUp'#7#17'ZoomImage1MouseUp'#7'OnPaint'#7#15'ZoomImage1Paint'#11'OnPosCha' +- +'nge'#7#19'ZoomImage1PosChange'#0#0#10'TScrollBar'#10'HScrollBar'#4'Left'#2 +- +'/'#6'Height'#2#15#3'Top'#3#206#1#5'Width'#3#144#1#8'PageSize'#2#1#8'TabOrde' +- +'r'#2#11#7'TabStop'#8#8'OnChange'#7#16'HScrollBarChange'#0#0#10'TScrollBar' +- +#10'VScrollBar'#4'Left'#3#192#1#6'Height'#2#16#3'Top'#3#5#1#5'Width'#2#15#4 +- +'Kind'#7#10'sbVertical'#8'PageSize'#2#1#8'TabOrder'#2#5#7'TabStop'#8#8'OnCha' +- +'nge'#7#16'VScrollBarChange'#0#0#9'TGroupBox'#7'obsname'#4'Left'#2#8#6'Heigh' +- +'t'#2'i'#3'Top'#2#255#5'Width'#3#193#1#7'Caption'#6#20'Observatory Database' +- +#12'ClientHeight'#2'Z'#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#6'TLabel'#6 +- +'Label2'#4'Left'#3':'#1#6'Height'#2#14#3'Top'#2'#'#5'Width'#2#18#7'Caption'#6 +- +#3'+/-'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#166#1#6'Height'#2 +- +#14#3'Top'#2'#'#5'Width'#2#23#7'Caption'#6#3'Km.'#11'ParentColor'#8#0#0#9'TC' +- +'omboBox'#8'citylist'#4'Left'#2#8#6'Height'#2#23#3'Top'#2#31#5'Width'#3#233#0 +- +#12'AutoComplete'#9#16'AutoCompleteText'#11#12'cbactEnabled'#22'cbactEndOfLi' +- +'neComplete'#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#14 +- +'citylistChange'#8'OnSelect'#7#14'citylistChange'#8'TabOrder'#2#3#4'Text'#6#3 +- +'...'#0#0#7'TButton'#10'citysearch'#4'Left'#3'm'#1#6'Height'#2#25#3'Top'#2#1 +- +#5'Width'#2'L'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Search'#7'On' +- +'Click'#7#15'citysearchClick'#8'TabOrder'#2#2#0#0#9'TComboBox'#11'countrylis' +- +'t'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#1#5'Width'#3#234#0#13'DropDownCount' +- +#2#10#10'ItemHeight'#2#0#8'OnSelect'#7#17'countrylistChange'#5'Style'#7#14'c' +- +'sDropDownList'#8'TabOrder'#2#0#0#0#5'TEdit'#10'cityfilter'#4'Left'#3#248#0#6 +- +'Height'#2#21#3'Top'#2#1#5'Width'#2'h'#9'OnKeyDown'#7#17'cityfilterKeyDown'#8 +- +'TabOrder'#2#1#0#0#7'TButton'#12'downloadcity'#4'Left'#3#249#0#6'Height'#2#25 +- +#3'Top'#2'<'#5'Width'#3#192#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#24'Download country details'#7'OnClick'#7#17'downloadcityClick'#8'TabOrder' +- +#2#7#0#0#7'TButton'#7'updcity'#4'Left'#2']'#6'Height'#2#25#3'Top'#2'<'#5'Wid' +- +'th'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Update'#7'OnClick' +- +#7#12'updcityClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'delcity'#4'Left'#3#169#0 +- +#6'Height'#2#25#3'Top'#2'<'#5'Width'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#6'Delete'#7'OnClick'#7#12'delcityClick'#8'TabOrder'#2#6#0#0#5'TE' +- +'dit'#7'LocCode'#6'Cursor'#7#11'crHandPoint'#4'Left'#2#8#6'Height'#2#21#4'Hi' +- +'nt'#6#16'Designation Code'#3'Top'#2'<'#5'Width'#2'P'#5'Color'#7#9'clBtnFace' +- +#7'OnClick'#7#12'LocCodeClick'#14'ParentShowHint'#8#8'ReadOnly'#9#8'ShowHint' +- +#9#8'TabOrder'#2#8#0#0#7'TButton'#8'vicinity'#4'Left'#3#248#0#6'Height'#2#25 +- +#3'Top'#2#31#5'Width'#2'<'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8 +- +'Vicinity'#7'OnClick'#7#13'vicinityClick'#8'TabOrder'#2#4#0#0#5'TEdit'#17'vi' +- ,'cinityrangeEdit'#4'Left'#3'S'#1#6'Height'#2#21#3'Top'#2'!'#5'Width'#2'8'#8 +- +'TabOrder'#2#9#0#0#7'TUpDown'#13'vicinityrange'#4'Left'#3#139#1#6'Height'#2 +- +#21#3'Top'#2'!'#5'Width'#2#17#9'Associate'#7#17'vicinityrangeEdit'#3'Min'#2#0 +- +#3'Max'#3#244#1#8'Position'#2#10#8'TabOrder'#2#10#4'Wrap'#8#0#0#0#9'TGroupBo' +- +'x'#8'Latitude'#4'Left'#2#8#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Ca' +- +'ption'#6#8'Latitude'#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrd' +- +'er'#2#1#0#6'TLabel'#7'Label58'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Widt' +- +'h'#2'*'#7'Caption'#6#6'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label59'#4 +- +'Left'#2'0'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Min.'#11 +- +'ParentColor'#8#0#0#6'TLabel'#7'Label60'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2 +- +#4#5'Width'#2#26#7'Caption'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#5'h' +- +'emis'#4'Left'#2'p'#6'Height'#2#23#3'Top'#2#19#5'Width'#2'A'#16'AutoComplete' +- +'Text'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13 +- +'Items.Strings'#1#6#5'North'#6#5'South'#0#8'OnChange'#7#12'latdegChange'#8'T' +- +'abOrder'#2#3#4'Text'#6#5'North'#0#0#9'TLongEdit'#6'latdeg'#4'Left'#2#4#6'He' +- +'ight'#2#21#4'Hint'#6#5'0..90'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#2#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#2 +- +'Z'#6'OnExit'#7#12'latdegChange'#0#0#9'TLongEdit'#6'latmin'#4'Left'#2'0'#6'H' +- +'eight'#2#21#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2 +- +';'#6'OnExit'#7#12'latdegChange'#0#0#9'TLongEdit'#6'latsec'#4'Left'#2'P'#6'H' +- +'eight'#2#21#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2 +- +';'#6'OnExit'#7#12'latdegChange'#0#0#0#9'TGroupBox'#9'Longitude'#4'Left'#3 +- +#192#0#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Caption'#6#9'Longitude' +- +#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrder'#2#2#0#6'TLabel'#7 +- +'Label61'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Width'#2'*'#7'Caption'#6#6 +- +'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label62'#4'Left'#2'0'#6'Height'#2 +- +#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Min.'#11'ParentColor'#8#0#0#6'TL' +- +'abel'#7'Label63'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#26#7'Cap' +- +'tion'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#4'long'#4'Left'#2'p'#6'H' +- +'eight'#2#23#3'Top'#2#19#5'Width'#2'A'#16'AutoCompleteText'#11#20'cbactSearc' +- +'hAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#4'W' +- +'est'#6#4'East'#0#8'OnChange'#7#13'longdegChange'#8'TabOrder'#2#3#4'Text'#6#4 +- +'East'#0#0#9'TLongEdit'#7'longdeg'#4'Left'#2#4#6'Height'#2#21#4'Hint'#6#6'0.' +- +'.180'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#4#14'ParentShowHint'#8#8'Sho' +- +'wHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#3#180#0#6'OnExit'#7#13'lo' +- +'ngdegChange'#0#0#9'TLongEdit'#7'longmin'#4'Left'#2'0'#6'Height'#2#21#4'Hint' ++ +'Show'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#8'0.9' ++ +'.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3')'#2#3'Top'#2#8#5'W' ++ +'idth'#3#226#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#12 ++ +'ClientHeight'#3')'#2#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2 ++ +#0#0#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3''''#2#3'Top'#2 ++ +#1#5'Width'#3#224#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIn' ++ +'dex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#11'Observator' ++ +'y'#12'ClientHeight'#3#4#2#11'ClientWidth'#3#218#1#0#5'TMemo'#5'Memo1'#4'Lef' ++ +'t'#2#8#6'Height'#3#141#0#3'Top'#2'i'#5'Width'#3#193#1#8'TabOrder'#2#7#7'Tab' ++ +'Stop'#8#7'Visible'#8#0#0#7'TButton'#5'Obszp'#4'Left'#2#3#6'Height'#2#25#3'T' ++ +'op'#3'%'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'+' ++ +#7'OnClick'#7#10'ObszpClick'#8'TabOrder'#2#8#0#0#7'TButton'#5'Obszm'#4'Left' ++ +#2#3#6'Height'#2#25#3'Top'#3'M'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder' ++ +#2#4#7'Caption'#6#1'-'#7'OnClick'#7#10'ObszmClick'#8'TabOrder'#2#6#0#0#7'TBu' ++ +'tton'#6'Obsmap'#4'Left'#2'-'#6'Height'#2#25#3'Top'#3#227#1#5'Width'#2'n'#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Load'#7'OnClick'#7#11'ObsmapC' ++ +'lick'#8'TabOrder'#2#10#0#0#10'TZoomImage'#10'ZoomImage1'#6'Cursor'#7#7'crCr' ++ +'oss'#4'Left'#2'/'#6'Height'#3#200#0#3'Top'#3#5#1#5'Width'#3#144#1#17'Canvas' ++ +'.AutoRedraw'#8#18'Canvas.Brush.Color'#7#7'clBlack'#18'Canvas.Font.Height'#2 ++ +#245#4'Zoom'#5#0#0#0#0#0#0#0#200#3'@'#7'ZoomMin'#5#0#0#0#0#0#0#0#200#3'@'#7 ++ +'ZoomMax'#5#0#0#0#0#0#0#0#208#3'@'#7'Xcentre'#2#0#7'Ycentre'#2#0#9'OnMouseUp' ++ +#7#17'ZoomImage1MouseUp'#7'OnPaint'#7#15'ZoomImage1Paint'#11'OnPosChange'#7 ++ +#19'ZoomImage1PosChange'#0#0#10'TScrollBar'#10'HScrollBar'#4'Left'#2'/'#6'He' ++ +'ight'#2#15#3'Top'#3#206#1#5'Width'#3#144#1#8'PageSize'#2#1#8'TabOrder'#2#11 ++ +#7'TabStop'#8#8'OnChange'#7#16'HScrollBarChange'#0#0#10'TScrollBar'#10'VScro' ++ +'llBar'#4'Left'#3#192#1#6'Height'#2#16#3'Top'#3#5#1#5'Width'#2#15#4'Kind'#7 ++ +#10'sbVertical'#8'PageSize'#2#1#8'TabOrder'#2#5#7'TabStop'#8#8'OnChange'#7#16 ++ +'VScrollBarChange'#0#0#9'TGroupBox'#7'obsname'#4'Left'#2#8#6'Height'#2'i'#3 ++ +'Top'#2#255#5'Width'#3#193#1#7'Caption'#6#20'Observatory Database'#12'Client' ++ +'Height'#2'Z'#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label2'#4 ++ +'Left'#3':'#1#6'Height'#2#14#3'Top'#2'#'#5'Width'#2#18#7'Caption'#6#3'+/-'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#166#1#6'Height'#2#14#3'Top' ++ +#2'#'#5'Width'#2#21#7'Caption'#6#3'Km.'#11'ParentColor'#8#0#0#9'TComboBox'#8 ++ +'citylist'#4'Left'#2#8#6'Height'#2#27#3'Top'#2#31#5'Width'#3#233#0#12'AutoCo' ++ +'mplete'#9#16'AutoCompleteText'#11#12'cbactEnabled'#22'cbactEndOfLineComplet' ++ +'e'#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#14'citylistC' ++ +'hange'#8'OnSelect'#7#14'citylistChange'#8'TabOrder'#2#3#4'Text'#6#3'...'#0#0 ++ +#7'TButton'#10'citysearch'#4'Left'#3'm'#1#6'Height'#2#25#3'Top'#2#1#5'Width' ++ +#2'L'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Search'#7'OnClick'#7 ++ +#15'citysearchClick'#8'TabOrder'#2#2#0#0#9'TComboBox'#11'countrylist'#4'Left' ++ +#2#8#6'Height'#2#31#3'Top'#2#1#5'Width'#3#234#0#13'DropDownCount'#2#10#10'It' ++ +'emHeight'#2#0#8'OnSelect'#7#17'countrylistChange'#5'Style'#7#14'csDropDownL' ++ +'ist'#8'TabOrder'#2#0#0#0#5'TEdit'#10'cityfilter'#4'Left'#3#248#0#6'Height'#2 ++ +#23#3'Top'#2#1#5'Width'#2'h'#9'OnKeyDown'#7#17'cityfilterKeyDown'#8'TabOrder' ++ +#2#1#0#0#7'TButton'#12'downloadcity'#4'Left'#3#249#0#6'Height'#2#25#3'Top'#2 ++ +'<'#5'Width'#3#192#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#24'Downl' ++ +'oad country details'#7'OnClick'#7#17'downloadcityClick'#8'TabOrder'#2#7#0#0 ++ +#7'TButton'#7'updcity'#4'Left'#2']'#6'Height'#2#25#3'Top'#2'<'#5'Width'#2'H' ++ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Update'#7'OnClick'#7#12'up' ++ +'dcityClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'delcity'#4'Left'#3#169#0#6'Hei' ++ +'ght'#2#25#3'Top'#2'<'#5'Width'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' ++ +'tion'#6#6'Delete'#7'OnClick'#7#12'delcityClick'#8'TabOrder'#2#6#0#0#5'TEdit' ++ +#7'LocCode'#6'Cursor'#7#11'crHandPoint'#4'Left'#2#8#6'Height'#2#23#4'Hint'#6 ++ +#16'Designation Code'#3'Top'#2'<'#5'Width'#2'P'#5'Color'#7#9'clBtnFace'#7'On' ++ +'Click'#7#12'LocCodeClick'#14'ParentShowHint'#8#8'ReadOnly'#9#8'ShowHint'#9#8 ++ +'TabOrder'#2#8#0#0#7'TButton'#8'vicinity'#4'Left'#3#248#0#6'Height'#2#25#3'T' ++ +'op'#2#31#5'Width'#2'<'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Vic' ++ +'inity'#7'OnClick'#7#13'vicinityClick'#8'TabOrder'#2#4#0#0#5'TEdit'#17'vicin' ++ ,'ityrangeEdit'#4'Left'#3'S'#1#6'Height'#2#23#3'Top'#2'!'#5'Width'#2'8'#8'Tab' ++ +'Order'#2#9#0#0#7'TUpDown'#13'vicinityrange'#4'Left'#3#139#1#6'Height'#2#23#3 ++ +'Top'#2'!'#5'Width'#2#17#9'Associate'#7#17'vicinityrangeEdit'#3'Min'#2#0#3'M' ++ +'ax'#3#244#1#8'Position'#2#10#8'TabOrder'#2#10#4'Wrap'#8#0#0#0#9'TGroupBox'#8 ++ +'Latitude'#4'Left'#2#8#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Caption' ++ +#6#8'Latitude'#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrder'#2#1 ++ +#0#6'TLabel'#7'Label58'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Width'#2')'#7 ++ +'Caption'#6#6'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label59'#4'Left'#2'0' ++ +#6'Height'#2#14#3'Top'#2#4#5'Width'#2#23#7'Caption'#6#4'Min.'#11'ParentColor' ++ +#8#0#0#6'TLabel'#7'Label60'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2 ++ +#24#7'Caption'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#5'hemis'#4'Left' ++ +#2'p'#6'Height'#2#27#3'Top'#2#19#5'Width'#2'A'#16'AutoCompleteText'#11#20'cb' ++ +'actSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings' ++ +#1#6#5'North'#6#5'South'#0#8'OnChange'#7#12'latdegChange'#8'TabOrder'#2#3#4 ++ +'Text'#6#5'North'#0#0#9'TLongEdit'#6'latdeg'#4'Left'#2#4#6'Height'#2#23#4'Hi' ++ +'nt'#6#5'0..90'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#2#14'ParentShowHint' ++ +#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#2'Z'#6'OnExit'#7#12 ++ +'latdegChange'#0#0#9'TLongEdit'#6'latmin'#4'Left'#2'0'#6'Height'#2#23#4'Hint' + +#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 +- +'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'lo' +- +'ngdegChange'#0#0#9'TLongEdit'#7'longsec'#4'Left'#2'P'#6'Height'#2#21#4'Hint' +- +#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 +- +'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'lo' +- +'ngdegChange'#0#0#0#9'TGroupBox'#8'Altitude'#4'Left'#3'x'#1#6'Height'#2'D'#3 +- +'Top'#2'm'#5'Width'#2'Q'#7'Caption'#6#8'Altitude'#12'ClientHeight'#2'5'#11'C' +- +'lientWidth'#2'M'#8'TabOrder'#2#3#0#6'TLabel'#7'Label70'#4'Left'#2#8#6'Heigh' +- +'t'#2#14#3'Top'#2#4#5'Width'#2'('#7'Caption'#6#6'Meters'#11'ParentColor'#8#0 +- +#0#10'TFloatEdit'#8'altmeter'#4'Left'#2#4#6'Height'#2#21#4'Hint'#6#11'-500..' +- +'15000'#3'Top'#2#20#5'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' +- +'der'#2#0#8'OnChange'#7#14'altmeterChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 +- +'Decimals'#2#0#8'MinValue'#5#0#0#0#0#0#0#0#250#7#192#8'MaxValue'#5#0#0#0#0#0 +- +#0'`'#234#12'@'#6'Digits'#2#5#11'NumericType'#7#7'ntFixed'#0#0#0#9'TGroupBox' +- +#8'timezone'#4'Left'#2#8#6'Height'#2'I'#3'Top'#3#181#0#5'Width'#3#193#1#7'Ca' +- +'ption'#6#9'Time Zone'#12'ClientHeight'#2':'#11'ClientWidth'#3#189#1#8'TabOr' +- +'der'#2#4#0#9'TComboBox'#10'TZComboBox'#4'Left'#2#8#6'Height'#2#25#3'Top'#2 +- +#23#5'Width'#3#177#1#10'ItemHeight'#2#0#8'OnChange'#7#16'TZComboBoxChange'#5 +- +'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CountryTZ'#4 +- +'Left'#2#8#6'Height'#2#21#3'Top'#2#1#5'Width'#2'}'#7'Caption'#6#16'Country T' +- +'imezone'#7'Checked'#9#8'OnChange'#7#15'CountryTZChange'#5'State'#7#9'cbChec' +- +'ked'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#7'Horizon' +- +#12'ClientHeight'#3'#'#2#11'ClientWidth'#3#220#1#0#9'TGroupBox'#9'GroupBox2' +- +#4'Left'#2#8#6'Height'#2'Y'#3'Top'#3#142#0#5'Width'#3#201#1#7'Caption'#6'(Wa' +- +'nt to track an object before it rise ?'#12'ClientHeight'#2'J'#11'ClientWidt' +- +'h'#3#197#1#8'TabOrder'#2#1#0#9'TCheckBox'#13'horizonopaque'#4'Left'#2#13#6 +- ,'Height'#2#21#3'Top'#2#24#5'Width'#3#198#0#7'Caption'#6#29'Show Object below' +- +' the horizon'#7'OnClick'#7#18'horizonopaqueClick'#8'TabOrder'#2#0#0#0#0#9'T' +- +'GroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#2'y'#3'Top'#2#14#5'Width'#3#201 +- +#1#7'Caption'#6#13'Local Horizon'#12'ClientHeight'#2'j'#11'ClientWidth'#3#197 +- +#1#8'TabOrder'#2#0#0#6'TLabel'#6'hor_l1'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 +- +'@'#5'Width'#3#147#0#7'Caption'#6#26'Local Horizon File Name : '#11'ParentCo' +- +'lor'#8#0#0#9'TCheckBox'#14'displayhorizon'#4'Left'#2#13#6'Height'#2#21#3'To' +- +'p'#2#16#5'Width'#3#185#0#7'Caption'#6#30'Display the local horizon line'#7 +- +'OnClick'#7#19'displayhorizonClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#11 +- +'horizonfile'#4'Left'#3#197#0#6'Height'#2#21#3'Top'#2'8'#5'Width'#3#208#0#13 +- +'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidt' +- +'h'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#17 +- +'horizonfileChange'#0#0#9'TCheckBox'#11'fillhorizon'#4'Left'#3#221#0#6'Heigh' +- +'t'#2#21#3'Top'#2#16#5'Width'#3#141#0#7'Caption'#6#23'Fill with horizon colo' +- +'r'#7'OnClick'#7#16'fillhorizonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'G' +- +'roupBox3'#4'Left'#2#8#6'Height'#2'y'#3'Top'#3#238#0#5'Width'#3#201#1#7'Capt' +- +'ion'#6'!Depression of the visible horizon'#12'ClientHeight'#2'j'#11'ClientW' +- +'idth'#3#197#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2 +- +'0'#3'Top'#2#16#5'Width'#3#159#1#8'AutoSize'#8#7'Caption'#6'|You live on a b' +- +'ig mountain near the ocean shore and you like to observe the distorded imag' +- +'e of the object below the horizon.'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'T' +- +'CheckBox'#17'horizondepression'#4'Left'#2#13#6'Height'#2#21#3'Top'#2'H'#5'W' +- +'idth'#3#7#1#7'Caption'#6'(Draw the apparent depressed horizon line'#7'OnCli' +- +'ck'#7#22'horizondepressionClick'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#10'refr' +- +'action'#4'Left'#2#8#6'Height'#2'P'#3'Top'#3'n'#1#5'Width'#3#201#1#7'Caption' +- +#6#22'Atmospheric Refraction'#12'ClientHeight'#2'A'#11'ClientWidth'#3#197#1#8 +- +'TabOrder'#2#3#0#6'TLabel'#7'Label82'#4'Left'#2'-'#6'Height'#2#14#3'Top'#2#7 +- +#5'Width'#2'k'#7'Caption'#6#19'Pressure (millibar)'#11'ParentColor'#8#0#0#6 +- +'TLabel'#7'Label83'#4'Left'#3#245#0#6'Height'#2#14#3'Top'#2#7#5'Width'#2#127 +- +#7'Caption'#6#21'Temperature (Celsius)'#11'ParentColor'#8#0#0#10'TFloatEdit' +- +#8'pressure'#4'Left'#2'-'#6'Height'#2#21#4'Hint'#6#7'0..1500'#3'Top'#2#21#5 +- +'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7 +- +#14'pressureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#0#8'MinValu' +- +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#128#187#9'@'#11'NumericT' +- +'ype'#7#7'ntFixed'#0#0#10'TFloatEdit'#11'temperature'#4'Left'#3#245#0#6'Heig' +- +'ht'#2#21#4'Hint'#6#9'-100..100'#3'Top'#2#21#5'Width'#2'A'#14'ParentShowHint' +- +#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#17'temperatureChange'#5'Value' +- +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#200#5#192#8'MaxValue'#5#0 +- +#0#0#0#0#0#0#200#5'@'#11'NumericType'#7#7'ntFixed'#0#0#0#0#0#0#6'TPanel'#6'P' +- +'anel1'#4'Left'#2#1#6'Height'#2'2'#3'Top'#3'1'#2#5'Width'#3#225#1#7'Anchors' +- +#11#6'akLeft'#7'akRight'#8'akBottom'#0#12'ClientHeight'#2'2'#11'ClientWidth' +- +#3#225#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#169#0#6'Height'#2 +- +#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderS' +- +'pacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1 +- +#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#17#1#6'Height'#2#25#3'T' +- +'op'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing' +- +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'Tab' +- +'Order'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'y'#1#6'Height'#2#25#3'Top'#2 +- +#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inner' +- +'Border'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrd' +- +'er'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'G'#6'Height'#2#25#3'Top'#2#10#5 +- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnCl' +- +'ick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#15'TDownloadDialog'#15'Downlo' +- +'adDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9#15'ConfirmDownload'#9#4'left' +- +#3#128#0#3'top'#3'('#1#0#0#11'TOpenDialog'#11'OpenDialog1'#11'FilterIndex'#2 +- +#0#4'left'#3#128#0#3'top'#3'h'#1#0#0#0 ++ +'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#12'la' ++ +'tdegChange'#0#0#9'TLongEdit'#6'latsec'#4'Left'#2'P'#6'Height'#2#23#4'Hint'#6 ++ +#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 ++ +'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#12'la' ++ +'tdegChange'#0#0#0#9'TGroupBox'#9'Longitude'#4'Left'#3#192#0#6'Height'#2'D'#3 ++ +'Top'#2'm'#5'Width'#3#185#0#7'Caption'#6#9'Longitude'#12'ClientHeight'#2'5' ++ +#11'ClientWidth'#3#181#0#8'TabOrder'#2#2#0#6'TLabel'#7'Label61'#4'Left'#2#4#6 ++ +'Height'#2#14#3'Top'#2#4#5'Width'#2')'#7'Caption'#6#6'Degree'#11'ParentColor' ++ +#8#0#0#6'TLabel'#7'Label62'#4'Left'#2'0'#6'Height'#2#14#3'Top'#2#4#5'Width'#2 ++ +#23#7'Caption'#6#4'Min.'#11'ParentColor'#8#0#0#6'TLabel'#7'Label63'#4'Left'#2 ++ +'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Sec.'#11'ParentCo' ++ +'lor'#8#0#0#9'TComboBox'#4'long'#4'Left'#2'p'#6'Height'#2#27#3'Top'#2#19#5'W' ++ +'idth'#2'A'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight' ++ +#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#4'West'#6#4'East'#0#8'OnChange'#7 ++ +#13'longdegChange'#8'TabOrder'#2#3#4'Text'#6#4'East'#0#0#9'TLongEdit'#7'long' ++ +'deg'#4'Left'#2#4#6'Height'#2#23#4'Hint'#6#6'0..180'#3'Top'#2#20#5'Width'#2 ++ +'!'#9'MaxLength'#2#4#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Va' ++ +'lue'#2#0#8'MaxValue'#3#180#0#6'OnExit'#7#13'longdegChange'#0#0#9'TLongEdit' ++ +#7'longmin'#4'Left'#2'0'#6'Height'#2#23#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Wid' ++ +'th'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1 ++ +#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'longdegChange'#0#0#9'TLongEdit' ++ +#7'longsec'#4'Left'#2'P'#6'Height'#2#23#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Wid' ++ +'th'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 ++ +#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'longdegChange'#0#0#0#9'TGroupB' ++ +'ox'#8'Altitude'#4'Left'#3'x'#1#6'Height'#2'D'#3'Top'#2'm'#5'Width'#2'Q'#7'C' ++ +'aption'#6#8'Altitude'#12'ClientHeight'#2'5'#11'ClientWidth'#2'M'#8'TabOrder' ++ +#2#3#0#6'TLabel'#7'Label70'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#4#5'Width'#2 ++ +'&'#7'Caption'#6#6'Meters'#11'ParentColor'#8#0#0#10'TFloatEdit'#8'altmeter'#4 ++ +'Left'#2#4#6'Height'#2#23#4'Hint'#6#11'-500..15000'#3'Top'#2#20#5'Width'#2'A' ++ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#14'altmete' ++ +'rChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#0#8'MinValue'#5#0#0#0 ++ +#0#0#0#0#250#7#192#8'MaxValue'#5#0#0#0#0#0#0'`'#234#12'@'#6'Digits'#2#5#11'N' ++ +'umericType'#7#7'ntFixed'#0#0#0#9'TGroupBox'#8'timezone'#4'Left'#2#8#6'Heigh' ++ +'t'#2'I'#3'Top'#3#181#0#5'Width'#3#193#1#7'Caption'#6#9'Time Zone'#12'Client' ++ +'Height'#2':'#11'ClientWidth'#3#189#1#8'TabOrder'#2#4#0#9'TComboBox'#10'TZCo' ++ +'mboBox'#4'Left'#2#8#6'Height'#2#31#3'Top'#2#23#5'Width'#3#177#1#10'ItemHeig' ++ +'ht'#2#0#8'OnChange'#7#16'TZComboBoxChange'#5'Style'#7#14'csDropDownList'#8 ++ +'TabOrder'#2#0#0#0#9'TCheckBox'#9'CountryTZ'#4'Left'#2#8#6'Height'#2#22#3'To' ++ +'p'#2#1#5'Width'#2'{'#7'Caption'#6#16'Country Timezone'#7'Checked'#9#8'OnCha' ++ +'nge'#7#15'CountryTZChange'#5'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#0#0#9 ++ +'TTabSheet'#5'Page2'#7'Caption'#6#7'Horizon'#12'ClientHeight'#3#4#2#11'Clien' ++ +'tWidth'#3#218#1#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#8#6'Height'#2'Y'#3'To' ++ +'p'#3#142#0#5'Width'#3#201#1#7'Caption'#6'(Want to track an object before it' ++ +' rise ?'#12'ClientHeight'#2'J'#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#0#9 ++ +'TCheckBox'#13'horizonopaque'#4'Left'#2#13#6'Height'#2#21#3'Top'#2#24#5'Widt' ++ ,'h'#3#198#0#7'Caption'#6#29'Show Object below the horizon'#7'OnClick'#7#18'h' ++ +'orizonopaqueClick'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 ++ +#8#6'Height'#2'y'#3'Top'#2#14#5'Width'#3#201#1#7'Caption'#6#13'Local Horizon' ++ +#12'ClientHeight'#2'j'#11'ClientWidth'#3#197#1#8'TabOrder'#2#0#0#6'TLabel'#6 ++ +'hor_l1'#4'Left'#2#13#6'Height'#2#14#3'Top'#2'@'#5'Width'#3#147#0#7'Caption' ++ +#6#26'Local Horizon File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#14'disp' ++ +'layhorizon'#4'Left'#2#13#6'Height'#2#21#3'Top'#2#16#5'Width'#3#185#0#7'Capt' ++ +'ion'#6#30'Display the local horizon line'#7'OnClick'#7#19'displayhorizonCli' ++ +'ck'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#11'horizonfile'#4'Left'#3#197#0#6 ++ +'Height'#2#21#3'Top'#2'8'#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterI' ++ +'ndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Tab' ++ +'Order'#2#2#8'OnChange'#7#17'horizonfileChange'#0#0#9'TCheckBox'#11'fillhori' ++ +'zon'#4'Left'#3#221#0#6'Height'#2#21#3'Top'#2#16#5'Width'#3#141#0#7'Caption' ++ +#6#23'Fill with horizon color'#7'OnClick'#7#16'fillhorizonClick'#8'TabOrder' ++ +#2#1#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#8#6'Height'#2'y'#3'Top'#3#238 ++ +#0#5'Width'#3#201#1#7'Caption'#6'!Depression of the visible horizon'#12'Clie' ++ +'ntHeight'#2'j'#11'ClientWidth'#3#197#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1' ++ +#4'Left'#2#13#6'Height'#2'0'#3'Top'#2#16#5'Width'#3#159#1#8'AutoSize'#8#7'Ca' ++ +'ption'#6'|You live on a big mountain near the ocean shore and you like to o' ++ +'bserve the distorded image of the object below the horizon.'#11'ParentColor' ++ +#8#8'WordWrap'#9#0#0#9'TCheckBox'#17'horizondepression'#4'Left'#2#13#6'Heigh' ++ +'t'#2#21#3'Top'#2'H'#5'Width'#3#7#1#7'Caption'#6'(Draw the apparent depresse' ++ +'d horizon line'#7'OnClick'#7#22'horizondepressionClick'#8'TabOrder'#2#0#0#0 ++ +#0#9'TGroupBox'#10'refraction'#4'Left'#2#8#6'Height'#2'P'#3'Top'#3'n'#1#5'Wi' ++ +'dth'#3#201#1#7'Caption'#6#22'Atmospheric Refraction'#12'ClientHeight'#2'A' ++ +#11'ClientWidth'#3#197#1#8'TabOrder'#2#3#0#6'TLabel'#7'Label82'#4'Left'#2'-' ++ +#6'Height'#2#14#3'Top'#2#7#5'Width'#2'k'#7'Caption'#6#19'Pressure (millibar)' ++ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label83'#4'Left'#3#245#0#6'Height'#2#14#3 ++ +'Top'#2#7#5'Width'#2#127#7'Caption'#6#21'Temperature (Celsius)'#11'ParentCol' ++ +'or'#8#0#0#10'TFloatEdit'#8'pressure'#4'Left'#2'-'#6'Height'#2#21#4'Hint'#6#7 ++ +'0..1500'#3'Top'#2#21#5'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' ++ +'Order'#2#0#8'OnChange'#7#14'pressureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +'Decimals'#2#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 ++ +#128#187#9'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#11'temperature' ++ +#4'Left'#3#245#0#6'Height'#2#21#4'Hint'#6#9'-100..100'#3'Top'#2#21#5'Width'#2 ++ +'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#17'temp' ++ +'eratureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 ++ +#200#5#192#8'MaxValue'#5#0#0#0#0#0#0#0#200#5'@'#11'NumericType'#7#7'ntFixed' ++ +#0#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#1#6'Height'#2'2'#3'Top'#3'1'#2#5 ++ +'Width'#3#225#1#7'Anchors'#11#6'akLeft'#7'akRight'#8'akBottom'#0#12'ClientHe' ++ +'ight'#2'2'#11'ClientWidth'#3#225#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4 ++ +'Left'#3#169#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTo' ++ +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Defa' ++ +'ult'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left' ++ +#3#17#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'ak' ++ +'Right'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick' ++ +#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'y'#1 ++ +#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0 ++ +#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'Mod' ++ +'alResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'G'#6'Heig' ++ +'ht'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Ca' ++ +'ption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#15'TDo' ++ +'wnloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9#15'Co' ++ +'nfirmDownload'#9#4'left'#3#128#0#3'top'#3'('#1#0#0#11'TOpenDialog'#11'OpenD' ++ +'ialog1'#11'FilterIndex'#2#0#4'left'#3#128#0#3'top'#3'h'#1#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_pictures.lfm skychart_3.2_up/skychart/pu_config_pictures.lfm +--- skychart_3.2/skychart/pu_config_pictures.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_pictures.lfm 2011-03-09 15:18:57.143092617 +0100 +@@ -1,5 +1,5 @@ + object f_config_pictures: Tf_config_pictures +- Left = 732 ++ Left = 483 + Height = 535 + Top = 127 + Width = 513 +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 485 +@@ -31,19 +31,18 @@ + Width = 511 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + OnPageChanged = PageControl1PageChanged + object Page1: TTabSheet + Caption = 'Objects' +- ClientHeight = 479 +- ClientWidth = 507 ++ ClientHeight = 448 ++ ClientWidth = 505 + object Label50: TLabel + Left = 2 + Height = 14 + Top = 2 +- Width = 200 ++ Width = 193 + Caption = 'Display image of cataloged objects' + ParentColor = False + end +@@ -51,7 +50,7 @@ + Left = 15 + Height = 14 + Top = 46 +- Width = 91 ++ Width = 87 + Caption = 'Image Directory' + ParentColor = False + end +@@ -163,30 +162,29 @@ + end + object ShowImagesBox: TCheckBox + Left = 31 +- Height = 21 ++ Height = 22 + Top = 375 +- Width = 215 ++ Width = 207 + Caption = 'Show object pictures on the chart' + OnClick = ShowImagesBoxClick + TabOrder = 3 + end + object imgpath: TDirectoryEdit + Left = 150 +- Height = 21 ++ Height = 23 + Top = 39 + Width = 264 + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + OnChange = imgpathChange + end + end + object Page2: TTabSheet + Caption = 'Background' +- ClientHeight = 479 +- ClientWidth = 507 ++ ClientHeight = 448 ++ ClientWidth = 505 + object Label270: TLabel + Left = 0 + Height = 14 +@@ -289,15 +287,14 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + OnChange = backimgChange + end + end + object Page3: TTabSheet + Caption = 'DSS - Realsky' +- ClientHeight = 479 +- ClientWidth = 507 ++ ClientHeight = 448 ++ ClientWidth = 505 + object GroupBox3: TGroupBox + Left = 1 + Height = 355 +diff -ur skychart_3.2/skychart/pu_config_pictures.lrs skychart_3.2_up/skychart/pu_config_pictures.lrs +--- skychart_3.2/skychart/pu_config_pictures.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_pictures.lrs 2011-03-09 15:18:57.114096178 +0100 +@@ -1,132 +1,132 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_pictures','FORMDATA',[ +- 'TPF0'#18'Tf_config_pictures'#17'f_config_pictures'#4'Left'#3#220#2#6'Height' ++ 'TPF0'#18'Tf_config_pictures'#17'f_config_pictures'#4'Left'#3#227#1#6'Height' + +#3#23#2#3'Top'#2#127#5'Width'#3#1#2#13'ActiveControl'#7#9'MainPanel'#11'Bord' + +'erStyle'#7#12'bsToolWindow'#7'Caption'#6#8'Pictures'#12'ClientHeight'#3#23#2 + +#11'ClientWidth'#3#1#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnC' + +'reate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormSh' +- +'ow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Heigh' +- +'t'#3#229#1#3'Top'#2#0#5'Width'#3#1#2#5'Align'#7#8'alClient'#12'ClientHeight' +- +#3#229#1#11'ClientWidth'#3#1#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageC' +- +'ontrol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#227#1#3'Top'#2#1#5'Width'#3 +- +#255#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabI' +- +'ndex'#2#0#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0 +- +#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Objects'#12'ClientHeight'#3#223#1#11'C' +- +'lientWidth'#3#251#1#0#6'TLabel'#7'Label50'#4'Left'#2#2#6'Height'#2#14#3'Top' +- +#2#2#5'Width'#3#200#0#7'Caption'#6'"Display image of cataloged objects'#11'P' +- +'arentColor'#8#0#0#6'TLabel'#8'Label264'#4'Left'#2#15#6'Height'#2#14#3'Top'#2 +- +'.'#5'Width'#2'['#7'Caption'#6#15'Image Directory'#11'ParentColor'#8#0#0#6'T' +- +'Label'#7'nimages'#4'Left'#2'='#6'Height'#2'5'#3'Top'#2'P'#5'Width'#3'a'#1#8 +- +'AutoSize'#8#7'Caption'#6#7'nimages'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'T' +- +'Panel'#13'ProgressPanel'#4'Left'#2#8#6'Height'#2'Y'#3'Top'#2'E'#5'Width'#3 +- +#153#1#12'ClientHeight'#2'Y'#11'ClientWidth'#3#153#1#8'TabOrder'#2#4#7'Visib' +- +'le'#8#0#6'TLabel'#11'ProgressCat'#4'Left'#3#187#0#6'Height'#2#14#3'Top'#2#8 +- +#5'Width'#2'!'#7'Caption'#6#5'Other'#11'ParentColor'#8#0#0#12'TProgressBar' +- +#12'ProgressBar1'#4'Left'#2#24#6'Height'#2#17#3'Top'#2'('#5'Width'#3'i'#1#8 +- +'TabOrder'#2#0#0#0#0#7'TButton'#10'ScanImages'#4'Left'#3#133#0#6'Height'#2#25 +- +#3'Top'#3#133#0#5'Width'#3#156#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption' +- +#6#14'Scan directory'#7'OnClick'#7#15'ScanImagesClick'#8'TabOrder'#2#1#0#0#6 +- +'TPanel'#7'Panel11'#4'Left'#2#16#6'Height'#3#183#0#3'Top'#3#168#0#5'Width'#3 +- +#145#1#12'ClientHeight'#3#183#0#11'ClientWidth'#3#145#1#8'TabOrder'#2#2#0#6 +- +'TLabel'#8'Label266'#4'Left'#2' '#6'Height'#2#14#3'Top'#2' '#5'Width'#2'>'#7 +- +'Caption'#6#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label268'#4'Lef' +- +'t'#2'('#6'Height'#2#14#3'Top'#2'`'#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11 +- +'ParentColor'#8#0#0#9'TTrackBar'#9'ImgLumBar'#4'Left'#2'x'#6'Height'#2'-'#3 +- +'Top'#2#24#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnCh' +- +'ange'#7#15'ImgLumBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0 +- +#0#0#9'TTrackBar'#14'ImgContrastBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2'X' +- +#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#20 +- +'ImgContrastBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#7 +- +'TButton'#8'ResetLum'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#3#147#0#5'Width' +- +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Reset'#7'OnClick'#7#13 +- +'ResetLumClick'#8'TabOrder'#2#2#0#0#0#9'TCheckBox'#13'ShowImagesBox'#4'Left' +- +#2#31#6'Height'#2#21#3'Top'#3'w'#1#5'Width'#3#215#0#7'Caption'#6'!Show objec' +- +'t pictures on the chart'#7'OnClick'#7#18'ShowImagesBoxClick'#8'TabOrder'#2#3 +- +#0#0#14'TDirectoryEdit'#7'imgpath'#4'Left'#3#150#0#6'Height'#2#21#3'Top'#2 +- +''''#5'Width'#3#8#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 +- +'MaxLength'#2#0#8'TabOrder'#2#0#8'OnChange'#7#13'imgpathChange'#0#0#0#9'TTab' +- +'Sheet'#5'Page2'#7'Caption'#6#10'Background'#12'ClientHeight'#3#223#1#11'Cli' +- +'entWidth'#3#251#1#0#6'TLabel'#8'Label270'#4'Left'#2#0#6'Height'#2#14#3'Top' +- +#2#0#5'Width'#2'o'#7'Caption'#6#18'Background Picture'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label271'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#22#5'Width'#2'/'#7 +- +'Caption'#6#9'FITS File'#11'ParentColor'#8#0#0#6'TLabel'#11'backimginfo'#4'L' +- +'eft'#2#8#6'Height'#2#14#3'Top'#2'/'#5'Width'#2#9#7'Caption'#6#2' '#11'Pare' +- +'ntColor'#8#0#0#6'TImage'#6'Image1'#4'Left'#2#0#6'Height'#3'9'#1#3'Top'#2'{' +- +#5'Width'#3#225#1#7'Stretch'#9#0#0#9'TCheckBox'#11'ShowBackImg'#4'Left'#2#8#6 +- +'Height'#2#21#3'Top'#2'P'#5'Width'#2'z'#7'Caption'#6#17'Show this picture'#7 +- +'OnClick'#7#16'ShowBackImgClick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel1'#4'L' +- +'eft'#3#176#0#6'Height'#2'0'#3'Top'#2'C'#5'Width'#3'1'#1#12'ClientHeight'#2 +- +'0'#11'ClientWidth'#3'1'#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2'6' +- +#6'Height'#2#14#3'Top'#2#6#5'Width'#2'>'#7'Caption'#6#10'Luminosity'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#6 +- +#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#9'TTrackBar'#10 +- +'ImgLumBar2'#4'Left'#2#8#6'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequ' +- +'ency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#16'ImgLumBar2Change'#8'Pag' +- +'eSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0#0#0#9'TTrackBar'#15'ImgContrastB' +- +'ar2'#4'Left'#3#152#0#6'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequenc' +- ,'y'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#21'ImgContrastBar2Change'#8'P' +- +'ageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#0#13'TFileNameEdit'#7'back' +- +'img'#4'Left'#2'_'#6'Height'#2#21#3'Top'#2#15#5'Width'#3'h'#1#13'DialogOptio' +- +'ns'#11#0#6'Filter'#6#16'FITS Files|*.fit'#11'FilterIndex'#2#0#15'HideDirect' +- +'ories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder' +- +#2#0#8'OnChange'#7#13'backimgChange'#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6 +- +#13'DSS - Realsky'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#251#1#0#9'TGro' +- +'upBox'#9'GroupBox3'#4'Left'#2#1#6'Height'#3'c'#1#3'Top'#2'e'#5'Width'#3#225 +- +#1#7'Caption'#6#9'RealSky'#194#174#12'ClientHeight'#3'T'#1#11'ClientWidth'#3 +- +#221#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label72'#4'Left'#2#8#6'Height'#2#14#3'T' +- +'op'#2'd'#5'Width'#2'L'#7'Caption'#6#15'Auxiliary files'#11'ParentColor'#8#0 +- +#0#6'TLabel'#7'Label73'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#152#0#5'Width'#2 +- +'g'#7'Caption'#6#17'Data Files, CDrom'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' +- +'el74'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#196#0#5'Width'#2'Q'#7'Caption'#6 +- +#14'temporary file'#11'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#3#160 +- +#1#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2'"'#7'Caption'#6#6'pixels'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#7'Label77'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#3 +- +'4'#1#5'Width'#2'*'#7'Caption'#6#6'MBytes'#11'ParentColor'#8#0#0#5'TEdit'#10 +- +'realskydir'#4'Left'#3#196#0#6'Height'#2#21#3'Top'#2'\'#5'Width'#3#169#0#8'O' +- +'nChange'#7#16'realskydirChange'#8'TabOrder'#2#3#4'Text'#6#12'cat\RealSky\'#0 +- +#0#5'TEdit'#12'realskydrive'#4'Left'#3#196#0#6'Height'#2#21#3'Top'#3#144#0#5 +- +'Width'#3#169#0#8'OnChange'#7#18'realskydriveChange'#8'TabOrder'#2#4#4'Text' +- +#6#3'X:\'#0#0#5'TEdit'#11'realskyfile'#4'Left'#3#196#0#6'Height'#2#21#3'Top' +- +#3#188#0#5'Width'#3#169#0#8'OnChange'#7#17'realskyfileChange'#8'TabOrder'#2#5 +- +#4'Text'#6#16'images\$TEMP.FIT'#0#0#9'TCheckBox'#12'RealSkyNorth'#4'Left'#2#8 +- +#6'Height'#2#21#3'Top'#2#26#5'Width'#2'f'#7'Caption'#6#13'RealSky North'#7'O' +- +'nClick'#7#17'RealSkyNorthClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'RealSky' +- +'South'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'>'#5'Width'#2'h'#7'Caption'#6#13 +- +'RealSky South'#7'OnClick'#7#17'RealSkySouthClick'#8'TabOrder'#2#1#0#0#9'TCh' +- +'eckBox'#8'DSS102CD'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2#26#5'Width'#2'\' +- +#7'Caption'#6#10'102 CD DSS'#7'OnClick'#7#13'DSS102CDClick'#8'TabOrder'#2#2#0 +- +#0#9'TCheckBox'#12'usesubsample'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#16#1#5 +- +'Width'#3#245#0#7'Caption'#6'&Use subsampling to limit image size to'#7'Chec' +- +'ked'#9#7'OnClick'#7#17'usesubsampleClick'#5'State'#7#9'cbChecked'#8'TabOrde' +- +'r'#2#7#0#0#9'TCheckBox'#8'reallist'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#240 +- +#0#5'Width'#3#142#0#7'Caption'#6#22'Select plate from list'#7'Checked'#9#7'O' +- +'nClick'#7#13'reallistClick'#5'State'#7#9'cbChecked'#8'TabOrder'#2#6#0#0#9'T' +- +'LongEdit'#10'realskymax'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#3#12#1#5'Widt' +- +'h'#2'A'#8'TabOrder'#2#8#8'OnChange'#7#16'realskymaxChange'#5'Value'#2#0#0#0 +- +#9'TLongEdit'#9'realskymb'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#3'0'#1#5'Wid' +- +'th'#2'A'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#9#5'Value'#2#0 +- +#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#1#6'Height'#2'U'#3'Top'#2#8#5'Wid' +- +'th'#3#225#1#7'Caption'#6#10'Online DSS'#12'ClientHeight'#2'F'#11'ClientWidt' +- +'h'#3#221#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'OnlineDSS'#4'Left'#2#8#6'Height' +- +#2#21#3'Top'#2#20#5'Width'#3#220#0#7'Caption'#6'!Use online DSS instead of R' +- +'ealSky'#8'OnChange'#7#15'OnlineDSSChange'#8'TabOrder'#2#0#0#0#9'TComboBox' +- +#13'OnlineDSSList'#4'Left'#3'$'#1#6'Height'#2#23#3'Top'#2#20#5'Width'#3#176#0 +- +#10'ItemHeight'#2#0#8'OnSelect'#7#19'OnlineDSSListChange'#8'TabOrder'#2#1#4 +- +'Text'#6#13'OnlineDSSList'#0#0#0#0#0#0#6'TPanel'#6'Panel2'#4'Left'#2#0#6'Hei' +- +'ght'#2'2'#3'Top'#3#229#1#5'Width'#3#1#2#5'Align'#7#8'alBottom'#12'ClientHei' +- +'ght'#2'2'#11'ClientWidth'#3#1#2#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'L' +- +'eft'#3#216#0#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop' +- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default' +- +#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'8' +- +#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight' +- +#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'B' +- +'utton2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#152#1#6'He' +- +'ight'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25 +- +'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalR' +- +'esult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'x'#6'Height' +- +#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Captio' +- +'n'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#6'TTimer' +- +#11'ImageTimer1'#7'Enabled'#8#8'Interval'#3#244#1#7'OnTimer'#7#16'ImageTimer' +- +'1Timer'#4'left'#3#208#1#3'top'#2#24#0#0#0 ++ +'ow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Hei' ++ +'ght'#3#229#1#3'Top'#2#0#5'Width'#3#1#2#5'Align'#7#8'alClient'#12'ClientHeig' ++ +'ht'#3#229#1#11'ClientWidth'#3#1#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TP' ++ +'ageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#227#1#3'Top'#2#1#5'Wid' ++ +'th'#3#255#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0 ++ +#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTabShe' ++ +'et'#5'Page1'#7'Caption'#6#7'Objects'#12'ClientHeight'#3#192#1#11'ClientWidt' ++ +'h'#3#249#1#0#6'TLabel'#7'Label50'#4'Left'#2#2#6'Height'#2#14#3'Top'#2#2#5'W' ++ +'idth'#3#193#0#7'Caption'#6'"Display image of cataloged objects'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#8'Label264'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'.'#5 ++ +'Width'#2'W'#7'Caption'#6#15'Image Directory'#11'ParentColor'#8#0#0#6'TLabel' ++ +#7'nimages'#4'Left'#2'='#6'Height'#2'5'#3'Top'#2'P'#5'Width'#3'a'#1#8'AutoSi' ++ +'ze'#8#7'Caption'#6#7'nimages'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel' ++ +#13'ProgressPanel'#4'Left'#2#8#6'Height'#2'Y'#3'Top'#2'E'#5'Width'#3#153#1#12 ++ +'ClientHeight'#2'Y'#11'ClientWidth'#3#153#1#8'TabOrder'#2#4#7'Visible'#8#0#6 ++ +'TLabel'#11'ProgressCat'#4'Left'#3#187#0#6'Height'#2#14#3'Top'#2#8#5'Width'#2 ++ +'!'#7'Caption'#6#5'Other'#11'ParentColor'#8#0#0#12'TProgressBar'#12'Progress' ++ +'Bar1'#4'Left'#2#24#6'Height'#2#17#3'Top'#2'('#5'Width'#3'i'#1#8'TabOrder'#2 ++ +#0#0#0#0#7'TButton'#10'ScanImages'#4'Left'#3#133#0#6'Height'#2#25#3'Top'#3 ++ +#133#0#5'Width'#3#156#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'Sc' ++ +'an directory'#7'OnClick'#7#15'ScanImagesClick'#8'TabOrder'#2#1#0#0#6'TPanel' ++ +#7'Panel11'#4'Left'#2#16#6'Height'#3#183#0#3'Top'#3#168#0#5'Width'#3#145#1#12 ++ +'ClientHeight'#3#183#0#11'ClientWidth'#3#145#1#8'TabOrder'#2#2#0#6'TLabel'#8 ++ +'Label266'#4'Left'#2' '#6'Height'#2#14#3'Top'#2' '#5'Width'#2'>'#7'Caption'#6 ++ +#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label268'#4'Left'#2'('#6'H' ++ +'eight'#2#14#3'Top'#2'`'#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11'ParentCol' ++ +'or'#8#0#0#9'TTrackBar'#9'ImgLumBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2#24 ++ +#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#15 ++ +'ImgLumBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0#0#0#9'TTra' ++ +'ckBar'#14'ImgContrastBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2'X'#5'Width'#3 ++ +#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#20'ImgContras' ++ +'tBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#7'TButton'#8 ++ +'ResetLum'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#3#147#0#5'Width'#2'K'#25'Bo' ++ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Reset'#7'OnClick'#7#13'ResetLum' ++ +'Click'#8'TabOrder'#2#2#0#0#0#9'TCheckBox'#13'ShowImagesBox'#4'Left'#2#31#6 ++ +'Height'#2#22#3'Top'#3'w'#1#5'Width'#3#207#0#7'Caption'#6'!Show object pictu' ++ +'res on the chart'#7'OnClick'#7#18'ShowImagesBoxClick'#8'TabOrder'#2#3#0#0#14 ++ +'TDirectoryEdit'#7'imgpath'#4'Left'#3#150#0#6'Height'#2#23#3'Top'#2''''#5'Wi' ++ +'dth'#3#8#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrde' ++ +'r'#2#0#8'OnChange'#7#13'imgpathChange'#0#0#0#9'TTabSheet'#5'Page2'#7'Captio' ++ +'n'#6#10'Background'#12'ClientHeight'#3#192#1#11'ClientWidth'#3#249#1#0#6'TL' ++ +'abel'#8'Label270'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'o'#7'Cap' ++ +'tion'#6#18'Background Picture'#11'ParentColor'#8#0#0#6'TLabel'#8'Label271'#4 ++ +'Left'#2#8#6'Height'#2#14#3'Top'#2#22#5'Width'#2'/'#7'Caption'#6#9'FITS File' ++ +#11'ParentColor'#8#0#0#6'TLabel'#11'backimginfo'#4'Left'#2#8#6'Height'#2#14#3 ++ +'Top'#2'/'#5'Width'#2#9#7'Caption'#6#2' '#11'ParentColor'#8#0#0#6'TImage'#6 ++ +'Image1'#4'Left'#2#0#6'Height'#3'9'#1#3'Top'#2'{'#5'Width'#3#225#1#7'Stretch' ++ +#9#0#0#9'TCheckBox'#11'ShowBackImg'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'P'#5 ++ +'Width'#2'z'#7'Caption'#6#17'Show this picture'#7'OnClick'#7#16'ShowBackImgC' ++ +'lick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel1'#4'Left'#3#176#0#6'Height'#2'0' ++ +#3'Top'#2'C'#5'Width'#3'1'#1#12'ClientHeight'#2'0'#11'ClientWidth'#3'1'#1#8 ++ +'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2'6'#6'Height'#2#14#3'Top'#2#6#5 ++ +'Width'#2'>'#7'Caption'#6#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#6'L' ++ +'abel2'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#6#5'Width'#2'2'#7'Caption'#6 ++ +#8'Contrast'#11'ParentColor'#8#0#0#9'TTrackBar'#10'ImgLumBar2'#4'Left'#2#8#6 ++ +'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequency'#2#5#3'Max'#2'd'#3'Mi' ++ +'n'#2#156#8'OnChange'#7#16'ImgLumBar2Change'#8'PageSize'#2#5#8'Position'#2#0 ++ +#8'TabOrder'#2#0#0#0#9'TTrackBar'#15'ImgContrastBar2'#4'Left'#3#152#0#6'Heig' ++ +'ht'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2 ++ ,#156#8'OnChange'#7#21'ImgContrastBar2Change'#8'PageSize'#2#5#8'Position'#2#0 ++ +#8'TabOrder'#2#1#0#0#0#13'TFileNameEdit'#7'backimg'#4'Left'#2'_'#6'Height'#2 ++ +#21#3'Top'#2#15#5'Width'#3'h'#1#13'DialogOptions'#11#0#6'Filter'#6#16'FITS F' ++ +'iles|*.fit'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9 ++ +'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#13'backimgChange'#0#0#0#9'TTab' ++ +'Sheet'#5'Page3'#7'Caption'#6#13'DSS - Realsky'#12'ClientHeight'#3#192#1#11 ++ +'ClientWidth'#3#249#1#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#1#6'Height'#3'c' ++ +#1#3'Top'#2'e'#5'Width'#3#225#1#7'Caption'#6#9'RealSky'#194#174#12'ClientHei' ++ +'ght'#3'T'#1#11'ClientWidth'#3#221#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label72'#4 ++ +'Left'#2#8#6'Height'#2#14#3'Top'#2'd'#5'Width'#2'L'#7'Caption'#6#15'Auxiliar' ++ +'y files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label73'#4'Left'#2#8#6'Height'#2 ++ +#14#3'Top'#3#152#0#5'Width'#2'g'#7'Caption'#6#17'Data Files, CDrom'#11'Paren' ++ +'tColor'#8#0#0#6'TLabel'#7'Label74'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#196#0 ++ +#5'Width'#2'Q'#7'Caption'#6#14'temporary file'#11'ParentColor'#8#0#0#6'TLabe' ++ +'l'#7'Label75'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2'"'#7 ++ +'Caption'#6#6'pixels'#11'ParentColor'#8#0#0#6'TLabel'#7'Label77'#4'Left'#3 ++ +#160#1#6'Height'#2#14#3'Top'#3'4'#1#5'Width'#2'*'#7'Caption'#6#6'MBytes'#11 ++ +'ParentColor'#8#0#0#5'TEdit'#10'realskydir'#4'Left'#3#196#0#6'Height'#2#21#3 ++ +'Top'#2'\'#5'Width'#3#169#0#8'OnChange'#7#16'realskydirChange'#8'TabOrder'#2 ++ +#3#4'Text'#6#12'cat\RealSky\'#0#0#5'TEdit'#12'realskydrive'#4'Left'#3#196#0#6 ++ +'Height'#2#21#3'Top'#3#144#0#5'Width'#3#169#0#8'OnChange'#7#18'realskydriveC' ++ +'hange'#8'TabOrder'#2#4#4'Text'#6#3'X:\'#0#0#5'TEdit'#11'realskyfile'#4'Left' ++ +#3#196#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#169#0#8'OnChange'#7#17'rea' ++ +'lskyfileChange'#8'TabOrder'#2#5#4'Text'#6#16'images\$TEMP.FIT'#0#0#9'TCheck' ++ +'Box'#12'RealSkyNorth'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#26#5'Width'#2'f'#7 ++ +'Caption'#6#13'RealSky North'#7'OnClick'#7#17'RealSkyNorthClick'#8'TabOrder' ++ +#2#0#0#0#9'TCheckBox'#12'RealSkySouth'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'>' ++ +#5'Width'#2'h'#7'Caption'#6#13'RealSky South'#7'OnClick'#7#17'RealSkySouthCl' ++ +'ick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#8'DSS102CD'#4'Left'#3#184#0#6'Height' ++ +#2#21#3'Top'#2#26#5'Width'#2'\'#7'Caption'#6#10'102 CD DSS'#7'OnClick'#7#13 ++ +'DSS102CDClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#12'usesubsample'#4'Left'#2#8 ++ +#6'Height'#2#21#3'Top'#3#16#1#5'Width'#3#245#0#7'Caption'#6'&Use subsampling' ++ +' to limit image size to'#7'Checked'#9#7'OnClick'#7#17'usesubsampleClick'#5 ++ +'State'#7#9'cbChecked'#8'TabOrder'#2#7#0#0#9'TCheckBox'#8'reallist'#4'Left'#2 ++ +#8#6'Height'#2#21#3'Top'#3#240#0#5'Width'#3#142#0#7'Caption'#6#22'Select pla' ++ +'te from list'#7'Checked'#9#7'OnClick'#7#13'reallistClick'#5'State'#7#9'cbCh' ++ +'ecked'#8'TabOrder'#2#6#0#0#9'TLongEdit'#10'realskymax'#4'Left'#3'P'#1#6'Hei' ++ +'ght'#2#21#3'Top'#3#12#1#5'Width'#2'A'#8'TabOrder'#2#8#8'OnChange'#7#16'real' ++ +'skymaxChange'#5'Value'#2#0#0#0#9'TLongEdit'#9'realskymb'#4'Left'#3'P'#1#6'H' ++ +'eight'#2#21#3'Top'#3'0'#1#5'Width'#2'A'#5'Color'#7#9'clBtnFace'#8'ReadOnly' ++ +#9#8'TabOrder'#2#9#5'Value'#2#0#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#1#6 ++ +'Height'#2'U'#3'Top'#2#8#5'Width'#3#225#1#7'Caption'#6#10'Online DSS'#12'Cli' ++ +'entHeight'#2'F'#11'ClientWidth'#3#221#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'On' ++ +'lineDSS'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#20#5'Width'#3#220#0#7'Caption' ++ +#6'!Use online DSS instead of RealSky'#8'OnChange'#7#15'OnlineDSSChange'#8'T' ++ +'abOrder'#2#0#0#0#9'TComboBox'#13'OnlineDSSList'#4'Left'#3'$'#1#6'Height'#2 ++ +#23#3'Top'#2#20#5'Width'#3#176#0#10'ItemHeight'#2#0#8'OnSelect'#7#19'OnlineD' ++ +'SSListChange'#8'TabOrder'#2#1#4'Text'#6#13'OnlineDSSList'#0#0#0#0#0#0#6'TPa' ++ +'nel'#6'Panel2'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#229#1#5'Width'#3#1#2#5'A' ++ +'lign'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#1#2#8'TabOrder' ++ +#2#1#0#7'TButton'#7'Button1'#4'Left'#3#216#0#6'Height'#2#25#3'Top'#2#11#5'Wi' ++ +'dth'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder' ++ +#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0 ++ +#7'TButton'#7'Button2'#4'Left'#3'8'#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2 ++ +'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7 ++ +'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TBu' ++ +'tton'#7'Button3'#4'Left'#3#152#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7 ++ +'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cance' ++ +'l'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButt' ++ +'on'#7'Button4'#4'Left'#2'x'#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anch' ++ +'ors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4C' ++ +'lick'#8'TabOrder'#2#3#0#0#0#6'TTimer'#11'ImageTimer1'#7'Enabled'#8#8'Interv' ++ +'al'#3#244#1#7'OnTimer'#7#16'ImageTimer1Timer'#4'left'#3#208#1#3'top'#2#24#0 ++ +#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_solsys.lfm skychart_3.2_up/skychart/pu_config_solsys.lfm +--- skychart_3.2/skychart/pu_config_solsys.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_solsys.lfm 2011-03-09 15:18:57.149091880 +0100 +@@ -1,9 +1,9 @@ + object f_config_solsys: Tf_config_solsys +- Left = 709 ++ Left = 488 + Height = 536 +- Top = 72 ++ Top = 69 + Width = 503 +- ActiveControl = planetdir ++ ActiveControl = MainPanel + BorderStyle = bsToolWindow + Caption = 'Solar System' + ClientHeight = 536 +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 486 +@@ -31,18 +31,17 @@ + Width = 501 + ActivePage = Page1 + Align = alClient +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Page1' +- ClientHeight = 480 +- ClientWidth = 497 ++ ClientHeight = 449 ++ ClientWidth = 495 + object Label12: TLabel + Left = 7 + Height = 14 + Top = 17 +- Width = 122 ++ Width = 114 + Caption = 'Solar System Setting' + ParentColor = False + end +@@ -50,7 +49,7 @@ + Left = 40 + Height = 14 + Top = 64 +- Width = 64 ++ Width = 61 + Caption = 'Data Files :' + ParentColor = False + end +@@ -58,7 +57,7 @@ + Left = 62 + Height = 14 + Top = 280 +- Width = 336 ++ Width = 326 + Caption = 'Uncheck to avoid double labeling with minor planet 134340' + ParentColor = False + end +@@ -89,21 +88,20 @@ + end + object planetdir: TDirectoryEdit + Left = 182 +- Height = 21 ++ Height = 23 + Top = 55 + Width = 224 + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + OnChange = PlanetDirChange + end + object CheckBoxPluto: TCheckBox + Left = 40 +- Height = 21 ++ Height = 22 + Top = 248 +- Width = 119 ++ Width = 114 + Caption = 'Pluto is a planet.' + OnChange = CheckBoxPlutoChange + TabOrder = 2 +@@ -111,8 +109,8 @@ + end + object Page2: TTabSheet + Caption = 'Page2' +- ClientHeight = 480 +- ClientWidth = 497 ++ ClientHeight = 449 ++ ClientWidth = 495 + object Label5: TLabel + Left = 0 + Height = 14 +@@ -324,6 +322,14 @@ + ClientHeight = 65 + ClientWidth = 329 + TabOrder = 7 ++ object LabelXplanetBox: TLabel ++ Left = 15 ++ Height = 14 ++ Top = 2 ++ Width = 82 ++ Caption = 'LabelXplanetBox' ++ ParentColor = False ++ end + object XplanetBtn: TBitBtn + Left = 286 + Height = 26 +@@ -390,20 +396,12 @@ + OnClick = UseXplanetClick + TabOrder = 2 + end +- object LabelXplanetBox: TLabel +- Left = 15 +- Height = 14 +- Top = 2 +- Width = 82 +- Caption = 'LabelXplanetBox' +- ParentColor = False +- end + end + end + object Page3: TTabSheet + Caption = 'Page3' +- ClientHeight = 480 +- ClientWidth = 497 ++ ClientHeight = 449 ++ ClientWidth = 495 + object ComPageControl: TPageControl + Left = -3 + Height = 429 +@@ -414,8 +412,8 @@ + TabOrder = 0 + object comsetting: TTabSheet + Caption = 'General Setting' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 3 + object GroupBox13: TGroupBox + Left = 9 +@@ -532,8 +530,8 @@ + end + object comload: TTabSheet + Caption = 'Load MPC File' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 1 + object Label232: TLabel + Left = 15 +@@ -563,8 +561,8 @@ + TabOrder = 1 + object TabSheet1: TTabSheet + Caption = 'Load MPC format file' +- ClientHeight = 75 +- ClientWidth = 432 ++ ClientHeight = 69 ++ ClientWidth = 430 + object Label2: TLabel + Left = 13 + Height = 14 +@@ -586,8 +584,8 @@ + end + object TabSheet2: TTabSheet + Caption = 'Or use a local file :' +- ClientHeight = 75 +- ClientWidth = 432 ++ ClientHeight = 69 ++ ClientWidth = 430 + object comfile: TFileNameEdit + Left = 13 + Height = 20 +@@ -599,7 +597,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + end + object Loadcom: TButton +@@ -617,8 +614,8 @@ + end + object comdelete: TTabSheet + Caption = 'Data Maintenance' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 3 + object Label238: TLabel + Left = 8 +@@ -699,8 +696,8 @@ + end + object Addsinglecom: TTabSheet + Caption = 'Add' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 4 + object Label241: TLabel + Left = 8 +@@ -927,8 +924,8 @@ + end + object Page4: TTabSheet + Caption = 'Page4' +- ClientHeight = 480 +- ClientWidth = 497 ++ ClientHeight = 449 ++ ClientWidth = 495 + object AstPageControl: TPageControl + Left = 0 + Height = 429 +@@ -939,8 +936,8 @@ + TabOrder = 0 + object astsetting: TTabSheet + Caption = 'General Setting' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 3 + object GroupBox9: TGroupBox + Left = 9 +@@ -1057,8 +1054,8 @@ + end + object astload: TTabSheet + Caption = 'Load MPC File' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 1 + object Label206: TLabel + Left = 8 +@@ -1144,8 +1141,8 @@ + TabOrder = 2 + object TabSheet3: TTabSheet + Caption = 'Load MPC format file' +- ClientHeight = 67 +- ClientWidth = 437 ++ ClientHeight = 61 ++ ClientWidth = 435 + object Label1: TLabel + Left = 22 + Height = 14 +@@ -1167,8 +1164,8 @@ + end + object TabSheet4: TTabSheet + Caption = 'Or use a local file :' +- ClientHeight = 67 +- ClientWidth = 437 ++ ClientHeight = 61 ++ ClientWidth = 435 + object mpcfile: TFileNameEdit + Left = 14 + Height = 21 +@@ -1180,7 +1177,6 @@ + HideDirectories = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + end + object LoadMPC: TButton +@@ -1198,8 +1194,8 @@ + end + object astprepare: TTabSheet + Caption = 'Prepare Monthly Data' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 2 + object Label210: TLabel + Left = 8 +@@ -1291,8 +1287,8 @@ + end + object astdelete: TTabSheet + Caption = 'Data Maintenance' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 3 + object Label211: TLabel + Left = 8 +@@ -1416,8 +1412,8 @@ + end + object AddsingleAst: TTabSheet + Caption = 'Add' +- ClientHeight = 400 +- ClientWidth = 477 ++ ClientHeight = 394 ++ ClientWidth = 475 + ImageIndex = 4 + object Label217: TLabel + Left = 8 +diff -ur skychart_3.2/skychart/pu_config_solsys.lrs skychart_3.2_up/skychart/pu_config_solsys.lrs +--- skychart_3.2/skychart/pu_config_solsys.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_solsys.lrs 2011-03-09 15:18:57.117095809 +0100 +@@ -1,473 +1,472 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_solsys','FORMDATA',[ +- 'TPF0'#16'Tf_config_solsys'#15'f_config_solsys'#4'Left'#3#197#2#6'Height'#3#24 +- +#2#3'Top'#2'H'#5'Width'#3#247#1#13'ActiveControl'#7#9'planetdir'#11'BorderSt' ++ 'TPF0'#16'Tf_config_solsys'#15'f_config_solsys'#4'Left'#3#232#1#6'Height'#3#24 ++ +#2#3'Top'#2'E'#5'Width'#3#247#1#13'ActiveControl'#7#9'MainPanel'#11'BorderSt' + +'yle'#7#12'bsToolWindow'#7'Caption'#6#12'Solar System'#12'ClientHeight'#3#24 + +#2#11'ClientWidth'#3#247#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8 + +'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'For' +- +'mShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'He' +- +'ight'#3#230#1#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientH' +- +'eight'#3#230#1#11'ClientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#0#0 ++ +'mShow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6 ++ +'Height'#3#230#1#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'Clien' ++ +'tHeight'#3#230#1#11'ClientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#0#0 + +#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#228#1#3'Top'#2#1#5 +- +'Width'#3#245#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs' +- +#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Pa' +- +'ge1'#12'ClientHeight'#3#224#1#11'ClientWidth'#3#241#1#0#6'TLabel'#7'Label12' +- +#4'Left'#2#7#6'Height'#2#14#3'Top'#2#17#5'Width'#2'z'#7'Caption'#6#20'Solar ' +- +'System Setting'#11'ParentColor'#8#0#0#6'TLabel'#8'Label131'#4'Left'#2'('#6 +- +'Height'#2#14#3'Top'#2'@'#5'Width'#2'@'#7'Caption'#6#12'Data Files :'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#24 +- +#1#5'Width'#3'P'#1#7'Caption'#6'9Uncheck to avoid double labeling with minor' +- +' planet 134340'#11'ParentColor'#8#0#0#11'TRadioGroup'#11'PlaParalaxe'#4'Lef' +- +'t'#2'('#6'Height'#2'Q'#3'Top'#2'x'#5'Width'#3#134#1#8'AutoFill'#9#7'Caption' +- +#6#8'Position'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' +- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' +- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' +- +'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' +- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' +- +'tom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWid' +- +'th'#3#130#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Geocentric'#6#11'TopoCe' +- +'ntric'#0#7'OnClick'#7#16'PlaParalaxeClick'#8'TabOrder'#2#1#0#0#14'TDirector' +- +'yEdit'#9'planetdir'#4'Left'#3#182#0#6'Height'#2#21#3'Top'#2'7'#5'Width'#3 +- +#224#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 +- +#0#8'TabOrder'#2#0#8'OnChange'#7#15'PlanetDirChange'#0#0#9'TCheckBox'#13'Che' +- +'ckBoxPluto'#4'Left'#2'('#6'Height'#2#21#3'Top'#3#248#0#5'Width'#2'w'#7'Capt' +- +'ion'#6#18'Pluto is a planet.'#8'OnChange'#7#19'CheckBoxPlutoChange'#8'TabOr' +- +'der'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight' +- +#3#224#1#11'ClientWidth'#3#241#1#0#6'TLabel'#6'Label5'#4'Left'#2#0#6'Height' +- +#2#14#3'Top'#2#17#5'Width'#2'H'#7'Caption'#6#15'Planets Setting'#11'ParentCo' +- +'lor'#8#0#0#6'TLabel'#7'Label89'#4'Left'#2'.'#6'Height'#2#14#3'Top'#3'P'#1#5 +- +'Width'#2'n'#7'Caption'#6#23'Jupiter GRS longitude :'#11'ParentColor'#8#0#0#6 +- +'TLabel'#7'Label53'#4'Left'#3#191#0#6'Height'#2#14#3'Top'#2#21#5'Width'#2'd' +- +#7'Caption'#6#21'Computation Plugin : '#11'ParentColor'#8#7'Visible'#8#0#0#6 +- +'TLabel'#10'XplanetMsg'#4'Left'#2'.'#6'Height'#2#1#3'Top'#3#236#0#5'Width'#2 +- +#1#11'ParentColor'#8#0#0#9'TCheckBox'#9'PlanetBox'#4'Left'#2'#'#6'Height'#2 +- +#21#4'Hint'#6'*Planetary Ephemerides (Chapront+ 1996)'#3'Top'#2'0'#5'Wid' +- +'th'#3#146#0#11'HelpContext'#2'k'#7'Caption'#6#24'Show Planet on the Chart'#7 +- +'Checked'#9#7'OnClick'#7#14'PlanetBoxClick'#14'ParentShowHint'#8#8'ShowHint' +- +#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#10'PlanetMode' +- +#4'Left'#2'('#6'Height'#3#145#0#3'Top'#2'P'#5'Width'#3'I'#1#8'AutoFill'#9#7 +- +'Caption'#6#14'Draw Planet As'#28'ChildSizing.LeftRightSpacing'#2#6#28'Child' +- +'Sizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomo' +- +'genousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildR' +- +'esize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing' +- +'.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftTo' +- +'RightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#3 +- +#130#0#11'ClientWidth'#3'E'#1#13'Items.Strings'#1#6#4'Star'#6#17'Line mode d' +- +'rawing'#6#16'Realistics image'#6#6'Symbol'#0#7'OnClick'#7#15'PlanetModeClic' +- +'k'#8'TabOrder'#2#1#0#0#9'TCheckBox'#10'PlanetBox3'#4'Left'#2'('#6'Height'#2 +- +#21#3'Top'#3'x'#1#5'Width'#3#209#0#7'Caption'#6'#Show Earth Shadow (Lunar e' +- +'clipses)'#7'OnClick'#7#15'PlanetBox3Click'#8'TabOrder'#2#4#0#0#10'TFloatEdi' +- +'t'#3'GRS'#4'Left'#3#206#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'H'#1#5 +- +'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7 +- +#9'GRSChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0 +- +#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#0#0#7'TBitBtn'#8'BitBtn37'#4'Left'#3 +- +#22#1#6'Height'#2#28#4'Hint'#6'!Get recent measurement from JUPOS'#3'Top'#3 +- +'E'#1#5'Width'#2' '#25'BorderSpacing.InnerBorder'#2#2#10'Glyph.Data'#10':'#9 +- +#0#0'6'#9#0#0'BM6'#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' '#0 +- ,#0#0#0#0#0#9#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'"'#0#0#0#0#0#0#0#0 +- +#0#0#0#1#0#0#0#1#0#0#0#1#0#0#0#192#6#0#0#128#9#0#0#0#0#0#0#0#0#0#0#0#128#0#0 +- +#1#1#8#0#0#7#0#0#26#4#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 ++ +'Width'#3#245#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex' ++ +#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'Client' ++ +'Height'#3#193#1#11'ClientWidth'#3#239#1#0#6'TLabel'#7'Label12'#4'Left'#2#7#6 ++ +'Height'#2#14#3'Top'#2#17#5'Width'#2'r'#7'Caption'#6#20'Solar System Setting' ++ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label131'#4'Left'#2'('#6'Height'#2#14#3'T' ++ +'op'#2'@'#5'Width'#2'='#7'Caption'#6#12'Data Files :'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#6'Label3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#24#1#5'Width'#3'F'#1 ++ +#7'Caption'#6'9Uncheck to avoid double labeling with minor planet 134340'#11 ++ +'ParentColor'#8#0#0#11'TRadioGroup'#11'PlaParalaxe'#4'Left'#2'('#6'Height'#2 ++ +'Q'#3'Top'#2'x'#5'Width'#3#134#1#8'AutoFill'#9#7'Caption'#6#8'Position'#28'C' ++ +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' ++ +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' ++ +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' ++ +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' ++ +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' ++ +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#130#1#7'Col' ++ +'umns'#2#2#13'Items.Strings'#1#6#10'Geocentric'#6#11'TopoCentric'#0#7'OnClic' ++ +'k'#7#16'PlaParalaxeClick'#8'TabOrder'#2#1#0#0#14'TDirectoryEdit'#9'planetdi' ++ +'r'#4'Left'#3#182#0#6'Height'#2#23#3'Top'#2'7'#5'Width'#3#224#0#10'ShowHidde' ++ +'n'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#15 ++ +'PlanetDirChange'#0#0#9'TCheckBox'#13'CheckBoxPluto'#4'Left'#2'('#6'Height'#2 ++ +#22#3'Top'#3#248#0#5'Width'#2'r'#7'Caption'#6#18'Pluto is a planet.'#8'OnCha' ++ +'nge'#7#19'CheckBoxPlutoChange'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7 ++ +'Caption'#6#5'Page2'#12'ClientHeight'#3#193#1#11'ClientWidth'#3#239#1#0#6'TL' ++ +'abel'#6'Label5'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'H'#7'Capt' ++ +'ion'#6#15'Planets Setting'#11'ParentColor'#8#0#0#6'TLabel'#7'Label89'#4'Lef' ++ +'t'#2'.'#6'Height'#2#14#3'Top'#3'P'#1#5'Width'#2'n'#7'Caption'#6#23'Jupiter ' ++ +'GRS longitude :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label53'#4'Left'#3#191#0 ++ +#6'Height'#2#14#3'Top'#2#21#5'Width'#2'd'#7'Caption'#6#21'Computation Plugin' ++ +' : '#11'ParentColor'#8#7'Visible'#8#0#0#6'TLabel'#10'XplanetMsg'#4'Left'#2 ++ +'.'#6'Height'#2#1#3'Top'#3#236#0#5'Width'#2#1#11'ParentColor'#8#0#0#9'TCheck' ++ +'Box'#9'PlanetBox'#4'Left'#2'#'#6'Height'#2#21#4'Hint'#6'*Planetary Ephemeri' ++ +'des (Chapront+ 1996)'#3'Top'#2'0'#5'Width'#3#146#0#11'HelpContext'#2'k' ++ +#7'Caption'#6#24'Show Planet on the Chart'#7'Checked'#9#7'OnClick'#7#14'Plan' ++ +'etBoxClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'State'#7#9'cbChecked'#8'Ta' ++ +'bOrder'#2#0#0#0#11'TRadioGroup'#10'PlanetMode'#4'Left'#2'('#6'Height'#3#145 ++ +#0#3'Top'#2'P'#5'Width'#3'I'#1#8'AutoFill'#9#7'Caption'#6#14'Draw Planet As' ++ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 ++ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' ++ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' ++ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' ++ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' ++ +'zing.ControlsPerLine'#2#1#12'ClientHeight'#3#130#0#11'ClientWidth'#3'E'#1#13 ++ +'Items.Strings'#1#6#4'Star'#6#17'Line mode drawing'#6#16'Realistics image'#6 ++ +#6'Symbol'#0#7'OnClick'#7#15'PlanetModeClick'#8'TabOrder'#2#1#0#0#9'TCheckBo' ++ +'x'#10'PlanetBox3'#4'Left'#2'('#6'Height'#2#21#3'Top'#3'x'#1#5'Width'#3#209#0 ++ +#7'Caption'#6'#Show Earth Shadow (Lunar eclipses)'#7'OnClick'#7#15'PlanetBo' ++ +'x3Click'#8'TabOrder'#2#4#0#0#10'TFloatEdit'#3'GRS'#4'Left'#3#206#0#6'Height' ++ +#2#21#4'Hint'#6#6'0..360'#3'Top'#3'H'#1#5'Width'#2')'#14'ParentShowHint'#8#8 ++ +'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#9'GRSChange'#5'Value'#5#0#0#0#0#0 ++ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180 ++ +#7'@'#0#0#7'TBitBtn'#8'BitBtn37'#4'Left'#3#22#1#6'Height'#2#28#4'Hint'#6'!Ge' ++ +'t recent measurement from JUPOS'#3'Top'#3'E'#1#5'Width'#2' '#25'BorderSpaci' ++ +'ng.InnerBorder'#2#2#10'Glyph.Data'#10':'#9#0#0'6'#9#0#0'BM6'#9#0#0#0#0#0#0 ++ +'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' '#0#0#0#0#0#0#9#0#0'd'#0#0#0'd'#0#0 ++ ,#0#0#0#0#0#0#0#0#0#0#0#0#0'"'#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#1#0#0#0#1#0#0#0 ++ +#192#6#0#0#128#9#0#0#0#0#0#0#0#0#0#0#0#128#0#0#1#1#8#0#0#7#0#0#26#4#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 + +#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 +- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'EGH' +- +#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 +- +#132#1#1#255#134#10#10#255#142#26#26#255#143'))'#255#142'99'#255#143';9'#255 +- +#140'))'#255#141#25#25#255#134#9#8#255#132#0#0#255#132#0#0#255#132#0#0#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'lop'#0#132#0#0#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#134#13#13#255#143'99'#255 +- +#148'gg'#255#150#127'{'#255#143#132'{'#255#141#134#127#255#142#135#127#255 +- +#141#133#127#255#148#127'{'#255#149'cc'#255#143'11'#255#134#9#9#255#132#0#0 +- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'EGH'#0'_bc'#0#132#0#0 +- +#255#132#0#0#255#132#0#0#255#132#1#1#255#140'##'#255#151'gc'#255#140#134#127 +- +#255#134#133#127#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{' +- +#255#132#132'{'#255#132#132'{'#255#135#134#127#255#148#134#127#255#149'_^' +- +#255#142#28#28#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'ehi'#0'P' +- +#127#143#0#132#0#0#255#132#0#0#255#132#1#1#255#141''''''#255#157#127#127#255 +- +#158#156#150#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143 +- +#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150 +- +#143#255#151#150#143#255#157#157#148#255#165'ww'#255#143#29#29#255#132#0#0 +- +#255#132#0#0#255#132#0#0#255'_bc'#0'W]['#0#132#0#0#255#132#0#0#255#141#25#25 +- +#255#157'{{'#255#181#181#175#255#189#189#189#255#191#191#189#255#191#191#189 +- +#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191 +- +#189#255#191#191#189#255#191#191#189#255#191#191#189#255#189#189#189#255#181 +- +#175#173#255#156'ss'#255#141#21#21#255#132#0#0#255#132#0#0#255'Cfr'#0'X[['#0 +- +#132#0#0#255#133#7#7#255#151'WW'#255#127'{w'#255'wws'#255'wws'#255'wws'#255 +- +'wws'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w' +- +#255'{{w'#255'wws'#255#132'{{'#255#151'OO'#255#133#4#4#255#132#0#0#255'PaX'#0 +- +'\_`'#0#132#0#0#255#142'##'#255#150#135#134#255#165#165#158#255#156#156#156 +- +#255'ss'#134#255'ss'#132#255#158#158#159#255#165#165#159#255#165#165#159#255 +- +#165#165#159#255#165#165#159#255#165#165#159#255#167#167#165#255#167#167#165 +- +#255#165#165#167#255#173#173#167#255#175#175#175#255#167#167#165#255#159#135 +- +#134#255#143#28#28#255#132#0#0#255'X[['#0'UXY'#0#132#2#2#255#135';;'#255'GC?' +- +#255'11+'#255'//+'#255'!!#'#255'!!#'#255'//)'#255'11+'#255'33+'#255'33+'#255 +- +'31+'#255';;5'#255'gg_'#255'sso'#255'cc_'#255'kkg'#255'ggc'#255'993'#255'ZRN' +- +#255#141'55'#255#132#0#0#255'Y\]'#0#191#217#221#0#133#6#6#255#142'WV'#255'WV' +- +'O'#255'JJB'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'JJB' +- +#255'GFB'#255'gcZ'#255#183#181#175#255#167#167#165#255'ZVS'#255'FC9'#255'GG?' +- +#255'GGC'#255'c^Z'#255#151'WW'#255#133#3#3#255'UXY'#0'<NS'#0#135#12#12#255 +- +#167#127#127#255#191#191#191#255#191#191#191#255#198#198#191#255#198#198#191 +- +#255#198#198#191#255#198#198#191#255#198#198#191#255#198#198#191#255#191#191 +- +#191#255#191#189#189#255#189#181#173#255#189#175#175#255#191#191#191#255#191 +- +#191#189#255#175#165#165#255#167#165#157#255#183#183#181#255#189#183#183#255 +- +#157'gg'#255#133#5#5#255#148#187#197#0'NPQ'#0#134#11#11#255#165'{{'#255#173 +- +#173#173#255#175#175#175#255#175#175#175#255#175#175#175#255#175#175#175#255 +- +#181#181#181#255#183#183#183#255#181#181#183#255#181#181#183#255#181#181#183 +- +#255#183#183#183#255#183#181#181#255#183#183#181#255#183#183#183#255#183#183 +- +#183#255#181#181#181#255#183#183#183#255#181#175#175#255#156'gg'#255#133#5#5 +- +#255'Ak'#128#0'QST'#0#133#5#5#255#134'NN'#255'CB='#255'33+'#255'33+'#255'33+' +- +#255'775'#255'SRo'#255'Z_'#157#255'sw'#150#255#132#133#134#255'{{w'#255'{{w' +- +#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255#133#135#133#255 +- +#151'[Z'#255#132#3#3#255'NPQ'#0'`ab'#0#132#1#1#255#142'99'#255'[SO'#255'GGB' +- +#255'FFC'#255'GGC'#255'VWg'#255'BG'#199#255'/5'#223#255'CJ'#215#255'ss'#148 +- +#255'cc^'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'^^Z'#255 +- +'{oo'#255#143'11'#255#132#0#0#255'cef'#0'?q'#148#0#132#0#0#255#141#25#25#255 +- +#158#134#134#255#181#181#183#255#189#189#183#255#189#189#189#255#181#183#191 +- +#255'ow'#206#255'NS'#215#255'cg'#206#255#175#173#198#255#189#189#189#255#189 +- +#189#189#255#189#189#189#255#191#191#189#255#189#189#189#255#189#189#189#255 +- +#189#189#183#255#183#183#183#255#165#132#132#255#141#20#20#255#132#0#0#255'`' +- +'ab'#0'5EP'#0#132#0#0#255#132#4#4#255#148'JJ'#255#142#135#133#255'{{{'#255 +- +#127#127'{'#255'{{{'#255'ww{'#255'oow'#255'ss{'#255'{{{'#255#127#127'{'#255 +- ,#135#135#132#255#183#183#181#255#150#150#148#255'{{{'#255#127#127'{'#255'{{{' +- +#255#149#133#132#255#148'BB'#255#132#2#2#255#132#0#0#255'=s'#151#0'wyz'#0#132 +- +#0#0#255#132#0#0#255#135#15#15#255#142'WW'#255#158#151#150#255#156#156#158 +- +#255#142#142#143#255#148#148#141#255'{{w'#255#167#167#165#255#173#173#175#255 +- +#173#173#175#255#175#175#175#255#189#189#191#255#165#165#167#255#141#141#133 +- +#255#173#173#167#255#158#151#150#255#149'RR'#255#134#9#9#255#132#0#0#255#132 +- +#0#0#255'5H]'#0'|'#127#128#0#132#0#0#255#132#0#0#255#132#0#0#255#135#16#16 +- +#255#156'cc'#255#149#141#142#255#134#133#127#255#133#133#127#255'wwo'#255#148 +- +#148#141#255#149#149#143#255#149#149#143#255#149#149#142#255#149#149#142#255 +- +#142#142#140#255#134#133#127#255#158#151#148#255#159'__'#255#140#16#16#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255'wyz'#0'{~~'#0#132#0#0#255#132#0#0#255 +- +#132#0#0#255#132#0#0#255#135#15#15#255#149'KJ'#255#149'{w'#255#141#133#127 +- +#255#133#132#127#255#135#135'{'#255#132#132'{'#255#132#132'{'#255#132#132'{' +- +#255#134#133#127#255#140#135#133#255#148'{w'#255#149'CB'#255#134#10#10#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#130#133#133#0'V^\'#0#132#0#0 +- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#4#4#255#143'!!'#255 +- +#150'KJ'#255#149'gg'#255#141'ws'#255#142'ws'#255#143'ws'#255#148'ww'#255#151 +- +'gc'#255#151'KJ'#255#142#26#26#255#132#3#3#255#132#0#0#255#132#0#0#255#132#0 +- +#0#255#132#0#0#255#132#0#0#255'{~~'#0#140#142#143#0#132#0#0#255#132#0#0#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#2#2#255#134 +- +#9#9#255#135#21#21#255#135#24#24#255#140#24#24#255#140#21#21#255#133#8#8#255 +- +#132#2#2#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 +- +#0#0#255#132#0#0#255'Phm'#0'Z[['#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0 +- +#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 + +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 +- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#138 +- +#140#141#0#158#160#160#0#156#158#158#0#129#131#131#0'fhh'#0'Z[['#0'Z[['#0'Z[' +- +'['#0'Z[['#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0 +- +'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[['#0'Z[['#0'Z[['#0#9'NumGlyphs'#2#0#7'OnClick' +- +#7#13'BitBtn37Click'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#5 +- +'TEdit'#5'Edit2'#4'Left'#3'M'#1#6'Height'#2#21#3'Top'#2#17#5'Width'#2'd'#8'T' +- +'abOrder'#2#6#7'Visible'#8#0#0#9'TCheckBox'#17'TransparentPlanet'#4'Left'#2 +- +'('#6'Height'#2#21#3'Top'#3#161#1#5'Width'#3#193#0#7'Caption'#6'#Transparent' +- +' line mode (occultation)'#7'OnClick'#7#22'TransparentPlanetClick'#8'TabOrde' +- +'r'#2#5#0#0#6'TPanel'#10'XplanetBox'#4'Left'#2'('#6'Height'#2'A'#3'Top'#3#232 +- +#0#5'Width'#3'I'#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'A'#11'Clien' +- +'tWidth'#3'I'#1#8'TabOrder'#2#7#0#7'TBitBtn'#10'XplanetBtn'#4'Left'#3#30#1#6 +- +'Height'#2#26#3'Top'#2#24#5'Width'#2#26#25'BorderSpacing.InnerBorder'#2#2#10 +- +'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0 +- +#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#1#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#1 +- +#0#0#0#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#0#0#1#0#0#0#1#0#0#0 +- +#0#0#0#0#1#255#255#0#8#0#0#0#21#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#4#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +- +#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127 ++ +#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'EGH'#0#132#0#0#255#132#0#0#255 ++ +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#1#1#255#134#10#10#255 ++ +#142#26#26#255#143'))'#255#142'99'#255#143';9'#255#140'))'#255#141#25#25#255 ++ +#134#9#8#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 ++ +#0#0#255#132#0#0#255#0#0#0#0'lop'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0 ++ +#0#255#132#0#0#255#134#13#13#255#143'99'#255#148'gg'#255#150#127'{'#255#143 ++ +#132'{'#255#141#134#127#255#142#135#127#255#141#133#127#255#148#127'{'#255 ++ +#149'cc'#255#143'11'#255#134#9#9#255#132#0#0#255#132#0#0#255#132#0#0#255#132 ++ +#0#0#255#132#0#0#255'EGH'#0'_bc'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#1 ++ +#1#255#140'##'#255#151'gc'#255#140#134#127#255#134#133#127#255#132#132'{'#255 ++ +#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{'#255 ++ +#135#134#127#255#148#134#127#255#149'_^'#255#142#28#28#255#132#0#0#255#132#0 ++ +#0#255#132#0#0#255#132#0#0#255'ehi'#0'P'#127#143#0#132#0#0#255#132#0#0#255 ++ +#132#1#1#255#141''''''#255#157#127#127#255#158#156#150#255#150#150#143#255 ++ +#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143 ++ +#255#150#150#143#255#150#150#143#255#150#150#143#255#151#150#143#255#157#157 ++ +#148#255#165'ww'#255#143#29#29#255#132#0#0#255#132#0#0#255#132#0#0#255'_bc'#0 ++ +'W]['#0#132#0#0#255#132#0#0#255#141#25#25#255#157'{{'#255#181#181#175#255#189 ++ +#189#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255 ++ +#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189 ++ +#255#191#191#189#255#189#189#189#255#181#175#173#255#156'ss'#255#141#21#21 ++ +#255#132#0#0#255#132#0#0#255'Cfr'#0'X[['#0#132#0#0#255#133#7#7#255#151'WW' ++ +#255#127'{w'#255'wws'#255'wws'#255'wws'#255'wws'#255'{{w'#255'{{w'#255'{{w' ++ +#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'wws'#255#132'{{' ++ +#255#151'OO'#255#133#4#4#255#132#0#0#255'PaX'#0'\_`'#0#132#0#0#255#142'##' ++ +#255#150#135#134#255#165#165#158#255#156#156#156#255'ss'#134#255'ss'#132#255 ++ +#158#158#159#255#165#165#159#255#165#165#159#255#165#165#159#255#165#165#159 ++ +#255#165#165#159#255#167#167#165#255#167#167#165#255#165#165#167#255#173#173 ++ +#167#255#175#175#175#255#167#167#165#255#159#135#134#255#143#28#28#255#132#0 ++ +#0#255'X[['#0'UXY'#0#132#2#2#255#135';;'#255'GC?'#255'11+'#255'//+'#255'!!#' ++ +#255'!!#'#255'//)'#255'11+'#255'33+'#255'33+'#255'31+'#255';;5'#255'gg_'#255 ++ +'sso'#255'cc_'#255'kkg'#255'ggc'#255'993'#255'ZRN'#255#141'55'#255#132#0#0 ++ +#255'Y\]'#0#191#217#221#0#133#6#6#255#142'WV'#255'WVO'#255'JJB'#255'KKC'#255 ++ +'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'JJB'#255'GFB'#255'gcZ'#255#183 ++ +#181#175#255#167#167#165#255'ZVS'#255'FC9'#255'GG?'#255'GGC'#255'c^Z'#255#151 ++ +'WW'#255#133#3#3#255'UXY'#0'<NS'#0#135#12#12#255#167#127#127#255#191#191#191 ++ +#255#191#191#191#255#198#198#191#255#198#198#191#255#198#198#191#255#198#198 ++ +#191#255#198#198#191#255#198#198#191#255#191#191#191#255#191#189#189#255#189 ++ +#181#173#255#189#175#175#255#191#191#191#255#191#191#189#255#175#165#165#255 ++ +#167#165#157#255#183#183#181#255#189#183#183#255#157'gg'#255#133#5#5#255#148 ++ +#187#197#0'NPQ'#0#134#11#11#255#165'{{'#255#173#173#173#255#175#175#175#255 ++ +#175#175#175#255#175#175#175#255#175#175#175#255#181#181#181#255#183#183#183 ++ +#255#181#181#183#255#181#181#183#255#181#181#183#255#183#183#183#255#183#181 ++ +#181#255#183#183#181#255#183#183#183#255#183#183#183#255#181#181#181#255#183 ++ +#183#183#255#181#175#175#255#156'gg'#255#133#5#5#255'Ak'#128#0'QST'#0#133#5#5 ++ +#255#134'NN'#255'CB='#255'33+'#255'33+'#255'33+'#255'775'#255'SRo'#255'Z_' ++ +#157#255'sw'#150#255#132#133#134#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w' ++ +#255'{{w'#255'{{w'#255'{{w'#255#133#135#133#255#151'[Z'#255#132#3#3#255'NPQ' ++ +#0'`ab'#0#132#1#1#255#142'99'#255'[SO'#255'GGB'#255'FFC'#255'GGC'#255'VWg' ++ +#255'BG'#199#255'/5'#223#255'CJ'#215#255'ss'#148#255'cc^'#255'__Z'#255'__Z' ++ +#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'^^Z'#255'{oo'#255#143'11'#255#132#0 ++ +#0#255'cef'#0'?q'#148#0#132#0#0#255#141#25#25#255#158#134#134#255#181#181#183 ++ +#255#189#189#183#255#189#189#189#255#181#183#191#255'ow'#206#255'NS'#215#255 ++ +'cg'#206#255#175#173#198#255#189#189#189#255#189#189#189#255#189#189#189#255 ++ +#191#191#189#255#189#189#189#255#189#189#189#255#189#189#183#255#183#183#183 ++ +#255#165#132#132#255#141#20#20#255#132#0#0#255'`ab'#0'5EP'#0#132#0#0#255#132 ++ +#4#4#255#148'JJ'#255#142#135#133#255'{{{'#255#127#127'{'#255'{{{'#255'ww{' ++ +#255'oow'#255'ss{'#255'{{{'#255#127#127'{'#255#135#135#132#255#183#183#181 ++ ,#255#150#150#148#255'{{{'#255#127#127'{'#255'{{{'#255#149#133#132#255#148'BB' ++ +#255#132#2#2#255#132#0#0#255'=s'#151#0'wyz'#0#132#0#0#255#132#0#0#255#135#15 ++ +#15#255#142'WW'#255#158#151#150#255#156#156#158#255#142#142#143#255#148#148 ++ +#141#255'{{w'#255#167#167#165#255#173#173#175#255#173#173#175#255#175#175#175 ++ +#255#189#189#191#255#165#165#167#255#141#141#133#255#173#173#167#255#158#151 ++ +#150#255#149'RR'#255#134#9#9#255#132#0#0#255#132#0#0#255'5H]'#0'|'#127#128#0 ++ +#132#0#0#255#132#0#0#255#132#0#0#255#135#16#16#255#156'cc'#255#149#141#142 ++ +#255#134#133#127#255#133#133#127#255'wwo'#255#148#148#141#255#149#149#143#255 ++ +#149#149#143#255#149#149#142#255#149#149#142#255#142#142#140#255#134#133#127 ++ +#255#158#151#148#255#159'__'#255#140#16#16#255#132#0#0#255#132#0#0#255#132#0 ++ +#0#255'wyz'#0'{~~'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#135#15 ++ +#15#255#149'KJ'#255#149'{w'#255#141#133#127#255#133#132#127#255#135#135'{' ++ +#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#134#133#127#255#140#135#133 ++ +#255#148'{w'#255#149'CB'#255#134#10#10#255#132#0#0#255#132#0#0#255#132#0#0 ++ +#255#132#0#0#255#130#133#133#0'V^\'#0#132#0#0#255#132#0#0#255#132#0#0#255#132 ++ +#0#0#255#132#0#0#255#132#4#4#255#143'!!'#255#150'KJ'#255#149'gg'#255#141'ws' ++ +#255#142'ws'#255#143'ws'#255#148'ww'#255#151'gc'#255#151'KJ'#255#142#26#26 ++ +#255#132#3#3#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 ++ +'{~~'#0#140#142#143#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 ++ +#255#132#0#0#255#132#0#0#255#132#2#2#255#134#9#9#255#135#21#21#255#135#24#24 ++ +#255#140#24#24#255#140#21#21#255#133#8#8#255#132#2#2#255#132#0#0#255#132#0#0 ++ +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'Phm'#0'Z[[' ++ +#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 ++ +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 ++ +#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 ++ +#255#132#0#0#255#132#0#0#255#132#0#0#255#138#140#141#0#158#160#160#0#156#158 ++ +#158#0#129#131#131#0'fhh'#0'Z[['#0'Z[['#0'Z[['#0'Z[['#0'Z[\'#0'Z[\'#0'Z[\'#0 ++ +'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[['#0 ++ +'Z[['#0'Z[['#0#9'NumGlyphs'#2#0#7'OnClick'#7#13'BitBtn37Click'#14'ParentShow' ++ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit2'#4'Left'#3'M'#1#6 ++ +'Height'#2#21#3'Top'#2#17#5'Width'#2'd'#8'TabOrder'#2#6#7'Visible'#8#0#0#9'T' ++ +'CheckBox'#17'TransparentPlanet'#4'Left'#2'('#6'Height'#2#21#3'Top'#3#161#1#5 ++ +'Width'#3#193#0#7'Caption'#6'#Transparent line mode (occultation)'#7'OnClick' ++ +#7#22'TransparentPlanetClick'#8'TabOrder'#2#5#0#0#6'TPanel'#10'XplanetBox'#4 ++ +'Left'#2'('#6'Height'#2'A'#3'Top'#3#232#0#5'Width'#3'I'#1#10'BevelOuter'#7#6 ++ +'bvNone'#12'ClientHeight'#2'A'#11'ClientWidth'#3'I'#1#8'TabOrder'#2#7#0#6'TL' ++ +'abel'#15'LabelXplanetBox'#4'Left'#2#15#6'Height'#2#14#3'Top'#2#2#5'Width'#2 ++ +'R'#7'Caption'#6#15'LabelXplanetBox'#11'ParentColor'#8#0#0#7'TBitBtn'#10'Xpl' ++ +'anetBtn'#4'Left'#3#30#1#6'Height'#2#26#3'Top'#2#24#5'Width'#2#26#25'BorderS' ++ +'pacing.InnerBorder'#2#2#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0 ++ +#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0 ++ +#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#1#0#0#0#1#0#0#0#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255 ++ +#0#0#0#0#0#1#0#0#0#1#0#0#0#0#0#0#0#1#255#255#0#8#0#0#0#21#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 +- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#0#0 +- +#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#0#0 +- +#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#1#0#0#255#255#255#0#0#0#0#0#255 +- +#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 +- +#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255 +- +#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#0#0#0#0#255#255#255#0 +- +#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#127#127#127 +- +#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#127#127#127#255#255#255#255 +- +#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255 +- +#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#127#127#127#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 ++ +#127#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 ++ +#127#255#255#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#1#0 ++ +#0#255#255#255#0#0#0#0#0#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0 ++ +#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127 ++ +#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255 ++ +#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0 ++ +#0#0#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0 ++ +#127#127#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0 ++ +#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#1 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +- +#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 ++ +#255#255#255#255#255#255#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 +- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 +- +#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#0#255#255 +- ,#255#255#255#255#255#0#255#255#255#255#255#255#255#127#127#127#255#0#0#0#0#0 ++ ,#127#127#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#127#127#127#255#0#255#255#255#255#255#255#255#0#255#255#255#255#255#255 ++ +#255#127#127#127#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127#255#127#127#127 ++ +#255#127#127#127#255#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#0#0#0#0#0 +- +#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0 ++ +#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0 +- +#1#0#0#0#0#1#0#1#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6'Layout'#7#10'blGlyphTop'#6'Marg' +- +'in'#2#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'XplanetBtnClick'#8'TabOrder'#2#0#7 +- +'TabStop'#8#0#0#5'TEdit'#10'XplanetDir'#4'Left'#2'|'#6'Height'#2#21#3'Top'#2 +- +#25#5'Width'#3#156#0#8'OnChange'#7#16'XplanetDirChange'#8'TabOrder'#2#1#0#0#9 +- +'TCheckBox'#10'UseXplanet'#4'Left'#2#15#6'Height'#2#21#3'Top'#2#25#5'Width'#2 +- +'Q'#7'Caption'#6#11'Use Xplanet'#7'OnClick'#7#15'UseXplanetClick'#8'TabOrder' +- +#2#2#0#0#6'TLabel'#15'LabelXplanetBox'#4'Left'#2#15#6'Height'#2#14#3'Top'#2#2 +- +#5'Width'#2'R'#7'Caption'#6#15'LabelXplanetBox'#11'ParentColor'#8#0#0#0#0#9 +- +'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHeight'#3#224#1#11'Clien' +- +'tWidth'#3#241#1#0#12'TPageControl'#14'ComPageControl'#4'Left'#2#253#6'Heigh' +- +'t'#3#173#1#3'Top'#2#4#5'Width'#3#225#1#10'ActivePage'#7#10'comsetting'#8'Ta' +- +'bIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#10'comsetting'#7'Caption'#6#15'G' +- +'eneral Setting'#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIn' +- +'dex'#2#3#0#9'TGroupBox'#10'GroupBox13'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2 +- +#10#5'Width'#3#185#1#7'Caption'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1 +- +#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label154'#4'Left'#2' ' +- +#6'Height'#2'.'#3'Top'#3#162#0#5'Width'#3'.'#1#8'AutoSize'#8#7'Caption'#6'3D' +- +'o not take account of comet fainter than magnitude'#11'ParentColor'#8#8'Wor' +- +'dWrap'#9#0#0#6'TLabel'#8'Label216'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#239 +- +#0#5'Width'#2'G'#7'Caption'#6#10'Show comet'#11'ParentColor'#8#0#0#6'TLabel' +- +#8'Label231'#4'Left'#3#200#0#6'Height'#2'4'#3'Top'#3#239#0#5'Width'#3#191#0#8 +- +'AutoSize'#8#7'Caption'#6'!magnitude fainter than the stars.'#11'ParentColor' +- +#8#8'WordWrap'#9#0#0#10'TFloatEdit'#11'comlimitmag'#4'Left'#3'^'#1#6'Height' +- +#2#21#4'Hint'#6#5'0..99'#3'Top'#3#159#0#5'Width'#2')'#14'ParentShowHint'#8#8 +- +'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#17'comlimitmagChange'#5'Value'#5#0 +- +#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0 +- +#0#0#198#5'@'#0#0#9'TCheckBox'#7'showcom'#4'Left'#2' '#6'Height'#2#21#3'Top' +- +#2#14#5'Width'#3#173#0#7'Caption'#6#24'Show comets on the chart'#7'OnClick'#7 +- +#12'showcomClick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'comsymbol'#4'Left'#2 +- +#24#6'Height'#2'`'#3'Top'#2''''#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizin' +- +'g.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing' +- +'.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVe' +- +'rtical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 +- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' +- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' +- +'PerLine'#2#1#12'ClientHeight'#2'\'#11'ClientWidth'#3#133#1#5'Color'#7#9'clB' +- +'tnFace'#9'ItemIndex'#2#1#13'Items.Strings'#1#6'<Display as a symbol ' +- +' '#6'>Proportional to the tail length ' +- +' '#0#7'OnClick'#7#14'comsymbolClick'#11'ParentColor' +- +#8#8'TabOrder'#2#1#0#0#10'TFloatEdit'#10'commagdiff'#4'Left'#3#140#0#6'Heigh' +- +'t'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#234#0#5'Width'#2')'#14'ParentShowHint'#8 +- +#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#16'commagdiffChange'#5'Value'#5 +- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 +- +#0#0#0#198#5'@'#0#0#0#7'TButton'#8'comdbset'#4'Left'#2#17#6'Height'#2#25#3'T' +- +'op'#3'f'#1#5'Width'#3#185#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#19'Database setting...'#7'OnClick'#7#13'comdbsetClick'#8'TabOrder'#2#1#7'Vi' +- +'sible'#8#0#0#0#9'TTabSheet'#7'comload'#7'Caption'#6#13'Load MPC File'#12'Cl' +- +'ientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#1#0#6'TLabel'#8 +- +'Label232'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'{'#5'Width'#2'?'#7'Caption'#6 +- +#9'Messages:'#11'ParentColor'#8#0#0#5'TMemo'#7'MemoCom'#4'Left'#2#8#6'Height' +- +#3#242#0#3'Top'#3#143#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBa' +- +'rs'#7#6'ssBoth'#8'TabOrder'#2#0#7'TabStop'#8#0#0#12'TPageControl'#15'ComPag' +- +'eControl1'#4'Left'#2#13#6'Height'#2'h'#3'Top'#2#11#5'Width'#3#180#1#10'Acti' +- +'vePage'#7#9'TabSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'Tab' +- ,'Sheet1'#7'Caption'#6#20'Load MPC format file'#12'ClientHeight'#2'K'#11'Clie' +- +'ntWidth'#3#176#1#0#6'TLabel'#6'Label2'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 +- +#27#5'Width'#3#189#0#7'Caption'#6' Download latest orbital elements'#11'Pare' +- +'ntColor'#8#0#0#7'TButton'#13'DownloadComet'#4'Left'#3'='#1#6'Height'#2#25#3 +- +'Top'#2#22#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Do' +- +'wnload'#7'OnClick'#7#18'DownloadCometClick'#8'TabOrder'#2#0#0#0#0#9'TTabShe' +- +'et'#9'TabSheet2'#7'Caption'#6#21'Or use a local file :'#12'ClientHeight'#2 +- +'K'#11'ClientWidth'#3#176#1#0#13'TFileNameEdit'#7'comfile'#4'Left'#2#13#6'He' +- +'ight'#2#20#3'Top'#2#24#5'Width'#3#9#1#13'DialogOptions'#11#0#6'Filter'#6'"C' +- +'omet Files|COM*.DAT|All Files|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8 +- +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#7 +- +'TButton'#7'Loadcom'#4'Left'#3'E'#1#6'Height'#2#25#3'Top'#2#22#5'Width'#2'a' +- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file'#7'OnClick'#7#12 +- +'LoadcomClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#9'comdelete'#7'Caption' +- +#6#16'Data Maintenance'#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10 +- +'ImageIndex'#2#3#0#6'TLabel'#8'Label238'#4'Left'#2#8#6'Height'#2#14#3'Top'#3 +- +#151#0#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGrou' +- +'pBox'#10'GroupBox16'#4'Left'#2#8#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1 +- +#7'Caption'#6#27'Delete MPC data selectively'#12'ClientHeight'#2'-'#11'Clien' +- +'tWidth'#3#181#1#8'TabOrder'#2#0#0#9'TComboBox'#11'comelemlist'#4'Left'#2#16 +- +#6'Height'#2#24#3'Top'#2#6#5'Width'#3#25#1#16'AutoCompleteText'#11#20'cbactS' +- +'earchAscending'#0#10'ItemHeight'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrd' +- +'er'#2#0#0#0#7'TButton'#6'DelCom'#4'Left'#3'H'#1#6'Height'#2#25#3'Top'#2#6#5 +- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnCl' +- +'ick'#7#11'DelComClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#10'GroupBox17'#4 +- +'Left'#2#8#6'Height'#2'?'#3'Top'#2'P'#5'Width'#3#185#1#7'Caption'#6#12'Quick' +- +' Delete'#12'ClientHeight'#2'0'#11'ClientWidth'#3#181#1#8'TabOrder'#2#1#0#6 +- +'TLabel'#8'Label239'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#3#173#0 +- +#7'Caption'#6'%Quickly delete all comet related data'#11'ParentColor'#8#0#0#7 +- +'TButton'#9'DelComAll'#4'Left'#3'H'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K' +- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'De' +- +'lComAllClick'#8'TabOrder'#2#0#0#0#0#5'TMemo'#10'DelComMemo'#4'Left'#2#8#6'H' +- +'eight'#3#209#0#3'Top'#3#176#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'S' +- +'crollBars'#7#6'ssBoth'#8'TabOrder'#2#2#7'TabStop'#8#0#0#0#9'TTabSheet'#12'A' +- +'ddsinglecom'#7'Caption'#6#3'Add'#12'ClientHeight'#3#144#1#11'ClientWidth'#3 +- +#221#1#10'ImageIndex'#2#4#0#6'TLabel'#8'Label241'#4'Left'#2#8#6'Height'#2#14 +- +#3'Top'#2#8#5'Width'#3'&'#1#7'Caption'#6'>Add a single element to the databa' +- +'se. All field are mandatory.'#11'ParentColor'#8#0#0#6'TLabel'#8'Label242'#4 +- +'Left'#2#8#6'Height'#2#14#3'Top'#2'('#5'Width'#2'9'#7'Caption'#6#11'Designat' +- +'ion'#11'ParentColor'#8#0#0#6'TLabel'#8'Label243'#4'Left'#2#8#6'Height'#2#14 +- +#3'Top'#3#232#0#5'Width'#2'h'#7'Caption'#6#20'H absolute magnitude'#11'Paren' +- +'tColor'#8#0#0#6'TLabel'#8'Label244'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#3 +- +#232#0#5'Width'#2'Z'#7'Caption'#6#17'G slope parameter'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label245'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#3#168#0#5'Width' +- +#2'6'#7'Caption'#6#10'Epoch (JD)'#11'ParentColor'#8#0#0#6'TLabel'#8'Label246' +- +#4'Left'#3#160#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2'G'#7'Caption'#6#15'Pe' +- +'rihelion date'#11'ParentColor'#8#0#0#6'TLabel'#8'Label247'#4'Left'#3#160#0#6 +- +'Height'#2#14#3'Top'#2'h'#5'Width'#2'n'#7'Caption'#6#22'Argument of periheli' +- +'on'#11'ParentColor'#8#0#0#6'TLabel'#8'Label248'#4'Left'#3'8'#1#6'Height'#2 +- +#14#3'Top'#2'h'#5'Width'#3#129#0#7'Caption'#6#24'Longitude ascending Node'#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label249'#4'Left'#2#8#6'Height'#2#14#3'Top'#3 +- +#168#0#5'Width'#2'0'#7'Caption'#6#11'Inclination'#11'ParentColor'#8#0#0#6'TL' +- +'abel'#8'Label250'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'9'#7'Ca' +- +'ption'#6#12'Eccentricity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label251'#4'Lef' +- +'t'#3'8'#1#6'Height'#2#14#3'Top'#2'('#5'Width'#2'['#7'Caption'#6#19'Periheli' +- +'on distance'#11'ParentColor'#8#0#0#6'TLabel'#8'Label253'#4'Left'#3'8'#1#6'H' +- +'eight'#2#14#3'Top'#3#168#0#5'Width'#2''''#7'Caption'#6#7'Equinox'#11'Parent' +- +'Color'#8#0#0#6'TLabel'#8'Label254'#4'Left'#2#8#6'Height'#2#14#3'Top'#3'('#1 +- +#5'Width'#2#28#7'Caption'#6#4'Name'#11'ParentColor'#8#0#0#5'TEdit'#5'comid'#4 +- +'Left'#2#8#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'TabOrder'#2#0#0#0#5'TE' +- +'dit'#4'comh'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrd' +- +'er'#2#11#4'Text'#6#1'5'#0#0#5'TEdit'#4'comg'#4'Left'#3#160#0#6'Height'#2#21 +- +#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder'#2#12#4'Text'#6#2'10'#0#0#5'TEdit'#5 +- +'comep'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrd' +- ,'er'#2#9#0#0#5'TEdit'#7'comperi'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#128 +- +#0#5'Width'#2'd'#8'TabOrder'#2#6#4'Text'#6#3'0.0'#0#0#5'TEdit'#7'comnode'#4 +- +'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#7#4 +- +'Text'#6#3'0.0'#0#0#5'TEdit'#4'comi'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#192 +- +#0#5'Width'#2'd'#8'TabOrder'#2#8#4'Text'#6#3'0.0'#0#0#5'TEdit'#5'comec'#4'Le' +- +'ft'#2#8#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#5#4'Text' +- +#6#3'0.0'#0#0#5'TEdit'#4'comq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#2'@'#5'W' +- +'idth'#2'd'#8'TabOrder'#2#4#4'Text'#6#1'2'#0#0#5'TEdit'#6'comnam'#4'Left'#2#8 +- +#6'Height'#2#21#3'Top'#3'@'#1#5'Width'#3#1#1#8'TabOrder'#2#13#0#0#5'TEdit'#5 +- +'comeq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrde' +- +'r'#2#10#4'Text'#6#4'2000'#0#0#7'TButton'#6'AddCom'#4'Left'#3'8'#1#6'Height' +- +#2#25#3'Top'#3'@'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' +- +'n'#6#3'Add'#7'OnClick'#7#11'AddComClick'#8'TabOrder'#2#14#0#0#5'TEdit'#6'co' +- +'mt_y'#4'Left'#3#139#0#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'+'#8'TabOrder'#2 +- +#1#0#0#5'TEdit'#6'comt_m'#4'Left'#3#188#0#6'Height'#2#21#3'Top'#2'@'#5'Width' +- +#2#27#8'TabOrder'#2#2#0#0#5'TEdit'#6'comt_d'#4'Left'#3#221#0#6'Height'#2#21#3 +- +'Top'#2'@'#5'Width'#2'9'#8'TabOrder'#2#3#0#0#0#0#0#9'TTabSheet'#5'Page4'#7'C' +- +'aption'#6#5'Page4'#12'ClientHeight'#3#224#1#11'ClientWidth'#3#241#1#0#12'TP' +- +'ageControl'#14'AstPageControl'#4'Left'#2#0#6'Height'#3#173#1#3'Top'#2#4#5'W' +- +'idth'#3#225#1#10'ActivePage'#7#10'astsetting'#8'TabIndex'#2#0#8'TabOrder'#2 +- +#0#0#9'TTabSheet'#10'astsetting'#7'Caption'#6#15'General Setting'#12'ClientH' +- +'eight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#3#0#9'TGroupBox'#9 +- +'GroupBox9'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2#10#5'Width'#3#185#1#7'Capt' +- +'ion'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1#11'ClientWidth'#3#181#1#8 +- +'TabOrder'#2#0#0#6'TLabel'#8'Label203'#4'Left'#2#29#6'Height'#2','#3'Top'#3 +- +#172#0#5'Width'#3':'#1#8'AutoSize'#8#7'Caption'#6'6Do not take account of as' +- +'teroid fainter than magnitude'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' +- +#8'Label212'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#244#0#5'Width'#2'S'#7'Capt' +- +'ion'#6#13'Show asteroid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label213'#4'Left' +- +#3#218#0#6'Height'#2','#3'Top'#3#244#0#5'Width'#3#191#0#8'AutoSize'#8#7'Capt' +- +'ion'#6'!magnitude fainter than the stars.'#11'ParentColor'#8#8'WordWrap'#9#0 +- +#0#10'TFloatEdit'#11'astlimitmag'#4'Left'#3'm'#1#6'Height'#2#21#4'Hint'#6#5 +- +'0..99'#3'Top'#3#167#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' +- +'bOrder'#2#2#8'OnChange'#7#17'astlimitmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 +- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 +- +#9'TCheckBox'#7'showast'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#22#5'Width'#3 +- +#185#0#7'Caption'#6#27'Show asteroids on the chart'#7'OnClick'#7#12'showastC' +- +'lick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'astsymbol'#4'Left'#2#24#6'Heigh' +- +'t'#2'Y'#3'Top'#2'8'#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizing.LeftRight' +- +'Spacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHor' +- +'izontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24 +- +'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChi' +- +'lds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Lay' +- +'out'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1 +- +#12'ClientHeight'#2'U'#11'ClientWidth'#3#133#1#5'Color'#7#9'clBtnFace'#9'Ite' +- +'mIndex'#2#1#13'Items.Strings'#1#6'<Display as a symbol ' +- +' '#6'9Proportional to the magnitude ' +- +' '#0#7'OnClick'#7#14'astsymbolClick'#11'ParentColor'#8#8'TabOrder'#2#1 +- +#0#0#10'TFloatEdit'#10'astmagdiff'#4'Left'#3#161#0#6'Height'#2#21#4'Hint'#6#5 +- +'0..99'#3'Top'#3#239#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' +- +'bOrder'#2#3#8'OnChange'#7#16'astmagdiffChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 +- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 +- +#0#7'TButton'#8'astdbset'#4'Left'#2#17#6'Height'#2#25#3'Top'#3'^'#1#5'Width' +- +#3#194#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Database setting.' +- +'..'#7'OnClick'#7#13'astdbsetClick'#8'TabOrder'#2#1#7'Visible'#8#0#0#0#9'TTa' +- +'bSheet'#7'astload'#7'Caption'#6#13'Load MPC File'#12'ClientHeight'#3#144#1 +- +#11'ClientWidth'#3#221#1#10'ImageIndex'#2#1#0#6'TLabel'#8'Label206'#4'Left'#2 +- +#8#6'Height'#2#14#3'Top'#3#203#0#5'Width'#2'?'#7'Caption'#6#9'Messages:'#11 +- +'ParentColor'#8#0#0#5'TMemo'#7'MemoMPC'#4'Left'#2#8#6'Height'#3#174#0#3'Top' +- +#3#219#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth' +- +#8'TabOrder'#2#1#7'TabStop'#8#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'He' +- +'ight'#2'X'#3'Top'#2'k'#5'Width'#3#185#1#7'Caption'#6#7'Options'#12'ClientHe' +- +'ight'#2'I'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label215'#4 +- +'Left'#3#2#1#6'Height'#2#14#3'Top'#2'-'#5'Width'#3#129#0#7'Caption'#6#23'Ast' +- ,'eroids from the file'#11'ParentColor'#8#0#0#9'TCheckBox'#11'astnumbered'#4 +- +'Left'#2#20#6'Height'#2#21#3'Top'#2#6#5'Width'#3#168#0#7'Caption'#6#23'Only ' +- +'numbered asteroids'#8'TabOrder'#2#0#0#0#9'TCheckBox'#10'aststoperr'#4'Left' +- +#3#241#0#6'Height'#2#21#3'Top'#2#6#5'Width'#3#148#0#7'Caption'#6#22'Halt aft' +- +'er 1000 errors'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#9 +- +'TCheckBox'#11'astlimitbox'#4'Left'#2#20#6'Height'#2#21#3'Top'#2''''#5'Width' +- +#3#130#0#7'Caption'#6#20'Load only the first '#8'TabOrder'#2#2#0#0#9'TLongEd' +- +'it'#8'astlimit'#4'Left'#3#197#0#6'Height'#2#21#4'Hint'#6#9'0..999999'#3'Top' +- +#2''''#5'Width'#2'1'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#5'Va' +- +'lue'#3#136#19#8'MaxValue'#4'?B'#15#0#0#0#0#12'TPageControl'#15'AstPageContr' +- +'ol2'#4'Left'#2#8#6'Height'#2'`'#3'Top'#2#3#5'Width'#3#185#1#10'ActivePage'#7 +- +#9'TabSheet3'#8'TabIndex'#2#0#8'TabOrder'#2#2#0#9'TTabSheet'#9'TabSheet3'#7 +- +'Caption'#6#20'Load MPC format file'#12'ClientHeight'#2'C'#11'ClientWidth'#3 +- +#181#1#0#6'TLabel'#6'Label1'#4'Left'#2#22#6'Height'#2#14#3'Top'#2#24#5'Width' +- +#3#189#0#7'Caption'#6' Download latest orbital elements'#11'ParentColor'#8#0 +- +#0#7'TButton'#16'DownloadAsteroid'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#19 +- +#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Download'#7 +- +'OnClick'#7#21'DownloadAsteroidClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#9'T' +- +'abSheet4'#7'Caption'#6#21'Or use a local file :'#12'ClientHeight'#2'C'#11'C' +- +'lientWidth'#3#181#1#0#13'TFileNameEdit'#7'mpcfile'#4'Left'#2#14#6'Height'#2 +- +#21#3'Top'#2#21#5'Width'#3#232#0#13'DialogOptions'#11#0#6'Filter'#6'&MPCORB ' +- +'Files|MPCORB*.DAT|All Files|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8 +- +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#7 +- +'TButton'#7'LoadMPC'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#19#5'Width'#2'a' +- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file'#7'OnClick'#7#12 +- +'LoadMPCClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#10'astprepare'#7'Capti' +- +'on'#6#20'Prepare Monthly Data'#12'ClientHeight'#3#144#1#11'ClientWidth'#3 +- +#221#1#10'ImageIndex'#2#2#0#6'TLabel'#8'Label210'#4'Left'#2#8#6'Height'#2#14 +- +#3'Top'#2'm'#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9 +- +'TGroupBox'#9'GroupBox8'#4'Left'#2#8#6'Height'#2'^'#3'Top'#2#7#5'Width'#3#185 +- +#1#7'Caption'#6#13'Prepare data '#12'ClientHeight'#2'O'#11'ClientWidth'#3#181 +- +#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label7'#4'Left'#2#9#6'Height'#2#14#3'Top'#2 +- +#13#5'Width'#2'8'#7'Caption'#6#11'Start Month'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#8'Label207'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'2'#5'Width'#2'S'#7'Capti' +- +'on'#6#15'Number of Month'#11'ParentColor'#8#0#0#7'TButton'#10'AstCompute'#4 +- +'Left'#3#25#1#6'Height'#2#25#3'Top'#2'*'#5'Width'#2'K'#25'BorderSpacing.Inne' +- +'rBorder'#2#4#7'Caption'#6#7'Compute'#7'OnClick'#7#15'AstComputeClick'#8'Tab' +- +'Order'#2#2#0#0#5'TEdit'#13'aststrtdate_y'#4'Left'#3#177#0#6'Height'#2#21#3 +- +'Top'#2#5#5'Width'#2'B'#8'TabOrder'#2#0#0#0#5'TEdit'#13'aststrtdate_m'#4'Lef' +- +'t'#3#1#1#6'Height'#2#21#3'Top'#2#5#5'Width'#2' '#8'TabOrder'#2#1#0#0#7'TUpD' +- +'own'#11'astnummonth'#4'Left'#3#225#0#6'Height'#2#21#3'Top'#2'.'#5'Width'#2 +- +#17#9'Associate'#7#15'astnummonthEdit'#3'Min'#2#2#3'Max'#2#12#8'Position'#2#2 +- +#8'TabOrder'#2#3#4'Wrap'#8#0#0#5'TEdit'#15'astnummonthEdit'#4'Left'#3#177#0#6 +- +'Height'#2#21#3'Top'#2'.'#5'Width'#2'0'#8'TabOrder'#2#4#0#0#0#5'TMemo'#11'pr' +- +'epastmemo'#4'Left'#2#8#6'Height'#3#244#0#3'Top'#3#133#0#5'Width'#3#185#1#5 +- +'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#1#7'TabStop' +- +#8#0#0#0#9'TTabSheet'#9'astdelete'#7'Caption'#6#16'Data Maintenance'#12'Clie' +- +'ntHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#3#0#6'TLabel'#8 +- +'Label211'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#184#0#5'Width'#2'6'#7'Caption' +- +#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox10'#4'Left'#2#8 +- +#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27'Delete MPC data' +- +' selectively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0 +- +#0#9'TComboBox'#11'astelemlist'#4'Left'#2#16#6'Height'#2#24#3'Top'#2#14#5'Wi' +- +'dth'#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeigh' +- +'t'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TButton'#6'delas' +- +'t'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#25'BorderSpacing' +- +'.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'delastClick'#8'Tab' +- +'Order'#2#1#0#0#0#9'TGroupBox'#10'GroupBox11'#4'Left'#2#8#6'Height'#2'1'#3'T' +- +'op'#3#128#0#5'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'ClientHeight' +- +#2'"'#11'ClientWidth'#3#181#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label209'#4'Left' +- +#2#12#6'Height'#2#14#3'Top'#2#8#5'Width'#3#183#0#7'Caption'#6'(Quickly delet' +- +'e all asteroid related data'#11'ParentColor'#8#0#0#7'TButton'#9'delallast'#4 +- +'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#25'BorderSpacing.Inner' +- +'Border'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'delallastClick'#8'TabOrd' +- ,'er'#2#0#0#0#0#5'TMemo'#10'delastMemo'#4'Left'#2#8#6'Height'#3#177#0#3'Top'#3 +- +#208#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8 +- +'TabOrder'#2#2#7'TabStop'#8#0#0#9'TGroupBox'#10'GroupBox12'#4'Left'#2#8#6'He' +- +'ight'#2'9'#3'Top'#2'H'#5'Width'#3#185#1#7'Caption'#6#20'Delete Monthly data' +- +' '#12'ClientHeight'#2'*'#11'ClientWidth'#3#181#1#8'TabOrder'#2#1#0#6'TLabel' +- +#8'Label214'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#12#5'Width'#3#149#0#7'Capt' +- +'ion'#6#31'Delete Monthly data older than '#11'ParentColor'#8#0#0#7'TButton' +- +#10'deldateast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'K'#25'Bo' +- +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#15'deldate' +- +'astClick'#8'TabOrder'#2#2#0#0#5'TEdit'#12'astdeldate_y'#4'Left'#3#1#1#6'Hei' +- +'ght'#2#21#3'Top'#2#8#5'Width'#2'0'#8'TabOrder'#2#0#4'Text'#6#4'2007'#0#0#5 +- +'TEdit'#12'astdeldate_m'#4'Left'#3'9'#1#6'Height'#2#21#3'Top'#2#8#5'Width'#2 +- +#24#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#12'AddsingleAst'#7'Caption'#6#3'Add' +- +#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#4#0#6'TLa' +- +'bel'#8'Label217'#4'Left'#2#8#6'Height'#2#15#3'Top'#2#8#5'Width'#3#130#1#7'C' +- +'aption'#6'>Add a single element to the database. All field are mandatory.' +- +#11'ParentColor'#8#0#0#6'TLabel'#8'Label218'#4'Left'#2#8#6'Height'#2#15#3'To' +- +'p'#2'('#5'Width'#2'L'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0#6 +- +'TLabel'#8'Label219'#4'Left'#3#160#0#6'Height'#2#15#3'Top'#2'('#5'Width'#3 ++ +#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#1#0#1#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6'L' ++ +'ayout'#7#10'blGlyphTop'#6'Margin'#2#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'Xpla' ++ +'netBtnClick'#8'TabOrder'#2#0#7'TabStop'#8#0#0#5'TEdit'#10'XplanetDir'#4'Lef' ++ +'t'#2'|'#6'Height'#2#21#3'Top'#2#25#5'Width'#3#156#0#8'OnChange'#7#16'Xplane' ++ +'tDirChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#10'UseXplanet'#4'Left'#2#15#6 ++ +'Height'#2#21#3'Top'#2#25#5'Width'#2'Q'#7'Caption'#6#11'Use Xplanet'#7'OnCli' ++ +'ck'#7#15'UseXplanetClick'#8'TabOrder'#2#2#0#0#0#0#9'TTabSheet'#5'Page3'#7'C' ++ +'aption'#6#5'Page3'#12'ClientHeight'#3#193#1#11'ClientWidth'#3#239#1#0#12'TP' ++ +'ageControl'#14'ComPageControl'#4'Left'#2#253#6'Height'#3#173#1#3'Top'#2#4#5 ++ +'Width'#3#225#1#10'ActivePage'#7#10'comsetting'#8'TabIndex'#2#0#8'TabOrder'#2 ++ +#0#0#9'TTabSheet'#10'comsetting'#7'Caption'#6#15'General Setting'#12'ClientH' ++ +'eight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0#9'TGroupBox'#10 ++ +'GroupBox13'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2#10#5'Width'#3#185#1#7'Cap' ++ +'tion'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1#11'ClientWidth'#3#181#1#8 ++ +'TabOrder'#2#0#0#6'TLabel'#8'Label154'#4'Left'#2' '#6'Height'#2'.'#3'Top'#3 ++ +#162#0#5'Width'#3'.'#1#8'AutoSize'#8#7'Caption'#6'3Do not take account of co' ++ +'met fainter than magnitude'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8 ++ +'Label216'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#239#0#5'Width'#2'G'#7'Captio' ++ +'n'#6#10'Show comet'#11'ParentColor'#8#0#0#6'TLabel'#8'Label231'#4'Left'#3 ++ +#200#0#6'Height'#2'4'#3'Top'#3#239#0#5'Width'#3#191#0#8'AutoSize'#8#7'Captio' ++ +'n'#6'!magnitude fainter than the stars.'#11'ParentColor'#8#8'WordWrap'#9#0#0 ++ +#10'TFloatEdit'#11'comlimitmag'#4'Left'#3'^'#1#6'Height'#2#21#4'Hint'#6#5'0.' ++ +'.99'#3'Top'#3#159#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' ++ +'rder'#2#2#8'OnChange'#7#17'comlimitmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0 ++ +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#9 ++ +'TCheckBox'#7'showcom'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#14#5'Width'#3#173 ++ +#0#7'Caption'#6#24'Show comets on the chart'#7'OnClick'#7#12'showcomClick'#8 ++ +'TabOrder'#2#0#0#0#11'TRadioGroup'#9'comsymbol'#4'Left'#2#24#6'Height'#2'`'#3 ++ +'Top'#2''''#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2 ++ +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 ++ +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' ++ +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' ++ +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 ++ +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' ++ +'tHeight'#2'\'#11'ClientWidth'#3#133#1#5'Color'#7#9'clBtnFace'#9'ItemIndex'#2 ++ +#1#13'Items.Strings'#1#6'<Display as a symbol ' ++ +' '#6'>Proportional to the tail length ' ++ +' '#0#7'OnClick'#7#14'comsymbolClick'#11'ParentColor'#8#8'TabOrder'#2#1#0#0 ++ +#10'TFloatEdit'#10'commagdiff'#4'Left'#3#140#0#6'Height'#2#21#4'Hint'#6#5'0.' ++ +'.99'#3'Top'#3#234#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' ++ +'rder'#2#3#8'OnChange'#7#16'commagdiffChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0 ++ +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0 ++ +#7'TButton'#8'comdbset'#4'Left'#2#17#6'Height'#2#25#3'Top'#3'f'#1#5'Width'#3 ++ +#185#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Database setting...' ++ +#7'OnClick'#7#13'comdbsetClick'#8'TabOrder'#2#1#7'Visible'#8#0#0#0#9'TTabShe' ++ +'et'#7'comload'#7'Caption'#6#13'Load MPC File'#12'ClientHeight'#3#138#1#11'C' ++ +'lientWidth'#3#219#1#10'ImageIndex'#2#1#0#6'TLabel'#8'Label232'#4'Left'#2#15 ++ +#6'Height'#2#14#3'Top'#2'{'#5'Width'#2'?'#7'Caption'#6#9'Messages:'#11'Paren' ++ +'tColor'#8#0#0#5'TMemo'#7'MemoCom'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#143 ++ +#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'Tab' ++ +'Order'#2#0#7'TabStop'#8#0#0#12'TPageControl'#15'ComPageControl1'#4'Left'#2 ++ +#13#6'Height'#2'h'#3'Top'#2#11#5'Width'#3#180#1#10'ActivePage'#7#9'TabSheet1' ++ +#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#20 ++ ,'Load MPC format file'#12'ClientHeight'#2'E'#11'ClientWidth'#3#174#1#0#6'TLa' ++ +'bel'#6'Label2'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#27#5'Width'#3#189#0#7'C' ++ +'aption'#6' Download latest orbital elements'#11'ParentColor'#8#0#0#7'TButto' ++ +'n'#13'DownloadComet'#4'Left'#3'='#1#6'Height'#2#25#3'Top'#2#22#5'Width'#2'a' ++ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Download'#7'OnClick'#7#18 ++ +'DownloadCometClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Capti' ++ +'on'#6#21'Or use a local file :'#12'ClientHeight'#2'E'#11'ClientWidth'#3#174 ++ +#1#0#13'TFileNameEdit'#7'comfile'#4'Left'#2#13#6'Height'#2#20#3'Top'#2#24#5 ++ +'Width'#3#9#1#13'DialogOptions'#11#0#6'Filter'#6'"Comet Files|COM*.DAT|All F' ++ +'iles|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9 ++ +'NumGlyphs'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Loadcom'#4'Left'#3'E'#1#6'H' ++ +'eight'#2#25#3'Top'#2#22#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'C' ++ +'aption'#6#9'Load file'#7'OnClick'#7#12'LoadcomClick'#8'TabOrder'#2#1#0#0#0#0 ++ +#0#9'TTabSheet'#9'comdelete'#7'Caption'#6#16'Data Maintenance'#12'ClientHeig' ++ +'ht'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0#6'TLabel'#8'Label2' ++ +'38'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#151#0#5'Width'#2'6'#7'Caption'#6#9 ++ +'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox16'#4'Left'#2#8#6 ++ +'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27'Delete MPC data s' ++ +'electively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0 ++ +#9'TComboBox'#11'comelemlist'#4'Left'#2#16#6'Height'#2#24#3'Top'#2#6#5'Width' ++ +#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0 ++ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TButton'#6'DelCom'#4'Le' ++ +'ft'#3'H'#1#6'Height'#2#25#3'Top'#2#6#5'Width'#2'K'#25'BorderSpacing.InnerBo' ++ +'rder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'DelComClick'#8'TabOrder'#2 ++ +#1#0#0#0#9'TGroupBox'#10'GroupBox17'#4'Left'#2#8#6'Height'#2'?'#3'Top'#2'P'#5 ++ +'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'ClientHeight'#2'0'#11'Clien' ++ +'tWidth'#3#181#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label239'#4'Left'#2#12#6'Heig' ++ +'ht'#2#14#3'Top'#2#16#5'Width'#3#173#0#7'Caption'#6'%Quickly delete all come' ++ +'t related data'#11'ParentColor'#8#0#0#7'TButton'#9'DelComAll'#4'Left'#3'H'#1 ++ +#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 ++ +'Caption'#6#6'Delete'#7'OnClick'#7#14'DelComAllClick'#8'TabOrder'#2#0#0#0#0#5 ++ +'TMemo'#10'DelComMemo'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#3#176#0#5'Width' ++ +#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#2#7 ++ +'TabStop'#8#0#0#0#9'TTabSheet'#12'Addsinglecom'#7'Caption'#6#3'Add'#12'Clien' ++ +'tHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#4#0#6'TLabel'#8'L' ++ +'abel241'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#3'&'#1#7'Caption'#6 ++ +'>Add a single element to the database. All field are mandatory.'#11'ParentC' ++ +'olor'#8#0#0#6'TLabel'#8'Label242'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'('#5 ++ +'Width'#2'9'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label243'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2'h'#7'Caption' ++ +#6#20'H absolute magnitude'#11'ParentColor'#8#0#0#6'TLabel'#8'Label244'#4'Le' ++ +'ft'#3#160#0#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2'Z'#7'Caption'#6#17'G s' ++ +'lope parameter'#11'ParentColor'#8#0#0#6'TLabel'#8'Label245'#4'Left'#3#160#0 ++ +#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'6'#7'Caption'#6#10'Epoch (JD)'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#8'Label246'#4'Left'#3#160#0#6'Height'#2#14#3'T' ++ +'op'#2'('#5'Width'#2'G'#7'Caption'#6#15'Perihelion date'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#8'Label247'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#2'h'#5'Width' ++ +#2'n'#7'Caption'#6#22'Argument of perihelion'#11'ParentColor'#8#0#0#6'TLabel' ++ +#8'Label248'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2'h'#5'Width'#3#129#0#7'Ca' ++ +'ption'#6#24'Longitude ascending Node'#11'ParentColor'#8#0#0#6'TLabel'#8'Lab' ++ +'el249'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'0'#7'Caption'#6 ++ +#11'Inclination'#11'ParentColor'#8#0#0#6'TLabel'#8'Label250'#4'Left'#2#8#6'H' ++ +'eight'#2#14#3'Top'#2'h'#5'Width'#2'9'#7'Caption'#6#12'Eccentricity'#11'Pare' ++ +'ntColor'#8#0#0#6'TLabel'#8'Label251'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2 ++ +'('#5'Width'#2'['#7'Caption'#6#19'Perihelion distance'#11'ParentColor'#8#0#0 ++ +#6'TLabel'#8'Label253'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#3#168#0#5'Width' ++ +#2''''#7'Caption'#6#7'Equinox'#11'ParentColor'#8#0#0#6'TLabel'#8'Label254'#4 ++ +'Left'#2#8#6'Height'#2#14#3'Top'#3'('#1#5'Width'#2#28#7'Caption'#6#4'Name'#11 ++ +'ParentColor'#8#0#0#5'TEdit'#5'comid'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'@' ++ +#5'Width'#2'd'#8'TabOrder'#2#0#0#0#5'TEdit'#4'comh'#4'Left'#2#8#6'Height'#2 ++ +#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder'#2#11#4'Text'#6#1'5'#0#0#5'TEdit'#4 ++ +'comg'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder' ++ +#2#12#4'Text'#6#2'10'#0#0#5'TEdit'#5'comep'#4'Left'#3#160#0#6'Height'#2#21#3 ++ +'Top'#3#192#0#5'Width'#2'd'#8'TabOrder'#2#9#0#0#5'TEdit'#7'comperi'#4'Left'#3 ++ ,#160#0#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#6#4'Text'#6 ++ +#3'0.0'#0#0#5'TEdit'#7'comnode'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#128#0 ++ +#5'Width'#2'd'#8'TabOrder'#2#7#4'Text'#6#3'0.0'#0#0#5'TEdit'#4'comi'#4'Left' ++ +#2#8#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrder'#2#8#4'Text'#6#3 ++ +'0.0'#0#0#5'TEdit'#5'comec'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#128#0#5'Widt' ++ +'h'#2'd'#8'TabOrder'#2#5#4'Text'#6#3'0.0'#0#0#5'TEdit'#4'comq'#4'Left'#3'8'#1 ++ +#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'TabOrder'#2#4#4'Text'#6#1'2'#0#0 ++ +#5'TEdit'#6'comnam'#4'Left'#2#8#6'Height'#2#21#3'Top'#3'@'#1#5'Width'#3#1#1#8 ++ +'TabOrder'#2#13#0#0#5'TEdit'#5'comeq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3 ++ +#192#0#5'Width'#2'd'#8'TabOrder'#2#10#4'Text'#6#4'2000'#0#0#7'TButton'#6'Add' ++ +'Com'#4'Left'#3'8'#1#6'Height'#2#25#3'Top'#3'@'#1#5'Width'#2'K'#25'BorderSpa' ++ +'cing.InnerBorder'#2#4#7'Caption'#6#3'Add'#7'OnClick'#7#11'AddComClick'#8'Ta' ++ +'bOrder'#2#14#0#0#5'TEdit'#6'comt_y'#4'Left'#3#139#0#6'Height'#2#21#3'Top'#2 ++ +'@'#5'Width'#2'+'#8'TabOrder'#2#1#0#0#5'TEdit'#6'comt_m'#4'Left'#3#188#0#6'H' ++ +'eight'#2#21#3'Top'#2'@'#5'Width'#2#27#8'TabOrder'#2#2#0#0#5'TEdit'#6'comt_d' ++ +#4'Left'#3#221#0#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'9'#8'TabOrder'#2#3#0#0 ++ +#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3#193#1 ++ +#11'ClientWidth'#3#239#1#0#12'TPageControl'#14'AstPageControl'#4'Left'#2#0#6 ++ +'Height'#3#173#1#3'Top'#2#4#5'Width'#3#225#1#10'ActivePage'#7#10'astsetting' ++ +#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#10'astsetting'#7'Caption'#6 ++ +#15'General Setting'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'Ima' ++ +'geIndex'#2#3#0#9'TGroupBox'#9'GroupBox9'#4'Left'#2#9#6'Height'#3'<'#1#3'Top' ++ +#2#10#5'Width'#3#185#1#7'Caption'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1 ++ +#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label203'#4'Left'#2#29 ++ +#6'Height'#2','#3'Top'#3#172#0#5'Width'#3':'#1#8'AutoSize'#8#7'Caption'#6'6D' ++ +'o not take account of asteroid fainter than magnitude'#11'ParentColor'#8#8 ++ +'WordWrap'#9#0#0#6'TLabel'#8'Label212'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 ++ +#244#0#5'Width'#2'S'#7'Caption'#6#13'Show asteroid'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#8'Label213'#4'Left'#3#218#0#6'Height'#2','#3'Top'#3#244#0#5'Width'#3 ++ +#191#0#8'AutoSize'#8#7'Caption'#6'!magnitude fainter than the stars.'#11'Par' ++ +'entColor'#8#8'WordWrap'#9#0#0#10'TFloatEdit'#11'astlimitmag'#4'Left'#3'm'#1 ++ +#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#167#0#5'Width'#2')'#14'ParentSho' ++ +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#17'astlimitmagChange'#5 ++ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 ++ +#0#0#0#0#0#0#0#198#5'@'#0#0#9'TCheckBox'#7'showast'#4'Left'#2' '#6'Height'#2 ++ +#21#3'Top'#2#22#5'Width'#3#185#0#7'Caption'#6#27'Show asteroids on the chart' ++ +#7'OnClick'#7#12'showastClick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'astsymb' ++ +'ol'#4'Left'#2#24#6'Height'#2'Y'#3'Top'#2'8'#5'Width'#3#137#1#8'AutoFill'#9 ++ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 ++ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' ++ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' ++ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' ++ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' ++ +'zing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#133#1#5'C' ++ +'olor'#7#9'clBtnFace'#9'ItemIndex'#2#1#13'Items.Strings'#1#6'<Display as a s' ++ +'ymbol '#6'9Proportional to the magn' ++ +'itude '#0#7'OnClick'#7#14'astsymbolClick'#11'Par' ++ +'entColor'#8#8'TabOrder'#2#1#0#0#10'TFloatEdit'#10'astmagdiff'#4'Left'#3#161 ++ +#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#239#0#5'Width'#2')'#14'ParentS' ++ +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#16'astmagdiffChange' ++ +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' ++ +#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#7'TButton'#8'astdbset'#4'Left'#2#17#6'Height' ++ +#2#25#3'Top'#3'^'#1#5'Width'#3#194#0#25'BorderSpacing.InnerBorder'#2#4#7'Cap' ++ +'tion'#6#19'Database setting...'#7'OnClick'#7#13'astdbsetClick'#8'TabOrder'#2 ++ +#1#7'Visible'#8#0#0#0#9'TTabSheet'#7'astload'#7'Caption'#6#13'Load MPC File' ++ +#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#1#0#6'TLa' ++ +'bel'#8'Label206'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#203#0#5'Width'#2'?'#7 ++ +'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#5'TMemo'#7'MemoMPC'#4'Left'#2 ++ +#8#6'Height'#3#174#0#3'Top'#3#219#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace' ++ +#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#1#7'TabStop'#8#0#0#9'TGroupBox'#9 ++ +'GroupBox1'#4'Left'#2#8#6'Height'#2'X'#3'Top'#2'k'#5'Width'#3#185#1#7'Captio' ++ +'n'#6#7'Options'#12'ClientHeight'#2'I'#11'ClientWidth'#3#181#1#8'TabOrder'#2 ++ +#0#0#6'TLabel'#8'Label215'#4'Left'#3#2#1#6'Height'#2#14#3'Top'#2'-'#5'Width' ++ +#3#129#0#7'Caption'#6#23'Asteroids from the file'#11'ParentColor'#8#0#0#9'TC' ++ ,'heckBox'#11'astnumbered'#4'Left'#2#20#6'Height'#2#21#3'Top'#2#6#5'Width'#3 ++ +#168#0#7'Caption'#6#23'Only numbered asteroids'#8'TabOrder'#2#0#0#0#9'TCheck' ++ +'Box'#10'aststoperr'#4'Left'#3#241#0#6'Height'#2#21#3'Top'#2#6#5'Width'#3#148 ++ +#0#7'Caption'#6#22'Halt after 1000 errors'#7'Checked'#9#5'State'#7#9'cbCheck' ++ +'ed'#8'TabOrder'#2#1#0#0#9'TCheckBox'#11'astlimitbox'#4'Left'#2#20#6'Height' ++ +#2#21#3'Top'#2''''#5'Width'#3#130#0#7'Caption'#6#20'Load only the first '#8 ++ +'TabOrder'#2#2#0#0#9'TLongEdit'#8'astlimit'#4'Left'#3#197#0#6'Height'#2#21#4 ++ +'Hint'#6#9'0..999999'#3'Top'#2''''#5'Width'#2'1'#14'ParentShowHint'#8#8'Show' ++ +'Hint'#9#8'TabOrder'#2#3#5'Value'#3#136#19#8'MaxValue'#4'?B'#15#0#0#0#0#12'T' ++ +'PageControl'#15'AstPageControl2'#4'Left'#2#8#6'Height'#2'`'#3'Top'#2#3#5'Wi' ++ +'dth'#3#185#1#10'ActivePage'#7#9'TabSheet3'#8'TabIndex'#2#0#8'TabOrder'#2#2#0 ++ +#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#20'Load MPC format file'#12'ClientHe' ++ +'ight'#2'='#11'ClientWidth'#3#179#1#0#6'TLabel'#6'Label1'#4'Left'#2#22#6'Hei' ++ +'ght'#2#14#3'Top'#2#24#5'Width'#3#189#0#7'Caption'#6' Download latest orbita' ++ +'l elements'#11'ParentColor'#8#0#0#7'TButton'#16'DownloadAsteroid'#4'Left'#3 ++ +'.'#1#6'Height'#2#25#3'Top'#2#19#5'Width'#2'a'#25'BorderSpacing.InnerBorder' ++ +#2#4#7'Caption'#6#8'Download'#7'OnClick'#7#21'DownloadAsteroidClick'#8'TabOr' ++ +'der'#2#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#21'Or use a local fil' ++ +'e :'#12'ClientHeight'#2'='#11'ClientWidth'#3#179#1#0#13'TFileNameEdit'#7'mp' ++ +'cfile'#4'Left'#2#14#6'Height'#2#21#3'Top'#2#21#5'Width'#3#232#0#13'DialogOp' ++ +'tions'#11#0#6'Filter'#6'&MPCORB Files|MPCORB*.DAT|All Files|*.*'#11'FilterI' ++ +'ndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Tab' ++ +'Order'#2#0#0#0#7'TButton'#7'LoadMPC'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2 ++ +#19#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file' ++ +#7'OnClick'#7#12'LoadMPCClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#10'ast' ++ +'prepare'#7'Caption'#6#20'Prepare Monthly Data'#12'ClientHeight'#3#138#1#11 ++ +'ClientWidth'#3#219#1#10'ImageIndex'#2#2#0#6'TLabel'#8'Label210'#4'Left'#2#8 ++ +#6'Height'#2#14#3'Top'#2'm'#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'Paren' ++ +'tColor'#8#0#0#9'TGroupBox'#9'GroupBox8'#4'Left'#2#8#6'Height'#2'^'#3'Top'#2 ++ +#7#5'Width'#3#185#1#7'Caption'#6#13'Prepare data '#12'ClientHeight'#2'O'#11 ++ +'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label7'#4'Left'#2#9#6'He' ++ +'ight'#2#14#3'Top'#2#13#5'Width'#2'8'#7'Caption'#6#11'Start Month'#11'Parent' ++ +'Color'#8#0#0#6'TLabel'#8'Label207'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'2'#5 ++ +'Width'#2'S'#7'Caption'#6#15'Number of Month'#11'ParentColor'#8#0#0#7'TButto' ++ +'n'#10'AstCompute'#4'Left'#3#25#1#6'Height'#2#25#3'Top'#2'*'#5'Width'#2'K'#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Compute'#7'OnClick'#7#15'AstC' ++ +'omputeClick'#8'TabOrder'#2#2#0#0#5'TEdit'#13'aststrtdate_y'#4'Left'#3#177#0 ++ +#6'Height'#2#21#3'Top'#2#5#5'Width'#2'B'#8'TabOrder'#2#0#0#0#5'TEdit'#13'ast' ++ +'strtdate_m'#4'Left'#3#1#1#6'Height'#2#21#3'Top'#2#5#5'Width'#2' '#8'TabOrde' ++ +'r'#2#1#0#0#7'TUpDown'#11'astnummonth'#4'Left'#3#225#0#6'Height'#2#21#3'Top' ++ +#2'.'#5'Width'#2#17#9'Associate'#7#15'astnummonthEdit'#3'Min'#2#2#3'Max'#2#12 ++ +#8'Position'#2#2#8'TabOrder'#2#3#4'Wrap'#8#0#0#5'TEdit'#15'astnummonthEdit'#4 ++ +'Left'#3#177#0#6'Height'#2#21#3'Top'#2'.'#5'Width'#2'0'#8'TabOrder'#2#4#0#0#0 ++ +#5'TMemo'#11'prepastmemo'#4'Left'#2#8#6'Height'#3#244#0#3'Top'#3#133#0#5'Wid' ++ +'th'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2 ++ +#1#7'TabStop'#8#0#0#0#9'TTabSheet'#9'astdelete'#7'Caption'#6#16'Data Mainten' ++ +'ance'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0 ++ +#6'TLabel'#8'Label211'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#184#0#5'Width'#2 ++ +'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox' ++ +'10'#4'Left'#2#8#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27 ++ +'Delete MPC data selectively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8 ++ +'TabOrder'#2#0#0#9'TComboBox'#11'astelemlist'#4'Left'#2#16#6'Height'#2#24#3 ++ +'Top'#2#14#5'Width'#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 ++ +#10'ItemHeight'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TBut' ++ +'ton'#6'delast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#25'B' ++ +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'delast' ++ +'Click'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#10'GroupBox11'#4'Left'#2#8#6'Heig' ++ +'ht'#2'1'#3'Top'#3#128#0#5'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'C' ++ +'lientHeight'#2'"'#11'ClientWidth'#3#181#1#8'TabOrder'#2#3#0#6'TLabel'#8'Lab' ++ +'el209'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#8#5'Width'#3#183#0#7'Caption'#6 ++ +'(Quickly delete all asteroid related data'#11'ParentColor'#8#0#0#7'TButton' ++ +#9'delallast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#25'Bord' ++ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'delallast' ++ +'Click'#8'TabOrder'#2#0#0#0#0#5'TMemo'#10'delastMemo'#4'Left'#2#8#6'Height'#3 ++ ,#177#0#3'Top'#3#208#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars' ++ +#7#6'ssBoth'#8'TabOrder'#2#2#7'TabStop'#8#0#0#9'TGroupBox'#10'GroupBox12'#4 ++ +'Left'#2#8#6'Height'#2'9'#3'Top'#2'H'#5'Width'#3#185#1#7'Caption'#6#20'Delet' ++ +'e Monthly data '#12'ClientHeight'#2'*'#11'ClientWidth'#3#181#1#8'TabOrder'#2 ++ +#1#0#6'TLabel'#8'Label214'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#12#5'Width'#3 ++ +#149#0#7'Caption'#6#31'Delete Monthly data older than '#11'ParentColor'#8#0#0 ++ +#7'TButton'#10'deldateast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#4#5'Width' ++ +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7 ++ +#15'deldateastClick'#8'TabOrder'#2#2#0#0#5'TEdit'#12'astdeldate_y'#4'Left'#3 ++ +#1#1#6'Height'#2#21#3'Top'#2#8#5'Width'#2'0'#8'TabOrder'#2#0#4'Text'#6#4'200' ++ +'7'#0#0#5'TEdit'#12'astdeldate_m'#4'Left'#3'9'#1#6'Height'#2#21#3'Top'#2#8#5 ++ +'Width'#2#24#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#12'AddsingleAst'#7'Caption' ++ +#6#3'Add'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#4 ++ +#0#6'TLabel'#8'Label217'#4'Left'#2#8#6'Height'#2#15#3'Top'#2#8#5'Width'#3#130 ++ +#1#7'Caption'#6'>Add a single element to the database. All field are mandato' ++ +'ry.'#11'ParentColor'#8#0#0#6'TLabel'#8'Label218'#4'Left'#2#8#6'Height'#2#15 ++ +#3'Top'#2'('#5'Width'#2'L'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0 ++ +#6'TLabel'#8'Label219'#4'Left'#3#160#0#6'Height'#2#15#3'Top'#2'('#5'Width'#3 + +#136#0#7'Caption'#6#20'H absolute magnitude'#11'ParentColor'#8#0#0#6'TLabel' + +#8'Label220'#4'Left'#3'8'#1#6'Height'#2#15#3'Top'#2'('#5'Width'#2'w'#7'Capti' + +'on'#6#17'G slope parameter'#11'ParentColor'#8#0#0#6'TLabel'#8'Label221'#4'L' +@@ -513,8 +512,8 @@ + +#3#230#1#5'Width'#3#247#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'Cl' + +'ientWidth'#3#247#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#212#0#6 + +'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0 +- ,#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalR' +- +'esult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'4'#1#6'Heigh' ++ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalR' ++ ,'esult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'4'#1#6'Heigh' + +'t'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'Bo' + +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2C' + +'lick'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#149#1#6'Height'#2 +diff -ur skychart_3.2/skychart/pu_config_system.lfm skychart_3.2_up/skychart/pu_config_system.lfm +--- skychart_3.2/skychart/pu_config_system.lfm 2010-10-02 15:18:28.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_system.lfm 2011-03-09 15:18:57.109096792 +0100 +@@ -1,7 +1,7 @@ + object f_config_system: Tf_config_system +- Left = 534 ++ Left = 526 + Height = 532 +- Top = 127 ++ Top = 123 + Width = 490 + ActiveControl = MainPanel + BorderStyle = bsToolWindow +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 482 +@@ -31,13 +31,20 @@ + Width = 488 + ActivePage = Page3 + Align = alClient +- ShowTabs = False + TabIndex = 2 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Page1' +- ClientHeight = 476 +- ClientWidth = 484 ++ ClientHeight = 445 ++ ClientWidth = 482 ++ object Label153: TLabel ++ Left = 0 ++ Height = 14 ++ Top = 0 ++ Width = 73 ++ Caption = 'System Setting' ++ ParentColor = False ++ end + object SqliteBox: TPanel + Left = 17 + Height = 97 +@@ -46,17 +53,6 @@ + ClientHeight = 97 + ClientWidth = 452 + TabOrder = 4 +- object dbnamesqlite: TEdit +- Left = 125 +- Height = 21 +- Top = 32 +- Width = 281 +- Color = clBtnFace +- OnChange = dbnamesqliteChange +- ReadOnly = True +- TabOrder = 0 +- Text = 'dbnamesqlite' +- end + object Label1: TLabel + Left = 13 + Height = 15 +@@ -74,14 +70,17 @@ + Caption = 'SqliteBoxLabel' + ParentColor = False + end +- end +- object Label153: TLabel +- Left = 0 +- Height = 14 +- Top = 0 +- Width = 73 +- Caption = 'System Setting' +- ParentColor = False ++ object dbnamesqlite: TEdit ++ Left = 125 ++ Height = 21 ++ Top = 32 ++ Width = 281 ++ Color = clBtnFace ++ OnChange = dbnamesqliteChange ++ ReadOnly = True ++ TabOrder = 0 ++ Text = 'dbnamesqlite' ++ end + end + object GroupBoxDir: TGroupBox + Left = 16 +@@ -118,7 +117,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 0 + OnChange = prgdirChange + end +@@ -130,7 +128,6 @@ + ShowHidden = False + ButtonWidth = 23 + NumGlyphs = 1 +- MaxLength = 0 + TabOrder = 1 + OnChange = persdirChange + end +@@ -277,52 +274,6 @@ + ClientHeight = 97 + ClientWidth = 452 + TabOrder = 5 +- object dbpass: TEdit +- Left = 348 +- Height = 21 +- Top = 64 +- Width = 100 +- EchoMode = emPassword +- OnChange = dbpassChange +- PasswordChar = '*' +- TabOrder = 0 +- Text = 'dbpass' +- end +- object dbuser: TEdit +- Left = 125 +- Height = 21 +- Top = 64 +- Width = 100 +- OnChange = dbuserChange +- TabOrder = 1 +- Text = 'dbuser' +- end +- object dbhost: TEdit +- Left = 250 +- Height = 21 +- Top = 24 +- Width = 65 +- OnChange = dbhostChange +- TabOrder = 2 +- Text = 'dbhost' +- end +- object dbport: TLongEdit +- Left = 391 +- Height = 21 +- Top = 24 +- Width = 57 +- TabOrder = 3 +- OnChange = dbportChange +- Value = 0 +- end +- object dbname: TEdit +- Left = 80 +- Height = 21 +- Top = 24 +- Width = 65 +- OnChange = dbnameChange +- TabOrder = 4 +- end + object Label133: TLabel + Left = 274 + Height = 15 +@@ -373,12 +324,58 @@ + Caption = 'MysqlBoxLabel' + ParentColor = False + end ++ object dbpass: TEdit ++ Left = 348 ++ Height = 21 ++ Top = 64 ++ Width = 100 ++ EchoMode = emPassword ++ OnChange = dbpassChange ++ PasswordChar = '*' ++ TabOrder = 0 ++ Text = 'dbpass' ++ end ++ object dbuser: TEdit ++ Left = 125 ++ Height = 21 ++ Top = 64 ++ Width = 100 ++ OnChange = dbuserChange ++ TabOrder = 1 ++ Text = 'dbuser' ++ end ++ object dbhost: TEdit ++ Left = 250 ++ Height = 21 ++ Top = 24 ++ Width = 65 ++ OnChange = dbhostChange ++ TabOrder = 2 ++ Text = 'dbhost' ++ end ++ object dbport: TLongEdit ++ Left = 391 ++ Height = 21 ++ Top = 24 ++ Width = 57 ++ TabOrder = 3 ++ OnChange = dbportChange ++ Value = 0 ++ end ++ object dbname: TEdit ++ Left = 80 ++ Height = 21 ++ Top = 24 ++ Width = 65 ++ OnChange = dbnameChange ++ TabOrder = 4 ++ end + end + end + object Page2: TTabSheet + Caption = 'Page2' +- ClientHeight = 476 +- ClientWidth = 484 ++ ClientHeight = 445 ++ ClientWidth = 482 + object GroupBox3: TGroupBox + Left = 16 + Height = 249 +@@ -444,8 +441,16 @@ + end + object Page3: TTabSheet + Caption = 'Page3' +- ClientHeight = 476 +- ClientWidth = 484 ++ ClientHeight = 445 ++ ClientWidth = 482 ++ object Label13: TLabel ++ Left = 0 ++ Height = 14 ++ Top = 0 ++ Width = 86 ++ Caption = 'Telescope Setting' ++ ParentColor = False ++ end + object ASCOMPanel: TPanel + Left = 8 + Height = 328 +@@ -473,22 +478,11 @@ + ClientHeight = 328 + ClientWidth = 450 + TabOrder = 3 +- object telescopepluginlist: TComboBox +- Left = 144 +- Height = 24 +- Top = 42 +- Width = 145 +- AutoCompleteText = [cbactSearchAscending] +- ItemHeight = 0 +- OnChange = telescopepluginlistChange +- Style = csDropDownList +- TabOrder = 0 +- end + object Label155: TLabel + Left = 24 + Height = 14 + Top = 46 +- Width = 84 ++ Width = 95 + Caption = 'Telescope Plugin ' + ParentColor = False + end +@@ -496,10 +490,21 @@ + Left = 25 + Height = 14 + Top = 11 +- Width = 104 ++ Width = 119 + Caption = 'TelescopePluginLabel' + ParentColor = False + end ++ object telescopepluginlist: TComboBox ++ Left = 144 ++ Height = 31 ++ Top = 42 ++ Width = 145 ++ AutoCompleteText = [cbactSearchAscending] ++ ItemHeight = 0 ++ OnChange = telescopepluginlistChange ++ Style = csDropDownList ++ TabOrder = 0 ++ end + end + object TelescopeManual: TPanel + Left = 8 +@@ -509,6 +514,24 @@ + ClientHeight = 330 + ClientWidth = 450 + TabOrder = 1 ++ object Label7: TLabel ++ Left = 24 ++ Height = 62 ++ Top = 32 ++ Width = 361 ++ AutoSize = False ++ Caption = 'Set how the mount move on each axis when you turn the driving knob.'#13#10'Then the Telescope button show you the turns you must do to go from one object to another.' ++ ParentColor = False ++ WordWrap = True ++ end ++ object TelescopeManualLabel: TLabel ++ Left = 24 ++ Height = 14 ++ Top = 6 ++ Width = 126 ++ Caption = 'TelescopeManualLabel' ++ ParentColor = False ++ end + object ManualMountType: TRadioGroup + Left = 24 + Height = 41 +@@ -545,7 +568,7 @@ + Left = 16 + Height = 14 + Top = 16 +- Width = 79 ++ Width = 88 + Caption = 'Right Ascension' + ParentColor = False + end +@@ -553,7 +576,7 @@ + Left = 16 + Height = 14 + Top = 93 +- Width = 53 ++ Width = 63 + Caption = 'Declination' + ParentColor = False + end +@@ -561,7 +584,7 @@ + Left = 240 + Height = 14 + Top = 16 +- Width = 57 ++ Width = 64 + Caption = 'turns / hour' + ParentColor = False + end +@@ -569,13 +592,13 @@ + Left = 240 + Height = 14 + Top = 93 +- Width = 69 ++ Width = 78 + Caption = 'turns / degree' + ParentColor = False + end + object TurnsRa: TFloatEdit + Left = 128 +- Height = 21 ++ Height = 23 + Top = 11 + Width = 81 + ParentShowHint = False +@@ -587,7 +610,7 @@ + end + object TurnsDec: TFloatEdit + Left = 128 +- Height = 21 ++ Height = 23 + Top = 88 + Width = 81 + ParentShowHint = False +@@ -599,18 +622,18 @@ + end + object RevertTurnsRa: TCheckBox + Left = 128 +- Height = 21 ++ Height = 22 + Top = 40 +- Width = 98 ++ Width = 106 + Caption = 'Revert RA knob' + OnClick = TurnsRaChange + TabOrder = 2 + end + object RevertTurnDec: TCheckBox + Left = 128 +- Height = 21 ++ Height = 22 + Top = 120 +- Width = 104 ++ Width = 114 + Caption = 'Revert DEC knob' + OnClick = TurnsDecChange + TabOrder = 3 +@@ -628,7 +651,7 @@ + Left = 16 + Height = 14 + Top = 16 +- Width = 40 ++ Width = 45 + Caption = 'Azimuth' + ParentColor = False + end +@@ -636,7 +659,7 @@ + Left = 16 + Height = 14 + Top = 93 +- Width = 37 ++ Width = 43 + Caption = 'Altitude' + ParentColor = False + end +@@ -644,7 +667,7 @@ + Left = 240 + Height = 14 + Top = 16 +- Width = 69 ++ Width = 78 + Caption = 'turns / degree' + ParentColor = False + end +@@ -652,13 +675,13 @@ + Left = 240 + Height = 14 + Top = 93 +- Width = 69 ++ Width = 78 + Caption = 'turns / degree' + ParentColor = False + end + object TurnsAz: TFloatEdit + Left = 128 +- Height = 21 ++ Height = 23 + Top = 11 + Width = 81 + ParentShowHint = False +@@ -670,7 +693,7 @@ + end + object TurnsAlt: TFloatEdit + Left = 128 +- Height = 21 ++ Height = 23 + Top = 88 + Width = 81 + ParentShowHint = False +@@ -682,41 +705,23 @@ + end + object RevertTurnsAz: TCheckBox + Left = 128 +- Height = 21 ++ Height = 22 + Top = 40 +- Width = 97 ++ Width = 105 + Caption = 'Revert Az knob' + OnClick = TurnsAzChange + TabOrder = 1 + end + object RevertTurnsAlt: TCheckBox + Left = 128 +- Height = 21 ++ Height = 22 + Top = 120 +- Width = 96 ++ Width = 106 + Caption = 'Revert Alt knob' + OnClick = TurnsAltChange + TabOrder = 3 + end + end +- object Label7: TLabel +- Left = 24 +- Height = 62 +- Top = 32 +- Width = 361 +- AutoSize = False +- Caption = 'Set how the mount move on each axis when you turn the driving knob.'#13#10'Then the Telescope button show you the turns you must do to go from one object to another.' +- ParentColor = False +- WordWrap = True +- end +- object TelescopeManualLabel: TLabel +- Left = 24 +- Height = 14 +- Top = 6 +- Width = 110 +- Caption = 'TelescopeManualLabel' +- ParentColor = False +- end + end + object INDI: TPanel + Left = 8 +@@ -726,9 +731,73 @@ + ClientHeight = 328 + ClientWidth = 450 + TabOrder = 2 ++ object Label2: TLabel ++ Left = 8 ++ Height = 14 ++ Top = 224 ++ Width = 133 ++ Caption = 'Control Panel command ' ++ ParentColor = False ++ end ++ object Label261: TLabel ++ Left = 8 ++ Height = 14 ++ Top = 180 ++ Width = 65 ++ Caption = 'Device Port ' ++ ParentColor = False ++ end ++ object Label260: TLabel ++ Left = 231 ++ Height = 14 ++ Top = 104 ++ Width = 83 ++ Caption = 'Telescope type' ++ ParentColor = False ++ end ++ object Label259: TLabel ++ Left = 231 ++ Height = 14 ++ Top = 136 ++ Width = 67 ++ Caption = 'Driver name' ++ ParentColor = False ++ end ++ object Label258: TLabel ++ Left = 8 ++ Height = 14 ++ Top = 104 ++ Width = 96 ++ Caption = 'Server command ' ++ ParentColor = False ++ end ++ object Label130: TLabel ++ Left = 231 ++ Height = 14 ++ Top = 28 ++ Width = 84 ++ Caption = 'INDI server Port' ++ ParentColor = False ++ end ++ object Label75: TLabel ++ Left = 8 ++ Height = 14 ++ Top = 28 ++ Width = 92 ++ Caption = 'INDI Server Host ' ++ ParentColor = False ++ end ++ object INDILabel: TLabel ++ Left = 8 ++ Height = 14 ++ Top = 7 ++ Width = 53 ++ Caption = 'INDILabel' ++ ParentColor = False ++ end + object PanelCmd: TEdit + Left = 176 +- Height = 21 ++ Height = 23 + Top = 220 + Width = 257 + OnChange = PanelCmdChange +@@ -736,7 +805,7 @@ + end + object IndiPort: TComboBox + Left = 120 +- Height = 24 ++ Height = 31 + Top = 176 + Width = 185 + AutoCompleteText = [cbactSearchAscending] +@@ -757,7 +826,7 @@ + end + object IndiDev: TComboBox + Left = 336 +- Height = 24 ++ Height = 31 + Top = 100 + Width = 100 + AutoCompleteText = [cbactSearchAscending] +@@ -768,7 +837,7 @@ + end + object IndiDriver: TEdit + Left = 336 +- Height = 21 ++ Height = 23 + Top = 132 + Width = 100 + Enabled = False +@@ -777,7 +846,7 @@ + end + object IndiServerCmd: TEdit + Left = 120 +- Height = 21 ++ Height = 23 + Top = 100 + Width = 100 + OnChange = IndiServerCmdChange +@@ -785,16 +854,16 @@ + end + object IndiAutostart: TCheckBox + Left = 8 +- Height = 21 ++ Height = 22 + Top = 64 +- Width = 286 ++ Width = 322 + Caption = 'Automatically start a local server if not already running' + OnClick = IndiAutostartClick + TabOrder = 5 + end + object IndiServerPort: TEdit + Left = 336 +- Height = 21 ++ Height = 23 + Top = 24 + Width = 97 + OnChange = IndiServerPortChange +@@ -802,84 +871,12 @@ + end + object IndiServerHost: TEdit + Left = 120 +- Height = 21 ++ Height = 23 + Top = 24 + Width = 100 + OnChange = IndiServerHostChange + TabOrder = 7 + end +- object Label2: TLabel +- Left = 8 +- Height = 14 +- Top = 224 +- Width = 116 +- Caption = 'Control Panel command ' +- ParentColor = False +- end +- object Label261: TLabel +- Left = 8 +- Height = 14 +- Top = 180 +- Width = 59 +- Caption = 'Device Port ' +- ParentColor = False +- end +- object Label260: TLabel +- Left = 231 +- Height = 14 +- Top = 104 +- Width = 74 +- Caption = 'Telescope type' +- ParentColor = False +- end +- object Label259: TLabel +- Left = 231 +- Height = 14 +- Top = 136 +- Width = 59 +- Caption = 'Driver name' +- ParentColor = False +- end +- object Label258: TLabel +- Left = 8 +- Height = 14 +- Top = 104 +- Width = 86 +- Caption = 'Server command ' +- ParentColor = False +- end +- object Label130: TLabel +- Left = 231 +- Height = 14 +- Top = 28 +- Width = 76 +- Caption = 'INDI server Port' +- ParentColor = False +- end +- object Label75: TLabel +- Left = 8 +- Height = 14 +- Top = 28 +- Width = 83 +- Caption = 'INDI Server Host ' +- ParentColor = False +- end +- object INDILabel: TLabel +- Left = 8 +- Height = 14 +- Top = 7 +- Width = 45 +- Caption = 'INDILabel' +- ParentColor = False +- end +- end +- object Label13: TLabel +- Left = 0 +- Height = 14 +- Top = 0 +- Width = 86 +- Caption = 'Telescope Setting' +- ParentColor = False + end + object TelescopeSelect: TRadioGroup + Left = 8 +@@ -911,8 +908,8 @@ + end + object Page4: TTabSheet + Caption = 'Page4' +- ClientHeight = 476 +- ClientWidth = 484 ++ ClientHeight = 445 ++ ClientWidth = 482 + object Label14: TLabel + Left = 19 + Height = 14 +diff -ur skychart_3.2/skychart/pu_config_system.lrs skychart_3.2_up/skychart/pu_config_system.lrs +--- skychart_3.2/skychart/pu_config_system.lrs 2010-10-02 15:18:28.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_system.lrs 2011-03-09 15:18:57.145092371 +0100 +@@ -1,250 +1,249 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_system','FORMDATA',[ +- 'TPF0'#16'Tf_config_system'#15'f_config_system'#4'Left'#3#22#2#6'Height'#3#20 +- +#2#3'Top'#2#127#5'Width'#3#234#1#13'ActiveControl'#7#9'MainPanel'#11'BorderS' +- +'tyle'#7#12'bsToolWindow'#7'Caption'#6#6'System'#12'ClientHeight'#3#20#2#11 +- +'ClientWidth'#3#234#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCr' +- +'eate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormSho' +- +'w'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' ++ 'TPF0'#16'Tf_config_system'#15'f_config_system'#4'Left'#3#14#2#6'Height'#3#20 ++ +#2#3'Top'#2'{'#5'Width'#3#234#1#13'ActiveControl'#7#9'MainPanel'#11'BorderSt' ++ +'yle'#7#12'bsToolWindow'#7'Caption'#6#6'System'#12'ClientHeight'#3#20#2#11'C' ++ +'lientWidth'#3#234#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCre' ++ +'ate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' ++ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' + +#3#226#1#3'Top'#2#0#5'Width'#3#234#1#5'Align'#7#8'alClient'#12'ClientHeight' + +#3#226#1#11'ClientWidth'#3#234#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPag' + +'eControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#224#1#3'Top'#2#1#5'Width' +- +#3#232#1#10'ActivePage'#7#5'Page3'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'Ta' +- +'bIndex'#2#2#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12 +- +'ClientHeight'#3#220#1#11'ClientWidth'#3#228#1#0#6'TPanel'#9'SqliteBox'#4'Le' +- +'ft'#2#17#6'Height'#2'a'#3'Top'#2'5'#5'Width'#3#196#1#12'ClientHeight'#2'a' +- +#11'ClientWidth'#3#196#1#8'TabOrder'#2#4#0#5'TEdit'#12'dbnamesqlite'#4'Left' +- +#2'}'#6'Height'#2#21#3'Top'#2' '#5'Width'#3#25#1#5'Color'#7#9'clBtnFace'#8'O' +- +'nChange'#7#18'dbnamesqliteChange'#8'ReadOnly'#9#8'TabOrder'#2#0#4'Text'#6#12 +- +'dbnamesqlite'#0#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2#15#3'Top'#2 +- +'$'#5'Width'#2'm'#8'AutoSize'#8#7'Caption'#6#15'Database file: '#11'ParentCo' +- +'lor'#8#0#0#6'TLabel'#14'SqliteBoxLabel'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 +- +#12#5'Width'#2'H'#7'Caption'#6#14'SqliteBoxLabel'#11'ParentColor'#8#0#0#0#6 +- +'TLabel'#8'Label153'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'I'#7'C' +- +'aption'#6#14'System Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#11'GroupBox' +- +'Dir'#4'Left'#2#16#6'Height'#2'['#3'Top'#3#11#1#5'Width'#3#197#1#7'Caption'#6 +- +#9'Directory'#12'ClientHeight'#2'L'#11'ClientWidth'#3#193#1#8'TabOrder'#2#2#0 +- +#6'TLabel'#8'Label156'#4'Left'#2#13#6'Height'#2#15#3'Top'#2#8#5'Width'#3#161 +- +#0#8'AutoSize'#8#7'Caption'#6#13'Program Data '#11'ParentColor'#8#0#0#6'TLab' +- +'el'#8'Label157'#4'Left'#2#14#6'Height'#2#15#3'Top'#2'/'#5'Width'#3#161#0#8 +- +'AutoSize'#8#7'Caption'#6#13'Personal data'#11'ParentColor'#8#0#0#14'TDirect' +- +'oryEdit'#6'prgdir'#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2#3#5'Width'#3#240 +- +#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8 +- +'TabOrder'#2#0#8'OnChange'#7#12'prgdirChange'#0#0#14'TDirectoryEdit'#7'persd' +- +'ir'#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2'*'#5'Width'#3#240#0#10'ShowHidd' +- +'en'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1 +- +#8'OnChange'#7#13'persdirChange'#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#16 +- +#6'Height'#2'b'#3'Top'#3#155#0#5'Width'#3#197#1#12'ClientHeight'#2'^'#11'Cli' +- +'entWidth'#3#193#1#8'TabOrder'#2#1#0#7'TButton'#5'chkdb'#4'Left'#2#16#6'Heig' +- +'ht'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Capt' +- +'ion'#6#5'Check'#7'OnClick'#7#10'chkdbClick'#8'TabOrder'#2#0#0#0#7'TButton'#5 +- +'credb'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSp' +- +'acing.InnerBorder'#2#4#7'Caption'#6#15'Create Database'#7'OnClick'#7#10'cre' +- +'dbClick'#8'TabOrder'#2#1#0#0#7'TButton'#6'dropdb'#4'Left'#3'='#1#6'Height'#2 +- +#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#13'Drop Database'#7'OnClick'#7#11'dropdbClick'#8'TabOrder'#2#2#0#0#7'TButto' +- +'n'#7'CometDB'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25'B' +- +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Comet Setting'#7'OnClick'#7#12 +- +'CometDBClick'#8'TabOrder'#2#4#7'Visible'#8#0#0#7'TButton'#5'AstDB'#4'Left'#2 +- +#16#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2 +- +#4#7'Caption'#6#16'Asteroid Setting'#7'OnClick'#7#10'AstDBClick'#8'TabOrder' +- +#2#3#7'Visible'#8#0#0#0#11'TRadioGroup'#11'DBtypeGroup'#4'Left'#3#174#0#6'He' +- +'ight'#2'0'#3'Top'#2#3#5'Width'#3''''#1#8'AutoFill'#9#7'Caption'#6#13'Databa' +- +'se Type'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpaci' +- +'ng'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 +- +'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.' +- +'ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14 +- +'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom' +- +#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'ClientWidth'#3 +- +'#'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#6'SQLite'#6#5'My' +- +'SQL'#0#7'OnClick'#7#16'DBtypeGroupClick'#14'ParentShowHint'#8#8'ShowHint'#9 +- +#8'TabOrder'#2#0#0#0#9'TGroupBox'#13'GroupBoxLinux'#4'Left'#2#17#6'Height'#2 +- +'\'#3'Top'#3'o'#1#5'Width'#3#196#1#7'Caption'#6#19'Desktop environment'#12'C' +- +'lientHeight'#2'M'#11'ClientWidth'#3#192#1#8'TabOrder'#2#3#0#6'TLabel'#7'Lab' +- +'el12'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#8#5'Width'#2'i'#7'Caption'#6 +- +#18'URL launch command'#11'ParentColor'#8#0#0#9'TComboBox'#15'LinuxDesktopBo' +- +'x'#4'Left'#2#20#6'Height'#2#23#3'Top'#2'!'#5'Width'#2'f'#16'AutoCompleteTex' +- ,'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#1#13'Ite' +- +'ms.Strings'#1#6#11'FreeDesktop'#6#3'KDE'#6#5'GNOME'#6#5'Other'#0#8'OnSelect' +- +#7#21'LinuxDesktopBoxChange'#8'TabOrder'#2#0#4'Text'#6#3'KDE'#0#0#5'TEdit'#8 +- +'LinuxCmd'#4'Left'#3#204#0#6'Height'#2#21#3'Top'#2'!'#5'Width'#3#194#0#8'OnC' +- +'hange'#7#14'LinuxCmdChange'#8'TabOrder'#2#1#4'Text'#6#8'LinuxCmd'#0#0#0#6'T' +- +'Panel'#8'MysqlBox'#4'Left'#2#17#6'Height'#2'a'#3'Top'#2'5'#5'Width'#3#196#1 +- +#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8'TabOrder'#2#5#0#5'TEdit'#6 +- +'dbpass'#4'Left'#3'\'#1#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'EchoMode' +- +#7#10'emPassword'#8'OnChange'#7#12'dbpassChange'#12'PasswordChar'#6#1'*'#8'T' +- +'abOrder'#2#0#4'Text'#6#6'dbpass'#0#0#5'TEdit'#6'dbuser'#4'Left'#2'}'#6'Heig' +- +'ht'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'OnChange'#7#12'dbuserChange'#8'TabOrde' +- +'r'#2#1#4'Text'#6#6'dbuser'#0#0#5'TEdit'#6'dbhost'#4'Left'#3#250#0#6'Height' +- +#2#21#3'Top'#2#24#5'Width'#2'A'#8'OnChange'#7#12'dbhostChange'#8'TabOrder'#2 +- +#2#4'Text'#6#6'dbhost'#0#0#9'TLongEdit'#6'dbport'#4'Left'#3#135#1#6'Height'#2 +- +#21#3'Top'#2#24#5'Width'#2'9'#8'TabOrder'#2#3#8'OnChange'#7#12'dbportChange' +- +#5'Value'#2#0#0#0#5'TEdit'#6'dbname'#4'Left'#2'P'#6'Height'#2#21#3'Top'#2#24 +- +#5'Width'#2'A'#8'OnChange'#7#12'dbnameChange'#8'TabOrder'#2#4#0#0#6'TLabel'#8 +- +'Label133'#4'Left'#3#18#1#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'Q'#8'AutoSiz' +- +'e'#8#7'Caption'#6#8'Password'#11'ParentColor'#8#0#0#6'TLabel'#7'Label86'#4 +- +'Left'#2#16#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'j'#8'AutoSize'#8#7'Caption' +- +#6#7'Userid:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label85'#4'Left'#3'j'#1#6'He' +- +'ight'#2#14#3'Top'#2#28#5'Width'#2#23#7'Caption'#6#5'Port:'#11'ParentColor'#8 +- +#0#0#6'TLabel'#7'Label84'#4'Left'#3#178#0#6'Height'#2#14#3'Top'#2#28#5'Width' +- +#2'8'#7'Caption'#6#10'Host Name:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label77' +- +#4'Left'#2#16#6'Height'#2#14#3'Top'#2#28#5'Width'#2'0'#7'Caption'#6#8'DB Nam' +- +'e:'#11'ParentColor'#8#0#0#6'TLabel'#13'MysqlBoxLabel'#4'Left'#2#16#6'Height' +- +#2#14#3'Top'#2#3#5'Width'#2'J'#7'Caption'#6#13'MysqlBoxLabel'#11'ParentColor' +- +#8#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight'#3#220 +- +#1#11'ClientWidth'#3#228#1#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#16#6'Height' +- +#3#249#0#3'Top'#2#8#5'Width'#3#137#1#7'Caption'#6#13'TCP/IP Server'#12'Clien' +- +'tHeight'#3#234#0#11'ClientWidth'#3#133#1#8'TabOrder'#2#0#0#6'TLabel'#7'Labe' +- +'l54'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|'#5'Width'#2'a'#7'Caption'#6#21 +- +'Server IP Interface :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label55'#4'Left'#2 +- +#16#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'I'#7'Caption'#6#16'Server IP Po' +- +'rt :'#11'ParentColor'#8#0#0#9'TCheckBox'#11'UseIPserver'#4'Left'#2#16#6'Hei' +- +'ght'#2#21#3'Top'#2' '#5'Width'#2'o'#7'Caption'#6#17'Use TCP/IP Server'#7'On' +- +'Click'#7#16'UseIPserverClick'#8'TabOrder'#2#0#0#0#5'TEdit'#6'ipaddr'#4'Left' +- +#3#144#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'd'#8'OnChange'#7#12'ipaddrCha' +- +'nge'#8'TabOrder'#2#2#4'Text'#6#9'127.0.0.1'#0#0#5'TEdit'#6'ipport'#4'Left'#3 +- +#144#0#6'Height'#2#21#3'Top'#3#164#0#5'Width'#2'd'#8'OnChange'#7#12'ipportCh' +- +'ange'#8'TabOrder'#2#3#4'Text'#6#4'3292'#0#0#9'TCheckBox'#9'keepalive'#4'Lef' +- +'t'#2#16#6'Height'#2#21#3'Top'#2'H'#5'Width'#3#160#0#7'Caption'#6#28'Client ' +- +'Connection Keep Alive'#7'OnClick'#7#14'keepaliveClick'#8'TabOrder'#2#1#0#0#0 +- +#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHeight'#3#220#1#11'C' +- +'lientWidth'#3#228#1#0#6'TPanel'#10'ASCOMPanel'#4'Left'#2#8#6'Height'#3'H'#1 +- +#3'Top'#2'e'#5'Width'#3#196#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#196#1 +- +#8'TabOrder'#2#4#0#6'TLabel'#10'ASCOMLabel'#4'Left'#2#21#6'Height'#3#232#0#3 +- +'Top'#2#24#5'Width'#3#145#1#8'AutoSize'#8#7'Caption'#6#10'ASCOMLabel'#11'Par' +- +'entColor'#8#8'WordWrap'#9#0#0#0#6'TPanel'#15'TelescopePlugin'#4'Left'#2#8#6 +- +'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientHeight'#3'H'#1#11'Clie' +- +'ntWidth'#3#194#1#8'TabOrder'#2#3#0#9'TComboBox'#19'telescopepluginlist'#4'L' +- +'eft'#3#144#0#6'Height'#2#24#3'Top'#2'*'#5'Width'#3#145#0#16'AutoCompleteTex' +- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#25'telesc' +- +'opepluginlistChange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#6'TL' +- +'abel'#8'Label155'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'.'#5'Width'#2'T'#7'C' +- +'aption'#6#17'Telescope Plugin '#11'ParentColor'#8#0#0#6'TLabel'#20'Telescop' +- +'ePluginLabel'#4'Left'#2#25#6'Height'#2#14#3'Top'#2#11#5'Width'#2'h'#7'Capti' +- +'on'#6#20'TelescopePluginLabel'#11'ParentColor'#8#0#0#0#6'TPanel'#15'Telesco' +- +'peManual'#4'Left'#2#8#6'Height'#3'J'#1#3'Top'#2'e'#5'Width'#3#194#1#12'Clie' +- +'ntHeight'#3'J'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#1#0#11'TRadioGroup' +- +#15'ManualMountType'#4'Left'#2#24#6'Height'#2')'#3'Top'#2']'#5'Width'#3'i'#1 +- +#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' +- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' +- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' +- ,'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' +- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' +- +'tom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'%'#11'ClientWid' +- +'th'#3'e'#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Equatorial'#6#8'Alt / Az' +- +#0#7'OnClick'#7#20'ManualMountTypeClick'#8'TabOrder'#2#0#0#0#6'TPanel'#15'Eq' +- +'uatorialMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Width'#3'i'#1 +- +#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#0#6'TLabel' +- +#6'Label3'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'O'#7'Caption'#6 +- +#15'Right Ascension'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#16#6 +- +'Height'#2#14#3'Top'#2']'#5'Width'#2'5'#7'Caption'#6#11'Declination'#11'Pare' +- +'ntColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2 +- +#16#5'Width'#2'9'#7'Caption'#6#12'turns / hour'#11'ParentColor'#8#0#0#6'TLab' +- +'el'#6'Label6'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'E'#7'Ca' +- +'ption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'TurnsRa' +- +#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2#11#5'Width'#2'Q'#14'ParentShowHint' +- +#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsRaChange'#5'Value'#5#0#0#0#0#0#0#0#0 +- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 +- +#10'TFloatEdit'#8'TurnsDec'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'X'#5'Wid' +- +'th'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#1#8'OnChange'#7#14'TurnsDecChan' +- +'ge'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxV' +- +'alue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsRa'#4'Left'#3#128 +- +#0#6'Height'#2#21#3'Top'#2'('#5'Width'#2'b'#7'Caption'#6#14'Revert RA knob'#7 +- +'OnClick'#7#13'TurnsRaChange'#8'TabOrder'#2#2#0#0#9'TCheckBox'#13'RevertTurn' +- +'Dec'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'h'#7'Caption'#6 +- +#15'Revert DEC knob'#7'OnClick'#7#14'TurnsDecChange'#8'TabOrder'#2#3#0#0#0#6 +- +'TPanel'#10'AltAzMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Widt' +- +'h'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#2#0 +- +#6'TLabel'#6'Label8'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'('#7 +- +'Caption'#6#7'Azimuth'#11'ParentColor'#8#0#0#6'TLabel'#6'Label9'#4'Left'#2#16 +- +#6'Height'#2#14#3'Top'#2']'#5'Width'#2'%'#7'Caption'#6#8'Altitude'#11'Parent' +- +'Color'#8#0#0#6'TLabel'#7'Label10'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2#16 +- +#5'Width'#2'E'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#7'Label11'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'E'#7'Ca' +- +'ption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'TurnsAz' +- +#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2#11#5'Width'#2'Q'#14'ParentShowHint' +- +#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsAzChange'#5'Value'#5#0#0#0#0#0#0#0#0 +- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 +- +#10'TFloatEdit'#8'TurnsAlt'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'X'#5'Wid' +- +'th'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#2#8'OnChange'#7#14'TurnsAltChan' +- +'ge'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxV' +- +'alue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsAz'#4'Left'#3#128 +- +#0#6'Height'#2#21#3'Top'#2'('#5'Width'#2'a'#7'Caption'#6#14'Revert Az knob'#7 +- +'OnClick'#7#13'TurnsAzChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#14'RevertTurn' +- +'sAlt'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'`'#7'Caption'#6 +- +#15'Revert Alt knob'#7'OnClick'#7#14'TurnsAltChange'#8'TabOrder'#2#3#0#0#0#6 +- +'TLabel'#6'Label7'#4'Left'#2#24#6'Height'#2'>'#3'Top'#2' '#5'Width'#3'i'#1#8 +- +'AutoSize'#8#7'Caption'#6#159'Set how the mount move on each axis when you t' +- +'urn the driving knob.'#13#10'Then the Telescope button show you the turns y' +- +'ou must do to go from one object to another.'#11'ParentColor'#8#8'WordWrap' +- +#9#0#0#6'TLabel'#20'TelescopeManualLabel'#4'Left'#2#24#6'Height'#2#14#3'Top' +- +#2#6#5'Width'#2'n'#7'Caption'#6#20'TelescopeManualLabel'#11'ParentColor'#8#0 +- +#0#0#6'TPanel'#4'INDI'#4'Left'#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3 +- +#194#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#2#0#5'T' +- +'Edit'#8'PanelCmd'#4'Left'#3#176#0#6'Height'#2#21#3'Top'#3#220#0#5'Width'#3#1 +- +#1#8'OnChange'#7#14'PanelCmdChange'#8'TabOrder'#2#0#0#0#9'TComboBox'#8'IndiP' +- +'ort'#4'Left'#2'x'#6'Height'#2#24#3'Top'#3#176#0#5'Width'#3#185#0#16'AutoCom' +- +'pleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#13'Items.String' +- +'s'#1#6#4'COM1'#6#4'COM2'#6#4'COM3'#6#4'COM4'#6#4'COM5'#6#4'COM6'#6#4'COM7'#6 +- +#4'COM8'#0#8'OnSelect'#7#14'IndiPortChange'#5'Style'#7#14'csDropDownList'#8 +- +'TabOrder'#2#1#0#0#9'TComboBox'#7'IndiDev'#4'Left'#3'P'#1#6'Height'#2#24#3'T' +- +'op'#2'd'#5'Width'#2'd'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10 +- +'ItemHeight'#2#0#8'OnSelect'#7#13'IndiDevChange'#5'Style'#7#14'csDropDownLis' +- +'t'#8'TabOrder'#2#2#0#0#5'TEdit'#10'IndiDriver'#4'Left'#3'P'#1#6'Height'#2#21 +- +#3'Top'#3#132#0#5'Width'#2'd'#7'Enabled'#8#8'OnChange'#7#16'IndiDriverChange' +- ,#8'TabOrder'#2#3#0#0#5'TEdit'#13'IndiServerCmd'#4'Left'#2'x'#6'Height'#2#21#3 +- +'Top'#2'd'#5'Width'#2'd'#8'OnChange'#7#19'IndiServerCmdChange'#8'TabOrder'#2 +- +#4#0#0#9'TCheckBox'#13'IndiAutostart'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'@' +- +#5'Width'#3#30#1#7'Caption'#6'9Automatically start a local server if not alr' +- +'eady running'#7'OnClick'#7#18'IndiAutostartClick'#8'TabOrder'#2#5#0#0#5'TEd' +- +'it'#14'IndiServerPort'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#2#24#5'Width'#2 +- +'a'#8'OnChange'#7#20'IndiServerPortChange'#8'TabOrder'#2#6#0#0#5'TEdit'#14'I' +- +'ndiServerHost'#4'Left'#2'x'#6'Height'#2#21#3'Top'#2#24#5'Width'#2'd'#8'OnCh' +- +'ange'#7#20'IndiServerHostChange'#8'TabOrder'#2#7#0#0#6'TLabel'#6'Label2'#4 +- +'Left'#2#8#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2't'#7'Caption'#6#22'Contr' +- +'ol Panel command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label261'#4'Left'#2#8#6 +- +'Height'#2#14#3'Top'#3#180#0#5'Width'#2';'#7'Caption'#6#12'Device Port '#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label260'#4'Left'#3#231#0#6'Height'#2#14#3'T' +- +'op'#2'h'#5'Width'#2'J'#7'Caption'#6#14'Telescope type'#11'ParentColor'#8#0#0 +- +#6'TLabel'#8'Label259'#4'Left'#3#231#0#6'Height'#2#14#3'Top'#3#136#0#5'Width' +- +#2';'#7'Caption'#6#11'Driver name'#11'ParentColor'#8#0#0#6'TLabel'#8'Label25' +- +'8'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'V'#7'Caption'#6#15'Ser' +- +'ver command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label130'#4'Left'#3#231#0#6 +- +'Height'#2#14#3'Top'#2#28#5'Width'#2'L'#7'Caption'#6#16'INDI server Port'#11 +- +'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#2#8#6'Height'#2#14#3'Top'#2 +- +#28#5'Width'#2'S'#7'Caption'#6#17'INDI Server Host '#11'ParentColor'#8#0#0#6 +- +'TLabel'#9'INDILabel'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#2'-'#7 +- +'Caption'#6#9'INDILabel'#11'ParentColor'#8#0#0#0#6'TLabel'#7'Label13'#4'Left' ++ +#3#232#1#10'ActivePage'#7#5'Page3'#5'Align'#7#8'alClient'#8'TabIndex'#2#2#8 ++ +'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight' ++ +#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#8'Label153'#4'Left'#2#0#6'Heigh' ++ +'t'#2#14#3'Top'#2#0#5'Width'#2'I'#7'Caption'#6#14'System Setting'#11'ParentC' ++ +'olor'#8#0#0#6'TPanel'#9'SqliteBox'#4'Left'#2#17#6'Height'#2'a'#3'Top'#2'5'#5 ++ +'Width'#3#196#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8'TabOrder'#2#4 ++ +#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2#15#3'Top'#2'$'#5'Width'#2'm' ++ +#8'AutoSize'#8#7'Caption'#6#15'Database file: '#11'ParentColor'#8#0#0#6'TLab' ++ +'el'#14'SqliteBoxLabel'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#12#5'Width'#2'H' ++ +#7'Caption'#6#14'SqliteBoxLabel'#11'ParentColor'#8#0#0#5'TEdit'#12'dbnamesql' ++ +'ite'#4'Left'#2'}'#6'Height'#2#21#3'Top'#2' '#5'Width'#3#25#1#5'Color'#7#9'c' ++ +'lBtnFace'#8'OnChange'#7#18'dbnamesqliteChange'#8'ReadOnly'#9#8'TabOrder'#2#0 ++ +#4'Text'#6#12'dbnamesqlite'#0#0#0#9'TGroupBox'#11'GroupBoxDir'#4'Left'#2#16#6 ++ +'Height'#2'['#3'Top'#3#11#1#5'Width'#3#197#1#7'Caption'#6#9'Directory'#12'Cl' ++ +'ientHeight'#2'L'#11'ClientWidth'#3#193#1#8'TabOrder'#2#2#0#6'TLabel'#8'Labe' ++ +'l156'#4'Left'#2#13#6'Height'#2#15#3'Top'#2#8#5'Width'#3#161#0#8'AutoSize'#8 ++ +#7'Caption'#6#13'Program Data '#11'ParentColor'#8#0#0#6'TLabel'#8'Label157'#4 ++ +'Left'#2#14#6'Height'#2#15#3'Top'#2'/'#5'Width'#3#161#0#8'AutoSize'#8#7'Capt' ++ +'ion'#6#13'Personal data'#11'ParentColor'#8#0#0#14'TDirectoryEdit'#6'prgdir' ++ +#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2#3#5'Width'#3#240#0#10'ShowHidden'#8 ++ +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#12'prgd' ++ +'irChange'#0#0#14'TDirectoryEdit'#7'persdir'#4'Left'#3#179#0#6'Height'#2#21#3 ++ +'Top'#2'*'#5'Width'#3#240#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyph' ++ +'s'#2#1#8'TabOrder'#2#1#8'OnChange'#7#13'persdirChange'#0#0#0#9'TGroupBox'#9 ++ +'GroupBox1'#4'Left'#2#16#6'Height'#2'b'#3'Top'#3#155#0#5'Width'#3#197#1#12'C' ++ +'lientHeight'#2'^'#11'ClientWidth'#3#193#1#8'TabOrder'#2#1#0#7'TButton'#5'ch' ++ +'kdb'#4'Left'#2#16#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing' ++ +'.InnerBorder'#2#4#7'Caption'#6#5'Check'#7'OnClick'#7#10'chkdbClick'#8'TabOr' ++ +'der'#2#0#0#0#7'TButton'#5'credb'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16 ++ +#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#15'Create Data' ++ +'base'#7'OnClick'#7#10'credbClick'#8'TabOrder'#2#1#0#0#7'TButton'#6'dropdb'#4 ++ +'Left'#3'='#1#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.Inne' ++ +'rBorder'#2#4#7'Caption'#6#13'Drop Database'#7'OnClick'#7#11'dropdbClick'#8 ++ +'TabOrder'#2#2#0#0#7'TButton'#7'CometDB'#4'Left'#3#168#0#6'Height'#2#25#3'To' ++ +'p'#2'0'#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Com' ++ +'et Setting'#7'OnClick'#7#12'CometDBClick'#8'TabOrder'#2#4#7'Visible'#8#0#0#7 ++ +'TButton'#5'AstDB'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#16'Asteroid Setting'#7'OnClick' ++ +#7#10'AstDBClick'#8'TabOrder'#2#3#7'Visible'#8#0#0#0#11'TRadioGroup'#11'DBty' ++ +'peGroup'#4'Left'#3#174#0#6'Height'#2'0'#3'Top'#2#3#5'Width'#3''''#1#8'AutoF' ++ +'ill'#9#7'Caption'#6#13'Database Type'#28'ChildSizing.LeftRightSpacing'#2#6 ++ +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 ++ +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' ++ +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' ++ +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' ++ +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientH' ++ +'eight'#2'!'#11'ClientWidth'#3'#'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items' ++ +'.Strings'#1#6#6'SQLite'#6#5'MySQL'#0#7'OnClick'#7#16'DBtypeGroupClick'#14'P' ++ +'arentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TGroupBox'#13'GroupBox' ++ +'Linux'#4'Left'#2#17#6'Height'#2'\'#3'Top'#3'o'#1#5'Width'#3#196#1#7'Caption' ++ +#6#19'Desktop environment'#12'ClientHeight'#2'M'#11'ClientWidth'#3#192#1#8'T' ++ +'abOrder'#2#3#0#6'TLabel'#7'Label12'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2 ++ +#8#5'Width'#2'i'#7'Caption'#6#18'URL launch command'#11'ParentColor'#8#0#0#9 ++ +'TComboBox'#15'LinuxDesktopBox'#4'Left'#2#20#6'Height'#2#23#3'Top'#2'!'#5'Wi' ++ +'dth'#2'f'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight' ++ ,#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11'FreeDesktop'#6#3'KDE'#6#5'GNO' ++ +'ME'#6#5'Other'#0#8'OnSelect'#7#21'LinuxDesktopBoxChange'#8'TabOrder'#2#0#4 ++ +'Text'#6#3'KDE'#0#0#5'TEdit'#8'LinuxCmd'#4'Left'#3#204#0#6'Height'#2#21#3'To' ++ +'p'#2'!'#5'Width'#3#194#0#8'OnChange'#7#14'LinuxCmdChange'#8'TabOrder'#2#1#4 ++ +'Text'#6#8'LinuxCmd'#0#0#0#6'TPanel'#8'MysqlBox'#4'Left'#2#17#6'Height'#2'a' ++ +#3'Top'#2'5'#5'Width'#3#196#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8 ++ +'TabOrder'#2#5#0#6'TLabel'#8'Label133'#4'Left'#3#18#1#6'Height'#2#15#3'Top'#2 ++ +'D'#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#8'Password'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#7'Label86'#4'Left'#2#16#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'j' ++ +#8'AutoSize'#8#7'Caption'#6#7'Userid:'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' ++ +'el85'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#2#28#5'Width'#2#23#7'Caption'#6#5 ++ +'Port:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label84'#4'Left'#3#178#0#6'Height' ++ +#2#14#3'Top'#2#28#5'Width'#2'8'#7'Caption'#6#10'Host Name:'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#7'Label77'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#28#5'Width'#2 ++ +'0'#7'Caption'#6#8'DB Name:'#11'ParentColor'#8#0#0#6'TLabel'#13'MysqlBoxLabe' ++ +'l'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#3#5'Width'#2'J'#7'Caption'#6#13'Mys' ++ +'qlBoxLabel'#11'ParentColor'#8#0#0#5'TEdit'#6'dbpass'#4'Left'#3'\'#1#6'Heigh' ++ +'t'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'EchoMode'#7#10'emPassword'#8'OnChange'#7 ++ +#12'dbpassChange'#12'PasswordChar'#6#1'*'#8'TabOrder'#2#0#4'Text'#6#6'dbpass' ++ +#0#0#5'TEdit'#6'dbuser'#4'Left'#2'}'#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd' ++ +#8'OnChange'#7#12'dbuserChange'#8'TabOrder'#2#1#4'Text'#6#6'dbuser'#0#0#5'TE' ++ +'dit'#6'dbhost'#4'Left'#3#250#0#6'Height'#2#21#3'Top'#2#24#5'Width'#2'A'#8'O' ++ +'nChange'#7#12'dbhostChange'#8'TabOrder'#2#2#4'Text'#6#6'dbhost'#0#0#9'TLong' ++ +'Edit'#6'dbport'#4'Left'#3#135#1#6'Height'#2#21#3'Top'#2#24#5'Width'#2'9'#8 ++ +'TabOrder'#2#3#8'OnChange'#7#12'dbportChange'#5'Value'#2#0#0#0#5'TEdit'#6'db' ++ +'name'#4'Left'#2'P'#6'Height'#2#21#3'Top'#2#24#5'Width'#2'A'#8'OnChange'#7#12 ++ +'dbnameChange'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5 ++ +'Page2'#12'ClientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#9'TGroupBox'#9'Gr' ++ +'oupBox3'#4'Left'#2#16#6'Height'#3#249#0#3'Top'#2#8#5'Width'#3#137#1#7'Capti' ++ +'on'#6#13'TCP/IP Server'#12'ClientHeight'#3#234#0#11'ClientWidth'#3#133#1#8 ++ +'TabOrder'#2#0#0#6'TLabel'#7'Label54'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|' ++ +#5'Width'#2'a'#7'Caption'#6#21'Server IP Interface :'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#7'Label55'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'I' ++ +#7'Caption'#6#16'Server IP Port :'#11'ParentColor'#8#0#0#9'TCheckBox'#11'Use' ++ +'IPserver'#4'Left'#2#16#6'Height'#2#21#3'Top'#2' '#5'Width'#2'o'#7'Caption'#6 ++ +#17'Use TCP/IP Server'#7'OnClick'#7#16'UseIPserverClick'#8'TabOrder'#2#0#0#0 ++ +#5'TEdit'#6'ipaddr'#4'Left'#3#144#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'd' ++ +#8'OnChange'#7#12'ipaddrChange'#8'TabOrder'#2#2#4'Text'#6#9'127.0.0.1'#0#0#5 ++ +'TEdit'#6'ipport'#4'Left'#3#144#0#6'Height'#2#21#3'Top'#3#164#0#5'Width'#2'd' ++ +#8'OnChange'#7#12'ipportChange'#8'TabOrder'#2#3#4'Text'#6#4'3292'#0#0#9'TChe' ++ +'ckBox'#9'keepalive'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'H'#5'Width'#3#160#0 ++ +#7'Caption'#6#28'Client Connection Keep Alive'#7'OnClick'#7#14'keepaliveClic' ++ +'k'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'C' ++ +'lientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#7'Label13'#4'Left' + +#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'V'#7'Caption'#6#17'Telescope Setti' +- +'ng'#11'ParentColor'#8#0#0#11'TRadioGroup'#15'TelescopeSelect'#4'Left'#2#8#6 +- +'Height'#2'A'#3'Top'#2' '#5'Width'#3#194#1#8'AutoFill'#9#7'Caption'#6#15'Tel' +- +'escopeSelect'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' +- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' +- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' +- +'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' +- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' +- +'tom'#27'ChildSizing.ControlsPerLine'#2#4#12'ClientHeight'#2'2'#11'ClientWid' +- +'th'#3#190#1#7'Columns'#2#4#13'Items.Strings'#1#6#4'INDI'#6#6'Manual'#6#10'C' +- +'DC plugin'#6#5'ASCOM'#0#7'OnClick'#7#20'TelescopeSelectClick'#8'TabOrder'#2 +- +#0#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3#220#1 +- +#11'ClientWidth'#3#228#1#0#6'TLabel'#7'Label14'#4'Left'#2#19#6'Height'#2#14#3 +- +'Top'#2#24#5'Width'#2'o'#7'Caption'#6#18'Language selection'#11'ParentColor' +- +#8#0#0#9'TComboBox'#12'LanguageList'#4'Left'#2#17#6'Height'#2#25#3'Top'#2'R' +- +#5'Width'#3#4#1#10'ItemHeight'#2#0#8'OnSelect'#7#18'LanguageListSelect'#5'St' +- +'yle'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#0#0#6'TPanel'#6'Panel1'#4'L' +- +'eft'#2#0#6'Height'#2'2'#3'Top'#3#226#1#5'Width'#3#234#1#5'Align'#7#8'alBott' +- +'om'#12'ClientHeight'#2'2'#11'ClientWidth'#3#234#1#8'TabOrder'#2#1#0#7'TButt' +- +'on'#7'Button1'#4'Left'#3#206#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'A' +- +'nchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Captio' +- +'n'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7 +- +'Button2'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' +- +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'A' +- +'pply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button' +- +'3'#4'Left'#3#136#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 +- +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption' +- +#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4 +- +'Left'#2'u'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 +- +'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2 +- +#3#0#0#0#0 ++ +'ng'#11'ParentColor'#8#0#0#6'TPanel'#10'ASCOMPanel'#4'Left'#2#8#6'Height'#3 ++ +'H'#1#3'Top'#2'e'#5'Width'#3#196#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3 ++ +#196#1#8'TabOrder'#2#4#0#6'TLabel'#10'ASCOMLabel'#4'Left'#2#21#6'Height'#3 ++ +#232#0#3'Top'#2#24#5'Width'#3#145#1#8'AutoSize'#8#7'Caption'#6#10'ASCOMLabel' ++ +#11'ParentColor'#8#8'WordWrap'#9#0#0#0#6'TPanel'#15'TelescopePlugin'#4'Left' ++ +#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientHeight'#3'H'#1#11 ++ +'ClientWidth'#3#194#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label155'#4'Left'#2#24#6 ++ +'Height'#2#14#3'Top'#2'.'#5'Width'#2'_'#7'Caption'#6#17'Telescope Plugin '#11 ++ +'ParentColor'#8#0#0#6'TLabel'#20'TelescopePluginLabel'#4'Left'#2#25#6'Height' ++ +#2#14#3'Top'#2#11#5'Width'#2'w'#7'Caption'#6#20'TelescopePluginLabel'#11'Par' ++ +'entColor'#8#0#0#9'TComboBox'#19'telescopepluginlist'#4'Left'#3#144#0#6'Heig' ++ +'ht'#2#31#3'Top'#2'*'#5'Width'#3#145#0#16'AutoCompleteText'#11#20'cbactSearc' ++ +'hAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#25'telescopepluginlistChange' ++ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#6'TPanel'#15'TelescopeM' ++ +'anual'#4'Left'#2#8#6'Height'#3'J'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientH' ++ +'eight'#3'J'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label7' ++ +#4'Left'#2#24#6'Height'#2'>'#3'Top'#2' '#5'Width'#3'i'#1#8'AutoSize'#8#7'Cap' ++ +'tion'#6#159'Set how the mount move on each axis when you turn the driving k' ++ +'nob.'#13#10'Then the Telescope button show you the turns you must do to go ' ++ ,'from one object to another.'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' ++ +#20'TelescopeManualLabel'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#6#5'Width'#2 ++ +'~'#7'Caption'#6#20'TelescopeManualLabel'#11'ParentColor'#8#0#0#11'TRadioGro' ++ +'up'#15'ManualMountType'#4'Left'#2#24#6'Height'#2')'#3'Top'#2']'#5'Width'#3 ++ +'i'#1#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopB' ++ +'ottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChild' ++ +'Resize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'C' ++ +'hildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVert' ++ +'ical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTo' ++ +'pToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'%'#11'Cli' ++ +'entWidth'#3'e'#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Equatorial'#6#8'Al' ++ +'t / Az'#0#7'OnClick'#7#20'ManualMountTypeClick'#8'TabOrder'#2#0#0#0#6'TPane' ++ +'l'#15'EquatorialMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Widt' ++ +'h'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#0 ++ +#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'X'#7 ++ +'Caption'#6#15'Right Ascension'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 ++ +'Left'#2#16#6'Height'#2#14#3'Top'#2']'#5'Width'#2'?'#7'Caption'#6#11'Declina' ++ +'tion'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#240#0#6'Height'#2 ++ +#14#3'Top'#2#16#5'Width'#2'@'#7'Caption'#6#12'turns / hour'#11'ParentColor'#8 ++ +#0#0#6'TLabel'#6'Label6'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width' ++ +#2'N'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7 ++ +'TurnsRa'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2#11#5'Width'#2'Q'#14'Parent' ++ +'ShowHint'#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsRaChange'#5'Value'#5#0#0#0 ++ +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#10'TFloatEdit'#8'TurnsDec'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2 ++ +'X'#5'Width'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#1#8'OnChange'#7#14'Turn' ++ +'sDecChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 ++ +#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsRa'#4'Left' ++ +#3#128#0#6'Height'#2#22#3'Top'#2'('#5'Width'#2'j'#7'Caption'#6#14'Revert RA ' ++ +'knob'#7'OnClick'#7#13'TurnsRaChange'#8'TabOrder'#2#2#0#0#9'TCheckBox'#13'Re' ++ +'vertTurnDec'#4'Left'#3#128#0#6'Height'#2#22#3'Top'#2'x'#5'Width'#2'r'#7'Cap' ++ +'tion'#6#15'Revert DEC knob'#7'OnClick'#7#14'TurnsDecChange'#8'TabOrder'#2#3 ++ +#0#0#0#6'TPanel'#10'AltAzMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0 ++ +#5'Width'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder' ++ +#2#2#0#6'TLabel'#6'Label8'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2 ++ +'-'#7'Caption'#6#7'Azimuth'#11'ParentColor'#8#0#0#6'TLabel'#6'Label9'#4'Left' ++ +#2#16#6'Height'#2#14#3'Top'#2']'#5'Width'#2'+'#7'Caption'#6#8'Altitude'#11'P' ++ +'arentColor'#8#0#0#6'TLabel'#7'Label10'#4'Left'#3#240#0#6'Height'#2#14#3'Top' ++ +#2#16#5'Width'#2'N'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#7'Label11'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'N' ++ +#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'Turn' ++ +'sAz'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2#11#5'Width'#2'Q'#14'ParentShow' ++ +'Hint'#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsAzChange'#5'Value'#5#0#0#0#0#0 ++ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0 ++ +#0#0#0#10'TFloatEdit'#8'TurnsAlt'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2'X' ++ +#5'Width'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#2#8'OnChange'#7#14'TurnsAl' ++ +'tChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 ++ +'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsAz'#4'Left'#3 ++ +#128#0#6'Height'#2#22#3'Top'#2'('#5'Width'#2'i'#7'Caption'#6#14'Revert Az kn' ++ +'ob'#7'OnClick'#7#13'TurnsAzChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#14'Reve' ++ +'rtTurnsAlt'#4'Left'#3#128#0#6'Height'#2#22#3'Top'#2'x'#5'Width'#2'j'#7'Capt' ++ +'ion'#6#15'Revert Alt knob'#7'OnClick'#7#14'TurnsAltChange'#8'TabOrder'#2#3#0 ++ +#0#0#0#6'TPanel'#4'INDI'#4'Left'#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3 ++ +#194#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#2#0#6'T' ++ +'Label'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#133#0 ++ +#7'Caption'#6#22'Control Panel command '#11'ParentColor'#8#0#0#6'TLabel'#8'L' ++ +'abel261'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#180#0#5'Width'#2'A'#7'Caption' ++ +#6#12'Device Port '#11'ParentColor'#8#0#0#6'TLabel'#8'Label260'#4'Left'#3#231 ++ +#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'S'#7'Caption'#6#14'Telescope type' ++ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label259'#4'Left'#3#231#0#6'Height'#2#14#3 ++ +'Top'#3#136#0#5'Width'#2'C'#7'Caption'#6#11'Driver name'#11'ParentColor'#8#0 ++ +#0#6'TLabel'#8'Label258'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'`' ++ +#7'Caption'#6#15'Server command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label130' ++ +#4'Left'#3#231#0#6'Height'#2#14#3'Top'#2#28#5'Width'#2'T'#7'Caption'#6#16'IN' ++ ,'DI server Port'#11'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#2#8#6'He' ++ +'ight'#2#14#3'Top'#2#28#5'Width'#2'\'#7'Caption'#6#17'INDI Server Host '#11 ++ +'ParentColor'#8#0#0#6'TLabel'#9'INDILabel'#4'Left'#2#8#6'Height'#2#14#3'Top' ++ +#2#7#5'Width'#2'5'#7'Caption'#6#9'INDILabel'#11'ParentColor'#8#0#0#5'TEdit'#8 ++ +'PanelCmd'#4'Left'#3#176#0#6'Height'#2#23#3'Top'#3#220#0#5'Width'#3#1#1#8'On' ++ +'Change'#7#14'PanelCmdChange'#8'TabOrder'#2#0#0#0#9'TComboBox'#8'IndiPort'#4 ++ +'Left'#2'x'#6'Height'#2#31#3'Top'#3#176#0#5'Width'#3#185#0#16'AutoCompleteTe' ++ +'xt'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#13'Items.Strings'#1#6#4 ++ +'COM1'#6#4'COM2'#6#4'COM3'#6#4'COM4'#6#4'COM5'#6#4'COM6'#6#4'COM7'#6#4'COM8' ++ +#0#8'OnSelect'#7#14'IndiPortChange'#5'Style'#7#14'csDropDownList'#8'TabOrder' ++ +#2#1#0#0#9'TComboBox'#7'IndiDev'#4'Left'#3'P'#1#6'Height'#2#31#3'Top'#2'd'#5 ++ +'Width'#2'd'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeigh' ++ +'t'#2#0#8'OnSelect'#7#13'IndiDevChange'#5'Style'#7#14'csDropDownList'#8'TabO' ++ +'rder'#2#2#0#0#5'TEdit'#10'IndiDriver'#4'Left'#3'P'#1#6'Height'#2#23#3'Top'#3 ++ +#132#0#5'Width'#2'd'#7'Enabled'#8#8'OnChange'#7#16'IndiDriverChange'#8'TabOr' ++ +'der'#2#3#0#0#5'TEdit'#13'IndiServerCmd'#4'Left'#2'x'#6'Height'#2#23#3'Top'#2 ++ +'d'#5'Width'#2'd'#8'OnChange'#7#19'IndiServerCmdChange'#8'TabOrder'#2#4#0#0#9 ++ +'TCheckBox'#13'IndiAutostart'#4'Left'#2#8#6'Height'#2#22#3'Top'#2'@'#5'Width' ++ +#3'B'#1#7'Caption'#6'9Automatically start a local server if not already runn' ++ +'ing'#7'OnClick'#7#18'IndiAutostartClick'#8'TabOrder'#2#5#0#0#5'TEdit'#14'In' ++ +'diServerPort'#4'Left'#3'P'#1#6'Height'#2#23#3'Top'#2#24#5'Width'#2'a'#8'OnC' ++ +'hange'#7#20'IndiServerPortChange'#8'TabOrder'#2#6#0#0#5'TEdit'#14'IndiServe' ++ +'rHost'#4'Left'#2'x'#6'Height'#2#23#3'Top'#2#24#5'Width'#2'd'#8'OnChange'#7 ++ +#20'IndiServerHostChange'#8'TabOrder'#2#7#0#0#0#11'TRadioGroup'#15'Telescope' ++ +'Select'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2' '#5'Width'#3#194#1#8'AutoFill' ++ +#9#7'Caption'#6#15'TelescopeSelect'#28'ChildSizing.LeftRightSpacing'#2#6#28 ++ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' ++ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' ++ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' ++ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' ++ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#4#12'ClientHei' ++ +'ght'#2'2'#11'ClientWidth'#3#190#1#7'Columns'#2#4#13'Items.Strings'#1#6#4'IN' ++ +'DI'#6#6'Manual'#6#10'CDC plugin'#6#5'ASCOM'#0#7'OnClick'#7#20'TelescopeSele' ++ +'ctClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4' ++ +#12'ClientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#7'Label14'#4'L' ++ +'eft'#2#19#6'Height'#2#14#3'Top'#2#24#5'Width'#2'o'#7'Caption'#6#18'Language' ++ +' selection'#11'ParentColor'#8#0#0#9'TComboBox'#12'LanguageList'#4'Left'#2#17 ++ +#6'Height'#2#25#3'Top'#2'R'#5'Width'#3#4#1#10'ItemHeight'#2#0#8'OnSelect'#7 ++ +#18'LanguageListSelect'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#0 ++ +#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#226#1#5'Width'#3 ++ +#234#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#234#1#8 ++ +'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#206#0#6'Height'#2#25#3'Top' ++ +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' ++ +'erBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrde' ++ +'r'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#12#5 ++ +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' ++ +'r'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0 ++ +#0#7'TButton'#7'Button3'#4'Left'#3#136#1#6'Height'#2#25#3'Top'#2#12#5'Width' ++ +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6 ++ +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7 ++ +'TButton'#7'Button4'#4'Left'#2'u'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7 ++ +'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Butt' ++ +'on4Click'#8'TabOrder'#2#3#0#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_config_time.lfm skychart_3.2_up/skychart/pu_config_time.lfm +--- skychart_3.2/skychart/pu_config_time.lfm 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_time.lfm 2011-03-09 15:18:57.111096546 +0100 +@@ -1,7 +1,7 @@ + object f_config_time: Tf_config_time +- Left = 542 ++ Left = 512 + Height = 564 +- Top = 0 ++ Top = 25 + Width = 474 + ActiveControl = MainPanel + BorderIcons = [biSystemMenu] +@@ -14,7 +14,7 @@ + OnCreate = FormCreate + OnDestroy = FormDestroy + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object MainPanel: TPanel + Left = 0 + Height = 514 +@@ -34,26 +34,25 @@ + ActivePage = Page1 + Align = alClient + Anchors = [akLeft, akRight, akBottom] +- ShowTabs = False + TabIndex = 0 + TabOrder = 0 + object Page1: TTabSheet + Caption = 'Time' +- ClientHeight = 510 +- ClientWidth = 470 ++ ClientHeight = 479 ++ ClientWidth = 468 + object Label142: TLabel + Left = 286 + Height = 14 + Top = 62 +- Width = 50 ++ Width = 48 + Caption = 'Seconds' + ParentColor = False + end + object CheckBox2: TCheckBox + Left = 40 +- Height = 21 ++ Height = 22 + Top = 56 +- Width = 133 ++ Width = 128 + Caption = 'Auto-refresh every ' + OnClick = CheckBox2Click + TabOrder = 1 +@@ -71,7 +70,7 @@ + Left = 8 + Height = 14 + Top = 41 +- Width = 59 ++ Width = 54 + Caption = 'DT - UT : ' + ParentColor = False + end +@@ -87,7 +86,7 @@ + Left = 142 + Height = 14 + Top = 41 +- Width = 50 ++ Width = 48 + Caption = 'Seconds' + ParentColor = False + end +@@ -95,22 +94,22 @@ + Left = 8 + Height = 14 + Top = 16 +- Width = 258 ++ Width = 246 + Caption = 'Dynamic Time difference with Universal Time' + ParentColor = False + end + object CheckBox4: TCheckBox + Left = 8 +- Height = 21 ++ Height = 22 + Top = 70 +- Width = 164 ++ Width = 160 + Caption = 'Use another DT-UT value' + OnClick = CheckBox4Click + TabOrder = 0 + end + object dt_ut: TLongEdit + Left = 246 +- Height = 21 ++ Height = 23 + Hint = '-99999999..99999999' + Top = 70 + Width = 105 +@@ -126,7 +125,7 @@ + end + object LongEdit2: TLongEdit + Left = 230 +- Height = 21 ++ Height = 23 + Hint = '10..86400' + Top = 56 + Width = 41 +@@ -150,7 +149,7 @@ + Left = 8 + Height = 14 + Top = 68 +- Width = 29 ++ Width = 28 + Caption = 'Time' + ParentColor = False + end +@@ -166,7 +165,7 @@ + Left = 195 + Height = 14 + Top = 52 +- Width = 9 ++ Width = 8 + Caption = 'S' + ParentColor = False + end +@@ -222,7 +221,7 @@ + Left = 267 + Height = 14 + Top = 70 +- Width = 40 ++ Width = 41 + Caption = 'tzLabel' + ParentColor = False + end +@@ -252,7 +251,7 @@ + end + object JDEdit: TFloatEdit + Left = 56 +- Height = 21 ++ Height = 23 + Top = 108 + Width = 131 + TabOrder = 1 +@@ -350,7 +349,7 @@ + end + object d_yearEdit: TEdit + Left = 56 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 47 + OnChange = DateChange +@@ -358,7 +357,7 @@ + end + object d_year: TUpDown + Left = 103 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 13 + Associate = d_yearEdit +@@ -371,7 +370,7 @@ + end + object d_monthEdit: TEdit + Left = 127 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 47 + OnChange = DateChange +@@ -379,7 +378,7 @@ + end + object d_month: TUpDown + Left = 174 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 13 + Associate = d_monthEdit +@@ -392,7 +391,7 @@ + end + object d_dayEdit: TEdit + Left = 195 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 47 + OnChange = DateChange +@@ -400,7 +399,7 @@ + end + object d_day: TUpDown + Left = 242 +- Height = 21 ++ Height = 23 + Top = 22 + Width = 13 + Associate = d_dayEdit +@@ -413,7 +412,7 @@ + end + object t_hourEdit: TEdit + Left = 56 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 47 + OnChange = TimeChange +@@ -421,7 +420,7 @@ + end + object t_hour: TUpDown + Left = 103 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 13 + Associate = t_hourEdit +@@ -434,7 +433,7 @@ + end + object t_minEdit: TEdit + Left = 127 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 47 + OnChange = TimeChange +@@ -442,7 +441,7 @@ + end + object t_min: TUpDown + Left = 174 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 13 + Associate = t_minEdit +@@ -455,7 +454,7 @@ + end + object t_sec: TUpDown + Left = 242 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 13 + Associate = t_secEdit +@@ -468,7 +467,7 @@ + end + object t_secEdit: TEdit + Left = 195 +- Height = 21 ++ Height = 23 + Top = 65 + Width = 47 + OnChange = TimeChange +@@ -477,9 +476,9 @@ + end + object CheckBox1: TCheckBox + Left = 40 +- Height = 21 ++ Height = 22 + Top = 24 +- Width = 120 ++ Width = 114 + Caption = 'Use system time' + OnClick = CheckBox1Click + TabOrder = 0 +@@ -497,8 +496,8 @@ + end + object Page2: TTabSheet + Caption = 'Simulation' +- ClientHeight = 510 +- ClientWidth = 470 ++ ClientHeight = 479 ++ ClientWidth = 468 + object stepreset: TSpeedButton + Left = 220 + Height = 25 +@@ -609,9 +608,10 @@ + 'Asteroids' + 'Comets' + ) +- ItemHeight = 19 ++ ItemHeight = 0 + OnItemClick = SimObjItemClick + TabOrder = 0 ++ TopIndex = -1 + Data = { + 0C000000000000000000000000000000 + } +diff -ur skychart_3.2/skychart/pu_config_time.lrs skychart_3.2_up/skychart/pu_config_time.lrs +--- skychart_3.2/skychart/pu_config_time.lrs 2010-09-27 17:44:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_config_time.lrs 2011-03-09 15:18:57.146092248 +0100 +@@ -1,179 +1,179 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_config_time','FORMDATA',[ +- 'TPF0'#14'Tf_config_time'#13'f_config_time'#4'Left'#3#30#2#6'Height'#3'4'#2#3 +- +'Top'#2#0#5'Width'#3#218#1#13'ActiveControl'#7#9'MainPanel'#11'BorderIcons' ++ 'TPF0'#14'Tf_config_time'#13'f_config_time'#4'Left'#3#0#2#6'Height'#3'4'#2#3 ++ +'Top'#2#25#5'Width'#3#218#1#13'ActiveControl'#7#9'MainPanel'#11'BorderIcons' + +#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7'Caption'#6#11'Da' + +'te / Time'#12'ClientHeight'#3'4'#2#11'ClientWidth'#3#218#1#11'Font.Height'#2 + +#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11 +- +'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel' +- +#9'MainPanel'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#5'Alig' +- +'n'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#2#2#11'Clien' +- +'tWidth'#3#218#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'Pag' +- +'eControl1'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#10'Activ' +- +'ePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7'akRight' +- +#8'akBottom'#0#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5 +- +'Page1'#7'Caption'#6#4'Time'#12'ClientHeight'#3#254#1#11'ClientWidth'#3#214#1 +- +#0#6'TLabel'#8'Label142'#4'Left'#3#30#1#6'Height'#2#14#3'Top'#2'>'#5'Width'#2 +- +'2'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox2'#4 +- +'Left'#2'('#6'Height'#2#21#3'Top'#2'8'#5'Width'#3#133#0#7'Caption'#6#19'Auto' +- +'-refresh every '#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#1#0#0#6'TPan' +- +'el'#6'Panel8'#4'Left'#2' '#6'Height'#3#128#0#3'Top'#3''''#1#5'Width'#3#161#1 +- +#12'ClientHeight'#3#128#0#11'ClientWidth'#3#161#1#8'TabOrder'#2#4#7'Visible' +- +#8#0#6'TLabel'#8'Label135'#4'Left'#2#8#6'Height'#2#14#3'Top'#2')'#5'Width'#2 +- +';'#7'Caption'#6#11'DT - UT : '#11'ParentColor'#8#0#0#6'TLabel'#6'Tdt_Ut'#4 +- +'Left'#2'U'#6'Height'#2#14#3'Top'#2')'#5'Width'#2#29#7'Caption'#6#4'0000'#11 +- +'ParentColor'#8#0#0#6'TLabel'#8'Label136'#4'Left'#3#142#0#6'Height'#2#14#3'T' +- +'op'#2')'#5'Width'#2'2'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#6'TLab' +- +'el'#8'Label150'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#16#5'Width'#3#2#1#7'Cap' +- +'tion'#6'+Dynamic Time difference with Universal Time'#11'ParentColor'#8#0#0 +- +#9'TCheckBox'#9'CheckBox4'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'F'#5'Width'#3 +- +#164#0#7'Caption'#6#23'Use another DT-UT value'#7'OnClick'#7#14'CheckBox4Cli' +- +'ck'#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'dt_ut'#4'Left'#3#246#0#6'Height'#2#21 +- +#4'Hint'#6#19'-99999999..99999999'#3'Top'#2'F'#5'Width'#2'i'#7'Enabled'#8#14 +- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'dt_utChang' +- +'e'#5'Value'#2#0#8'MinValue'#4#1#31#10#250#8'MaxValue'#4#255#224#245#5#0#0#0 +- +#9'TLongEdit'#9'LongEdit2'#4'Left'#3#230#0#6'Height'#2#21#4'Hint'#6#9'10..86' +- +'400'#3'Top'#2'8'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' +- +'r'#2#2#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#10#8'MinValue'#2#10#8'M' +- +'axValue'#4#128'Q'#1#0#0#0#6'TPanel'#6'Panel9'#4'Left'#2' '#6'Height'#3#160#0 +- +#3'Top'#2'W'#5'Width'#3#161#1#12'ClientHeight'#3#160#0#11'ClientWidth'#3#161 +- +#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label137'#4'Left'#2#8#6'Height'#2#14#3'Top' +- +#2'D'#5'Width'#2#29#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#8'L' +- +'abel139'#4'Left'#2#127#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#10#7'Caption'#6 +- +#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label141'#4'Left'#3#195#0#6'Height'#2 +- +#14#3'Top'#2'4'#5'Width'#2#9#7'Caption'#6#1'S'#11'ParentColor'#8#0#0#6'TLabe' +- +'l'#8'Label138'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#9#7'Capti' +- +'on'#6#1'H'#11'ParentColor'#8#0#0#6'TLabel'#8'Label143'#4'Left'#2'8'#6'Heigh' +- +'t'#2#14#3'Top'#2#6#5'Width'#2#8#7'Caption'#6#1'Y'#11'ParentColor'#8#0#0#6'T' +- +'Label'#8'Label144'#4'Left'#2#127#6'Height'#2#14#3'Top'#2#6#5'Width'#2#10#7 +- +'Caption'#6#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label145'#4'Left'#3#196#0 +- +#6'Height'#2#14#3'Top'#2#6#5'Width'#2#9#7'Caption'#6#1'D'#11'ParentColor'#8#0 +- +#0#6'TLabel'#8'Label140'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#25#5'Width'#2#27 +- +#7'Caption'#6#4'Date'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2#8#6 +- +'Height'#2#14#3'Top'#2'o'#5'Width'#2#16#7'Caption'#6#3'JD:'#11'ParentColor'#8 +- +#0#0#6'TLabel'#7'tzLabel'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2'F'#5'Width' +- +#2'('#7'Caption'#6#7'tzLabel'#11'ParentColor'#8#0#0#11'TRadioGroup'#4'ADBC'#4 +- +'Left'#3#11#1#6'Height'#2''''#3'Top'#2#6#5'Width'#3#137#0#8'AutoFill'#9#28'C' +- +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' +- +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' +- +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' +- +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' +- +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' +- +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'#'#11'ClientWidth'#3#133#0#7'Col' +- +'umns'#2#2#13'Items.Strings'#1#6#2'AD'#6#2'BC'#0#7'OnClick'#7#10'DateChange' +- +#8'TabOrder'#2#0#0#0#10'TFloatEdit'#6'JDEdit'#4'Left'#2'8'#6'Height'#2#21#3 +- +'Top'#2'l'#5'Width'#3#131#0#8'TabOrder'#2#1#8'OnChange'#7#12'JDEditChange'#5 +- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#6#8'MinValue'#5#0#0#0#0#0#0#0#0#0 +- ,#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#6'Digits'#2#6#11'NumericType'#7#7'ntFix' +- +'ed'#0#0#7'TButton'#7'Button5'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'|'#5'W' +- +'idth'#2'-'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'0h'#7'OnClick'#7 +- +#12'Button5Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#3'W'#1#6 +- +'Height'#2#25#3'Top'#2'|'#5'Width'#2'='#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#5'0h UT'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#7'TBu' +- +'tton'#7'BitBtn4'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'^'#5'Width'#3#137#0 +- +#7'Caption'#6#18'Actual system time'#7'OnClick'#7#12'BitBtn4Click'#8'TabOrde' +- +'r'#2#4#0#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#190#0#6'Height'#2#30#3'Top'#2'g' +- +#5'Width'#2' '#10'Glyph.Data'#10'z'#5#0#0'v'#5#0#0'BMv'#5#0#0#0#0#0#0'6'#0#0 +- +#0'('#0#0#0#21#0#0#0#21#0#0#0#1#0#24#0#0#0#0#0'@'#5#0#0#194#30#0#0#194#30#0#0 +- +#0#0#0#0#0#0#0#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192#192#192#192#192 ++ +'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPane' ++ +'l'#9'MainPanel'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#5'A' ++ +'lign'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#2#2#11'Cl' ++ +'ientWidth'#3#218#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12 ++ +'PageControl1'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#10'Ac' ++ +'tivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7'akRig' ++ +'ht'#8'akBottom'#0#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7 ++ +'Caption'#6#4'Time'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#212#1#0#6'TLa' ++ +'bel'#8'Label142'#4'Left'#3#30#1#6'Height'#2#14#3'Top'#2'>'#5'Width'#2'0'#7 ++ +'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox2'#4'Lef' ++ +'t'#2'('#6'Height'#2#22#3'Top'#2'8'#5'Width'#3#128#0#7'Caption'#6#19'Auto-re' ++ +'fresh every '#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#1#0#0#6'TPanel' ++ +#6'Panel8'#4'Left'#2' '#6'Height'#3#128#0#3'Top'#3''''#1#5'Width'#3#161#1#12 ++ +'ClientHeight'#3#128#0#11'ClientWidth'#3#161#1#8'TabOrder'#2#4#7'Visible'#8#0 ++ +#6'TLabel'#8'Label135'#4'Left'#2#8#6'Height'#2#14#3'Top'#2')'#5'Width'#2'6'#7 ++ +'Caption'#6#11'DT - UT : '#11'ParentColor'#8#0#0#6'TLabel'#6'Tdt_Ut'#4'Left' ++ +#2'U'#6'Height'#2#14#3'Top'#2')'#5'Width'#2#29#7'Caption'#6#4'0000'#11'Paren' ++ +'tColor'#8#0#0#6'TLabel'#8'Label136'#4'Left'#3#142#0#6'Height'#2#14#3'Top'#2 ++ +')'#5'Width'#2'0'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#6'TLabel'#8 ++ +'Label150'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#16#5'Width'#3#246#0#7'Caption' ++ +#6'+Dynamic Time difference with Universal Time'#11'ParentColor'#8#0#0#9'TCh' ++ +'eckBox'#9'CheckBox4'#4'Left'#2#8#6'Height'#2#22#3'Top'#2'F'#5'Width'#3#160#0 ++ +#7'Caption'#6#23'Use another DT-UT value'#7'OnClick'#7#14'CheckBox4Click'#8 ++ +'TabOrder'#2#0#0#0#9'TLongEdit'#5'dt_ut'#4'Left'#3#246#0#6'Height'#2#23#4'Hi' ++ +'nt'#6#19'-99999999..99999999'#3'Top'#2'F'#5'Width'#2'i'#7'Enabled'#8#14'Par' ++ +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'dt_utChange'#5 ++ +'Value'#2#0#8'MinValue'#4#1#31#10#250#8'MaxValue'#4#255#224#245#5#0#0#0#9'TL' ++ +'ongEdit'#9'LongEdit2'#4'Left'#3#230#0#6'Height'#2#23#4'Hint'#6#9'10..86400' ++ +#3'Top'#2'8'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 ++ +#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#10#8'MinValue'#2#10#8'MaxValue' ++ +#4#128'Q'#1#0#0#0#6'TPanel'#6'Panel9'#4'Left'#2' '#6'Height'#3#160#0#3'Top'#2 ++ +'W'#5'Width'#3#161#1#12'ClientHeight'#3#160#0#11'ClientWidth'#3#161#1#8'TabO' ++ +'rder'#2#3#0#6'TLabel'#8'Label137'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'D'#5 ++ +'Width'#2#28#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#8'Label139' ++ +#4'Left'#2#127#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#10#7'Caption'#6#1'M'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#8'Label141'#4'Left'#3#195#0#6'Height'#2#14#3'T' ++ +'op'#2'4'#5'Width'#2#8#7'Caption'#6#1'S'#11'ParentColor'#8#0#0#6'TLabel'#8'L' ++ +'abel138'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#9#7'Caption'#6#1 ++ +'H'#11'ParentColor'#8#0#0#6'TLabel'#8'Label143'#4'Left'#2'8'#6'Height'#2#14#3 ++ +'Top'#2#6#5'Width'#2#8#7'Caption'#6#1'Y'#11'ParentColor'#8#0#0#6'TLabel'#8'L' ++ +'abel144'#4'Left'#2#127#6'Height'#2#14#3'Top'#2#6#5'Width'#2#10#7'Caption'#6 ++ +#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label145'#4'Left'#3#196#0#6'Height'#2 ++ +#14#3'Top'#2#6#5'Width'#2#9#7'Caption'#6#1'D'#11'ParentColor'#8#0#0#6'TLabel' ++ +#8'Label140'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#25#5'Width'#2#27#7'Caption' ++ +#6#4'Date'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2 ++ +#14#3'Top'#2'o'#5'Width'#2#16#7'Caption'#6#3'JD:'#11'ParentColor'#8#0#0#6'TL' ++ +'abel'#7'tzLabel'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2'F'#5'Width'#2')'#7 ++ +'Caption'#6#7'tzLabel'#11'ParentColor'#8#0#0#11'TRadioGroup'#4'ADBC'#4'Left' ++ +#3#11#1#6'Height'#2''''#3'Top'#2#6#5'Width'#3#137#0#8'AutoFill'#9#28'ChildSi' ++ +'zing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSiz' ++ +'ing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarg' ++ +'eVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 ++ +#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' ++ +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' ++ +'olsPerLine'#2#2#12'ClientHeight'#2'#'#11'ClientWidth'#3#133#0#7'Columns'#2#2 ++ +#13'Items.Strings'#1#6#2'AD'#6#2'BC'#0#7'OnClick'#7#10'DateChange'#8'TabOrde' ++ +'r'#2#0#0#0#10'TFloatEdit'#6'JDEdit'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'l' ++ +#5'Width'#3#131#0#8'TabOrder'#2#1#8'OnChange'#7#12'JDEditChange'#5'Value'#5#0 ++ +#0#0#0#0#0#0#0#0#0#8'Decimals'#2#6#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' ++ ,'lue'#5#0#0#0#0#0#0#0#0#0#0#6'Digits'#2#6#11'NumericType'#7#7'ntFixed'#0#0#7 ++ +'TButton'#7'Button5'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'|'#5'Width'#2'-' ++ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'0h'#7'OnClick'#7#12'Button' ++ +'5Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#3'W'#1#6'Height'#2 ++ +#25#3'Top'#2'|'#5'Width'#2'='#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 ++ +#5'0h UT'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#7'TButton'#7'Bit' ++ +'Btn4'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'^'#5'Width'#3#137#0#7'Caption' ++ +#6#18'Actual system time'#7'OnClick'#7#12'BitBtn4Click'#8'TabOrder'#2#4#0#0#7 ++ +'TBitBtn'#7'BitBtn1'#4'Left'#3#190#0#6'Height'#2#30#3'Top'#2'g'#5'Width'#2' ' ++ +#10'Glyph.Data'#10'z'#5#0#0'v'#5#0#0'BMv'#5#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#21 ++ +#0#0#0#21#0#0#0#1#0#24#0#0#0#0#0'@'#5#0#0#194#30#0#0#194#30#0#0#0#0#0#0#0#0#0 ++ +#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#128#128#128#0 ++ +#192#192#192#192#192#192#192#192#192#0#192#192#192#128#128#128#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255 +- +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 +- +#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 +- +#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192 +- +#128#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 +- +#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192 +- +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192 +- +#192#192#0#192#192#192#128#128#128#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255 +- +#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255 +- +#192#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192 +- +#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255 +- +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 +- +#255#255#255#192#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255 +- +#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128 +- +#128#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#0#0#192#192#192#0 +- +#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255 +- +#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255 ++ +#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255 + +#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255 +- +#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192 +- +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192 ++ +#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 ++ +#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128 + +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255 ++ +#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255 ++ +#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192 ++ +#192#192#128#128#128#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#0 ++ +#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192 ++ +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#0#0 ++ +#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 ++ +#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255 ++ +#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 ++ +#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192#255 + +#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#0#0#0#192#192#192#0#192#192#192#128 ++ +#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192 ++ +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192 ++ +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192 ++ +#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192#255#255 ++ +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 ++ +#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 ++ +#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#192#192#192#192#192#192#0#0#0#192#192#192#0#192#192#192#128#128#128#0 + +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 + +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 +- +#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0 +- +#128#128#0#128#128#0#128#128#255#255#255#255#255#255#255#255#255#255#255#255 ++ +#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0#128#128#0 ++ +#128#128#0#128#128#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +- +#255#255#0#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128 ++ +#0#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0 + +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 + +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 +- ,#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#0#0#0#0#0#0#0#0 ++ ,#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#192#192#192#192#192#192#192 ++ +#0#0#0#0#0#0#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192 ++ +#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 ++ +#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 + +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 +- +#192#192#192#192#192#192#192#192#192#192#0#9'NumGlyphs'#2#0#7'OnClick'#7#12 +- +'BitBtn1Click'#8'TabOrder'#2#5#0#0#5'TEdit'#10'd_yearEdit'#4'Left'#2'8'#6'He' +- +'ight'#2#21#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8'TabOrde' +- +'r'#2#6#0#0#7'TUpDown'#6'd_year'#4'Left'#2'g'#6'Height'#2#21#3'Top'#2#22#5'W' +- +'idth'#2#13#9'Associate'#7#10'd_yearEdit'#3'Min'#2#0#3'Max'#3' N'#8'Position' +- +#2#0#8'TabOrder'#2#7#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#11'd_monthEdit'#4 +- +'Left'#2#127#6'Height'#2#21#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateC' +- +'hange'#8'TabOrder'#2#8#0#0#7'TUpDown'#7'd_month'#4'Left'#3#174#0#6'Height'#2 +- +#21#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#11'd_monthEdit'#3'Min'#2#1#3'Ma' +- +'x'#2#12#8'Position'#2#1#8'TabOrder'#2#9#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdi' +- +'t'#9'd_dayEdit'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2#22#5'Width'#2'/'#8 +- +'OnChange'#7#10'DateChange'#8'TabOrder'#2#10#0#0#7'TUpDown'#5'd_day'#4'Left' +- +#3#242#0#6'Height'#2#21#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#9'd_dayEdit' +- +#3'Min'#2#1#3'Max'#2#31#8'Position'#2#1#8'TabOrder'#2#11#9'Thousands'#8#4'Wr' +- +'ap'#8#0#0#5'TEdit'#10't_hourEdit'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2'A'#5 +- +'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#12#0#0#7'TUpDown'#6 +- +'t_hour'#4'Left'#2'g'#6'Height'#2#21#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7 +- +#10't_hourEdit'#3'Min'#2#0#3'Max'#2#23#8'Position'#2#0#8'TabOrder'#2#13#9'Th' +- +'ousands'#8#4'Wrap'#8#0#0#5'TEdit'#9't_minEdit'#4'Left'#2#127#6'Height'#2#21 +- +#3'Top'#2'A'#5'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#14#0#0 +- +#7'TUpDown'#5't_min'#4'Left'#3#174#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#2#13 +- +#9'Associate'#7#9't_minEdit'#3'Min'#2#0#3'Max'#2';'#8'Position'#2#0#8'TabOrd' +- +'er'#2#15#9'Thousands'#8#4'Wrap'#8#0#0#7'TUpDown'#5't_sec'#4'Left'#3#242#0#6 +- +'Height'#2#21#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#9't_secEdit'#3'Min'#2 +- +#0#3'Max'#2';'#8'Position'#2#0#8'TabOrder'#2#16#9'Thousands'#8#4'Wrap'#8#0#0 +- +#5'TEdit'#9't_secEdit'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#2 +- +'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#17#0#0#0#9'TCheckBox'#9'Check' +- +'Box1'#4'Left'#2'('#6'Height'#2#21#3'Top'#2#24#5'Width'#2'x'#7'Caption'#6#15 +- +'Use system time'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#0#0#0#7'TBut' +- +'ton'#7'Button4'#4'Left'#2' '#6'Height'#2#25#3'Top'#3#255#0#5'Width'#2'w'#25 +- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#12'More Options'#7'OnClick'#7#12 ++ +#192#192#192#192#192#192#192#192#0#9'NumGlyphs'#2#0#7'OnClick'#7#12'BitBtn1C' ++ +'lick'#8'TabOrder'#2#5#0#0#5'TEdit'#10'd_yearEdit'#4'Left'#2'8'#6'Height'#2 ++ +#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8'TabOrder'#2#6#0 ++ +#0#7'TUpDown'#6'd_year'#4'Left'#2'g'#6'Height'#2#23#3'Top'#2#22#5'Width'#2#13 ++ +#9'Associate'#7#10'd_yearEdit'#3'Min'#2#0#3'Max'#3' N'#8'Position'#2#0#8'Tab' ++ +'Order'#2#7#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#11'd_monthEdit'#4'Left'#2 ++ +#127#6'Height'#2#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8 ++ +'TabOrder'#2#8#0#0#7'TUpDown'#7'd_month'#4'Left'#3#174#0#6'Height'#2#23#3'To' ++ +'p'#2#22#5'Width'#2#13#9'Associate'#7#11'd_monthEdit'#3'Min'#2#1#3'Max'#2#12 ++ +#8'Position'#2#1#8'TabOrder'#2#9#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#9'd_d' ++ +'ayEdit'#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange' ++ +#7#10'DateChange'#8'TabOrder'#2#10#0#0#7'TUpDown'#5'd_day'#4'Left'#3#242#0#6 ++ +'Height'#2#23#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#9'd_dayEdit'#3'Min'#2 ++ +#1#3'Max'#2#31#8'Position'#2#1#8'TabOrder'#2#11#9'Thousands'#8#4'Wrap'#8#0#0 ++ +#5'TEdit'#10't_hourEdit'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'A'#5'Width'#2 ++ +'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#12#0#0#7'TUpDown'#6't_hour'#4 ++ +'Left'#2'g'#6'Height'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#10't_hou' ++ +'rEdit'#3'Min'#2#0#3'Max'#2#23#8'Position'#2#0#8'TabOrder'#2#13#9'Thousands' ++ +#8#4'Wrap'#8#0#0#5'TEdit'#9't_minEdit'#4'Left'#2#127#6'Height'#2#23#3'Top'#2 ++ +'A'#5'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#14#0#0#7'TUpDow' ++ +'n'#5't_min'#4'Left'#3#174#0#6'Height'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Asso' ++ +'ciate'#7#9't_minEdit'#3'Min'#2#0#3'Max'#2';'#8'Position'#2#0#8'TabOrder'#2 ++ +#15#9'Thousands'#8#4'Wrap'#8#0#0#7'TUpDown'#5't_sec'#4'Left'#3#242#0#6'Heigh' ++ +'t'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#9't_secEdit'#3'Min'#2#0#3 ++ +'Max'#2';'#8'Position'#2#0#8'TabOrder'#2#16#9'Thousands'#8#4'Wrap'#8#0#0#5'T' ++ +'Edit'#9't_secEdit'#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2'A'#5'Width'#2'/' ++ +#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#17#0#0#0#9'TCheckBox'#9'CheckBox' ++ +'1'#4'Left'#2'('#6'Height'#2#22#3'Top'#2#24#5'Width'#2'r'#7'Caption'#6#15'Us' ++ +'e system time'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#0#0#0#7'TButto' ++ +'n'#7'Button4'#4'Left'#2' '#6'Height'#2#25#3'Top'#3#255#0#5'Width'#2'w'#25'B' ++ +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#12'More Options'#7'OnClick'#7#12 + +'Button4Click'#8'TabOrder'#2#5#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#10'S' +- +'imulation'#12'ClientHeight'#3#254#1#11'ClientWidth'#3#214#1#0#12'TSpeedButt' ++ +'imulation'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#212#1#0#12'TSpeedButt' + +'on'#9'stepreset'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#213#0#5'Width'#2'Q' + +#7'Caption'#6#6'Reset '#5'Color'#7#9'clBtnFace'#6'Layout'#7#10'blGlyphTop'#9 + +'NumGlyphs'#2#2#7'OnClick'#7#14'stepresetClick'#0#0#6'TLabel'#8'Label178'#4 +@@ -201,55 +201,55 @@ + +#8'TabOrder'#2#4#5'Value'#2#1#0#0#13'TCheckListBox'#6'SimObj'#4'Left'#2#6#6 + +'Height'#3#215#0#3'Top'#2#23#5'Width'#3#190#0#13'Items.Strings'#1#6#3'Sun'#6 + +#8'Mercury '#6#5'Venus'#6#4'Moon'#6#4'Mars'#6#7'Jupiter'#6#6'Saturn'#6#6'Ura' +- +'nus'#6#7'Neptune'#6#5'Pluto'#6#9'Asteroids'#6#6'Comets'#0#10'ItemHeight'#2 +- +#19#11'OnItemClick'#7#15'SimObjItemClick'#8'TabOrder'#2#0#4'Data'#10#16#0#0#0 +- +#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'TButton'#6'AllSim'#4'Left'#3#220#0#6 +- +'Height'#2#25#3'Top'#2'v'#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 +- +'Caption'#6#3'All'#7'OnClick'#7#11'AllSimClick'#8'TabOrder'#2#1#0#0#7'TButto' +- +'n'#5'NoSim'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'K'#25 +- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'None'#7'OnClick'#7#10'NoSimCl' +- +'ick'#8'TabOrder'#2#2#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#8#6'Heig' +- +'ht'#2'H'#3'Top'#3#22#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Show ' +- +'Labels'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacin' +- +'g'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 ++ +'nus'#6#7'Neptune'#6#5'Pluto'#6#9'Asteroids'#6#6'Comets'#0#10'ItemHeight'#2#0 ++ +#11'OnItemClick'#7#15'SimObjItemClick'#8'TabOrder'#2#0#8'TopIndex'#2#255#4'D' ++ +'ata'#10#16#0#0#0#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'TButton'#6'AllSim'#4 ++ +'Left'#3#220#0#6'Height'#2#25#3'Top'#2'v'#5'Width'#2'K'#25'BorderSpacing.Inn' ++ +'erBorder'#2#4#7'Caption'#6#3'All'#7'OnClick'#7#11'AllSimClick'#8'TabOrder'#2 ++ +#1#0#0#7'TButton'#5'NoSim'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#166#0#5'W' ++ +'idth'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'None'#7'OnClick' ++ +#7#10'NoSimClick'#8'TabOrder'#2#2#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left' ++ +#2#8#6'Height'#2'H'#3'Top'#3#22#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6 ++ +#11'Show Labels'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBott' ++ +'omSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildRes' ++ +'ize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'Chil' ++ +'dSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertica' ++ +'l'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopTo' ++ +'Bottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'9'#11'Client' ++ +'Width'#3#178#1#7'Columns'#2#3#13'Items.Strings'#1#6#14'Every position'#6#10 ++ +'One of two'#6#12'One of three'#6#14'Only the first'#6#13'Only the last'#6#4 ++ +'None'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#7#0#0#11'TCheckGrou' ++ +'p'#11'CheckGroup1'#4'Left'#2#8#6'Height'#2'0'#3'Top'#3'f'#1#5'Width'#3#182#1 ++ +#8'AutoFill'#9#7'Caption'#6#10'Label Text'#28'ChildSizing.LeftRightSpacing'#2 ++ +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 ++ +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' ++ +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' ++ +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 ++ +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#7'Column' ++ +'s'#2#3#13'Items.Strings'#1#6#11'Object Name'#6#12'Current Date'#6#9'Magnitu' ++ +'de'#0#11'OnItemClick'#7#20'CheckGroup1ItemClick'#8'TabOrder'#2#8#4'Data'#10 ++ +#7#0#0#0#3#0#0#0#2#2#2#0#0#11'TCheckGroup'#11'CheckGroup2'#4'Left'#2#6#6'Hei' ++ +'ght'#2'0'#3'Top'#3#158#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Dat' ++ +'e Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpac' ++ +'ing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 + +'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.' + +'ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14 + +'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom' +- +#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'9'#11'ClientWidth'#3 +- +#178#1#7'Columns'#2#3#13'Items.Strings'#1#6#14'Every position'#6#10'One of t' +- +'wo'#6#12'One of three'#6#14'Only the first'#6#13'Only the last'#6#4'None'#0 +- +#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#7#0#0#11'TCheckGroup'#11'Ch' +- +'eckGroup1'#4'Left'#2#8#6'Height'#2'0'#3'Top'#3'f'#1#5'Width'#3#182#1#8'Auto' +- +'Fill'#9#7'Caption'#6#10'Label Text'#28'ChildSizing.LeftRightSpacing'#2#6#28 +- +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' +- +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' +- +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' +- +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' +- +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#7'Columns'#2 +- +#3#13'Items.Strings'#1#6#11'Object Name'#6#12'Current Date'#6#9'Magnitude'#0 +- +#11'OnItemClick'#7#20'CheckGroup1ItemClick'#8'TabOrder'#2#8#4'Data'#10#7#0#0 +- +#0#3#0#0#0#2#2#2#0#0#11'TCheckGroup'#11'CheckGroup2'#4'Left'#2#6#6'Height'#2 +- +'0'#3'Top'#3#158#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Date Forma' +- +'t'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6 +- +#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSi' +- +'zing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkH' +- +'orizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScal' +- +'eChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'Chil' +- +'dSizing.ControlsPerLine'#2#6#7'Columns'#2#6#13'Items.Strings'#1#6#4'Year'#6 +- +#5'Month'#6#3'Day'#6#4'Hour'#6#6'Minute'#6#6'Second'#0#11'OnItemClick'#7#20 +- +'CheckGroup2ItemClick'#8'TabOrder'#2#9#4'Data'#10#10#0#0#0#6#0#0#0#2#2#2#2#2 +- +#2#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#2#2#5'W' +- +'idth'#3#218#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3 +- +#218#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'Height'#2#25 +- +#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpac' +- +'ing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8 +- +'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#24#1#6'Height'#2#25#3'Top' +- +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' +- +'erBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrde' +- +'r'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'x'#1#6'Height'#2#25#3'Top'#2#12#5 +- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' +- +'r'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2 +- +#2#0#0#7'TButton'#7'Button7'#4'Left'#2'X'#6'Height'#2#25#3'Top'#2#12#5'Width' +- +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7 +- +#12'Button7Click'#8'TabOrder'#2#3#0#0#0#0 ++ +#27'ChildSizing.ControlsPerLine'#2#6#7'Columns'#2#6#13'Items.Strings'#1#6#4 ++ +'Year'#6#5'Month'#6#3'Day'#6#4'Hour'#6#6'Minute'#6#6'Second'#0#11'OnItemClic' ++ +'k'#7#20'CheckGroup2ItemClick'#8'TabOrder'#2#9#4'Data'#10#10#0#0#0#6#0#0#0#2 ++ +#2#2#2#2#2#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3 ++ +#2#2#5'Width'#3#218#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'Client' ++ +'Width'#3#218#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'He' ++ +'ight'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25 ++ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResu' ++ +'lt'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#24#1#6'Height'#2 ++ +#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderS' ++ +'pacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click' ++ +#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'x'#1#6'Height'#2#25#3'T' ++ +'op'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing' ++ +'.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8 ++ +'TabOrder'#2#2#0#0#7'TButton'#7'Button7'#4'Left'#2'X'#6'Height'#2#25#3'Top'#2 ++ +#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7 ++ +'OnClick'#7#12'Button7Click'#8'TabOrder'#2#3#0#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_detail.lfm skychart_3.2_up/skychart/pu_detail.lfm +--- skychart_3.2/skychart/pu_detail.lfm 2010-09-22 21:53:45.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_detail.lfm 2011-03-09 15:18:57.108096914 +0100 +@@ -1,7 +1,7 @@ + object f_detail: Tf_detail +- Left = 666 ++ Left = 618 + Height = 471 +- Top = 112 ++ Top = 111 + Width = 398 + ActiveControl = Panel1 + BorderStyle = bsSizeToolWin +@@ -11,7 +11,7 @@ + Font.Height = -11 + OnCreate = FormCreate + OnShow = FormShow +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object Panel1: TPanel + Left = 0 + Height = 50 +@@ -69,7 +69,6 @@ + PrintSettings.MarginTop = 0.5 + PrintSettings.MarginRight = 0.5 + PrintSettings.MarginBottom = 0.5 +- TabOrder = 1 + end + object ActionList1: TActionList + left = 128 +diff -ur skychart_3.2/skychart/pu_detail.lrs skychart_3.2_up/skychart/pu_detail.lrs +--- skychart_3.2/skychart/pu_detail.lrs 2010-09-22 21:53:45.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_detail.lrs 2011-03-09 15:18:57.144092494 +0100 +@@ -1,34 +1,33 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_detail','FORMDATA',[ +- 'TPF0'#9'Tf_detail'#8'f_detail'#4'Left'#3#154#2#6'Height'#3#215#1#3'Top'#2'p' +- +#5'Width'#3#142#1#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#13'bsSizeT' +- +'oolWin'#7'Caption'#6#7'Details'#12'ClientHeight'#3#215#1#11'ClientWidth'#3 +- +#142#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' +- +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height' +- +#2'2'#3'Top'#2#0#5'Width'#3#142#1#5'Align'#7#5'alTop'#12'ClientHeight'#2'2' +- +#11'ClientWidth'#3#142#1#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Bu' +- +'tton1'#4'Left'#3#10#1#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpac' +- +'ing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Close'#7'OnClick'#7#12'Butt' +- +'on1Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#2#8#6'Height'#2 +- +#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +- +#13'Center Object'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#7'TButt' +- +'on'#7'Button3'#4'Left'#3#138#0#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'B' +- +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Neighbor'#7'OnClick'#7#12'Butt' +- +'on3Click'#8'TabOrder'#2#1#0#0#0#12'TIpHtmlPanel'#12'IpHtmlPanel1'#4'Left'#2 +- +#0#6'Height'#3#165#1#3'Top'#2'2'#5'Width'#3#142#1#5'Align'#7#8'alClient'#13 +- +'FixedTypeface'#6#5'fixed'#15'DefaultTypeFace'#6#4'sans'#15'DefaultFontSize' +- +#2#8#10'FlagErrors'#8#9'PopupMenu'#7#10'PopupMenu1'#24'PrintSettings.MarginL' +- +'eft'#5#0#0#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0 +- +#128#254'?'#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'Prin' +- +'tSettings.MarginBottom'#5#0#0#0#0#0#0#0#128#254'?'#8'TabOrder'#2#1#0#0#11'T' +- +'ActionList'#11'ActionList1'#4'left'#3#128#0#3'top'#3#144#0#0#7'TAction'#9'S' +- +'electAll'#7'Caption'#6#9'SelectAll'#9'OnExecute'#7#16'SelectAllExecute'#8'S' +- +'hortCut'#3'A@'#0#0#7'TAction'#4'Copy'#7'Caption'#6#4'Copy'#9'OnExecute'#7#11 +- +'CopyExecute'#8'ShortCut'#3'C@'#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#2 +- +'H'#3'top'#3#144#0#0#9'TMenuItem'#10'SelectAll1'#6'Action'#7#9'SelectAll'#7 +- +'OnClick'#7#16'SelectAllExecute'#0#0#9'TMenuItem'#5'Copy1'#6'Action'#7#4'Cop' +- +'y'#7'OnClick'#7#11'CopyExecute'#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'In' +- +'terval'#2'd'#7'OnTimer'#7#11'Timer1Timer'#4'left'#3#207#0#3'top'#3#149#0#0#0 +- +#0 ++ 'TPF0'#9'Tf_detail'#8'f_detail'#4'Left'#3'j'#2#6'Height'#3#215#1#3'Top'#2'o'#5 ++ +'Width'#3#142#1#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#13'bsSizeToo' ++ +'lWin'#7'Caption'#6#7'Details'#12'ClientHeight'#3#215#1#11'ClientWidth'#3#142 ++ +#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow' ++ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2 ++ +'2'#3'Top'#2#0#5'Width'#3#142#1#5'Align'#7#5'alTop'#12'ClientHeight'#2'2'#11 ++ +'ClientWidth'#3#142#1#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Butto' ++ +'n1'#4'Left'#3#10#1#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing' ++ +'.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Close'#7'OnClick'#7#12'Button1' ++ +'Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#2#8#6'Height'#2#31 ++ +#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13 ++ +'Center Object'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#7'TButton' ++ +#7'Button3'#4'Left'#3#138#0#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'Borde' ++ +'rSpacing.InnerBorder'#2#4#7'Caption'#6#8'Neighbor'#7'OnClick'#7#12'Button3C' ++ +'lick'#8'TabOrder'#2#1#0#0#0#12'TIpHtmlPanel'#12'IpHtmlPanel1'#4'Left'#2#0#6 ++ +'Height'#3#165#1#3'Top'#2'2'#5'Width'#3#142#1#5'Align'#7#8'alClient'#13'Fixe' ++ +'dTypeface'#6#5'fixed'#15'DefaultTypeFace'#6#4'sans'#15'DefaultFontSize'#2#8 ++ +#10'FlagErrors'#8#9'PopupMenu'#7#10'PopupMenu1'#24'PrintSettings.MarginLeft' ++ +#5#0#0#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0#128 ++ +#254'?'#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'PrintSet' ++ +'tings.MarginBottom'#5#0#0#0#0#0#0#0#128#254'?'#0#0#11'TActionList'#11'Actio' ++ +'nList1'#4'left'#3#128#0#3'top'#3#144#0#0#7'TAction'#9'SelectAll'#7'Caption' ++ +#6#9'SelectAll'#9'OnExecute'#7#16'SelectAllExecute'#8'ShortCut'#3'A@'#0#0#7 ++ +'TAction'#4'Copy'#7'Caption'#6#4'Copy'#9'OnExecute'#7#11'CopyExecute'#8'Shor' ++ +'tCut'#3'C@'#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#2'H'#3'top'#3#144#0 ++ +#0#9'TMenuItem'#10'SelectAll1'#6'Action'#7#9'SelectAll'#7'OnClick'#7#16'Sele' ++ +'ctAllExecute'#0#0#9'TMenuItem'#5'Copy1'#6'Action'#7#4'Copy'#7'OnClick'#7#11 ++ +'CopyExecute'#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#2'd'#7'OnTi' ++ +'mer'#7#11'Timer1Timer'#4'left'#3#207#0#3'top'#3#149#0#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_getdss.lfm skychart_3.2_up/skychart/pu_getdss.lfm +--- skychart_3.2/skychart/pu_getdss.lfm 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_getdss.lfm 2011-03-09 15:18:57.142092740 +0100 +@@ -1,5 +1,5 @@ + object f_getdss: Tf_getdss +- Left = 331 ++ Left = 350 + Height = 308 + Top = 137 + Width = 420 +@@ -13,10 +13,10 @@ + FormStyle = fsStayOnTop + OnCreate = FormCreate + OnDestroy = FormDestroy +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object Label1: TLabel + Left = 12 +- Height = 13 ++ Height = 16 + Top = 8 + Width = 37 + Caption = 'Label1' +@@ -40,7 +40,6 @@ + PrintSettings.MarginTop = 0.5 + PrintSettings.MarginRight = 0.5 + PrintSettings.MarginBottom = 0.5 +- TabOrder = 3 + Visible = False + end + object ListBox1: TListBox +diff -ur skychart_3.2/skychart/pu_getdss.lrs skychart_3.2_up/skychart/pu_getdss.lrs +--- skychart_3.2/skychart/pu_getdss.lrs 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_getdss.lrs 2011-03-09 15:18:57.110096669 +0100 +@@ -1,30 +1,30 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_getdss','FORMDATA',[ +- 'TPF0'#9'Tf_getdss'#8'f_getdss'#4'Left'#3'K'#1#6'Height'#3'4'#1#3'Top'#3#137#0 ++ 'TPF0'#9'Tf_getdss'#8'f_getdss'#4'Left'#3'^'#1#6'Height'#3'4'#1#3'Top'#3#137#0 + +#5'Width'#3#164#1#13'ActiveControl'#7#8'ListBox1'#11'BorderStyle'#7#12'bsToo' + +'lWindow'#7'Caption'#6#24'List of available plates'#12'ClientHeight'#3'4'#1 + +#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Ser' + +'if'#9'FormStyle'#7#11'fsStayOnTop'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy' +- +#7#11'FormDestroy'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2 +- +#12#6'Height'#2#13#3'Top'#2#8#5'Width'#2'%'#7'Caption'#6#6'Label1'#12'Font.C' +- +'harSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier' ++ +#7#11'FormDestroy'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TLabel'#6'Label1'#4'Left' ++ +#2#12#6'Height'#2#16#3'Top'#2#8#5'Width'#2'%'#7'Caption'#6#6'Label1'#12'Font' ++ +'.CharSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier' + +#10'Font.Pitch'#7#7'fpFixed'#11'ParentColor'#8#10'ParentFont'#8#0#0#12'TIpHt' + +'mlPanel'#12'IpHtmlPanel1'#4'Left'#2#9#6'Height'#3#248#0#3'Top'#2#24#5'Width' + +#3#147#1#13'FixedTypeface'#6#11'Courier New'#15'DefaultTypeFace'#6#7'default' + +#15'DefaultFontSize'#2#12#10'FlagErrors'#8#24'PrintSettings.MarginLeft'#5#0#0 + +#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0#128#254'?' + +#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'PrintSettings.M' +- +'arginBottom'#5#0#0#0#0#0#0#0#128#254'?'#8'TabOrder'#2#3#7'Visible'#8#0#0#8 +- +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#230#0#3'Top'#2' '#5'Width'#3 +- +#145#1#12'Font.CharSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name' +- +#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#14'IntegralHeight'#9#10'ItemHeight' +- +#2#0#10'ParentFont'#8#8'TabOrder'#2#0#8'TopIndex'#2#255#0#0#7'TBitBtn'#7'Bit' +- +'Btn1'#4'Left'#2'`'#6'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpac' +- +'ing.InnerBorder'#2#2#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#9 +- +'NumGlyphs'#2#0#8'TabOrder'#2#1#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#206#0#6 +- +'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#2#6 +- +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'Tab' +- +'Order'#2#2#0#0#15'TDownloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12 +- +'FtpFwPassive'#9#15'ConfirmDownload'#9#4'left'#3#8#1#3'top'#2#16#0#0#0 ++ +'arginBottom'#5#0#0#0#0#0#0#0#128#254'?'#7'Visible'#8#0#0#8'TListBox'#8'List' ++ +'Box1'#4'Left'#2#8#6'Height'#3#230#0#3'Top'#2' '#5'Width'#3#145#1#12'Font.Ch' ++ +'arSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier'#10 ++ +'Font.Pitch'#7#7'fpFixed'#14'IntegralHeight'#9#10'ItemHeight'#2#0#10'ParentF' ++ +'ont'#8#8'TabOrder'#2#0#8'TopIndex'#2#255#0#0#7'TBitBtn'#7'BitBtn1'#4'Left'#2 ++ +'`'#6'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder' ++ +#2#2#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#9'NumGlyphs'#2#0#8 ++ +'TabOrder'#2#1#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#206#0#6'Height'#2#25#3'To' ++ +'p'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#2#6'Cancel'#9#7'Cap' ++ +'tion'#6#6'Cancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#2#0#0 ++ +#15'TDownloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9 ++ +#15'ConfirmDownload'#9#4'left'#3#8#1#3'top'#2#16#0#0#0 + ]); +diff -ur skychart_3.2/skychart/pu_info.lfm skychart_3.2_up/skychart/pu_info.lfm +--- skychart_3.2/skychart/pu_info.lfm 2010-10-01 12:41:22.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_info.lfm 2011-03-09 15:18:57.142092740 +0100 +@@ -1,7 +1,7 @@ + object f_info: Tf_info +- Left = 426 ++ Left = 269 + Height = 498 +- Top = 101 ++ Top = 100 + Width = 718 + ActiveControl = TitlePanel + BorderStyle = bsSizeToolWin +@@ -13,7 +13,7 @@ + OnCreate = FormCreate + OnShow = FormShow + Position = poScreenCenter +- LCLVersion = '0.9.29' ++ LCLVersion = '0.9.28.2' + object Panel1: TPanel + Left = 0 + Height = 27 +@@ -113,10 +113,10 @@ + FullRepaint = False + TabOrder = 1 + object serverinfo: TLabel +- Left = 536 +- Height = 1 ++ Left = 535 ++ Height = 2 + Top = 6 +- Width = 1 ++ Width = 2 + Alignment = taRightJustify + Anchors = [akTop, akRight] + ParentColor = False +@@ -133,9 +133,9 @@ + end + object CheckBox1: TCheckBox + Left = 104 +- Height = 21 ++ Height = 22 + Top = 2 +- Width = 85 ++ Width = 91 + Caption = 'AutoRefresh' + Checked = True + OnClick = CheckBox1Click +@@ -191,9 +191,8 @@ + PopupMenu = PopupMenu2 + TabOrder = 1 + OnDblClick = Memo1DblClick +- BookMarkOptions.Xoffset = -18 +- Gutter.Visible = False +- Gutter.Width = 57 ++ BookMarkOptions.OnChange = nil ++ Gutter.Width = 0 + Gutter.MouseActions = < + item + Shift = [] +@@ -217,351 +216,7 @@ + Option = 0 + Priority = 0 + end> +- RightGutter.Width = 0 +- RightGutter.MouseActions = < +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 13 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbRight +- ClickCount = ccSingle +- ClickDir = cdUp +- Command = 12 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end> +- Keystrokes = < +- item +- Command = ecUp +- ShortCut = 38 +- end +- item +- Command = ecSelUp +- ShortCut = 8230 +- end +- item +- Command = ecScrollUp +- ShortCut = 16422 +- end +- item +- Command = ecDown +- ShortCut = 40 +- end +- item +- Command = ecSelDown +- ShortCut = 8232 +- end +- item +- Command = ecScrollDown +- ShortCut = 16424 +- end +- item +- Command = ecLeft +- ShortCut = 37 +- end +- item +- Command = ecSelLeft +- ShortCut = 8229 +- end +- item +- Command = ecWordLeft +- ShortCut = 16421 +- end +- item +- Command = ecSelWordLeft +- ShortCut = 24613 +- end +- item +- Command = ecRight +- ShortCut = 39 +- end +- item +- Command = ecSelRight +- ShortCut = 8231 +- end +- item +- Command = ecWordRight +- ShortCut = 16423 +- end +- item +- Command = ecSelWordRight +- ShortCut = 24615 +- end +- item +- Command = ecPageDown +- ShortCut = 34 +- end +- item +- Command = ecSelPageDown +- ShortCut = 8226 +- end +- item +- Command = ecPageBottom +- ShortCut = 16418 +- end +- item +- Command = ecSelPageBottom +- ShortCut = 24610 +- end +- item +- Command = ecPageUp +- ShortCut = 33 +- end +- item +- Command = ecSelPageUp +- ShortCut = 8225 +- end +- item +- Command = ecPageTop +- ShortCut = 16417 +- end +- item +- Command = ecSelPageTop +- ShortCut = 24609 +- end +- item +- Command = ecLineStart +- ShortCut = 36 +- end +- item +- Command = ecSelLineStart +- ShortCut = 8228 +- end +- item +- Command = ecEditorTop +- ShortCut = 16420 +- end +- item +- Command = ecSelEditorTop +- ShortCut = 24612 +- end +- item +- Command = ecLineEnd +- ShortCut = 35 +- end +- item +- Command = ecSelLineEnd +- ShortCut = 8227 +- end +- item +- Command = ecEditorBottom +- ShortCut = 16419 +- end +- item +- Command = ecSelEditorBottom +- ShortCut = 24611 +- end +- item +- Command = ecToggleMode +- ShortCut = 45 +- end +- item +- Command = ecCopy +- ShortCut = 16429 +- end +- item +- Command = ecPaste +- ShortCut = 8237 +- end +- item +- Command = ecDeleteChar +- ShortCut = 46 +- end +- item +- Command = ecCut +- ShortCut = 8238 +- end +- item +- Command = ecDeleteLastChar +- ShortCut = 8 +- end +- item +- Command = ecDeleteLastChar +- ShortCut = 8200 +- end +- item +- Command = ecDeleteLastWord +- ShortCut = 16392 +- end +- item +- Command = ecUndo +- ShortCut = 32776 +- end +- item +- Command = ecRedo +- ShortCut = 40968 +- end +- item +- Command = ecLineBreak +- ShortCut = 13 +- end +- item +- Command = ecSelectAll +- ShortCut = 16449 +- end +- item +- Command = ecCopy +- ShortCut = 16451 +- end +- item +- Command = ecBlockIndent +- ShortCut = 24649 +- end +- item +- Command = ecLineBreak +- ShortCut = 16461 +- end +- item +- Command = ecInsertLine +- ShortCut = 16462 +- end +- item +- Command = ecDeleteWord +- ShortCut = 16468 +- end +- item +- Command = ecBlockUnindent +- ShortCut = 24661 +- end +- item +- Command = ecPaste +- ShortCut = 16470 +- end +- item +- Command = ecCut +- ShortCut = 16472 +- end +- item +- Command = ecDeleteLine +- ShortCut = 16473 +- end +- item +- Command = ecDeleteEOL +- ShortCut = 24665 +- end +- item +- Command = ecUndo +- ShortCut = 16474 +- end +- item +- Command = ecRedo +- ShortCut = 24666 +- end +- item +- Command = ecGotoMarker0 +- ShortCut = 16432 +- end +- item +- Command = ecGotoMarker1 +- ShortCut = 16433 +- end +- item +- Command = ecGotoMarker2 +- ShortCut = 16434 +- end +- item +- Command = ecGotoMarker3 +- ShortCut = 16435 +- end +- item +- Command = ecGotoMarker4 +- ShortCut = 16436 +- end +- item +- Command = ecGotoMarker5 +- ShortCut = 16437 +- end +- item +- Command = ecGotoMarker6 +- ShortCut = 16438 +- end +- item +- Command = ecGotoMarker7 +- ShortCut = 16439 +- end +- item +- Command = ecGotoMarker8 +- ShortCut = 16440 +- end +- item +- Command = ecGotoMarker9 +- ShortCut = 16441 +- end +- item +- Command = ecSetMarker0 +- ShortCut = 24624 +- end +- item +- Command = ecSetMarker1 +- ShortCut = 24625 +- end +- item +- Command = ecSetMarker2 +- ShortCut = 24626 +- end +- item +- Command = ecSetMarker3 +- ShortCut = 24627 +- end +- item +- Command = ecSetMarker4 +- ShortCut = 24628 +- end +- item +- Command = ecSetMarker5 +- ShortCut = 24629 +- end +- item +- Command = ecSetMarker6 +- ShortCut = 24630 +- end +- item +- Command = ecSetMarker7 +- ShortCut = 24631 +- end +- item +- Command = ecSetMarker8 +- ShortCut = 24632 +- end +- item +- Command = ecSetMarker9 +- ShortCut = 24633 +- end +- item +- Command = ecNormalSelect +- ShortCut = 24654 +- end +- item +- Command = ecColumnSelect +- ShortCut = 24643 +- end +- item +- Command = ecLineSelect +- ShortCut = 24652 +- end +- item +- Command = ecTab +- ShortCut = 9 +- end +- item +- Command = ecShiftTab +- ShortCut = 8201 +- end +- item +- Command = ecMatchBracket +- ShortCut = 24642 +- end> ++ Keystrokes = <> + MouseActions = < + item + Shift = [] +@@ -684,200 +339,9 @@ + MoveCaret = False + Option = 0 + Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccSingle +- ClickDir = cdDown +- Command = 9 +- MoveCaret = False +- Option = 0 +- Priority = 0 + end> +- Lines.Strings = ( +- 'Memo1' +- ) +- Options = [eoDragDropEditing, eoGroupUndo, eoScrollPastEol, eoTrimTrailingSpaces] +- ReadOnly = True +- RightEdge = 0 + BracketHighlightStyle = sbhsBoth +- TabWidth = 10 +- inline TSynGutterPartList +- object TSynGutterMarks +- Width = 24 +- end +- object TSynGutterLineNumber +- Width = 17 +- MouseActions = <> +- MarkupInfo.Background = clBtnFace +- MarkupInfo.Foreground = clNone +- DigitCount = 2 +- ShowOnlyLineNumbersMultiplesOf = 1 +- ZeroStart = False +- LeadingZeros = False +- end +- object TSynGutterChanges +- Width = 4 +- ModifiedColor = 59900 +- SavedColor = clGreen +- end +- object TSynGutterSeparator +- Width = 2 +- end +- object TSynGutterCodeFolding +- MouseActions = < +- item +- Shift = [] +- ShiftMask = [] +- Button = mbRight +- ClickCount = ccSingle +- ClickDir = cdUp +- Command = 16 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [ssShift] +- Button = mbMiddle +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 14 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [ssShift] +- ShiftMask = [ssShift] +- Button = mbMiddle +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 14 +- MoveCaret = False +- Option = 1 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 0 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end> +- MarkupInfo.Background = clNone +- MarkupInfo.Foreground = clGray +- MouseActionsExpanded = < +- item +- Shift = [] +- ShiftMask = [] +- Button = mbLeft +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 14 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end> +- MouseActionsCollapsed = < +- item +- Shift = [ssCtrl] +- ShiftMask = [ssCtrl] +- Button = mbLeft +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 15 +- MoveCaret = False +- Option = 0 +- Priority = 0 +- end +- item +- Shift = [] +- ShiftMask = [ssCtrl] +- Button = mbLeft +- ClickCount = ccAny +- ClickDir = cdDown +- Command = 15 +- MoveCaret = False +- Option = 1 +- Priority = 0 +- end> +- end +- end +- inline SynRightGutterPartList1: TSynRightGutterPartList ++ object TSynGutterPartList + end + end + object Panel3: TPanel +@@ -903,7 +367,7 @@ + end + object Edit1: TEdit + Left = 108 +- Height = 21 ++ Height = 23 + Top = 3 + Width = 85 + Anchors = [akTop, akRight] +diff -ur skychart_3.2/skychart/pu_info.lrs skychart_3.2_up/skychart/pu_info.lrs +--- skychart_3.2/skychart/pu_info.lrs 2010-10-01 12:41:22.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_info.lrs 2011-03-09 15:18:57.110096669 +0100 +@@ -1,29 +1,29 @@ + { This is an automatically generated lazarus resource file } + + LazarusResources.Add('Tf_info','FORMDATA',[ +- 'TPF0'#7'Tf_info'#6'f_info'#4'Left'#3#170#1#6'Height'#3#242#1#3'Top'#2'e'#5'W' +- +'idth'#3#206#2#13'ActiveControl'#7#10'TitlePanel'#11'BorderStyle'#7#13'bsSiz' +- +'eToolWin'#7'Caption'#6#4'Info'#12'ClientHeight'#3#242#1#11'ClientWidth'#3 +- +#206#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'Form' +- +'Create'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVers' +- +'ion'#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2#27#3'Top'#3 +- +#215#1#5'Width'#3#206#2#5'Align'#7#8'alBottom'#12'ClientHeight'#2#27#11'Clie' +- +'ntWidth'#3#206#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Button1'#4 +- +'Left'#3'x'#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anchors'#11#5'akTop' +- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'C' +- +'lose'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' +- +'4'#4'Left'#3' '#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'M'#7'Anchors'#11#5'a' +- +'kTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'Tab' +- +'Order'#2#1#0#0#0#6'TPanel'#10'TitlePanel'#4'Left'#2#0#6'Height'#2#26#3'Top' +- +#2#0#5'Width'#3#206#2#5'Align'#7#5'alTop'#9'Alignment'#7#13'taLeftJustify'#8 +- +'TabOrder'#2#5#0#0#6'TPanel'#5'Page3'#4'Left'#2'n'#6'Height'#3'W'#1#3'Top'#2 +- +'F'#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrde' +- +'r'#2#3#7'Visible'#8#0#5'TMemo'#12'ProgressMemo'#4'Left'#2#1#6'Height'#3'U'#1 +- +#3'Top'#2#1#5'Width'#3'('#2#5'Align'#7#8'alClient'#8'TabOrder'#2#0#0#0#0#6'T' +- +'Panel'#5'Page1'#4'Left'#2'8'#6'Height'#3'W'#1#3'Top'#2#30#5'Width'#3'*'#2#12 +- +'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2#1#0#11'TStringGri' +- +'d'#11'StringGrid1'#4'Left'#2#1#6'Height'#3'9'#1#3'Top'#2#1#5'Width'#3'('#2#5 +- +'Align'#7#8'alClient'#8'ColCount'#2#1#15'DefaultColWidth'#3' '#3#9'FixedCols' ++ 'TPF0'#7'Tf_info'#6'f_info'#4'Left'#3#13#1#6'Height'#3#242#1#3'Top'#2'd'#5'Wi' ++ +'dth'#3#206#2#13'ActiveControl'#7#10'TitlePanel'#11'BorderStyle'#7#13'bsSize' ++ +'ToolWin'#7'Caption'#6#4'Info'#12'ClientHeight'#3#242#1#11'ClientWidth'#3#206 ++ +#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCrea' ++ +'te'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' ++ +#6#8'0.9.28.2'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2#27#3'Top'#3#215 ++ +#1#5'Width'#3#206#2#5'Align'#7#8'alBottom'#12'ClientHeight'#2#27#11'ClientWi' ++ +'dth'#3#206#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Button1'#4'Le' ++ +'ft'#3'x'#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 ++ +'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Clo' ++ +'se'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4' ++ +#4'Left'#3' '#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'M'#7'Anchors'#11#5'akTo' ++ +'p'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrd' ++ +'er'#2#1#0#0#0#6'TPanel'#10'TitlePanel'#4'Left'#2#0#6'Height'#2#26#3'Top'#2#0 ++ +#5'Width'#3#206#2#5'Align'#7#5'alTop'#9'Alignment'#7#13'taLeftJustify'#8'Tab' ++ +'Order'#2#5#0#0#6'TPanel'#5'Page3'#4'Left'#2'n'#6'Height'#3'W'#1#3'Top'#2'F' ++ +#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2 ++ +#3#7'Visible'#8#0#5'TMemo'#12'ProgressMemo'#4'Left'#2#1#6'Height'#3'U'#1#3'T' ++ +'op'#2#1#5'Width'#3'('#2#5'Align'#7#8'alClient'#8'TabOrder'#2#0#0#0#0#6'TPan' ++ +'el'#5'Page1'#4'Left'#2'8'#6'Height'#3'W'#1#3'Top'#2#30#5'Width'#3'*'#2#12'C' ++ +'lientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2#1#0#11'TStringGrid' ++ +#11'StringGrid1'#4'Left'#2#1#6'Height'#3'9'#1#3'Top'#2#1#5'Width'#3'('#2#5'A' ++ +'lign'#7#8'alClient'#8'ColCount'#2#1#15'DefaultColWidth'#3' '#3#9'FixedCols' + +#2#0#9'FixedRows'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine' + +#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#19'goDrawFocusSelected'#11 + +'goRowSelect'#0#9'PopupMenu'#7#10'PopupMenu1'#8'RowCount'#2#10#10'ScrollBars' +@@ -31,12 +31,12 @@ + +'me'#6#13'MS Sans Serif'#11'OnMouseDown'#7#20'StringGrid1MouseDown'#0#0#6'TP' + +'anel'#6'Panel2'#4'Left'#2#1#6'Height'#2#28#3'Top'#3':'#1#5'Width'#3'('#2#5 + +'Align'#7#8'alBottom'#12'ClientHeight'#2#28#11'ClientWidth'#3'('#2#11'FullRe' +- +'paint'#8#8'TabOrder'#2#1#0#6'TLabel'#10'serverinfo'#4'Left'#3#24#2#6'Height' +- +#2#1#3'Top'#2#6#5'Width'#2#1#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11 ++ +'paint'#8#8'TabOrder'#2#1#0#6'TLabel'#10'serverinfo'#4'Left'#3#23#2#6'Height' ++ +#2#2#3'Top'#2#6#5'Width'#2#2#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11 + +#5'akTop'#7'akRight'#0#11'ParentColor'#8#0#0#7'TButton'#7'Button2'#4'Left'#2 + +#12#6'Height'#2#25#3'Top'#2#2#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4 + +#7'Caption'#6#7'Refresh'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#9 +- +'TCheckBox'#9'CheckBox1'#4'Left'#2'h'#6'Height'#2#21#3'Top'#2#2#5'Width'#2'U' ++ +'TCheckBox'#9'CheckBox1'#4'Left'#2'h'#6'Height'#2#22#3'Top'#2#2#5'Width'#2'[' + +#7'Caption'#6#11'AutoRefresh'#7'Checked'#9#7'OnClick'#7#14'CheckBox1Click'#5 + +'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#5'Page4'#4'Left'#3 + +#150#0#6'Height'#3'W'#1#3'Top'#2'P'#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1 +@@ -50,150 +50,47 @@ + +'ont.Height'#2#243#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#12 + +'Font.Quality'#7#16'fqNonAntialiased'#11'ParentColor'#8#10'ParentFont'#8#9'P' + +'opupMenu'#7#10'PopupMenu2'#8'TabOrder'#2#1#10'OnDblClick'#7#13'Memo1DblClic' +- +'k'#23'BookMarkOptions.Xoffset'#2#238#14'Gutter.Visible'#8#12'Gutter.Width'#2 +- +'9'#19'Gutter.MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7 +- +#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#13 +- +#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask' +- +#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cd' +- +'Up'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#17'Rig' +- +'htGutter.Width'#2#0#24'RightGutter.MouseActions'#14#1#5'Shift'#11#0#9'Shift' +- +'Mask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6 +- +'cdDown'#7'Command'#2#13#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5 +- +'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccS' +- +'ingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8 +- +'Priority'#2#0#0#0#10'Keystrokes'#14#1#7'Command'#7#4'ecUp'#8'ShortCut'#2'&' +- +#0#1#7'Command'#7#7'ecSelUp'#8'ShortCut'#3'& '#0#1#7'Command'#7#10'ecScrollU' +- +'p'#8'ShortCut'#3'&@'#0#1#7'Command'#7#6'ecDown'#8'ShortCut'#2'('#0#1#7'Comm' +- +'and'#7#9'ecSelDown'#8'ShortCut'#3'( '#0#1#7'Command'#7#12'ecScrollDown'#8'S' +- ,'hortCut'#3'(@'#0#1#7'Command'#7#6'ecLeft'#8'ShortCut'#2'%'#0#1#7'Command'#7 +- +#9'ecSelLeft'#8'ShortCut'#3'% '#0#1#7'Command'#7#10'ecWordLeft'#8'ShortCut'#3 +- +'%@'#0#1#7'Command'#7#13'ecSelWordLeft'#8'ShortCut'#3'%`'#0#1#7'Command'#7#7 +- +'ecRight'#8'ShortCut'#2''''#0#1#7'Command'#7#10'ecSelRight'#8'ShortCut'#3'''' +- +' '#0#1#7'Command'#7#11'ecWordRight'#8'ShortCut'#3'''@'#0#1#7'Command'#7#14 +- +'ecSelWordRight'#8'ShortCut'#3'''`'#0#1#7'Command'#7#10'ecPageDown'#8'ShortC' +- +'ut'#2'"'#0#1#7'Command'#7#13'ecSelPageDown'#8'ShortCut'#3'" '#0#1#7'Command' +- +#7#12'ecPageBottom'#8'ShortCut'#3'"@'#0#1#7'Command'#7#15'ecSelPageBottom'#8 +- +'ShortCut'#3'"`'#0#1#7'Command'#7#8'ecPageUp'#8'ShortCut'#2'!'#0#1#7'Command' +- +#7#11'ecSelPageUp'#8'ShortCut'#3'! '#0#1#7'Command'#7#9'ecPageTop'#8'ShortCu' +- +'t'#3'!@'#0#1#7'Command'#7#12'ecSelPageTop'#8'ShortCut'#3'!`'#0#1#7'Command' +- +#7#11'ecLineStart'#8'ShortCut'#2'$'#0#1#7'Command'#7#14'ecSelLineStart'#8'Sh' +- +'ortCut'#3'$ '#0#1#7'Command'#7#11'ecEditorTop'#8'ShortCut'#3'$@'#0#1#7'Comm' +- +'and'#7#14'ecSelEditorTop'#8'ShortCut'#3'$`'#0#1#7'Command'#7#9'ecLineEnd'#8 +- +'ShortCut'#2'#'#0#1#7'Command'#7#12'ecSelLineEnd'#8'ShortCut'#3'# '#0#1#7'Co' +- +'mmand'#7#14'ecEditorBottom'#8'ShortCut'#3'#@'#0#1#7'Command'#7#17'ecSelEdit' +- +'orBottom'#8'ShortCut'#3'#`'#0#1#7'Command'#7#12'ecToggleMode'#8'ShortCut'#2 +- +'-'#0#1#7'Command'#7#6'ecCopy'#8'ShortCut'#3'-@'#0#1#7'Command'#7#7'ecPaste' +- +#8'ShortCut'#3'- '#0#1#7'Command'#7#12'ecDeleteChar'#8'ShortCut'#2'.'#0#1#7 +- +'Command'#7#5'ecCut'#8'ShortCut'#3'. '#0#1#7'Command'#7#16'ecDeleteLastChar' +- +#8'ShortCut'#2#8#0#1#7'Command'#7#16'ecDeleteLastChar'#8'ShortCut'#3#8' '#0#1 +- +#7'Command'#7#16'ecDeleteLastWord'#8'ShortCut'#3#8'@'#0#1#7'Command'#7#6'ecU' +- +'ndo'#8'ShortCut'#4#8#128#0#0#0#1#7'Command'#7#6'ecRedo'#8'ShortCut'#4#8#160 +- +#0#0#0#1#7'Command'#7#11'ecLineBreak'#8'ShortCut'#2#13#0#1#7'Command'#7#11'e' +- +'cSelectAll'#8'ShortCut'#3'A@'#0#1#7'Command'#7#6'ecCopy'#8'ShortCut'#3'C@'#0 +- +#1#7'Command'#7#13'ecBlockIndent'#8'ShortCut'#3'I`'#0#1#7'Command'#7#11'ecLi' +- +'neBreak'#8'ShortCut'#3'M@'#0#1#7'Command'#7#12'ecInsertLine'#8'ShortCut'#3 +- +'N@'#0#1#7'Command'#7#12'ecDeleteWord'#8'ShortCut'#3'T@'#0#1#7'Command'#7#15 +- +'ecBlockUnindent'#8'ShortCut'#3'U`'#0#1#7'Command'#7#7'ecPaste'#8'ShortCut'#3 +- +'V@'#0#1#7'Command'#7#5'ecCut'#8'ShortCut'#3'X@'#0#1#7'Command'#7#12'ecDelet' +- +'eLine'#8'ShortCut'#3'Y@'#0#1#7'Command'#7#11'ecDeleteEOL'#8'ShortCut'#3'Y`' +- +#0#1#7'Command'#7#6'ecUndo'#8'ShortCut'#3'Z@'#0#1#7'Command'#7#6'ecRedo'#8'S' +- +'hortCut'#3'Z`'#0#1#7'Command'#7#13'ecGotoMarker0'#8'ShortCut'#3'0@'#0#1#7'C' +- +'ommand'#7#13'ecGotoMarker1'#8'ShortCut'#3'1@'#0#1#7'Command'#7#13'ecGotoMar' +- +'ker2'#8'ShortCut'#3'2@'#0#1#7'Command'#7#13'ecGotoMarker3'#8'ShortCut'#3'3@' +- +#0#1#7'Command'#7#13'ecGotoMarker4'#8'ShortCut'#3'4@'#0#1#7'Command'#7#13'ec' +- +'GotoMarker5'#8'ShortCut'#3'5@'#0#1#7'Command'#7#13'ecGotoMarker6'#8'ShortCu' +- +'t'#3'6@'#0#1#7'Command'#7#13'ecGotoMarker7'#8'ShortCut'#3'7@'#0#1#7'Command' +- +#7#13'ecGotoMarker8'#8'ShortCut'#3'8@'#0#1#7'Command'#7#13'ecGotoMarker9'#8 +- +'ShortCut'#3'9@'#0#1#7'Command'#7#12'ecSetMarker0'#8'ShortCut'#3'0`'#0#1#7'C' +- +'ommand'#7#12'ecSetMarker1'#8'ShortCut'#3'1`'#0#1#7'Command'#7#12'ecSetMarke' +- +'r2'#8'ShortCut'#3'2`'#0#1#7'Command'#7#12'ecSetMarker3'#8'ShortCut'#3'3`'#0 +- +#1#7'Command'#7#12'ecSetMarker4'#8'ShortCut'#3'4`'#0#1#7'Command'#7#12'ecSet' +- +'Marker5'#8'ShortCut'#3'5`'#0#1#7'Command'#7#12'ecSetMarker6'#8'ShortCut'#3 +- +'6`'#0#1#7'Command'#7#12'ecSetMarker7'#8'ShortCut'#3'7`'#0#1#7'Command'#7#12 +- +'ecSetMarker8'#8'ShortCut'#3'8`'#0#1#7'Command'#7#12'ecSetMarker9'#8'ShortCu' +- +'t'#3'9`'#0#1#7'Command'#7#14'ecNormalSelect'#8'ShortCut'#3'N`'#0#1#7'Comman' +- +'d'#7#14'ecColumnSelect'#8'ShortCut'#3'C`'#0#1#7'Command'#7#12'ecLineSelect' +- +#8'ShortCut'#3'L`'#0#1#7'Command'#7#5'ecTab'#8'ShortCut'#2#9#0#1#7'Command'#7 +- +#10'ecShiftTab'#8'ShortCut'#3#9' '#0#1#7'Command'#7#14'ecMatchBracket'#8'Sho' +- +'rtCut'#3'B`'#0#0#12'MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssSh' +- +'ift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickD' +- +'ir'#7#6'cdDown'#7'Command'#2#1#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0 +- +#0#1#5'Shift'#11#7'ssShift'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button' +- +#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command' +- +#2#1#9'MoveCaret'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#5'ssAlt'#0 +- +#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 +- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option' +- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7'ssShift'#5'ssAlt'#0#9'ShiftMask'#11#7 +- +'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Cl' +- +'ickDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#1#8'Priority' +- +#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCoun' +- +'t'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Opt' +- +'ion'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6 +- ,'mbLeft'#10'ClickCount'#7#8'ccDouble'#8'ClickDir'#7#6'cdDown'#7'Command'#2#6 +- +#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask' +- +#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccTriple'#8'ClickDir'#7#6'cdD' +- +'own'#7'Command'#2#7#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shif' +- +'t'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#6'ccQuad'#8 +- +'ClickDir'#7#6'cdDown'#7'Command'#2#8#9'MoveCaret'#9#6'Option'#2#0#8'Priorit' +- +'y'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#8'mbMiddle'#10'Click' +- +'Count'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#10#9'MoveCaret'#9 +- +#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#7 +- +'ssShift'#5'ssAlt'#6'ssCtrl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSi' +- +'ngle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#11#9'MoveCaret'#8#6'Option'#2#0#8 +- +'Priority'#2#0#0#0#15'MouseSelActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6 +- +'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7 +- +'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 +- +#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' +- +'kDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2 +- +#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 +- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option' +- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLef' +- +'t'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'Mo' +- +'veCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0 +- +#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7 +- +'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 +- +#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' +- +'kDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2 +- +#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 +- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option' +- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLef' +- +'t'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'Mo' +- +'veCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#13'Lines.Strings'#1#6#5'Memo1' +- +#0#7'Options'#11#17'eoDragDropEditing'#11'eoGroupUndo'#15'eoScrollPastEol'#20 +- +'eoTrimTrailingSpaces'#0#8'ReadOnly'#9#9'RightEdge'#2#0#21'BracketHighlightS' +- +'tyle'#7#8'sbhsBoth'#8'TabWidth'#2#10#0#244#18'TSynGutterPartList'#0#0#15'TS' +- +'ynGutterMarks'#0#5'Width'#2#24#0#0#20'TSynGutterLineNumber'#0#5'Width'#2#17 +- +#12'MouseActions'#14#0#21'MarkupInfo.Background'#7#9'clBtnFace'#21'MarkupInf' +- +'o.Foreground'#7#6'clNone'#10'DigitCount'#2#2#30'ShowOnlyLineNumbersMultiple' +- +'sOf'#2#1#9'ZeroStart'#8#12'LeadingZeros'#8#0#0#17'TSynGutterChanges'#0#5'Wi' +- +'dth'#2#4#13'ModifiedColor'#4#252#233#0#0#10'SavedColor'#7#7'clGreen'#0#0#19 +- +'TSynGutterSeparator'#0#5'Width'#2#2#0#0#21'TSynGutterCodeFolding'#0#12'Mous' +- +'eActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'Cl' +- +'ickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#16#9'MoveCaret'#8 +- +#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssShift'#0 +- +#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7 +- +'Command'#2#14#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7 +- +'ssShift'#0#9'ShiftMask'#11#7'ssShift'#0#6'Button'#7#8'mbMiddle'#10'ClickCou' +- +'nt'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9'MoveCaret'#8#6'Opt' +- +'ion'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6 +- +'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#0#9 +- +'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#21'MarkupInfo.Background'#7#6 +- +'clNone'#21'MarkupInfo.Foreground'#7#6'clGray'#20'MouseActionsExpanded'#14#1 +- +#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'cc' +- +'Any'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9'MoveCaret'#8#6'Option'#2#0#8 +- +'Priority'#2#0#0#0#21'MouseActionsCollapsed'#14#1#5'Shift'#11#6'ssCtrl'#0#9 +- +'ShiftMask'#11#6'ssCtrl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8 +- +'ClickDir'#7#6'cdDown'#7'Command'#2#15#9'MoveCaret'#8#6'Option'#2#0#8'Priori' +- +'ty'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#6'ssCtrl'#0#6'Button'#7#6'mbLeft' +- +#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#15#9'MoveCar' +- +'et'#8#6'Option'#2#1#8'Priority'#2#0#0#0#0#0#0#244#23'TSynRightGutterPartLis' +- +'t'#23'SynRightGutterPartList1'#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'Heig' ++ +'k'#24'BookMarkOptions.OnChange'#13#12'Gutter.Width'#2#0#19'Gutter.MouseActi' ++ +'ons'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCou' ++ +'nt'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#13#9'MoveCaret'#8#6'Opt' ++ +'ion'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7 ++ +'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12 ++ +#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#10'Keystrokes'#14#0#12'Mou' ++ +'seActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Butto' ++ +'n'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Comma' ++ +'nd'#2#1#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7'ssSh' ++ +'ift'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'Click' ++ +'Count'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#1#9'MoveCaret'#9#6 ++ +'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#5'ssAlt'#0#9'ShiftMask'#11#7'ss' ++ +'Shift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' ++ +'kDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2 ++ +#0#0#1#5'Shift'#11#7'ssShift'#5'ssAlt'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt' ++ ,#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown' ++ +#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11 ++ +#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSingle'#8'C' ++ +'lickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8'Priority' ++ +#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount' ++ +#7#8'ccDouble'#8'ClickDir'#7#6'cdDown'#7'Command'#2#6#9'MoveCaret'#9#6'Optio' ++ +'n'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mb' ++ +'Left'#10'ClickCount'#7#8'ccTriple'#8'ClickDir'#7#6'cdDown'#7'Command'#2#7#9 ++ +'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11 ++ +#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#6'ccQuad'#8'ClickDir'#7#6'cdDown'#7 ++ +'Command'#2#8#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 ++ +#9'ShiftMask'#11#0#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#8'ccSingle'#8'Cl' ++ +'ickDir'#7#6'cdDown'#7'Command'#2#10#9'MoveCaret'#9#6'Option'#2#0#8'Priority' ++ +#2#0#0#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#6'ssCtr' ++ +'l'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdU' ++ +'p'#7'Command'#2#11#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#15'Mous' ++ +'eSelActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10 ++ +'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCare' ++ +'t'#8#6'Option'#2#0#8'Priority'#2#0#0#0#21'BracketHighlightStyle'#7#8'sbhsBo' ++ +'th'#0#18'TSynGutterPartList'#0#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'Heig' + +'ht'#2#27#3'Top'#3';'#1#5'Width'#3'('#2#5'Align'#7#8'alBottom'#12'ClientHeig' + +'ht'#2#27#11'ClientWidth'#3'('#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButt' + +'on'#7'Button3'#4'Left'#3#204#0#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'An' + +'chors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption' + +#6#6'Search'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Ed' +- ,'it1'#4'Left'#2'l'#6'Height'#2#21#3'Top'#2#3#5'Width'#2'U'#7'Anchors'#11#5'a' ++ +'it1'#4'Left'#2'l'#6'Height'#2#23#3'Top'#2#3#5'Width'#2'U'#7'Anchors'#11#5'a' + +'kTop'#7'akRight'#0#7'OnKeyUp'#7#10'Edit1KeyUp'#8'TabOrder'#2#1#0#0#7'TButto' + +'n'#7'Button5'#4'Left'#3'$'#1#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anch' + +'ors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 +diff -ur skychart_3.2/skychart/pu_print.lfm skychart_3.2_up/skychart/pu_print.lfm +--- skychart_3.2/skychart/pu_print.lfm 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_print.lfm 2011-03-09 15:18:23.187267809 +0100 +@@ -1,228 +1,228 @@ +-object f_print: Tf_print +- Left = 992 +- Height = 293 +- Top = 402 +- Width = 403 +- ActiveControl = Setup +- BorderStyle = bsToolWindow +- Caption = 'Print Chart' +- ClientHeight = 293 +- ClientWidth = 403 +- Font.Height = -11 +- OnCreate = FormCreate +- OnShow = FormShow +- LCLVersion = '0.9.29' +- object PrinterInfo: TLabel +- Left = 27 +- Height = 14 +- Top = 14 +- Width = 50 +- Caption = 'PrinterInfo' +- ParentColor = False +- end +- object prtcolor: TRadioGroup +- Left = 16 +- Height = 82 +- Top = 48 +- Width = 207 +- AutoFill = True +- Caption = 'Color' +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 67 +- ClientWidth = 203 +- ItemIndex = 0 +- Items.Strings = ( +- 'Color, Line mode' +- 'Black/White, Line mode' +- 'As on screen (black background!)' +- ) +- OnClick = prtcolorClick +- TabOrder = 3 +- end +- object prtorient: TRadioGroup +- Left = 240 +- Height = 82 +- Top = 48 +- Width = 149 +- AutoFill = True +- Caption = 'Orientation' +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 67 +- ClientWidth = 145 +- Items.Strings = ( +- 'Portrait' +- 'Landscape' +- ) +- OnClick = prtorientClick +- TabOrder = 4 +- end +- object Print: TButton +- Left = 224 +- Height = 25 +- Top = 256 +- Width = 75 +- BorderSpacing.InnerBorder = 4 +- Caption = 'Print' +- Default = True +- ModalResult = 1 +- TabOrder = 0 +- end +- object Cancel: TButton +- Left = 314 +- Height = 25 +- Top = 256 +- Width = 75 +- BorderSpacing.InnerBorder = 4 +- Cancel = True +- Caption = 'Cancel' +- ModalResult = 2 +- TabOrder = 1 +- end +- object Setup: TButton +- Left = 304 +- Height = 25 +- Top = 8 +- Width = 85 +- BorderSpacing.InnerBorder = 4 +- Caption = 'Setup' +- OnClick = SetupClick +- TabOrder = 2 +- end +- object GroupBox1: TGroupBox +- Left = 9 +- Height = 82 +- Top = 144 +- Width = 380 +- Caption = 'Page Margin in millimeter' +- ClientHeight = 67 +- ClientWidth = 376 +- TabOrder = 5 +- object Label1: TLabel +- Left = 23 +- Height = 14 +- Top = 14 +- Width = 20 +- Caption = 'Left' +- ParentColor = False +- end +- object Label2: TLabel +- Left = 89 +- Height = 14 +- Top = 14 +- Width = 25 +- Caption = 'Right' +- ParentColor = False +- end +- object Label3: TLabel +- Left = 153 +- Height = 14 +- Top = 14 +- Width = 18 +- Caption = 'Top' +- ParentColor = False +- end +- object Label4: TLabel +- Left = 216 +- Height = 14 +- Top = 14 +- Width = 34 +- Caption = 'Bottom' +- ParentColor = False +- end +- object LongEdit1: TLongEdit +- Left = 21 +- Height = 21 +- Hint = '0..100' +- Top = 34 +- Width = 40 +- ParentShowHint = False +- ShowHint = True +- TabOrder = 0 +- OnChange = LongEdit1Change +- Value = 0 +- MaxValue = 100 +- end +- object LongEdit2: TLongEdit +- Left = 86 +- Height = 21 +- Hint = '0..100' +- Top = 34 +- Width = 40 +- ParentShowHint = False +- ShowHint = True +- TabOrder = 1 +- OnChange = LongEdit2Change +- Value = 0 +- MaxValue = 100 +- end +- object LongEdit3: TLongEdit +- Left = 151 +- Height = 21 +- Hint = '0..100' +- Top = 35 +- Width = 40 +- ParentShowHint = False +- ShowHint = True +- TabOrder = 2 +- OnChange = LongEdit3Change +- Value = 0 +- MaxValue = 100 +- end +- object LongEdit4: TLongEdit +- Left = 216 +- Height = 21 +- Hint = '0..100' +- Top = 34 +- Width = 40 +- ParentShowHint = False +- ShowHint = True +- TabOrder = 3 +- OnChange = LongEdit4Change +- Value = 0 +- MaxValue = 100 +- end +- object Button1: TButton +- Left = 277 +- Height = 25 +- Top = 2 +- Width = 91 +- BorderSpacing.InnerBorder = 4 +- Caption = 'No Margin' +- OnClick = Button1Click +- TabOrder = 4 +- end +- object Button2: TButton +- Left = 277 +- Height = 25 +- Top = 32 +- Width = 91 +- BorderSpacing.InnerBorder = 4 +- Caption = 'Default Margin' +- OnClick = Button2Click +- TabOrder = 5 +- end +- end +- object Button3: TButton +- Left = 134 +- Height = 25 +- Top = 256 +- Width = 75 +- Caption = 'Help' +- OnClick = Button3Click +- TabOrder = 6 +- end ++object f_print: Tf_print ++ Left = 992 ++ Height = 293 ++ Top = 402 ++ Width = 403 ++ ActiveControl = Setup ++ BorderStyle = bsToolWindow ++ Caption = 'Print Chart' ++ ClientHeight = 293 ++ ClientWidth = 403 ++ Font.Height = -11 ++ OnCreate = FormCreate ++ OnShow = FormShow ++ LCLVersion = '0.9.29' ++ object PrinterInfo: TLabel ++ Left = 27 ++ Height = 14 ++ Top = 14 ++ Width = 50 ++ Caption = 'PrinterInfo' ++ ParentColor = False ++ end ++ object prtcolor: TRadioGroup ++ Left = 16 ++ Height = 82 ++ Top = 48 ++ Width = 207 ++ AutoFill = True ++ Caption = 'Color' ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 67 ++ ClientWidth = 203 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'Color, Line mode' ++ 'Black/White, Line mode' ++ 'As on screen (black background!)' ++ ) ++ OnClick = prtcolorClick ++ TabOrder = 3 ++ end ++ object prtorient: TRadioGroup ++ Left = 240 ++ Height = 82 ++ Top = 48 ++ Width = 149 ++ AutoFill = True ++ Caption = 'Orientation' ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 67 ++ ClientWidth = 145 ++ Items.Strings = ( ++ 'Portrait' ++ 'Landscape' ++ ) ++ OnClick = prtorientClick ++ TabOrder = 4 ++ end ++ object Print: TButton ++ Left = 224 ++ Height = 25 ++ Top = 256 ++ Width = 75 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'Print' ++ Default = True ++ ModalResult = 1 ++ TabOrder = 0 ++ end ++ object Cancel: TButton ++ Left = 314 ++ Height = 25 ++ Top = 256 ++ Width = 75 ++ BorderSpacing.InnerBorder = 4 ++ Cancel = True ++ Caption = 'Cancel' ++ ModalResult = 2 ++ TabOrder = 1 ++ end ++ object Setup: TButton ++ Left = 304 ++ Height = 25 ++ Top = 8 ++ Width = 85 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'Setup' ++ OnClick = SetupClick ++ TabOrder = 2 ++ end ++ object GroupBox1: TGroupBox ++ Left = 9 ++ Height = 82 ++ Top = 144 ++ Width = 380 ++ Caption = 'Page Margin in millimeter' ++ ClientHeight = 67 ++ ClientWidth = 376 ++ TabOrder = 5 ++ object Label1: TLabel ++ Left = 23 ++ Height = 14 ++ Top = 14 ++ Width = 20 ++ Caption = 'Left' ++ ParentColor = False ++ end ++ object Label2: TLabel ++ Left = 89 ++ Height = 14 ++ Top = 14 ++ Width = 25 ++ Caption = 'Right' ++ ParentColor = False ++ end ++ object Label3: TLabel ++ Left = 153 ++ Height = 14 ++ Top = 14 ++ Width = 18 ++ Caption = 'Top' ++ ParentColor = False ++ end ++ object Label4: TLabel ++ Left = 216 ++ Height = 14 ++ Top = 14 ++ Width = 34 ++ Caption = 'Bottom' ++ ParentColor = False ++ end ++ object LongEdit1: TLongEdit ++ Left = 21 ++ Height = 21 ++ Hint = '0..100' ++ Top = 34 ++ Width = 40 ++ ParentShowHint = False ++ ShowHint = True ++ TabOrder = 0 ++ OnChange = LongEdit1Change ++ Value = 0 ++ MaxValue = 100 ++ end ++ object LongEdit2: TLongEdit ++ Left = 86 ++ Height = 21 ++ Hint = '0..100' ++ Top = 34 ++ Width = 40 ++ ParentShowHint = False ++ ShowHint = True ++ TabOrder = 1 ++ OnChange = LongEdit2Change ++ Value = 0 ++ MaxValue = 100 ++ end ++ object LongEdit3: TLongEdit ++ Left = 151 ++ Height = 21 ++ Hint = '0..100' ++ Top = 35 ++ Width = 40 ++ ParentShowHint = False ++ ShowHint = True ++ TabOrder = 2 ++ OnChange = LongEdit3Change ++ Value = 0 ++ MaxValue = 100 ++ end ++ object LongEdit4: TLongEdit ++ Left = 216 ++ Height = 21 ++ Hint = '0..100' ++ Top = 34 ++ Width = 40 ++ ParentShowHint = False ++ ShowHint = True ++ TabOrder = 3 ++ OnChange = LongEdit4Change ++ Value = 0 ++ MaxValue = 100 ++ end ++ object Button1: TButton ++ Left = 277 ++ Height = 25 ++ Top = 2 ++ Width = 91 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'No Margin' ++ OnClick = Button1Click ++ TabOrder = 4 ++ end ++ object Button2: TButton ++ Left = 277 ++ Height = 25 ++ Top = 32 ++ Width = 91 ++ BorderSpacing.InnerBorder = 4 ++ Caption = 'Default Margin' ++ OnClick = Button2Click ++ TabOrder = 5 ++ end ++ end ++ object Button3: TButton ++ Left = 134 ++ Height = 25 ++ Top = 256 ++ Width = 75 ++ Caption = 'Help' ++ OnClick = Button3Click ++ TabOrder = 6 ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_print.lrs skychart_3.2_up/skychart/pu_print.lrs +--- skychart_3.2/skychart/pu_print.lrs 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_print.lrs 2011-03-09 15:18:23.187267809 +0100 +@@ -1,65 +1,65 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tf_print','FORMDATA',[ +- 'TPF0'#8'Tf_print'#7'f_print'#4'Left'#3#224#3#6'Height'#3'%'#1#3'Top'#3#146#1 +- +#5'Width'#3#147#1#13'ActiveControl'#7#5'Setup'#11'BorderStyle'#7#12'bsToolWi' +- +'ndow'#7'Caption'#6#11'Print Chart'#12'ClientHeight'#3'%'#1#11'ClientWidth'#3 +- +#147#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' +- +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#11'PrinterInfo'#4'Left'#2#27#6 +- +'Height'#2#14#3'Top'#2#14#5'Width'#2'2'#7'Caption'#6#11'PrinterInfo'#11'Pare' +- +'ntColor'#8#0#0#11'TRadioGroup'#8'prtcolor'#4'Left'#2#16#6'Height'#2'R'#3'To' +- +'p'#2'0'#5'Width'#3#207#0#8'AutoFill'#9#7'Caption'#6#5'Color'#28'ChildSizing' +- +'.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.' +- +'EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVer' +- +'tical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 +- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' +- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' +- +'PerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#203#0#9'ItemIndex'#2#0 +- +#13'Items.Strings'#1#6#16'Color, Line mode'#6#22'Black/White, Line mode'#6' ' +- +'As on screen (black background!)'#0#7'OnClick'#7#13'prtcolorClick'#8'TabOrd' +- +'er'#2#3#0#0#11'TRadioGroup'#9'prtorient'#4'Left'#3#240#0#6'Height'#2'R'#3'T' +- +'op'#2'0'#5'Width'#3#149#0#8'AutoFill'#9#7'Caption'#6#11'Orientation'#28'Chi' +- +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' +- +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' +- +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' +- +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' +- +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' +- +'ontrolsPerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#145#0#13'Items.' +- +'Strings'#1#6#8'Portrait'#6#9'Landscape'#0#7'OnClick'#7#14'prtorientClick'#8 +- +'TabOrder'#2#4#0#0#7'TButton'#5'Print'#4'Left'#3#224#0#6'Height'#2#25#3'Top' +- +#3#0#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Print' +- +#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#6'Cancel'#4 +- +'Left'#3':'#1#6'Height'#2#25#3'Top'#3#0#1#5'Width'#2'K'#25'BorderSpacing.Inn' +- +'erBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabO' +- +'rder'#2#1#0#0#7'TButton'#5'Setup'#4'Left'#3'0'#1#6'Height'#2#25#3'Top'#2#8#5 +- +'Width'#2'U'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Setup'#7'OnCli' +- +'ck'#7#10'SetupClick'#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 +- +#9#6'Height'#2'R'#3'Top'#3#144#0#5'Width'#3'|'#1#7'Caption'#6#25'Page Margin' +- +' in millimeter'#12'ClientHeight'#2'C'#11'ClientWidth'#3'x'#1#8'TabOrder'#2#5 +- +#0#6'TLabel'#6'Label1'#4'Left'#2#23#6'Height'#2#14#3'Top'#2#14#5'Width'#2#20 +- +#7'Caption'#6#4'Left'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2'Y' +- +#6'Height'#2#14#3'Top'#2#14#5'Width'#2#25#7'Caption'#6#5'Right'#11'ParentCol' +- +'or'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#153#0#6'Height'#2#14#3'Top'#2#14#5 +- +'Width'#2#18#7'Caption'#6#3'Top'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 +- +'Left'#3#216#0#6'Height'#2#14#3'Top'#2#14#5'Width'#2'"'#7'Caption'#6#6'Botto' +- +'m'#11'ParentColor'#8#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#2#21#6'Height'#2 +- +#21#4'Hint'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'Sho' +- +'wHint'#9#8'TabOrder'#2#0#8'OnChange'#7#15'LongEdit1Change'#5'Value'#2#0#8'M' +- +'axValue'#2'd'#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#2'V'#6'Height'#2#21#4'H' +- +'int'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' +- +#9#8'TabOrder'#2#1#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#0#8'MaxValue' +- +#2'd'#0#0#9'TLongEdit'#9'LongEdit3'#4'Left'#3#151#0#6'Height'#2#21#4'Hint'#6 +- +#6'0..100'#3'Top'#2'#'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' +- +'bOrder'#2#2#8'OnChange'#7#15'LongEdit3Change'#5'Value'#2#0#8'MaxValue'#2'd' +- +#0#0#9'TLongEdit'#9'LongEdit4'#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#6'0.' +- +'.100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' +- +'er'#2#3#8'OnChange'#7#15'LongEdit4Change'#5'Value'#2#0#8'MaxValue'#2'd'#0#0 +- +#7'TButton'#7'Button1'#4'Left'#3#21#1#6'Height'#2#25#3'Top'#2#2#5'Width'#2'[' +- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'No Margin'#7'OnClick'#7#12 +- +'Button1Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button2'#4'Left'#3#21#1#6'He' +- +'ight'#2#25#3'Top'#2' '#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Ca' +- +'ption'#6#14'Default Margin'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#5#0 +- +#0#0#7'TButton'#7'Button3'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#0#1#5'Wid' +- +'th'#2'K'#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#6 +- +#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tf_print','FORMDATA',[ ++ 'TPF0'#8'Tf_print'#7'f_print'#4'Left'#3#224#3#6'Height'#3'%'#1#3'Top'#3#146#1 ++ +#5'Width'#3#147#1#13'ActiveControl'#7#5'Setup'#11'BorderStyle'#7#12'bsToolWi' ++ +'ndow'#7'Caption'#6#11'Print Chart'#12'ClientHeight'#3'%'#1#11'ClientWidth'#3 ++ +#147#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' ++ +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#11'PrinterInfo'#4'Left'#2#27#6 ++ +'Height'#2#14#3'Top'#2#14#5'Width'#2'2'#7'Caption'#6#11'PrinterInfo'#11'Pare' ++ +'ntColor'#8#0#0#11'TRadioGroup'#8'prtcolor'#4'Left'#2#16#6'Height'#2'R'#3'To' ++ +'p'#2'0'#5'Width'#3#207#0#8'AutoFill'#9#7'Caption'#6#5'Color'#28'ChildSizing' ++ +'.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.' ++ +'EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVer' ++ +'tical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 ++ +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' ++ +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' ++ +'PerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#203#0#9'ItemIndex'#2#0 ++ +#13'Items.Strings'#1#6#16'Color, Line mode'#6#22'Black/White, Line mode'#6' ' ++ +'As on screen (black background!)'#0#7'OnClick'#7#13'prtcolorClick'#8'TabOrd' ++ +'er'#2#3#0#0#11'TRadioGroup'#9'prtorient'#4'Left'#3#240#0#6'Height'#2'R'#3'T' ++ +'op'#2'0'#5'Width'#3#149#0#8'AutoFill'#9#7'Caption'#6#11'Orientation'#28'Chi' ++ +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' ++ +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' ++ +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' ++ +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' ++ +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' ++ +'ontrolsPerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#145#0#13'Items.' ++ +'Strings'#1#6#8'Portrait'#6#9'Landscape'#0#7'OnClick'#7#14'prtorientClick'#8 ++ +'TabOrder'#2#4#0#0#7'TButton'#5'Print'#4'Left'#3#224#0#6'Height'#2#25#3'Top' ++ +#3#0#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Print' ++ +#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#6'Cancel'#4 ++ +'Left'#3':'#1#6'Height'#2#25#3'Top'#3#0#1#5'Width'#2'K'#25'BorderSpacing.Inn' ++ +'erBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabO' ++ +'rder'#2#1#0#0#7'TButton'#5'Setup'#4'Left'#3'0'#1#6'Height'#2#25#3'Top'#2#8#5 ++ +'Width'#2'U'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Setup'#7'OnCli' ++ +'ck'#7#10'SetupClick'#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 ++ +#9#6'Height'#2'R'#3'Top'#3#144#0#5'Width'#3'|'#1#7'Caption'#6#25'Page Margin' ++ +' in millimeter'#12'ClientHeight'#2'C'#11'ClientWidth'#3'x'#1#8'TabOrder'#2#5 ++ +#0#6'TLabel'#6'Label1'#4'Left'#2#23#6'Height'#2#14#3'Top'#2#14#5'Width'#2#20 ++ +#7'Caption'#6#4'Left'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2'Y' ++ +#6'Height'#2#14#3'Top'#2#14#5'Width'#2#25#7'Caption'#6#5'Right'#11'ParentCol' ++ +'or'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#153#0#6'Height'#2#14#3'Top'#2#14#5 ++ +'Width'#2#18#7'Caption'#6#3'Top'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 ++ +'Left'#3#216#0#6'Height'#2#14#3'Top'#2#14#5'Width'#2'"'#7'Caption'#6#6'Botto' ++ +'m'#11'ParentColor'#8#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#2#21#6'Height'#2 ++ +#21#4'Hint'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'Sho' ++ +'wHint'#9#8'TabOrder'#2#0#8'OnChange'#7#15'LongEdit1Change'#5'Value'#2#0#8'M' ++ +'axValue'#2'd'#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#2'V'#6'Height'#2#21#4'H' ++ +'int'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' ++ +#9#8'TabOrder'#2#1#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#0#8'MaxValue' ++ +#2'd'#0#0#9'TLongEdit'#9'LongEdit3'#4'Left'#3#151#0#6'Height'#2#21#4'Hint'#6 ++ +#6'0..100'#3'Top'#2'#'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' ++ +'bOrder'#2#2#8'OnChange'#7#15'LongEdit3Change'#5'Value'#2#0#8'MaxValue'#2'd' ++ +#0#0#9'TLongEdit'#9'LongEdit4'#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#6'0.' ++ +'.100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' ++ +'er'#2#3#8'OnChange'#7#15'LongEdit4Change'#5'Value'#2#0#8'MaxValue'#2'd'#0#0 ++ +#7'TButton'#7'Button1'#4'Left'#3#21#1#6'Height'#2#25#3'Top'#2#2#5'Width'#2'[' ++ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'No Margin'#7'OnClick'#7#12 ++ +'Button1Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button2'#4'Left'#3#21#1#6'He' ++ +'ight'#2#25#3'Top'#2' '#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Ca' ++ +'ption'#6#14'Default Margin'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#5#0 ++ +#0#0#7'TButton'#7'Button3'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#0#1#5'Wid' ++ +'th'#2'K'#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#6 ++ +#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_print.pas skychart_3.2_up/skychart/pu_print.pas +--- skychart_3.2/skychart/pu_print.pas 2010-09-14 20:28:05.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_print.pas 2011-03-09 15:18:23.187267809 +0100 +@@ -1,219 +1,219 @@ +-unit pu_print; +-{ +-Copyright (C) 2006 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +-{$mode objfpc}{$H+} +- +-interface +- +-uses u_help, u_translation, u_constant, u_util, +- Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls, +- Buttons, StdCtrls, enhedits, Printers, LazHelpHTML; +- +-type +- +- { Tf_print } +- +- Tf_print = class(TForm) +- Button1: TButton; +- Button2: TButton; +- Button3: TButton; +- GroupBox1: TGroupBox; +- Label1: TLabel; +- Label2: TLabel; +- Label3: TLabel; +- Label4: TLabel; +- LongEdit1: TLongEdit; +- LongEdit2: TLongEdit; +- LongEdit3: TLongEdit; +- LongEdit4: TLongEdit; +- PrinterInfo: TLabel; +- Setup: TButton; +- Print: TButton; +- Cancel: TButton; +- prtcolor: TRadioGroup; +- prtorient: TRadioGroup; +- procedure Button1Click(Sender: TObject); +- procedure Button2Click(Sender: TObject); +- procedure Button3Click(Sender: TObject); +- procedure FormCreate(Sender: TObject); +- procedure FormShow(Sender: TObject); +- procedure LongEdit1Change(Sender: TObject); +- procedure LongEdit2Change(Sender: TObject); +- procedure LongEdit3Change(Sender: TObject); +- procedure LongEdit4Change(Sender: TObject); +- procedure prtcolorClick(Sender: TObject); +- procedure prtorientClick(Sender: TObject); +- procedure SetupClick(Sender: TObject); +- private +- { private declarations } +- Procedure ShowPrtInfo; +- public +- { public declarations } +- cm: Tconf_main; +- procedure SetLang; +- end; +- +-var +- f_print: Tf_print; +- +-implementation +- +-uses pu_printsetup; +- +-procedure Tf_print.SetLang; +-begin +-Caption:=rsPrintChart; +-prtcolor.caption:=rsColor; +-prtcolor.Items[0]:=rsColorLineMod; +-prtcolor.Items[1]:=rsBlackWhiteLi; +-prtcolor.Items[2]:=rsAsOnScreenBl; +-prtorient.caption:=rsOrientation; +-prtorient.Items[0]:=rsPortrait; +-prtorient.Items[1]:=rsLandscape; +-GroupBox1.caption:=rsPageMarginIn; +-Label1.caption:=rsLeft; +-Label2.caption:=rsRight; +-Label3.caption:=rsTop; +-Label4.caption:=rsBottom; +-Button1.caption:=rsNoMargin; +-Button2.caption:=rsDefaultMargi; +-Button3.caption:=rsHelp; +-Setup.caption:=rsSetup; +-Print.caption:=rsPrint; +-Cancel.Caption:=rsCancel; +-SetHelp(self,hlpMenuFile); +-end; +- +-procedure Tf_print.FormShow(Sender: TObject); +-begin +-if cm.PrintLandscape then prtorient.ItemIndex:=1 +- else prtorient.ItemIndex:=0; +-LongEdit1.Value:=cm.PrtLeftMargin; +-LongEdit2.Value:=cm.PrtRightMargin; +-LongEdit3.Value:=cm.PrtTopMargin; +-LongEdit4.Value:=cm.PrtBottomMargin; +-ShowPrtInfo; +-end; +- +-procedure Tf_print.Button1Click(Sender: TObject); +-begin +-LongEdit1.Value:=0; +-LongEdit2.Value:=0; +-LongEdit3.Value:=0; +-LongEdit4.Value:=0; +-end; +- +-procedure Tf_print.Button2Click(Sender: TObject); +-begin +-LongEdit1.Value:=15; +-LongEdit2.Value:=15; +-LongEdit3.Value:=10; +-LongEdit4.Value:=5; +-end; +- +-procedure Tf_print.Button3Click(Sender: TObject); +-begin +- ShowHelp; +-end; +- +-procedure Tf_print.FormCreate(Sender: TObject); +-begin +- SetLang; +-end; +- +-procedure Tf_print.LongEdit1Change(Sender: TObject); +-begin +-cm.PrtLeftMargin:=LongEdit1.Value; +-end; +- +-procedure Tf_print.LongEdit2Change(Sender: TObject); +-begin +-cm.PrtRightMargin:=LongEdit2.Value; +-end; +- +-procedure Tf_print.LongEdit3Change(Sender: TObject); +-begin +-cm.PrtTopMargin:=LongEdit3.Value; +-end; +- +-procedure Tf_print.LongEdit4Change(Sender: TObject); +-begin +-cm.PrtBottomMargin:=LongEdit4.Value; +-end; +- +-procedure Tf_print.ShowPrtInfo; +-var i: integer; +-begin +-if (cm.PrintMethod=0)and(Printer.PrinterIndex<0) then begin +- cm.PrintMethod:=1; +-end; +-prtcolor.ItemIndex:=cm.PrintColor; +-if ((cm.PrintMethod=0)or(cm.PrintMethod=1)) then begin +- if prtcolor.ItemIndex=2 then prtcolor.ItemIndex:=0; +- if prtcolor.Items.Count>=3 then prtcolor.Items.Delete(2); +-end else begin +- if prtcolor.Items.Count<3 then +- prtcolor.Items.Add(rsAsOnScreenBl) +- else +- prtcolor.Items[2]:=rsAsOnScreenBl; +-end; +-cm.PrintColor:=prtcolor.ItemIndex; +-case cm.PrintMethod of +-0 : begin +- GetPrinterResolution(cm.prtname,i); +- PrinterInfo.Caption:=rsprinter+blank+cm.prtname+' @ '+inttostr(i)+' DPI'; +- end; +-1 : begin +- PrinterInfo.Caption:=rsPostscript+' @ '+inttostr(cm.PrinterResolution)+' DPI'; +- end; +-2 : begin +- PrinterInfo.Caption:=rsBitmap+' @ '+inttostr(cm.PrinterResolution)+' DPI'; +- end; +-end; +-end; +- +-procedure Tf_print.prtcolorClick(Sender: TObject); +-begin +-if ((cm.PrintMethod=0)or(cm.PrintMethod=1))and(prtcolor.ItemIndex=2) then prtcolor.ItemIndex:=0; +-cm.PrintColor:=prtcolor.ItemIndex; +-end; +- +-procedure Tf_print.prtorientClick(Sender: TObject); +-begin +-cm.PrintLandscape:=(prtorient.ItemIndex=1); +-end; +- +-procedure Tf_print.SetupClick(Sender: TObject); +-begin +-f_printsetup.cm:=cm; +-formpos(f_printsetup,mouse.cursorpos.x,mouse.cursorpos.y); +-if f_printsetup.showmodal=mrOK then begin +- cm:=f_printsetup.cm; +- ShowPrtInfo; +-end; +-end; +- +-initialization +- {$I pu_print.lrs} +- +-end. ++unit pu_print; ++{ ++Copyright (C) 2006 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++{$mode objfpc}{$H+} ++ ++interface ++ ++uses u_help, u_translation, u_constant, u_util, ++ Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls, ++ Buttons, StdCtrls, enhedits, Printers, LazHelpHTML; ++ ++type ++ ++ { Tf_print } ++ ++ Tf_print = class(TForm) ++ Button1: TButton; ++ Button2: TButton; ++ Button3: TButton; ++ GroupBox1: TGroupBox; ++ Label1: TLabel; ++ Label2: TLabel; ++ Label3: TLabel; ++ Label4: TLabel; ++ LongEdit1: TLongEdit; ++ LongEdit2: TLongEdit; ++ LongEdit3: TLongEdit; ++ LongEdit4: TLongEdit; ++ PrinterInfo: TLabel; ++ Setup: TButton; ++ Print: TButton; ++ Cancel: TButton; ++ prtcolor: TRadioGroup; ++ prtorient: TRadioGroup; ++ procedure Button1Click(Sender: TObject); ++ procedure Button2Click(Sender: TObject); ++ procedure Button3Click(Sender: TObject); ++ procedure FormCreate(Sender: TObject); ++ procedure FormShow(Sender: TObject); ++ procedure LongEdit1Change(Sender: TObject); ++ procedure LongEdit2Change(Sender: TObject); ++ procedure LongEdit3Change(Sender: TObject); ++ procedure LongEdit4Change(Sender: TObject); ++ procedure prtcolorClick(Sender: TObject); ++ procedure prtorientClick(Sender: TObject); ++ procedure SetupClick(Sender: TObject); ++ private ++ { private declarations } ++ Procedure ShowPrtInfo; ++ public ++ { public declarations } ++ cm: Tconf_main; ++ procedure SetLang; ++ end; ++ ++var ++ f_print: Tf_print; ++ ++implementation ++ ++uses pu_printsetup; ++ ++procedure Tf_print.SetLang; ++begin ++Caption:=rsPrintChart; ++prtcolor.caption:=rsColor; ++prtcolor.Items[0]:=rsColorLineMod; ++prtcolor.Items[1]:=rsBlackWhiteLi; ++prtcolor.Items[2]:=rsAsOnScreenBl; ++prtorient.caption:=rsOrientation; ++prtorient.Items[0]:=rsPortrait; ++prtorient.Items[1]:=rsLandscape; ++GroupBox1.caption:=rsPageMarginIn; ++Label1.caption:=rsLeft; ++Label2.caption:=rsRight; ++Label3.caption:=rsTop; ++Label4.caption:=rsBottom; ++Button1.caption:=rsNoMargin; ++Button2.caption:=rsDefaultMargi; ++Button3.caption:=rsHelp; ++Setup.caption:=rsSetup; ++Print.caption:=rsPrint; ++Cancel.Caption:=rsCancel; ++SetHelp(self,hlpMenuFile); ++end; ++ ++procedure Tf_print.FormShow(Sender: TObject); ++begin ++if cm.PrintLandscape then prtorient.ItemIndex:=1 ++ else prtorient.ItemIndex:=0; ++LongEdit1.Value:=cm.PrtLeftMargin; ++LongEdit2.Value:=cm.PrtRightMargin; ++LongEdit3.Value:=cm.PrtTopMargin; ++LongEdit4.Value:=cm.PrtBottomMargin; ++ShowPrtInfo; ++end; ++ ++procedure Tf_print.Button1Click(Sender: TObject); ++begin ++LongEdit1.Value:=0; ++LongEdit2.Value:=0; ++LongEdit3.Value:=0; ++LongEdit4.Value:=0; ++end; ++ ++procedure Tf_print.Button2Click(Sender: TObject); ++begin ++LongEdit1.Value:=15; ++LongEdit2.Value:=15; ++LongEdit3.Value:=10; ++LongEdit4.Value:=5; ++end; ++ ++procedure Tf_print.Button3Click(Sender: TObject); ++begin ++ ShowHelp; ++end; ++ ++procedure Tf_print.FormCreate(Sender: TObject); ++begin ++ SetLang; ++end; ++ ++procedure Tf_print.LongEdit1Change(Sender: TObject); ++begin ++cm.PrtLeftMargin:=LongEdit1.Value; ++end; ++ ++procedure Tf_print.LongEdit2Change(Sender: TObject); ++begin ++cm.PrtRightMargin:=LongEdit2.Value; ++end; ++ ++procedure Tf_print.LongEdit3Change(Sender: TObject); ++begin ++cm.PrtTopMargin:=LongEdit3.Value; ++end; ++ ++procedure Tf_print.LongEdit4Change(Sender: TObject); ++begin ++cm.PrtBottomMargin:=LongEdit4.Value; ++end; ++ ++procedure Tf_print.ShowPrtInfo; ++var i: integer; ++begin ++if (cm.PrintMethod=0)and(Printer.PrinterIndex<0) then begin ++ cm.PrintMethod:=1; ++end; ++prtcolor.ItemIndex:=cm.PrintColor; ++if ((cm.PrintMethod=0)or(cm.PrintMethod=1)) then begin ++ if prtcolor.ItemIndex=2 then prtcolor.ItemIndex:=0; ++ if prtcolor.Items.Count>=3 then prtcolor.Items.Delete(2); ++end else begin ++ if prtcolor.Items.Count<3 then ++ prtcolor.Items.Add(rsAsOnScreenBl) ++ else ++ prtcolor.Items[2]:=rsAsOnScreenBl; ++end; ++cm.PrintColor:=prtcolor.ItemIndex; ++case cm.PrintMethod of ++0 : begin ++ GetPrinterResolution(cm.prtname,i); ++ PrinterInfo.Caption:=rsprinter+blank+cm.prtname+' @ '+inttostr(i)+' DPI'; ++ end; ++1 : begin ++ PrinterInfo.Caption:=rsPostscript+' @ '+inttostr(cm.PrinterResolution)+' DPI'; ++ end; ++2 : begin ++ PrinterInfo.Caption:=rsBitmap+' @ '+inttostr(cm.PrinterResolution)+' DPI'; ++ end; ++end; ++end; ++ ++procedure Tf_print.prtcolorClick(Sender: TObject); ++begin ++if ((cm.PrintMethod=0)or(cm.PrintMethod=1))and(prtcolor.ItemIndex=2) then prtcolor.ItemIndex:=0; ++cm.PrintColor:=prtcolor.ItemIndex; ++end; ++ ++procedure Tf_print.prtorientClick(Sender: TObject); ++begin ++cm.PrintLandscape:=(prtorient.ItemIndex=1); ++end; ++ ++procedure Tf_print.SetupClick(Sender: TObject); ++begin ++f_printsetup.cm:=cm; ++formpos(f_printsetup,mouse.cursorpos.x,mouse.cursorpos.y); ++if f_printsetup.showmodal=mrOK then begin ++ cm:=f_printsetup.cm; ++ ShowPrtInfo; ++end; ++end; ++ ++initialization ++ {$I pu_print.lrs} ++ ++end. + +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_progressbar.lfm skychart_3.2_up/skychart/pu_progressbar.lfm +--- skychart_3.2/skychart/pu_progressbar.lfm 2010-08-29 11:34:10.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_progressbar.lfm 2011-03-09 15:18:23.188267686 +0100 +@@ -1,61 +1,61 @@ +-object f_progress: Tf_progress +- Left = 249 +- Height = 162 +- Top = 317 +- Width = 422 +- HorzScrollBar.Page = 421 +- VertScrollBar.Page = 161 +- BorderStyle = bsToolWindow +- Caption = 'Progress' +- ClientHeight = 162 +- ClientWidth = 422 +- Font.Height = -11 +- FormStyle = fsStayOnTop +- OnCreate = FormCreate +- Position = poDefaultPosOnly +- LCLVersion = '0.9.29' +- object Label1: TLabel +- Left = 16 +- Height = 14 +- Top = 4 +- Width = 33 +- Caption = 'Label1' +- ParentColor = False +- end +- object Label2: TLabel +- Left = 16 +- Height = 14 +- Top = 56 +- Width = 33 +- Caption = 'Label2' +- ParentColor = False +- end +- object SpeedButton2: TSpeedButton +- Left = 159 +- Height = 25 +- Top = 112 +- Width = 75 +- Caption = 'Abort' +- Color = clBtnFace +- NumGlyphs = 0 +- OnClick = SpeedButton2Click +- end +- object ProgressBar1: TProgressBar +- Left = 16 +- Height = 25 +- Top = 24 +- Width = 361 +- Max = 1 +- Step = 1 +- TabOrder = 0 +- end +- object ProgressBar2: TProgressBar +- Left = 16 +- Height = 25 +- Top = 72 +- Width = 361 +- Max = 1 +- Step = 1 +- TabOrder = 1 +- end ++object f_progress: Tf_progress ++ Left = 249 ++ Height = 162 ++ Top = 317 ++ Width = 422 ++ HorzScrollBar.Page = 421 ++ VertScrollBar.Page = 161 ++ BorderStyle = bsToolWindow ++ Caption = 'Progress' ++ ClientHeight = 162 ++ ClientWidth = 422 ++ Font.Height = -11 ++ FormStyle = fsStayOnTop ++ OnCreate = FormCreate ++ Position = poDefaultPosOnly ++ LCLVersion = '0.9.29' ++ object Label1: TLabel ++ Left = 16 ++ Height = 14 ++ Top = 4 ++ Width = 33 ++ Caption = 'Label1' ++ ParentColor = False ++ end ++ object Label2: TLabel ++ Left = 16 ++ Height = 14 ++ Top = 56 ++ Width = 33 ++ Caption = 'Label2' ++ ParentColor = False ++ end ++ object SpeedButton2: TSpeedButton ++ Left = 159 ++ Height = 25 ++ Top = 112 ++ Width = 75 ++ Caption = 'Abort' ++ Color = clBtnFace ++ NumGlyphs = 0 ++ OnClick = SpeedButton2Click ++ end ++ object ProgressBar1: TProgressBar ++ Left = 16 ++ Height = 25 ++ Top = 24 ++ Width = 361 ++ Max = 1 ++ Step = 1 ++ TabOrder = 0 ++ end ++ object ProgressBar2: TProgressBar ++ Left = 16 ++ Height = 25 ++ Top = 72 ++ Width = 361 ++ Max = 1 ++ Step = 1 ++ TabOrder = 1 ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_progressbar.lrs skychart_3.2_up/skychart/pu_progressbar.lrs +--- skychart_3.2/skychart/pu_progressbar.lrs 2010-08-29 11:34:10.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_progressbar.lrs 2011-03-09 15:18:57.115096055 +0100 +@@ -1,5 +1,3 @@ +-{ This is an automatically generated lazarus resource file } +- + LazarusResources.Add('Tf_progress','FORMDATA',[ + 'TPF0'#11'Tf_progress'#10'f_progress'#4'Left'#3#249#0#6'Height'#3#162#0#3'Top' + +#3'='#1#5'Width'#3#166#1#18'HorzScrollBar.Page'#3#165#1#18'VertScrollBar.Pag' +diff -ur skychart_3.2/skychart/pu_splash.lrs skychart_3.2_up/skychart/pu_splash.lrs +--- skychart_3.2/skychart/pu_splash.lrs 2010-09-16 20:50:37.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_splash.lrs 2011-03-09 15:18:23.206265473 +0100 +@@ -1,3633 +1,3633 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tf_splash','FORMDATA',[ +- 'TPF0'#9'Tf_splash'#8'f_splash'#4'Left'#3#165#1#6'Height'#3#7#1#3'Top'#3#156#0 +- +#5'Width'#3#240#1#13'ActiveControl'#7#6'Panel1'#11'BorderIcons'#11#0#11'Bord' +- +'erStyle'#7#6'bsNone'#7'Caption'#6#8'f_splash'#12'ClientHeight'#3#7#1#11'Cli' +- +'entWidth'#3#240#1#10'Font.Color'#7#7'clBlack'#11'Font.Height'#2#245#9'FormS' +- +'tyle'#7#8'fsSplash'#8'OnCreate'#7#10'FormCreate'#9'OnMouseUp'#7#11'FormMous' +- +'eUp'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' +- +#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#7#1#3'Top'#2#0#5 +- +'Width'#3#240#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#7'Caption' +- +#6#14'Cartes du Ciel'#12'ClientHeight'#3#7#1#11'ClientWidth'#3#240#1#8'TabOr' +- +'der'#2#0#10'OnDblClick'#7#12'logoDblClick'#0#6'TImage'#6'Image1'#4'Left'#2#0 +- +#6'Height'#3#7#1#3'Top'#2#0#5'Width'#3#240#1#5'Align'#7#8'alClient'#10'OnDbl' +- +'Click'#7#12'logoDblClick'#12'Picture.Data'#10#182#21#4#0#7'TPixmap'#170#21#4 +- +#0'/* XPM */'#10'static char *splash[] = {'#10'/* columns rows colors chars-' +- +'per-pixel */'#10'"496 263 256 2",'#10'" c #00090009000A",'#10'". c #0411' +- +'040B0AF1",'#10'"X c #0F640F630F63",'#10'"o c #087D07CA06D8",'#10'"O c #0' +- +'01C0D101A81",'#10'"+ c #081208301667",'#10'"@ c #0CC4119214A6",'#10'"# c' +- +' #11AB0E410D7B",'#10'"$ c #1A9A003F003F",'#10'"% c #10FC106B0E9D",'#10'"&' +- +' c #1A7E1A7B0D09",'#10'"* c #13C4139D1353",'#10'"= c #16311A1F1A95",'#10 +- +'"- c #1977163F1535",'#10'"; c #1B1B1A381648",'#10'": c #1B461B3D1B20",' +- +#10'"> c #123012E019DA",'#10'", c #068C068C26D5",'#10'"< c #002E002B3D8C"' +- +','#10'"1 c #08B309093636",'#10'"2 c #1597177B286D",'#10'"3 c #1741172C38' +- +'1C",'#10'"4 c #0BB6182424C0",'#10'"5 c #1BEC220F2385",'#10'"6 c #1B71352' +- +'D3670",'#10'"7 c #24700AA80A5D",'#10'"8 c #22BD1DA11C1E",'#10'"9 c #2872' +- +'170015AC",'#10'"0 c #334D18DA1847",'#10'"q c #234921C81D9D",'#10'"w c #2' +- +'7C727A81802",'#10'"e c #373737371B1B",'#10'"r c #39BA390E1CF2",'#10'"t c' +- +' #203D203C203B",'#10'"y c #255129D92A44",'#10'"u c #29732612256D",'#10'"i' +- +' c #2A8B2998265E",'#10'"p c #2BC72B442AA9",'#10'"a c #24E425562A69",'#10 +- +'"s c #29552AAD358E",'#10'"d c #2CAF32EA3381",'#10'"f c #2BC037D039B6",' +- +#10'"g c #326B2DA92C55",'#10'"h c #38702868269A",'#10'"j c #32FF31AC2E04"' +- +','#10'"k c #395C373727C1",'#10'"l c #344733E13302",'#10'"z c #338C3B623C' +- +'47",'#10'"x c #3A98349A32AF",'#10'"c c #3B2F39AA3545",'#10'"v c #3BFB3BE' +- +'23B09",'#10'"b c #33E134D539EF",'#10'"n c #30302F2F3F3F",'#10'"m c #1F77' +- +'206D1C58",'#10'"M c #109410AD4DAB",'#10'"N c #0E940E946C52",'#10'"B c #2' +- +'81F288146B9",'#10'"V c #379E38F24629",'#10'"C c #3782377757F8",'#10'"Z c' +- +' #2AA32EFB5046",'#10'"A c #39C739C766E1",'#10'"S c #37E237F876F6",'#10'"D' +- +' c #2833284A7166",'#10'"F c #1F1F20205252",'#10'"G c #3ABA42F543F6",'#10 +- +'"H c #39F346AE485B",'#10'"J c #3D604CBC5223",'#10'"K c #445D2C312ABA",' +- +#10'"L c #434D3CDB3A2C",'#10'"P c #4617395F370D",'#10'"I c #4E5437043039"' +- +','#10'"U c #7291000A000A",'#10'"Y c #55432DFF2C50",'#10'"T c #444E42823D' +- +'3F",'#10'"R c #4A4245163BFF",'#10'"E c #4ED647A231E6",'#10'"W c #630D5A5' +- +'A3D3D",'#10'"Q c #40A740A34099",'#10'"! c #4C6D4AC14505",'#10'"~ c #4BE7' +- +'4BC14B2B",'#10'"^ c #461E481E487C",'#10'"/ c #46CA48965860",'#10'"( c #4' +- +'801563F585D",'#10'") c #558D4A23469F",'#10'"_ c #58A155E04B83",'#10'"` c' +- +' #540053BD53BD",'#10'"'' c #5C185C085BE8",'#10'"] c #5A4F5A03553F",'#10'"' +- +'[ c #4E55511C444E",'#10'"{ c #469846A86677",'#10'"} c #4958493A762A",'#10 +- +'"| c #569B59366572",'#10'" . c #54085ACF7064",'#10'".. c #567E67C869AB",' +- +#10'"X. c #5B7072B1752F",'#10'"o. c #5309676069F4",'#10'"O. c #66E6591E5412"' +- +','#10'"+. c #6CB3544C5052",'#10'"@. c #681963F15A0A",'#10'"#. c #772D66F45D' +- +'19",'#10'"$. c #6D636C17528D",'#10'"%. c #644C644C6483",'#10'"&. c #6DCB6DC' +- +'A6DC7",'#10'"*. c #681B6989680D",'#10'"=. c #682B681B783B",'#10'"-. c #6457' +- +'77FD79D1",'#10'";. c #77126ABF641D",'#10'":. c #7910770D6947",'#10'">. c #7' +- +'62F76307630",'#10'",. c #7B2C7B387B33",'#10'"<. c #793F79DF769B",'#10'"1. c' +- +' #6AB672B86A4F",'#10'"2. c #62B85FB55C5C",'#10'"3. c #3EBF41414B4B",'#10'"4' +- +'. c #000F000E80F1",'#10'"5. c #0B8B0B8B8606",'#10'"6. c #1305134993E4",'#10 +- +'"7. c #14431489B1C8",'#10'"8. c #2F1A2EC69283",'#10'"9. c #2FB52FEDB24D",' +- +#10'"0. c #0E5F0E5FCF63",'#10'"q. c #00D100D4FFD3",'#10'"w. c #0BC30B92FFE7"' +- +','#10'"e. c #012C012CF4F4",'#10'"r. c #139D139DFF4D",'#10'"t. c #1B2F1B11FF' +- +'C4",'#10'"y. c #18C3186EFCFC",'#10'"u. c #099C09AEEA57",'#10'"i. c #30C830C' +- +'8CF14",'#10'"p. c #23E123E1FFC8",'#10'"a. c #2C242C12FFFF",'#10'"s. c #2811' +- +'283FF99C",'#10'"d. c #33E633DBFFEE",'#10'"f. c #3BFC3BF8FFF1",'#10'"g. c #3' +- +'7CA376EFA55",'#10'"h. c #2F402F40EF44",'#10'"j. c #1F1F2020E8E8",'#10'"k. c' +- +' #3F3F4040FFFF",'#10'"l. c #40963EE9FFFF",'#10'"z. c #5631560D9704",'#10'"x' +- +'. c #4C3C4C648C8C",'#10'"c. c #56BD569BB73F",'#10'"v. c #4D4C4CF1AC51",'#10 +- +'"b. c #68F869078947",'#10'"n. c #705274D58E51",'#10'"m. c #6A226A22A7E5",' +- ,#10'"M. c #7272727CB4F2",'#10'"N. c #5F5F7B7B8484",'#10'"B. c #52FB52FBD130"' +- +','#10'"V. c #43A943A7FFE0",'#10'"C. c #4BBD4BBFFFE0",'#10'"Z. c #492C4910F8' +- +'DB",'#10'"A. c #53D553C2FFE2",'#10'"S. c #5BE55BE1FFF9",'#10'"D. c #593B58E' +- +'FF9DB",'#10'"F. c #50154FD9EDF7",'#10'"G. c #5F2C60FAFFFF",'#10'"H. c #60C7' +- +'5EC5FFFF",'#10'"J. c #71897159D2E4",'#10'"K. c #65A565A5EA9D",'#10'"L. c #6' +- +'40B6404FFF4",'#10'"P. c #6BB86BA8FFF8",'#10'"I. c #6846685DFB96",'#10'"U. c' +- +' #6F4470DBFF54",'#10'"Y. c #742D7434FFF1",'#10'"T. c #7C117C14FFED",'#10'"R' +- +'. c #785278CEFBFB",'#10'"E. c #754E750EF0BD",'#10'"W. c #3ABB41C7AB07",'#10 +- +'"Q. c #79F9828272F2",'#10'"!. c #6AA384DA8824",'#10'"~. c #74378AD08B9F",' +- +#10'"^. c #7A3396799A44",'#10'"/. c #74748DB291DA",'#10'"(. c #7CD29E9EA54F"' +- +','#10'"). c #7D7D80DDFFD0",'#10'"_. c #7F7FA6A6FFFF",'#10'"`. c #8594685964' +- +'64",'#10'"''. c #88337D227703",'#10'"]. c #91067676705B",'#10'"[. c #8E386F' +- +'C562B8",'#10'"{. c #ABAB42C342C3",'#10'"}. c #80807F7FFF29",'#10'"|. c #8CD' +- +'3868678DC",'#10'" X c #AAD58AE07BA6",'#10'".X c #8BE88BF08BDA",'#10'"XX c #' +- +'856384F884A3",'#10'"oX c #948F948F948F",'#10'"OX c #9AC59B1A9B36",'#10'"+X ' +- +'c #9150907B8EE6",'#10'"@X c #8D458E04B0C4",'#10'"#X c #8D98AD8BB1C2",'#10'"' +- +'$X c #AE4392D28B0A",'#10'"%X c #B088A7CF92E1",'#10'"&X c #AAB9A95DAAD7",'#10 +- +'"*X c #AF40AF95B613",'#10'"=X c #880787F7D797",'#10'"-X c #927B927BCD1E",' +- +#10'";X c #83EE83E7FFDB",'#10'":X c #8BF88BFAFFE1",'#10'">X c #883F88D1FE34"' +- +','#10'",X c #98879898EA50",'#10'"<X c #93F693F2FFF6",'#10'"1X c #9B9B9BA9FF' +- +'DF",'#10'"2X c #98EA98ADF9D0",'#10'"3X c #897D8A72F2B5",'#10'"4X c #9B1ABAB' +- +'AC6C6",'#10'"5X c #9555A9C9FFFF",'#10'"6X c #AE64AE7FD30F",'#10'"7X c #A80E' +- +'A7ECEAB7",'#10'"8X c #A3E7A3E0FFED",'#10'"9X c #AC32AC23FFE6",'#10'"0X c #A' +- +'8BFA8FAFD94",'#10'"qX c #AD96B10DFFFF",'#10'"wX c #B0B0AFAFFFFF",'#10'"eX c' +- +' #B420B425FFFD",'#10'"rX c #BC2BBC2DFFD3",'#10'"tX c #B77CB89AFC85",'#10'"y' +- +'X c #B77CB754E937",'#10'"uX c #A0A09F9FFFFF",'#10'"iX c #A9CFD100D43C",'#10 +- +'"pX c #B825CC02F966",'#10'"aX c #B598E804EC08",'#10'"sX c #9CC7C771CBF6",' +- +#10'"dX c #C9E6987B9321",'#10'"fX c #C8FBB5E8AE61",'#10'"gX c #E0C0B332A464"' +- +','#10'"hX c #C0C0BF9AFC44",'#10'"jX c #E8E8A9A9FFFF",'#10'"kX c #D2D2CB20B6' +- +'44",'#10'"lX c #EEEECE4EBC3C",'#10'"zX c #D133CEE7D01A",'#10'"xX c #C42CC43' +- +'3FFE8",'#10'"cX c #CC00CC10FFEF",'#10'"vX c #C865CAA2FABF",'#10'"bX c #D40F' +- +'D420FFEF",'#10'"nX c #DBFBDC01FFF2",'#10'"mX c #D86AD8A1FAD5",'#10'"MX c #D' +- +'011D0C8F0F8",'#10'"NX c #C8C8FCB3FE0F",'#10'"BX c #D83EFFFFFFFF",'#10'"VX c' +- +' #D990E375FC20",'#10'"CX c #F1C6D672D008",'#10'"ZX c #E449E453FFF2",'#10'"A' +- +'X c #EC68EC85FFE7",'#10'"SX c #E719E89BFCE2",'#10'"DX c #E968F91DFFFF",'#10 +- +'"FX c #FFCAEDCAEDDB",'#10'"GX c #FB2DE7A2E6E6",'#10'"HX c #F491F480FFE8",' +- +#10'"JX c #FFA8F511F509",'#10'"KX c #FE1EFD20FEE6",'#10'"LX c #F98EF9F9FB25"' +- +','#10'"PX c #EF83ED30EF32",'#10'"IX c #EE98E48EE3E3",'#10'"UX c #B8B8C7C7B7' +- +'B7",'#10'/* pixels */'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXXl ",'#10'"oXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.* ",'#10 +- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXv ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX-.",'#10 +- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- ,'oXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX.X&.&.&.&.' +- +'&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' +- +'.,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' +- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' +- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' +- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.,.&.&.&.&.&' +- +'.&.&.&.&.&.&.&.&.&.''.''.<.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.<..X.X' +- +'XX<.&.1.&.&.&.&.&.XX.X.X,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' +- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' +- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.n.:.&.&.&.&.&.&.&.&.&.&' +- +'.&.&.&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' +- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' +- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.&.&.&.,.' +- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&..XoXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. o : - ' +- +' ' +- +' ' +- +' X % o ' +- +' # t % ' +- +' v Y ]. X{.2 ' +- +' O.%XGXCX&XXX^ * X ' +- +' ' +- +' ' +- +'v ' +- +' ' +- +' = : X X - # ' +- +' &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' o = = . ' +- +' % * o 4. ' +- +' o : p = ' +- +' L #.R o ' +- +' ) dXgX[.' +- +'h ) kXKXKXKXPXoXl ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' ' +- +'- : o X v v ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' % ; o 4. ' +- +' ' +- +' * : o R ;.) o ' +- +' ' +- +' I `.].+.# % %XKXKX' +- +'KXLXzX` ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' o o ' +- +' o v &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. ' +- +' o ' +- +' ' +- +' ' +- +' 8 k q ' +- +' 0 K - ' +- +' %.IXKXKXLXpXB. ' +- ,' ' +- +' o o ' +- +' o - X ' +- +' ' +- +' ' +- +' &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' v o ' +- +' 4.4. ' +- +' ' +- +' ' +- +' ^ ' +- +' 4.B.OXPXKXIXoX9. ' +- +' X i i ' +- +' ' +- +' X u 2 o * i : ' +- +' ' +- +' ' +- +' v ^ ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' v 4. ' +- +' ' +- +' . i t ' +- +' U v ' +- +' ` XX' +- +'OX''.^ 4.4. q $.[ ; ' +- +' ' +- +' * i q o v o o - * ' +- +' ' +- +' ' +- +' X j p o ' +- +' ^ v &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. ' +- +' v ' +- +' X - X ' +- +' p '' ~ * ' +- +' U U U U ' +- +' ^ ' +- +' 4.4. : a = ' +- +' ; R T % ' +- +' X o v ' +- +' ' +- +' ' +- +' w ] ] : ' +- +' o o &' +- +'.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' o X o ' +- +' = p - ' +- +' u ` ^ X ' +- +' ' +- +' U U U U U U * l p v ' +- +' 4. ' +- +' X o ' +- +' o o : o ' +- +' v ' +- +' ' +- +' ' +- +' - R T % o # X ' +- +' v v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' e e e ' +- +' X t X o o 4. o' +- +' - X ' +- +' 5 X ' +- ,' U U U U U ] +Xn.v ' +- +' 4.4. ' +- +' o # o 4. ' +- +' - q % ' +- +' o ` >.~ o v ' +- +' ' +- +' ' +- +' o o X -' +- +' X v v &.OXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. e e e e ' +- +'e o X o o : > 4. ' +- +' ' +- +' y J 6 ' +- +' U U U U U XzX&X' +- +'~ 4. ' +- +' o q - 4. ' +- +' % q % ' +- +' 2 >.*X&.; ' +- +' ' +- +' - 0 - ' +- +' ' +- +' o o &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' e e e e e e e ' +- +' o * X ' +- +' f o.G o ' +- +' ' +- +' U U U U +.''.<.l ' +- +' 4.4. o X o ' +- +' 4. ' +- +' o X ] >.` o ' +- +' ' +- +' # I #.I # ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' e e e e e e e ' +- +' o v 4. ' +- +' ' +- +' = d : ' +- +' o o U o h t ' +- +' ' +- +' ' +- +' ' +- +' o t o ' +- +' ' +- +' # I `.I # ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. e e e e e ' +- +'e e v 4. ' +- +' ' +- +' ' +- +' > = ' +- +' o v 4. ' +- +' 4.4. ' +- +' ' +- +' v ' +- +' ' +- +' - o % x p 8 K 8 ' +- +' ' +- +' &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' e e e e e ^ ' +- ,' ' +- +' ' +- +' ' +- +' f X.N.J v ' +- +' 4. ' +- +' ' +- +' ' +- +' v o ' +- +' o T O.R o ~ .X>.a ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' e e e ' +- +' v o 4. ' +- +' ' +- +' : q ' +- +' o o.#XsX!.5 v ' +- +' 4. ' +- +' 4.4. o % o ' +- +' ' +- +' o # o v ' +- +' # - ' +- +'; +.%X@.8 ..&X.Xl ' +- +' > X ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. = * ' +- +' # ; # ' +- +' 4. ' +- +' - R R : ' +- +' o.#XsXN.2 ' +- +' ^ 4. ' +- +' ' +- +' = p = ' +- +' X ; o ^ ' +- +' ' +- +' % - o R +.R o b O.` = ' +- +' ' +- +' = l p o &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' * p p X X - X ' +- +' ' +- +' ' +- +'X x P - o o Q Q' +- +' Q X.o.X.G Q Q Q v v v ^ V T v ^ T ^ v v v v o v v ' +- +'4.v o o o ' +- +' o q = 4. X * o ' +- +' o ' +- +' ' +- +' o ; o X ' +- +' ' +- +' * p p o ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' X t t o ' +- +' o ' +- +' ' +- +' o # T V ^ v o v v v v ^ v v Q ' +- +' % ) ^ Q Q o @ o ' +- +' o 4. o v L ^ v Q Q T Q ^ v v v ' +- +' ^ v v v o i ] R o 4.4. ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' X o ' +- ,' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. o # o o o ' +- +' ' +- +' 4. ' +- +' v v v Q ' +- +' o o X ' +- +' 4. ' +- +' X o v v v ^ y _ v o ' +- +' 4. ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' ,.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' - i - v ' +- +' 4. ' +- +' v v ^ v ' +- +' o ' +- +' v 4. ' +- +' X : % ' +- +' X u - Q Q Q Q 4.4. ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' % 8 % ' +- +' ^ ' +- +' 8 K 9 v ^ v v ^' +- +' ' +- +' v ' +- +' % - o o % X ' +- +' X * o v v G ' +- +' . # o ' +- +' v ' +- +' ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXOXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. o ' +- +' v ' +- +' 4. # I `.I v T ' +- +' v ^ v ' +- +' ' +- +' ^ 4.4. - 9 o ' +- +' ' +- +' X *.5 v v v 4.4. 7 u - ' +- +' Q ' +- +' ' +- +' ' +- +' ' +- +' &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' v ' +- +' 4. ' +- +' ^ ;.+.x v ^ ' +- +' ' +- +' v ' +- +' o o X t : ' +- +' O o./.!.H o ^ 4.) ] - o ' +- +' ' +- +' Q ' +- ,' ' +- +' ' +- +' ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' ' +- +' v v X 7 o ' +- +' ' +- +' 4.4.4' +- +'. ' +- +' = x p X f ^.aXsXX.X ' +- +' 4.o ^ v v v ' +- +' Q % : - ' +- +' ' +- +' ' +- +' X % o ' +- +' v o &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' v v ^ ' +- +' ' +- +' ' +- +' ' +- +' o : = ' +- +' f ^.aXsXX.@ 4.4. Q Q ' +- +' ' +- +'; p ; ' +- +' ' +- +' # ; o o & #' +- +' o V &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' 4. ^ v ^ ^ ' +- +' o @ o ' +- +' : ^ v ' +- +' 4.4. ' +- +' ' +- +' X ( !.X.z ' +- +' v Q Q ' +- +' o * o ' +- +' o ' +- +' o o ' +- +' # X - g ; ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' o v v o - o ' +- +' = y * ' +- +' ' +- +'T XX%.: ' +- +' ' +- +' . 4 5 ' +- +' 4.4. Q Q Q v o ' +- +' t t t t t t o' +- +' o % c P # ' +- +' ' +- +' o % # X ; % ' +- +' &.OXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. ' +- +' v o' +- +' v v X ^ ! : @ 5 X ' +- +' ' +- +' g ..~ * ' +- +' 4.4. Q ' +- +' ' +- ,' ' +- +' v ^ ' +- +'t t t t t t t t : t t t d z y t 5 t t t t t t t t t t t T ;.#.T t t t t t t' +- +' t t : t t t t ' +- +' o ' +- +' &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' o v ' +- +' v ^ v v 4.c %X&X_ ' +- +' o ' +- +' : # ' +- +' 4. G ' +- +' ' +- +' ' +- +' 4.4. T v ' +- +' o v t t t t t t t t t t t t d z u t t t t t t t t t t ' +- +'t t t j _ _ v t t t 5 8 t t t t t t t t t ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' ' +- +' v v ^ v v.dXfX' +- +'O. o # o ' +- +' ' +- +' 4. Q ' +- +' ' +- +' ' +- +' 4. ' +- +' v v ^ v o v t t t t t t t t t t t t t t t t t t' +- +' t q t t t t t t t t 8 t t t t t u g g t t t t t t t t t t t t t t t ' +- +' ' +- +' ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. ' +- +' o v ^ ' +- +' h #.[.h # - o ' +- +' ' +- +' ' +- +' o v ' +- +' ' +- +' 4. ' +- +' v ^ v v t t t : t t ' +- +'t t t t t t t t t t t t t t q t t t t t t t t 5 t t t t t 8 5 t t t 5 t t t' +- +' t t t t t t t t t q q t ' +- +' ' +- +' o v &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' % o v v ' +- +' 8.q ' +- +' o X ' +- +' ' +- +' 4.4. 5 z 5 ' +- +' ' +- +' ' +- +' 4. o o ' +- +' ^ ^ v t t t t t t t t t t : t t t t t t t q 2 t t t t t t t t t t ' +- +'8 5 t t t 8 t t t 8 t t t t t t t t t t t t q 2 t t t t t t 8 5 t t 8 t t t' +- +' ' +- +' ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' < N 9.j.u.e.e.q.e.e.0.B.9' +- +'.M 4. ' +- +' ' +- +' ' +- ,' 4. = o' +- +'./.o.> ' +- +' ' +- +' 4. ' +- +' o ; - t t v v u 5 8 5 t 8 2 q t t t t t t q :' +- +' 8 Z 8.v.B.F.D.H.L.H.D.B.B.x.D : 8 8 8 t t t t t t t 2 q t t q q q 2 t t t ' +- +'t t q 8 5 t t t t t t t t t ' +- +' ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. < 4.e.' +- +'q.r.a.y.e.q.q.q.q.f.V.e.q.e.e.4.+ o ' +- +' - h 9 ' +- +' + 4.u.q.0.N ' +- +' 4. ' +- +' = X.(.X.5 ' +- +' ' +- +' N i.h.h.9., ' +- +' 4.4. o ; % 8 t t u t 5 8 t ' +- +'t v ^ t t t t 8 t t t B v.D.H.P.L.P.L.I.L.I.L.P.P.P.P.I.K.x.s q 2 t t t t t' +- +' t q 5 u A c.K.P.K.c.Z t t u v l t t t t t 8 5 5 8 t t ' +- +' 3 c.E.Y.v.2 ' +- +' ^ &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' . < 7.q.q.q.q.q.w.w.f.q.q.q.q.q.q.q.q.q.q.q.e.4.. ` P R - ' +- +' h +.K ' +- +' o ^ ] d , u.w.' +- +'w.w.w.q.N o u V i ' +- +' 4. G ( H ' +- +' ' +- +' . 9.d.d.d.d.f.d., ' +- +' o > X o ' +- +' 5 t t t t t 8 5 t t t t v ^ q t t t B c.P.P.P.P.P.P.P.P.I.P.P.P.P.P.' +- +'P.P.P.P.L.I.x.a 5 8 t t t 8 q s B.R.Y.P.Y.Y.Y.P.B t O.].#.l t t 5 t t t t t' +- +' : t t t t t t t t 5 t D P.Y.' +- +'>X>XY.K.= ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' . 4.e.q.q.q.q.q.f.f.f.q.q.q.q.q.q.q.q.q' +- +'.q.q.q.q.e.u., %.#.#.g ' +- +'4. - K 8 ' +- +' x XX&X*.X . u.r.w.w.r.w.r.0. % = v ,.~ . ' +- +' 4. v ' +- +' o ' +- +' 9.g.f.f.f.f.k.f.8. ' +- +' 4.4. = ( #XiX^.' +- +'> 8 t v t t t t t 8 t 5 8 t t t t t u v.T.P.P.P' +- +'.P.P.P.P.P.Y.P.P.U.P.U.U.U.U.U.U.U.U.R.K.B q t t t 5 2 J.Y.Y.Y.Y.Y.Y.R.R.z.' +- +'p ;.%X|.T t t 8 t t t t t t t t t t t t t t t t t ' +- +' B Y.Y.T.;X}.Y.Y.8. ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. < 0.q.q.f.q.q.q.' +- +'q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.0. ` R R ; o ' +- +' 4. o @ ' +- +' l XX&X*.* N w.r.r.r.r.r.r.r. ; : o ' +- +' p ` l 4.4. ' +- +' o v ' +- +' ' +- +' 1 f.f.f.k.k.k.V.f.9. ' +- +' . ( aXKXKXBX!. t 5 5 2 ^ t t t t 5 8 t ' +- +'t t t t t 2 B K.P.U.;X;X;XU.U.Y.Y.Y.U.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.B.5 t 2 t' +- +' 8 z.Y.R.R.T.R.T.T.R.T.c.q ) ;.@.i t t t t t 5 t t t 8 t t t t t t t t t t ' +- +'t J.Y.Y.R.R.T.T.Y.c. ' +- +' X # &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' M e.f.f.f.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q. ^ o ' +- ,' % : # X f G = ' +- +' . ^ ` p 7.y.r.r.' +- +'y.y.t.t.t.N . o X 4. ' +- +' v ' +- +' ' +- +' 8.f.V.C.V.V.V.V.f.8. ' +- +' @ !.NXKXKXKX#X t' +- +' t q 8 q v t 5 t t t t t t t t t t C E.P.P.Y.R.Y.Y.Y.Y.Y.Y.Y.Y.Y.R.Y.R.Y.R.' +- +'R.R.R.R.R.T.T.T.;Xu t t t t R.T.T.T.T.T.T.T.T.T.J.q 5 p q 5 t t t t t 8 t t' +- +' t 5 t t t t t t 8 t t t t t t t t t t 3 T.T.T.T.' +- +'T.T.T.T.J. o t 2 o ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' c N e.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q' +- +'.q.q.q.q.q.q.e. # 8 # ' +- +' 4. @ J J = ' +- +' . y.t.p.s.t.p.p.p.t.1 ' +- +' 4. v ' +- +' ' +- +' i.C.C.V.C.C.C.C.C.F .' +- +' @ !.aXKXKXDX' +- +'!. t t t 2 q T t t 8 t t t t 5 8 t t t } U.T.Y.Y.R.Y.Y.R' +- +'.R.T.R.T.:X:X:X:XT.T.T.T.T.T.T.T.T.T.T.T.T.t t t q V T.;X}.}.;X}.;X;X;X;Xz.' +- +'q t t 8 5 8 t 5 t t t t t t t t t t t t t 5 t q 5 t t t t : t t t ' +- +' S ;XT.;X;X}.;X;X;Xc. o ' +- +': : v &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX&. v v V M q.q.q.q.q.q.q.q.q.q.' +- +'q.q.q.q.q.q.q.q.q.q.q.q.w.q.q.w.q.q.q.6. o ' +- +' 4. = 5 ' +- +' , t.p.d.f.a.d.f.d.p. ' +- +' ' +- +' ' +- +' ' +- +' o Z.C.C.L.L.C.C.C.A., ' +- +' o ( (.aXaX5Xf t q q q t t t t t t t t t t ' +- +'t t 8 A R.T.T.T.T.T.T.T.T.T.}.T.T.).T.}.T.T.}.}.:XT.}.;X}.}.;X}.}.m.t t t 2' +- +' V ;X;X;X;X;X;X;X>X;X;XB t t 8 5 8 t t t t 8 t 5 8 t t t t t t t t 8 5 8 q ' +- +'5 q t t t t t t t c.;X;X;X>X;X>X>X>Xx. ' +- +' v o &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. o v ' +- +' < e.q.q.q.q.q.q.q.q.q.q.e.4.M , + M N u.q.w.e.w.w.w.w.w.u.+ ' +- +' ' +- +' N p.s.d.d.' +- +'a.a.f.a.i. 4.4. ' +- +' ' +- +' ' +- +' 3 A.A.U.5X5X).C.A.F. ' +- +' . H o.o.f 4. q t' +- +' t t t t t 5 t t t t t 8 5 8 C R.T.T.T.T.T.;XT.}.}.T.E.z.A n t u s C x.E.>X' +- +'2X<X<X;X>X;X;XE.s 8 5 5 8 u E.:X>X:X>X:X:X:X:Xx.q q 8 5 q q q t t t t 2 q q' +- +' t t t t t t 5 t t t t t t t t t t t 5 8 t t 8 t 2 =X:X:X>X:X' +- +':X:X>X:XZ : p X ' +- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' +- +' T v v , e.q.q.q.w.w.q.w.w.w.w.5.. . M 0.w' +- +'.w.w.w.w.0., ' +- +' 6 6 6 ' +- +' 6.a.s.a.a.a.a.a.a.6. ' +- +' ' +- +' ' +- +' D A.A.).pXpX5XS.A.B. ' +- +' ' +- +' q t t t t t t 8 t t t t t t t n E.;X;X;X;X;X;X;X;X;X;' +- +'Xz.a t t t t : t t t t A J.3X>X>X:X3XJ.b 5 u 8 t q 2 { <X:X:X:X:X:X:Xz.q 5 ' +- +'m 5 q 2 q t t t t t q 5 q t t t t t t t t t t t t t t t t t t t t t t 5 t q' +- +' u > :X:X:X<X:X:X<X<X:X> ' +- ,'> ] >.^ &.oXoXoXoXoXoXoXoX*.",'#10 +- +'"oXoXoXoXoXoXoX>. V 0.w.w.w.w.w.w.w.w.w.u.< ' +- +' < 6.u.0.N . v o ' +- +' 6 H 4.4.6 o o ' +- +' o i.a.a.a.a.d.a.d.a.M o ' +- +' 4.4. o o . ' +- +' ' +- +' . ' +- +' 9.S.S.).5X5X:XS.S.8. ' +- +' 4. t q t t 5 q t t t t t t t t t ' +- +'t J.;X;X;X;X;X;X>X;X3XE.C : 5 t t t t t t t t q q 2 V m.J.J.z.p G L v v q q' +- +' 5 q C M.3X<X3Xm.C t t q t q q 5 q t 5 8 t q t q 2 t t 8 8 t q q t q 2 t t ' +- +'q q t q 8 u t t t 8 t t q t 8 Z <X<X<X<X<X<X<X<X}. ' +- +' = *..X` o &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>. v ^ 5.w' +- +'.r.w.r.w.w.r.r.r.u., v ' +- +' , N 7.0.j.t.s.0.N + M 7.j.p.0.N..XQ.6.6 ' +- +' + 6.j.s.j.6.+ M 6.j.h.s.6.o + 7.h.d.d.d.a.d.d.g.d.' +- +'d.d.f.l.d.d.d.g.i.N o + N 8.i.i.g.k.h.i.8.N' +- +' o ^ + D 9.i.F.Z.Z.F.9.D 2 ' +- +' ' +- +' M 8.v.B.D.S.D.B.W.D o B.S.S.G.).).I.G.G.F . D B.I.B.D ' +- +' 3 v.K.K.c.3 4. t t 2 t' +- +' t 5 L t t t t t t 8 5 t z.>X>X:X>X:X:X:X:X:X}.V q q q t t t t t t t q 5 q ' +- +'q t 2 q t t a q t t t q V T 2 5 : a s t t t t t t t q 2 q q t t t t 5 q q q' +- +' q q 2 d } m.=X=X,X2X,X=Xm.} a q q 2 t t t 5 t t t t t t z.<X<X2X1X2X' +- +'1X1X1Xm. x ~ u ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t ' +- +' , r.r.w.r.r.r.r.r.r.y.< ' +- +' ^ o M 7.p.p.s.p.p.p.p.p.p.p.7.+ 7.p.s.s.' +- +'s.C.8XzX*X1.6 , j.a.a.a.d.s.h.. M i.a.a.d.a.d.d.N ' +- +' + h.g.d.g.g.f.d.g.f.g.f.f.C.A.A.C.f.f.f.f.g.M N 4.o ' +- +'M i.f.V.f.V.V.V.V.f.V.V.f.Z.8. X o v M i.A' +- +'.C.C.A.C.C.A.C.A.A.C.i.3 ' +- +' . D F.G.S.L.S.L.H.H.H.H.L.D.D L.G.L.L.L.L.L.L.L.+ ' +- +' . c.L.P.P.P.P.S o D >X<X;XU.Y.P.3 o ' +- +' t 8 5 8 t t t v 5 8 5 t t t t t V :X:X:X:X:X:X:X<X:X:XC t t' +- +' t t 5 8 t t t t t t 2 q t t 5 8 t t t t 8 5 t t t t v / m.2X1X1Xm.i t t t ' +- +'t t t 2 q 5 8 q 5 8 2 q q : { }.1XuXuX8XuXuX8XuX8X8XuX2Xm.y 8 5 t 5 8 t t q' +- +' t t 5 t M.1X1X1X1XuX8X8XuX} ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX>.t t 0.y.r.t.t.t.r.t.t.p.N ' +- +' v , 0.p.p.p.s.a.p.a' +- +'.p.p.a.a.a.a.h.7.s.a.a.a.a.V.:XIX*XX.4. 9.d.d.d.a.d.d.d.N 6.f.d.d.' +- +'g.g.g.g.g.i. i.f.f.f.f.f.f.f.f.f.f.f.C.A.A.S.C.f.f.f.f.f.8. ' +- +' M i.Z.V.C.V.C.C.V.C.C.C.C.C.C.C.V.F.M - K h o ' +- +' o v + 9.A.A.A.A.A.A.A.A.A.A.A.A.A.S.D.8. ' +- +' F F.L.I.L.L.L.L.L.L.I.P.L.I.L.' +- +'P.P.I.I.I.P.P.P.I.K. 8.R.P.P.U.P.P.K. B ;' +- +'XuXeX<XY.Y.Y.c.t t t t t t o # # 4.4.8 t 5 8 q 8 5 8 ^ 8 q 8 t t t t q J.' +- +':X<X<X<X<X<X<X<X1X .t t t t q t t t t t t t t u 8 t t t t t t t 8 5 8 t t t' +- +' t V ,X1X1X1XuX1Xz.t t t t t t q q 8 5 8 t 5 q t / ,X8X7X7X8X8X8X8X8X0X8X8X' +- +'8X9X9X8X,X/ u 8 t t t t 5 8 8 q t t 2XuX8X8XuXuX9X9X0Xn ' +- +' ^ v &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t M t.t.t' +- +'.t.t.t.t.t.t.0. ' +- +' o M s.a.a.a.a.a.a.a.a.a.a.a.a.a.d.a.g.d.d.a.d.d.d.L.J.W - 4. + g' +- +'.g.d.d.g.d.g.f.h.g.f.f.f.g.f.f.f.g.g. 1 f.f.f.f.f.f.V.V.f.f.f.l.' +- +'C.C.V.C.l.V.V.V.V.V.9. 4.4. . 9.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C' +- +'.C.C.A.A.M 9 ) I # V 3 F.S.S.A.A.S.A.S.A.A.S.S.S.S.S.S.S.' +- +'S.8. 8.P.I.P' +- +'.L.I.I.P.P.P.P.P.P.P.P.P.P.P.U.U.P.U.P.U.U.v. + I.Y.Y.Y.Y.Y.Y.' +- +'Y.+ K.R.<X1X>XR.T.T.E.t t 5 t t t t t p g 2 q 5 t t q 5 q' +- +' 5 2 R q 5 q 5 2 q t { 2X<X<X<X2X<X2X<X2XJ.t t t u j p t t 8 5 t t t t t t ' +- ,'5 8 t t 8 5 t t 5 q q 5 t u =XuXuX8XuXuXeX-XQ t t t t t t 5 t t t t 8 d M.9' +- +'X8X0X0X0X9X9X9X0X9X9X9X9X9X9X9X9X9X0X/ 2 t t t t t t 5 8 t t V 9XeX8X8X8X8X' +- +'9X9X0X. v' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX<.t t t t ' +- +' 0.p.t.p.t.p.p.p.p.p.1 ' +- +' N a.a.a.d.a.a.d.d.a.d.d.d.d.d.d.d.d.d.g.d.d.d.' +- +'d.g.f.6. N f.f.f.f.f.f.f.f.f.f.f.f.f.k.f.k.k.V.g. D' +- +' f.V.V.V.V.V.V.V.V.C.V.V.C.V.C.V.C.V.C.L.Y.D.8. 3 F.C.C.A.' +- +'C.A.C.A.C.A.C.A.A.A.A.A.A.A.A.A.A.F.2 8 9 3 D.S.S.S.S.S' +- +'.S.S.S.S.G.S.S.S.S.L.S.S.G.K.o ' +- +' v.U.P.P.P.P.Y.R.Y.P.P.U.U.P.U.U.U.U.Y.U.U.U.U.U.R.U.S ' +- +' Z T.T.Y.R.R.R.R.T.Z B T.T.T.T.).T.;X2XJ.t t 8 t t ' +- +'5 8 t u 8 u q q 4.t q q 2 8 q 5 q q 2 q q q w J.2X2X1X2X2X1X1X1X1XC t q 5 p' +- +' L j u t t t t t t t t t t t t t t t t t t 8 5 q q } 8X8X0X8X8X0X8X,Xt Q t ' +- +'t t t t : t t q q C ,X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9XeX9XeX9XeX9Xb t t t t t' +- +' t 8 5 t 8 .eXtXeX9X9X9X9X9X=X o o o ' +- +' o v &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX>.t t t t 8 1 p.p.p.p.p.p.p.p.a.7. ' +- +' N d.d.d.d.d.d.f.d.d.d.d' +- +'.f.f.d.d.f.g.g.f.f.g.f.f.f.f.f.M 8.f.V.f.f.f.f.k.f.V.V.f.V.V.' +- +'V.V.V.f.V.9. D V.C.V.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C.S.:X8XR.+ ' +- +' 4. M F.A.A.A.A.A.A.A.A.A.A.S.A.A.S.A.A.S.S.S.A.S.S.9.o ' +- +' + F.G.S.H.S.L.L.L.G.L.L.L.L.L.L.L.L.L.L.L.L.+ ' +- +' o v.P.Y.P.Y.Y.Y.T.:X).Y.Y.Y.Y.Y.Y.Y.Y.' +- +'Y.Y.Y.Y.R.R.R.R.R.F x.T.T.T.T.T.T.T.T.v. x.;X;' +- +'X;X<X<X<X<X<Xm.q 2 q 5 8 t t q 5 u u t 5 4.4.t t t t t t t t t t t t V 1X1X' +- +'1X1X1XuXuX1XuXM.q t t 2 q g p t t t t t 5 8 t t t t t t t t t t t t t 8 u 2' +- +' M.9X9X9X8X9X9X9X9XV t t t t t Q t t t 8 / 0X9X9XeXwXwXwXwXwXwXwXwXwXwXwXeX' +- +'eXwXeXeXtXeXeX@X2 2 q q t t t t 5 8 M.tXtXtXrXwXwXwX9Xm. ' +- +' o = o &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t 5 6.a.a.a.a' +- +'.a.a.a.a.a.M ' +- +'F f.f.f.g.g.f.g.f.f.f.f.f.f.f.f.f.k.f.f.k.k.f.f.f.f.f.g.+ 4. i.V' +- +'.V.f.C.V.V.V.V.V.C.V.V.C.V.C.C.C.V.3 1 C.C.C.C.C.C.C.C.C.C.A.C.' +- +'A.A.C.A.A.A.S.:X8X . 4. 3 A.S.A.S.A.S.A.S.A.S.S.S.S.S.S.S.S.S.S' +- +'.S.S.S.S.S.S.3 v.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.I.P.I.I.' +- +'I.K. 8.Y.Y.Y.Y.Y.R' +- +'.Y.;X:X;XT.Y.R.R.R.R.T.R.T.T.T.T.T.T.T.T.T.+ o B.;X).).;X;X;X;X' +- +';XA c.;X;X<X<X<X2X<X2X} t q q 8 5 8 t t d G z t 8 t t t t t' +- +' t t t t t t t t q M.8XuXuXuX8X8XuXuX8X{ 8 t t u t q 5 t t t t t t t t t t ' +- +'8 t t t t t t t t t x V p 7XwX9XwX9X9X9X9X9X/ 5 8 5 t t t Q ^ v / 9XeXwXeXe' +- +'XeXeXeXeXeXtXtXeXtXtXtXeXtXtXtXtXtXtXrXtXV u t t t t t t t t 6XrXrXrXrXrXrX' +- +'rXrX=.8 t t t t t t t t t t t t t t t q 2 u u p u u t t t t t t t t t t t ' +- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t ' +- +'8 t h.a.a.a.a.a.a.d.a.h. ' +- +' / g.f.f.f.f.f.f.f.f.f.f.k.k.k.k.k.V.V.f.V.V.f.V.f.V.' +- +'V.f.F. 4. Z.V.C.C.S.H.L.L.G.L.L.C.C.C.A.Z.V.F.F ' +- +' D F.Z.A.A.A.A.A.A.A.A.A.A.A.A.A.S.A.F.c.C * 4.4. , F.S.H.P.L.S.S.' +- +'G.S.S.S.H.S.G.G.S.S.L.L.L.L.L.L.L.L.L.D 3 L.I.P.I.P.I.P.I' +- +'.P.L.P.P.P.P.P.P.P.P.P.P.P.D ' +- +' 3 R.R.Y.}.}.R.T.T.T.T.R.T.T.T.T.T.}.T.}.T.}.}.}.}.}.}.}.J. ' +- +' o ).;X;X;X>X;X>X;X>X3 3X;X1X1X1X1X1X1X1XV t 5 q q q ' +- +'5 t t l H G u 5 t 8 t 4.2 2 2 u t t t t 2 t 2X8X8X8X0X8X0X8X0X,X8 t t t t t' +- +' t t t t t t t t t t 8 t 5 t 8 t t t t t t a v ^ ^ eX9XwXeX9XwXwXwX9Xs 8 q ' +- +'8 t t t t 2 v 7XtXtXtXtXtXtXtXtXtXtXtXrXtXtXrXtXrXrXrXrXrXrXrXrXrXn.t t t t' +- +' t t t t a rXxXxXhXxXxXxXhXxXQ t 5 : t t t t t q t 8 p g u 8 q 5 q t u 5 t ' +- +'t 8 : t t t t t t t t t t t t t t t t &.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoX>.t t 8 5 5 t t M d.d.d.d.d.g.g.g.g.6. ' +- +' . i.U.f.V.f.V.f.f.f.C.i.D , ' +- +' o M i.V.V.C.V.V.C.C.V.C.C.C.9. 3 C.C.C.L.L.L.L.L.L.L.L.L.I.I.' +- +'Y.B.8.a : t t t t t t : o 9.A.A.S.S.A.S.S.S.D ' +- +' B.L.H.P.Y.P.L.G.L.L.D.v.F + B x.K.L.L.L.L.L.L.P.L.L.c. ' +- +' v.P.<XP.P.P.P.P.P.c.2 . + 3 S v.K.Y.Y.U.x. ' +- +' o J.}.}.}.}.}.T.T.T.;XE.x.3 . 2 x.T.;X}.' +- ,';X;X;X;X;X>X;X;Xz. 2 >X>X:X:X:X>X>X:X>Xo t V 1X1X1' +- +'X1X1XuX9X9X2Xu t q 2 q t t t t t d y t t t 5 t 4.N t T 8 t t t t 8 / 9X0X0X' +- +'0X0X0X0X0X0Xm.t t t t t 8 t t t 5 8 t t t t t 5 t t t 5 t t t t t t t g b ' +- +'.tXtXeXtXtXtXeXtX,X5 8 5 q : t q 2 q -XrXrXtXxXxXxXrXrXrXrX@X{ s u V b.yXrX' +- +'hXrXhXhXrXxXxXxX-X8 5 q 8 t t 5 t / xXxXxXxXxXxXcXxXvX^ t u t t t t t t q 2' +- +' u x R x t 2 q 2 t t 5 8 5 t t t t t t t t t t t : t t t t t t t &.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 8 6.g.g.g.f.g' +- +'.g.f.g.g.M D V.' +- +'Y.V.V.V.C.V.V.f.D . 9.V.C.C.C.C.C.C.C.C.C.D 9.C.C' +- +'.L.P.L.P.L.P.I.P.P.I.K.x.B q t t t t t t t t t t 8 F.H.S.S.S.S.S.' +- +'S.S.M o 4. D L.L.L.I.P.P.L.L.P.K.3 = J o.V K.L.P' +- +'.P.P.P.P.P.P.B. I.U.<XU.Y.Y.Y.Y.Y.+ 3 B 4 ' +- +' } }.}.:X<X:X}.;X;' +- +'X>Xc.o Z ;X>X>X:X>X>X:X>X:X:XA A <X:X:X<X:X:X<X3X' +- +'J. t t } 8X8X1X8X1X9XwX9X=X: 8 t t t t t 5 t t u 2 q q t t t 8 5' +- +' v 8 5 t q t t t b.9X9XqXqX9X9XwX9XwX .t t 8 5 t t 5 t t t t t t 8 t t t t ' +- +'t t t t t t t t t t t t n.hXtXtXrXtXrXtXtX@X8 t t t 8 5 8 u =.rXhXrXrXrXrXc' +- +'XxXrXyX/ 5 q 2 q 8 5 V yXxXxXxXxXxXxXxXxX6Xq q 8 t 5 q 8 8 n.xXcXxXcXcXcXcX' +- +'mXMXoX] t t t t t t t t 8 u x L g t t q 5 q 8 t t t t t t t t t t t v t t t' +- +' t t t t t 8 t t &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.L x u t ' +- +'t t t t t 9.f.f.f.f.f.f.f.f.f.2 X ' +- +' . g.Z.R.C.C.C.C.C.C.D . F.C.C.A.C.A.C.A.' +- +'A.C.3 2 c.A.P.P.P.P.P.P.P.P.Y.K.C 5 2 t t t t t t t t t t t t t' +- +' t o , S.L.L.L.L.L.L.L.L.. 4. . K.L.P.L.P.P.P.P.P.' +- +'B.. = ( ( 6 D P.P.P.U.P.U.U.Y.K. 3 Y.Y.1XY.Y.T.R.Y.Y' +- +'.F ' +- +' X R.;X;X:X1X<X}.;X;Xm. m.:X:X:X:X:X:X:X:X:X3 o -' +- +' % m.<X:X<X<X<X<X<X<Xz. t t t t t t m.8X0X8X0X0X8X9X9Xm.q q 8 t t t ' +- +'t 8 t t 8 5 q 5 t t t t 8 ^ 4.5 t t t t 2 -XwXwXeXqXqXwXeXtXrX` g t t t t t' +- +' 8 t 8 t t t t t t 8 t t t 8 t t t t t t t t t t -XrXrXrXrXrXrXrXtXb.5 t 8 ' +- +'t q 5 5 u yXxXxXxXxXxXxXxXxX6Xp 2 q q q q 8 8 : b.xXcXxXcXxXcXcXcXyX2 8 5 t' +- +' q 8 5 8 @XcXcXcXcXcXcXcXnXzX*X*.t t t t t t t t t 5 u p t t t q t q 5 t t ' +- +'t t t t t t t t u v t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10 +- +'"oXoXoXoXoXoXoXXX`.+.g t 8 5 t t t g.f.k.f.V.f.V.f.V.V.- - o ' +- +' D C.C.C.C.C.C.A.C.8. ' +- +' 8.A.A.A.A.A.A.A.A.A. 5 8 : K.U.U.U.U.U.U.Y.Y.Y.v.u t t 8 ' +- +'t t t t t t t t t t t t t t t Z P.L.L.L.L.L.L.L.B. 4. o' +- +' . D P.P.P.P.P.P.U.P.K.2 = 5 4 Y.Y.Y.Y.Y.Y.Y.R.J. ' +- +' B T.T.1XT.T.T.T.T.T.T.x. t p # ' +- +' } :X:X:X:X<X:X:X:XJ.. S <X' +- +'<X:X:X<X<X<X2X<Xo - g 8 o J.1X2X2X2X2X1X1X1XC t t : 8 t 8 q -X9X0X9' +- +'X0X9X9X9X9X .8 t t t t t t t t t t t t t t 8 5 t t ^ 8.) g t t t t 7XeXeXeX' +- +'tXtXtXtXtXhXQ g u 2 t t t t t 5 t t 5 t t t 5 t t t t t t t t t t t t t a t' +- +'XrXxXhXxXxXxXxXxX^ t t u 2 5 8 2 b.rXxXxXxXxXxXxXxXrXv t 8 8 G v ^ t q 8 V ' +- +'cXcXcXcXcXcXvXcXyXt t t q q t t t yXcXbXbXbXbXbXbXmXOX>.^ 2 8 5 t t t t t t' +- +' t t 8 t 8 t t t 2 q t t t 8 t t t 8 t t v ^ t t t t t t q t t t 8 5 t t <.' +- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXXX`.+.g t t t t t t q . V.V.V.V.C.V' +- +'.V.V.C.Z.X X o V G = F.A.A.' +- +'A.A.A.A.A.F.. D S.S.S.S.S.S.S.S.B. + u 8 8 s Y.Y.Y' +- +'.Y.Y.Y.Y.Y.Y.c.q 2 t t 5 t t t t 8 5 t t t t t t t t t t 8.P.L.P.P.P.P.P.' +- +'P.B.4. z ( f B.T.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.T.T.T.R.R.T.Y.R' +- +'.T.T.R.T.R.T.B. 3 ;XT.T.T.T.T.T.;XT.T.T.E.A o = ' +- +''' ,.^ J.<X:X:X:X<X:X<X<X' +- +'B B <X<X2X2X2X2X2X2XJ. o ; % + 1X1X1X1X1XuX0XuX1' +- +'X2 t t t t 5 8 5 q 0X9XwX9XwX9XwXwXeXV t t 5 t t t t t t t t t t t t t t t ' +- +'t L ;.''.! t t t p rXtXtXtXtXtXtXtXtXrXg t t q t 8 5 t t t t t 8 t t t t 8 ' +- +'5 t t 5 8 t t t t t t t ^ xXxXxXxXxXxXxXxXhXu t t t q q q q 6XcXcXcXcXcXcXc' +- +'XcXcXcXcXcXcXcXcXcXcXcXcXbXcXcXbXcXbXbXbXcX6X8 5 t 2 q t t l bXbXbXbXbXmXbX' +- +'mXnXV u q q t t t 5 8 t 5 8 t t t t 5 t t t q q t t t 5 t t t 5 t t L 5 t t' +- +' t t t t 2 u 8 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.P P q ' +- +'q q 2 5 8 t t B C.C.C.C.C.C.C.C.C.C. 5 ..-.b ' +- +' 3 A.S.A.S.A.S.A.S.8. = - o D S.S.S.S.S.S.' +- +'H.H.8.o X 5 j t t t A Y.R.Y.L.R.R.R.R.Y.s : q 2 q 5 q 2 t t t t t t t 5 8 t' +- +' t t t t B.P.U.U.U.P.P.U.Y.D = o.(.o.B Y.Y.R.Y.Y.Y.T.Y.R.' +- ,'T.R.T.R.T.R.;X:X;X;X}.T.T.T.T.T.T.;XT.T.z. E.;X;X;X;X;X;X>' +- +'X;X;X>X>X>XJ.B = *..X[ ' +- +' 2 <X<X<X<X<X<X<X<XJ. B 1X1X1X1X1X1X1X1Xz.o ' +- +' Z 8X8X1X8X8X0XtXeX7X: 8 q q 5 t t t C eXeXeXeXeXqXtXtXwXt t t t t t ' +- +'t 8 t t t t t 8 t t t t t t l @.#.8.4.t t V rXrXrXrXrXrXrXrXrXrX8 t t 5 t t' +- +' t t t t 8 t 5 t t t t t t t t t t 5 8 t t t t 8 =.cXxXcXcXxXcXcXxX6Xt t t ' +- +'t t t t G cXcXcXcXcXcXbXcXbXcXbXcXbXbXbXbXbXbXbXbXbXmXnXbXbXbXbXbXbX@X8 t t' +- +' t t t t | bXnXnXmXnXnXnXmXhX8 8 t t t t t t t t t t t t t t t t t t t t t ' +- +'t 5 t t t 8 5 t t t t t t t t t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.2 u t 5 q q 8 5 t t Z L.C.C.C.C.C.C.A.C.C.+ ' +- +' > ^ ~ a 8.S.S.S.S.S.S.S.S.3 o q q 5 J J' +- +' = D G.L.L.L.L.L.L.L.F X v p t t t z.R.T.T.T.T.T.T.T.J.8 8 t t q q ' +- +'q q t t t t t t t t t t t t t 8 u T.;X>XY.Y.Y.Y.Y.T.3 X J X' +- +'.H S T.T.T.T.T.T.T.T.T.T.T.T.}.T.}.;X}.:X<X:X}.}.;X;X;X;X;X;XT.A ' +- +' Z >X>X;X>X>X>X>X:X>X:X:X:X:X:Xm.+ d L 2 ' +- +' } 2X2X<X1X1X1X1X2X{ C 1X' +- +'uX1XuXuXuXuX8XC } 8X0X8X8X0XwXtXeX-Xt 2 q t 8 t t t =.eXpXcXv' +- +'XtXtXtXrX-Xt t t t t t t t t t t t 5 t t t t t t t t p l 2 t t t / hXhXhXxX' +- +'xXxXxXxXxXxXg t 8 q t t t t t t t t 8 t t t t t t t t t t 8 5 t t t t 2 @Xc' +- +'XcXcXcXcXcXcXxX@Xt t t t t t t n.bXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXmXbX' +- +'bXmXnXnXnXmXnXmX=.t t t t t t t XXmXnXnXnXnXnXnXnX*X5 8 t t t t 2 q t q t t' +- +' t t t t : t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 5 8 t t >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t q 2 q q t t C L.L.A.A.A.A' +- +'.A.A.A.D.M o X B.H.H.H.' +- +'L.>XL.H.D. * % f X.!.z x.L.I.I.L.P.P.L.P.2 q u t q t t J.R.T.}' +- +'.T.}.}.}.;Xz.5 8 t t t t q t t t t t t t t t t t t t t 5 V >X>X>X>XR.R.T.T.' +- +'R. @ 5 o c.T.;X;XT.;X).).;X}.;X;X}.}.;X;X;X}.<X<X:X;X>X>' +- +'X;X;X>X>X;XT.o } :X:X:X:X:X:X:X:X:X<X:X<X:X:X3Xa ' +- +' m.uX1X1X1X1XuX1X1X2 ' +- +' z.uX8X8X9X9X0X8X9X2 o M.0X0X9X0XeXtXtXeXb.' +- +'t t t t t 8 t w M.cXZXSXnXcXrXrXrXn.t t t t t t t 5 t t t t t t t t t t t t' +- +' t t t 8 u q 8 / xXxXxXxXxXxXxXxXxXxX/ t 5 t t t t t t t t 8 5 t t t t t t ' +- +'8 t t t q q t 5 t t 8 6XcXbXcXbXbXbXbXbX*.8 t t t t q q *XcXbXbXbXbXbXbXbXb' +- +'XmXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXp : t t t t t t 6XZXZXZXZXZXZXZXZX' +- +'n.8 5 t t t t q 5 q q t t t t t t t t t t t t 8 t t t q 2 t t t t t t t t t' +- +' t t t t t t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 5 8 t ' +- +'5 q q q t 8 Z P.P.S.A.S.S.S.A.S.S.D ' +- +' F.L.L.L.L.>XL.P.B.o 5 J ( 5 B.P.P.P.P.P.P.P.' +- +'K. 2 q t t q 2 u T.;X;X;X;X;XY.;X;XA 8 5 t t t t t t t t t t : t t t 8 t t' +- +' t t t } :X:XT.T.:XT.T.;XB. E.;X;X;X;X;X;X>X;X;X;X' +- +'>X>X;X>X>X:X>X:X>X:X>X:X>X>X:X:X:X:X} =.J.<X<X<X<X<' +- +'X<X<X<X<X<X<X<X<X3X2 ' +- +' =XuXuXuX8X8X8X8X8X. -X9X9X9X9XeX9X9X,X ' +- +' ,X9XwX9XtXtXrXrXtX{ t t t t t q q : 7XbXDXLXBXbXrXxXrX .u t t t t t t ' +- +'8 t t t t 8 t t t t t t v t t t q 2 q 2 8.xXcXcXxXcXcXcXcXcXcXn.t t t t t t' +- +' t : t t q 5 t t t t t t 5 t t t q q t 8 8 8 s mXbXbXmXbXbXbXmXbXV t t t t ' +- +'t 8 : hXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXZXnXZXZXnXZXoXv ^ t t t' +- +' t t t MXZXZXZXZXZXZXZXSX'' t 8 t 8 5 t q q 2 q t t t t t t t t t 8 5 t t t' +- +' t t t u 8 t Q t t t t t t t t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.t t 8 t t 8 t t t t s U.U.S.S.S.S.S.H.S.S.B. ' +- +' + P.P.P.P.P.:XP.P.B. * @' +- +' 2 U.U.Y.Y.P.Y.Y.Y.v.5 8 t 8 t t t V >X>X;X>X>X>XR.>X>Xs t t t t t t ' +- +'t t 8 5 t t t t t t 8 t t t t t m.:X<X<X<X<X<X;X>Xx. ' +- +' >X;X>X>X>X>X:X>X:X:X:X:X:X:X:X:X:X:X:X:X<X:X<X:X<X<X<XJ.} ' +- +' V o C J.1X<X2X2X1X1X1X2X1X1X1X1X}.o ' +- +' ,X0X8X8X0X0X8X0X8X B 9X9X' +- +'9X9XeX9X9X9XM.o 2 wXeXeXrXrXrXrXrXrXp t t t t t t t s hXbXZXDXS' +- +'XbXxXxXxXb t t t t t t t t t 5 8 t t 5 t t t t t T u 2 t q t t t b cXcXcXcX' +- +'cXcXcXcXcXcX6Xt q t t t t t t t t t 5 q t t t t t t t q q q 2 t t t t ` mXm' +- +'XnXmXnXnXmXmXMXt t t t t t t t nXnXnXnXZXnXnXZXZXnXZXnXZXnXZXZXZXnXZXZXZXnX' +- +'ZXZXZXZXZXMXn.q t t t t t t q G AXSXSXSXSXAXAXAXAXp q q q q t t q q t t t t' +- +' t t t t t t t t t t 5 8 t t t t t t Q t t t t t t t t t t t 5 t t t t t >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5 t t 5 t t t t a Y.Y.H.H.L.L' +- +'.L.L.L.L.L.3 , P.P.P.P.' +- ,'U.U.<XY.K. v.Y.Y.Y.Y.Y.Y.Y.R.z.8 q 5 5 t t 5 } >X:X:X:' +- +'X>X:X:X:X3Xt t t t t t 8 t 8 5 8 t t t t t t 5 t t t t 4.E.:X<X<X<X<X<X<X>X' +- +'C + :X:X:X:X:X:X:X:X:X o ' +- +' T o B M.1X1X1X1X1X1X1X1X8X0X8XC ' +- +' 9X9X9X9X9X9X9X9X9Xo ' +- +' @X9XeXeXwXeXeXeXeXb. / eXtXhXhXxXxXxXxX@X5 ' +- +'t t t t t t t ` xXvXbXnXbXvXpXcXyXt t t t 5 t t t t t t t t t 8 t t t t t v' +- +' t q q 5 g c g p vXbXcXbXbXbXbXbXbXbXbX/ t t t t t t t t t t 8 t t t t 5 8 ' +- +'t t 2 q 5 q t t t t n.mXnXnXnXnXZXnXmX6X2 8 t t t t t p ZXZXnXZXZXZXZXZXnXa' +- +' 5 8 t t q 2 t t t t t t 5 q t t 8 5 w : t 8 5 t t t 2 =.AXAXAXAXAXHXLXHXMX' +- +'8 5 8 q 2 t t q 2 q t 5 t t t t t t t t t t t t t t t t t t Q t t t t t t t' +- +' t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t ' +- +'t t t t 8 t t E.R.R.L.L.L.L.L.L.P.P.B.+ ' +- +' 3 U.U.U.Y.Y.Y.Y.Y.Y.4 B R.T.R.T.R.T.T.:X:X' +- +'C t 5 t q t : u m.:X:X<X:X<X:X:X<XB.t t t t t t 5 t t 5 q t t t t 5 t t t t' +- +' t t y 2X1X2X2X1X1X1X1X1X2 . :X:X<X<X<X<X<X<X<Xa ' +- +' o v 2' +- +' m.uX1X8X8XuX8X9X9X0XM. t t t t t t t t t t t q q 2 ' +- +' 9X9X9XqX9XqXwXwXwXB / eXtXtXtXeXtXtXtXtXV ' +- +' b.rXxXxXxXxXxXxXxX3.t t 5 t t t 5 t @XcXvXvXcXcXcXcXcX-Xt t t t 8 t 8 t ' +- +'t t t t t 5 t t 5 q t v t t t t t v ! l q MXbXbXbXbXmXbXbXmXmXmXyXp t t t t' +- +' 2 u t t t t t t 2 8 t t t t 5 q t t t t 8 5 &XnXnXZXZXZXZXnXZX.Xt t t t t ' +- +'t t p ZXZXZXZXZXSXSXSXAX^ 8 8 t t q t t t t t t t t t t t 2 q t t t t q t t' +- +' t v &XHXAXHXHXHXHXHXLX&X5 q 2 5 q t q 5 q t t 8 t 8 t y v u 5 t 8 t t t t ' +- +'8 5 t t t Q t t : t t t t t t t t t t t 8 t t t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t c.T.T.T.P.P.P.P.P.P.P.P.B.+ ' +- +' > F 2 > R.R.Y.R.Y.R.R.Y.Y.x. ' +- +' , E.T.T.T.T.T.).:X:X:Xy t 8 t t t q m E.<X<X<X<X<X<X<X<X9.u t t t t t t ' +- +'t t t t t t t t 8 t t 4.4.t q A 1X1X1X1XuX1X1X1X,X2 u ' +- +' <X2X2X<X2X<X2X2X1Xz. o A m.M.z.> ' +- +' { 8X0X0X0X0X0X9X0X,X p p t t t t 8 t t 8' +- +' 5 t q q t t 0XeXeXtXeXtXeXtXeXM. a 9XtXrXtX' +- +'rXrXrXrXtXrX> @XcXxXxXcXxXcXcXxX| t t 8 t t t 8 V vXcXcXcXcXb' +- +'XcXcXmXn.t t t t t t 5 q t t t t t 8 t t 8 5 q a t t t t t g x i u @XnXmXmX' +- +'nXmXnXmXnXnXmXZX6Xb t t q q 8 t t t t t t q V ` ^ t t t t t t 8 t t t MXZXZ' +- +'XZXZXZXZXZXAX| t t t t t t t q mXAXAXAXAXZXAXAXAXOXt 5 t t t t t t t t t t ' +- +'u :.*X6XoXp q t t t 5 : t t t zXHXHXHXHXHXHXHXHX,.q q q 8 5 q q q 2 t t t t' +- +' 5 8 '' >.` q t t 5 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t >' +- +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t t 2 } }.}.}.U.' +- +'U.U.U.U.U.U.Y.U.I.x.F . o + 2 F S z.B.E.R.Y.Y.K.2 . T.T.T.T' +- +'.T.T.T.T.T.T.B o 3 E.T.T.;X;X:X<X1X<X<X=Xq t t 8 t t t s <X2X2X<X' +- +'2X2X2X1X1XC t q q 5 q q 5 t t t t q q 5 q q 4.2 u t t t b.1X8X8X1X8X8XuX8X@' +- +'X2 8 t t J.1X1X1X1X1X1X1X1X1XA . A =X' +- +'uX8XtXpX-X@ 2 s X o 2 9X9X9X9X9X9XwXwX,Xq' +- +' 8 t i l p t t t t t t t t t t t t t t t 7XtXtXrXtXrXtXrXrXhX' +- +'/ V 7XhXhXhXhXxXhXhXhXhX7X u 5 8 t 6XvXcXcXcXcXcXcXcX6X8' +- +' 8 t q 8 8 v yXbXcXbXbXbXbXbXbXbXV t t t q t t t t 5 t t t 5 t t t t t 2 q ' +- +'q q 8 5 t t u q t =.mXnXnXnXZXnXnXnXZXnXnXZXmXoX( s t u d Q | n.OX6XZXSXZXZ' +- +'XMX! t t t t 5 t t c ZXAXSXAXAXAXZXAXAXl t t t t t t t t zXAXAXAXAXAXAXHXAX' +- +'AX>.w t 5 t t t t t t y >.MXHXHXHXHXzX2 t t t t t t t u HXLXHXLXLXKXLXLXKX~' +- +' t t t t t t t 5 8 t t t t t p *..X2.t t t t t 8 t t t t t q q t t t t t : ' +- +'t t t t t t t t t 5 8 t >.oXoXoXoXoXoXoXOX>.",'#10'"oXoXoXoXoXoXoX>.t t t 2' +- +' 8 5 t t t t t a }.;X;XY.Y.Y.Y.Y.Y.R.Y.Y.R.Y.Y.Y.R.R.R.R.R.R.T.T.T.T.T.T.T.' +- +'E.+ E.T.;X;XT.;X;X}.;X;X}.x.3 o + 3 z.;X;X>X>X>X:XqXpXtX1X<Xm' +- +'.2 t t 5 t t t / 1X1X1X1X1X1X1XuXuXy t t 2 q q 5 m t t t t q 2 q 2 N 4.8 5 ' +- +'t t t M.8X8X8X8X0X8X8X0Xm.t t t t t z.uXuXuXuXuXuXuXuX8X8' +- +'XM.C > . . > s } M.,X0X9X8X8XpXbXxXV a ,X9X9X9X-Xm.} B 2 . ' +- +'o 2 -XwXwXwXwXwXeXwXwX-Xq t t t i i t t t t t t t t t t t 8 5 t t t t t t t' +- +' t t @XhXrXrXrXrXrXhXhXhXtXn.a o @ b M.hXxXxXxXxXxXxXxXxXxXxX@X q 2 q ' +- +'t t yXbXcXbXbXbXbXbXcXbX6X/ u 2 b n.MXbXbXbXbXbXbXmXbXmX6Xt t t 2 q t t t t' +- +' 8 t t t 8 t t 8 t t q 5 q 5 5 8 t t 2 q 5 j mXnXZXZXnXZXZXZXZXZXZXZXZXZXZX' +- +'SXZXZXSXZXSXAXAXZXSXSXSXSXSXMXl t t t t t q %.AXAXAXAXAXAXAXAXMX5 t t t t :' +- +' t t 5 .XAXHXHXHXHXHXHXHXHXHX6X*.b i i b ` XX*XPXHXLXHXHXLXLXLX! t t t t t ' +- +'t t ~ KXKXKXKXKXKXKXKXHXu t t t t t t t t t t t t t 8 5 V ] v t t t t t 5 t' +- ,' t t t t t q t t t t t t t t t t t t 8 5 t t t t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.t t t t t t t 8 t t 5 8 z.:X>XR.R.T.T.T.T.R.T.T.T.T.T.T.T.' +- +'T.T.T.T.T.).T.T.T.;X).T.;XS o c.3X;X;X;X;X;X8X>X>X>X>X>X>X>X>X;' +- +'X>X:X>X>X>X5XpXVXpX8X1X} q t t t t w & z.1X1XuXuX1X1XuXuX=Xq t 4.u 5 8 m 5 ' +- +'t t 5 8 2 u 2 q t t t t 8 t 8 ,X9X0X0X0X0X0X9X0X{ t 2 q t t t ' +- +' 2 0X8X8X8X8X8X8X8X0X0X8X0X0X9X0X0X9X0X0X9X9X9X9X9XtXpXhXs ' +- +'@ ,X9XeXwXwXwXwXeXtXeXeXeXtXeXeXeXeXeXeXtXrXhXn.t t t u q q 5 t t t t 2 q 5' +- +' t t t t t t t t t t t t t u n.hXhXxXxXxXxXxXxXxXxXxXxXxXxXxXcXxXxXcXxXxXcX' +- +'xXcXxXcXcX . u 2 t t t t 6XbXbXbXbXbXbXbXmXbXmXbXbXMXnXmXbXmXmXnXnXnXnXn' +- +'XmXnX` 5 t t t t t t t t t t t t t t t t t q 2 q t t 8 t t 8 t 5 t t oXZXZX' +- +'ZXZXZXZXZXZXAXSXSXSXSXSXAXAXAXSXAXAXAXAXAXAXAXAXAXAXAXXXu 2 t t 8 5 oXHXAXA' +- +'XHXHXAXHXHX*Xq q t t t t t t 8 ^ HXHXHXHXHXHXHXHXLXHXLXHXLXHXKXKXKXKXLXKXKX' +- +'KXKXKXKXKXKX` t t t t t t t ,.KXKXKXKXKXKXKXKXzXT t t t t t t t t t t t t t' +- +' t t t t 5 q t t t t t t t t t t q 2 q 2 t t t t t t t t t t 5 8 t t t t >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t 8 8 s 3X:XT.T' +- +'.T.T.T.}.}.}.}.}.}.}.;X}.;X;X;X;X;X;X;X;X;X;X>X;X;Xz. C >X:X>X' +- +':X:X:X0X:X>X:X:X:X>X:X:X<X:X:X:X<X<XuXrXpXtXuX1XV q t t t t q & }.8X8X8X8Xu' +- +'X8X8X8Xm.t t 4.t t t q m t t t t 4.N q t t 8 5 t 5 8 n wX9X9X9X9X9XwX9XwXd ' +- +'q q t 8 5 t t y m o m.8X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9X9X9XwX9' +- +'XeX9XeX9XX b.tXtXeXeXeXcXtXtXtXtXtXtXtXtXrXtXrXrXtXrXxXhX3.t ' +- +'t t 2 q 5 8 t t t t u 8 8 t t t t t t t t 8 5 t t t t V xXxXxXcXxXxXxXcXcXx' +- +'XcXcXcXxXcXcXcXcXcXcXcXcXcXcXcXcXcXz 8 t t t 8 5 @XmXnXnXmXnXmXnXmXnXmX' +- +'mXnXnXnXnXnXnXnXnXVXnXnXnXZX@X5 8 t t t t t t t t t t t t t t t t t t T q t' +- +' t t t t t t 8 t t b mXZXSXAXAXSXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXHXAXAXHXAX' +- +'HXHXOX5 q t t t t 6XHXHXHXHXHXHXHXHXXX: t t 5 t t t t t : *XKXLXLXKXKXKXKXK' +- +'XKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXLXp t t t t t t t &XKXKXKXHXJXJXKXKXOXt ' +- +'t t t 5 t t t t t t t t t t t 8 5 q q t t t t t t t t Q Q 5 q q q t t t t t' +- +' t t t t t q t t t t t >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.t t t t ' +- +'t t 5 8 t t t t t { :X}.}.;X;X;X}.;X;X;X;X;X>X;X;X>X;X>X;X>X>X>X:X>X>X:X>X:' +- +'X} 3X:X:X:X:X<X9X<X:X<X:X<X<X<X<X<X<X<X<X<XuX8X8X9X8X7X,X8 ' +- +'q t t 2 u q t 2X9X8X0X0X0X0X0X0X .t t t G -.^.!.^ t u 4.t t t t t t t t 8 5' +- +' t } wXwXwXwXwXeXeXwX7Xt t t t q q q 5 q 2 t > 7X9X9X9X9XeX9X9X9X' +- +'eX9XwXwXeXeXwXeXeXwXeXeXeXeXtXrXb. ,XtXrXrXrXrXcXrXrXrXrXrXr' +- +'XhXrXrXrXrXhXhXxXxX@X8 t t t t 8 q q q t 5 t t t t t t 8 5 t 8 t t t 5 t t ' +- +'t t t 6XbXbXbXbXcXcXcXcXcXcXcXcXcXcXbXcXbXcXbXbXbXcXbXmXbXbXo 8 5 t t t t t' +- +' q =.nXnXnXnXnXnXnXZXnXnXZXZXnXnXZXZXnXZXZXZXZXZXAX6Xp q q t t t t t t t t ' +- +'t t t t t t 8 t t t T q 5 t t t 5 t t t t t q .AXAXAXAXAXAXAXAXAXHXAXHXHXH' +- +'XAXHXHXHXHXHXHXHXHXHXHXHXHXHXXX5 t t t t u PXHXHXLXLXLXLXLXLX` 8 q q q q 8 ' +- +'5 8 t t v PXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXJXKXOXq t t t t t t' +- +' q zXKXJXJXJXJXJXJXJX&.t t t t L ^ 8 2 q t t t t t t 8 5 t u 2 t t t t t q ' +- +'t t Q t t t t t t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX<.",'#10 +- +'"oXoXoXoXoXoXoX>.q t t t t t 8 q t t t t t t m.}.>X>X;X>X>X>X>X>X>X>X>X:X:X' +- +':X:X:X:X:X:X:X:X:X:X:X:X3X@ A <X<X<X<X<X9X<X<X<X2X<X2X<X<X1' +- +'X1X<X<X0XuX0X8X8X0X7X}.2 q t t q 8 q b 9X9X9X9X9X9X9X9X9XV t t l /.5XaXaX(.' +- +'J 4.t t t t t t t t t t t t n.eXtXeXeXeXeXeXwX@Xt t t t t q 2 8 q t t t ' +- +' V 0XeXeXeXeXtXtXeXtXeXtXeXtXeXtXtXtXtXtXtXtXtXrXM.. ' +- +'yXrXrXrXhXrXcXhXhXhXhXxXhXxXxXxXxXxXxXcXcXpX] L t t t t 5 2 q t t 8 t t t t' +- +' t t t t t t t t t 8 t t t t 8 3.bXbXbXbXmXmXcXbXbXbXbXmXbXbXbXbXbXmXbXbXbX' +- +'mXbXnXnXyX8 t t t t q t q q p mXnXZXZXZXnXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZX6' +- +'Xj q t t t t 5 8 q t t t t t t t t t 5 t t t v 2 8 t t t 8 t t t t t t u OX' +- +'AXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXKXHXLXHXPXl q : t t t V KXKXKXK' +- +'XKXKXKXKXLXp 5 q q q 2 5 q t t t 8 '' LXKXKXKXKXKXKXKXKXJXKXJXKXKXJXKXJXJXK' +- +'XJXKXKXJX*Xu q : t t t t t p JXJXJXJXJXJXFXJXFXv t t t t 8 : ^ v t t t t t ' +- +'t t t t t 8 t t t t t 8 5 t t Q t t t t t t t t t t t t t t t t t t t : 2 >' +- +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t x.' +- +'>X:X:X:X:X:X:X:X:X<X:X:X:X:X<X:X:X<X<X<X<X:X<X<XJ.2 m.<' +- +'X<X1X2X1X1X1X1X1X1X1X1X1X1X1X9X9X9X9X9X9X9X9X9Xb.t t t t 8 5 q .eX9X9XwX9X' +- +'wXwXwX7X5 t t | sXNXKXNXaX-.5 8 t t 8 t t t t 8 t t 5 @XeXtXrXtXtXrXtXtX .t' +- +' t t t t t q 5 q t t t 8 5 t t t t / tXxXrXxXrXtXrXrXrXrXrXrXtXrXrXrXrXrXrX' +- +'rXrXb. -XxXxXxXxXxXbXxXxXxXxXxXxXxXxXxXxXxXcXcXvX%.`.O.p' +- +' t t t t t t q 5 t t 8 t t t 8 t t t 5 t t 5 t t t t t t u n.mXnXnXmXnXnXmX' +- +'mXmXbXmXnXnXmXbXnXmXnXnXnXnXZXnXZXOX8 t t 8 t 2 q 5 q t n.AXZXZXZXZXZXZXZXS' +- +'XSXSXSXSXSXSXAXAXAXAXAX&Xa q 5 t t t t 8 5 5 q t t t t t t 5 t t t t t v u ' +- +'t t t t t t t t t t t 8 t OXHXLXLXHXKXHXHXLXLXHXHXKXLXLXKXLXKXLXKXKXKXKXLXK' +- ,'XIX^ 2 q t t t t [ KXKXKXKXKXKXKXKX&X5 8 q 2 q q 2 q t t t 5 : '' PXLXKXJXJ' +- +'XJXJXJXJXJXJXJXJXJXJXJXJXJXJXJXFXoXt t t t t 8 t t 8 c FXFXFXFXFXFXFXFXzX8 ' +- +'8 t t 2 5 8 5 t t t t t t 5 8 t t 5 t t t t t t 5 t 5 t t t t t t t t t t :' +- +' t t : t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t ' +- +'t t t t t t t t t t t t 8 C 3X:X<X:X<X<X<X<X<X<X<X<X2X<X2X<X<X<X<X<X<XM.C o' +- +' m.1X1X1X1X1X1X1XuX1XuXuXuXuX9X0X9X9X9X9X9XeX9XwXH ' +- +'t t t t 8 8 a / tXtXeXeXeXeXeXeXb.t t : o.iXLXKXDXMX!.8 5 8 t 5 t t t t 5 t' +- +' t 8 @XtXrXrXrXhXrXhX7Xa 8 5 t t t t t t t t t t t q 5 q t t t b @XxXxXxXxX' +- +'rXrXhXrXhXhXrXhXhXxXhXxXhX@Xs a 6XxXxXxXxXxXcXcXcXcXc' +- +'XcXcXcXcXbXbXcX&Xl L @.] p t t t t t 8 5 8 t t 5 t t t 5 t t 8 t t t 8 t t ' +- +'8 5 t t t t .XnXnXnXZXnXZXnXnXnXnXnXnXnXyX&XnXnXZXnXZXZXZXZX..u t t 5 t q q' +- +' q 2 t t &XAXZXAXAXAXAXSXAXAXAXAXAXAXAXAXAXAXMX%.t 5 8 t t t t t t 8 5 8 t ' +- +'t t q q 2 8 t t t t t 8 5 t t t t t t t t t t t t t t =.PXLXLXKXKXKXKXKXKXK' +- +'XKXKXKXKXKXKXKXKXKXKXKXzX&.2 : q q t t t t c KXKXKXKXKXJXKXPXv 8 5 5 q q 5 ' +- +'q q t t t t t t c fXJXJXJXJXJXJXJXJXJXFXJXJXFXFXFXFXFX*X! q t t t q 2 u t t' +- +' t t IXFXGXFXGXGXFXGX_ 8 t t t t t t t t t q t t t t t t t 8 t t t t t t 8 ' +- +'t 8 t : t t t t t t t t t t q 5 t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.t t 5 8 t t t 8 t t t t t t t 5 t X x.3X2X2X2X<X<X<X2X<X1X' +- +'2X2X2X1X1X2XM.A > A ,X8X8XuX8X8X8XuX9X8X8X-' +- +'X/ b.9XeXeXeX9XeXeXn.5 t t t t t t t p 7XtXrXtXtXhXrXn.t t t a ^ #XNXNXNXsX' +- +'o.u t t 5 8 t t t t t t t t ^ rXhXhXxXhXxX7Xv 5 t t 5 t t u u 5 t t q 8 t t' +- +' t t t t t t t | -XcXcXxXhXxXxXxXxXxXxXxXxXyXn.a ' +- +' .6XcXcXcXMXvXcXcXcXbXMXbXbXmX6X` t t t l p 8 t t t t t t t 5 8 t t t 2' +- +' q 5 q 2 q t t t t t t t q 8 5 t t t =.MXnXZXnXnXZXZXZXZXZXzXb.t | AXAXAXZX' +- +'SXSXSX*Xq 8 t 8 5 t t t t t t t a .XSXAXAXHXAXAXAXAXAXAXHXAXHXHXmX|.u 5 8 t' +- +' t t t t t t t t 8 t t t t t t t 5 8 8 5 t t t t t t t t t t t t t t t t t ' +- +'t t j +XPXKXKXKXKXKXKXKXKXKXKXKXKXKXJXLX*X''.l t t t t t q 2 q q 2 q *XJXJX' +- +'JXKXJXIX~ q t t q q t t t t t t t t t 8 t t %.fXFXFXFXGXFXFXFXFXFXFXFXFXCXO' +- +'X^ 8 t t t t t t t : q q 5 q ''.GXFXGXGXGXGX>.t t 8 t t t 5 8 q t t t t t L' +- +' G v t t t t t 8 t t t t t 5 q t t t t 8 5 t t t 8 t 5 8 t t t t t t t t t ' +- +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t t 5 t 8' +- +' q 2 B x.M.=X2X1X1X2X2X=XJ.m.} B ' +- +' o C m.=X,X0X2X-Xm.{ l 2 t : b.-XyXxXyX@X/ t t t t t t t t t t C @X7XtX,' +- +'Xn.V a t t t t 8 ..#X5X#XN.p t 8 t t t t t t t t t 2 t 8 V @XtXhX6Xb.u q 8 ' +- +'8 t t t t g x i t 5 8 5 t t t t t t 8 5 t t q v =.@X6XyXvXxXyX6X@X=.V ' +- +' s %.@X6XhXMXcXMXhX6X@X=.b q 2 t t t t t ' +- +'t t t t t t t t t t t t 5 q 5 8 t q t t t t t t t t 2 u 8 t t 2 8 u =.&XzXM' +- +'XZXIX6X.X( q 5 t t | *XmXSXMX*X%.2 q 2 t t t t t t t t t q 2 t v OXSXHXHXHX' +- +'HXHXHXLXHXAX*X&.5 m 5 8 t t t t t 8 t t t t 5 t 8 t t t t t t t t t t t t t' +- +' t t t t t t 8 t t t t t t t t t 5 5 '' oXkXMXPXJXKXJXPXCXzX&X.X] u t 5 t t' +- +' t t t t t q q 5 8 q i .XCXFXzX+Xg t t t t 2 q t t t t t t t t t 5 t t 5 5 ' +- +'L >.&XzXCXGXGXCXzX&X''.` a t 8 a t t t t t t q 5 q q 8 5 q %.kXCXCX&X) t t ' +- +'t 5 t t t t 5 8 t t t t t u 8 ^ t t t t t t t t t t t 8 5 t t t t t t t t t' +- +' 5 t t t t t t t i c p t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 u ' +- +'t t t t t t t t t t t 8 t t q ' +- +' v o t t t t : t y &.oX*.a = t ' +- +'t t t t t t t t t 2 q t t t t t t t t q q 5 t H ( ^ a 5 t t t t t 8 5 t t t' +- +' t t t 5 t t t t t t 5 t t 5 t t t t g g p 5 q t t t 8 t t t t t t t t t t ' +- +'t t t t t t ' +- +' t t t t t t t t t t 8 t 8 t t t t t t t t t t 8 q q q q q q t t t t t ' +- +'t t t 8 5 t t 8 8 t t t t q q t t 8 q 2 q t t t t q q t t t t q t t t t 8 8' +- +' 5 t t t t t t 2 q t ~ ,.OX&X&XOXn.O.p t t 5 t t t t t t t t 5 t t 8 t 8 t ' +- +'5 t t t t t t t t t q a t t t t t t t 8 5 t t t t t t t t t q 8 5 t t t t t' +- +' t 5 t t t t : q 5 q t t q 2 q t t q 5 q q 5 2 q 5 t t t t t t t t t 5 t t ' +- +'t t t t t t t t t t t 8 5 t t t t : t t t t t q t t t t t t t t t t t q q q' +- +' 2 2 t a 8 t t t t : 8 5 t t t t t t t t t t t t t 2 q t t t t t t t 5 t t ' +- +'t v q q q q t 5 t t t t t t 8 t t t t t t b ~ v t u >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.q 2 t t 5 8 t t t t t t t t t 5 t ' +- +' v q t ' +- +'t t t t t a *..X*.u 2 t t t t t t t t t t 8 q t 5 8 t t t t t t 2 u t 4.t 5' +- +' t t t 5 8 t t t t t t t q t t 8 t t t t t t t t t t t t 8 t t t t q t t t ' +- +'t 5 t t t t t t t t t t t t t t t t t ' +- +' V 8 t t t t t t t t q t 5 t 5 t t t t t t 8 t t t ' +- +'t t t q 2 q 5 t t t t t t t t q t t t t 8 t t t 8 q 5 t t 5 5 q q t t t t q' +- ,' : t t t t t t t t t 5 t t t 8 5 q t t q q q q 2 u t t 8 t t t t t t t t t ' +- +'t t t t t t t t 5 t t t t t t t t t t t t t 5 v t t t t t : 5 q 8 5 t t 8 5' +- +' t t t t 8 5 t t t t t t t 4.t 8 t t t t u t t t 5 q q q t q q 2 q q q 5 5 ' +- +'t t t t t t t t t 8 t q : t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t' +- +' t t t t t t t t t 2 q 5 q q t t t t t t t 2 8 8 t t t t t 8 t t 5 u u t t ' +- +'t t t t t t t v v t t 5 u v q 2 q 2 q q t 5 8 t t t t t 5 t t t q j v l u j' +- +' <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' +- +'8 t q ' +- +' v t q t t t t t t t x ! l u 2 q q t t 8 t t t t t t 8 t 8 ' +- +'5 t t t 8 5 t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' 5 t t t t t t t t t : t t t t t 8 5 8 u 2 q t t t t t t t t 8 t t 8 t ' +- +' ^ t t : t t t t t t 8 t t q' +- +' 2 t t t 8 t t t 5 q q t t t t t t t t t t t t t t 8 5 8 5 t 5 t t t 8 t t ' +- +'5 t t t 8 t t t t t t t t t t t q 5 t t 5 8 t t t 8 5 t t t t t q 5 8 t t t' +- +' t t t t 8 5 q q q 5 t t t 8 t t t t t t t t t 2 q q t t t 8 t t t t T 2 t ' +- +'t t t t t 8 t t t t t t t t t t t t 5 t t t t t 5 q 4.4.t t t 8 u l l t t t' +- +' t t t t t t t q q 2 q t t t t t t t t t t t t 5 q q q u 2 q t t t 8 5 t t ' +- +'t t t t t : 5 q t t 8 t 2 t t t t t t t t t t t t t 8 q t t t t t t q t t q' +- +' t t 5 t t t t u x g 8 : t t t t t t t t t T ^ 2 V T q q 5 q t t t t t t t ' +- +'t 8 t 8 t t t t q t t 8 p <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' +- +' t t t t t t q t t t t t t t t t ' +- +' 5 q 2 t t t t t t t t t t t t t t' +- +' t t t t t 5 t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t 8 8 t t t t q t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t 5 t t u 2 q t t v ' +- +': t t t t t t t 5 t t t t u t t t 5 t t t t q q 2 t t t 8 5 t t 5 8 t t q :' +- +' 5 q t t t 8 t t t 5 t t 8 t t t 5 8 t t t t t t t t t t 8 q t t t t t t t ' +- +'t t t t 8 t t 5 8 t t t t t t t t t t 2 q 2 q t t t 5 t t t t t t t t t u t' +- +' p p t t t t t t t T q t t t t t t 5 t t 5 t t t t t t t t t 8 t t t t t t ' +- +'5 8 t t t t t p v x u t t t t t t t t t 5 : q q t t t t t t t t t t t t q 2' +- +' t t 8 t t t t t t t t t t t t t t t t t t t t 8 8 t t t t t t t t t t t t ' +- +': 5 8 t t t t t t t t t t t t 8 t t 5 t u x g 5 8 t t t t t t t t t t q q T' +- +' ^ t t q 2 t t t t t t t t 5 t t t t t t t 5 q 5 u >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 2 q ' +- +' t t q q q t ' +- +'t t t t t 8 5 t t t t t t t t t t t 8 t 5 t t t t t t t t t t t t q 2 t t t' +- +' t t t t t t t t t t t t q t t 5 t t t t 2 t t t t t t t t t t t t t t t t ' +- +'t t t t t 8 5 t t t t t t t t t t t t t t t t t t t 5 8 8 t ' +- +' v t t t t t t t 8 t t t t t 8 t 5 t t t t 8 5 5 8 t ' +- +'t t t t t q t q 5 q q 5 q t t t t t t t 5 t t t 5 t t t t t t t t t t t t t' +- +' t t : 5 8 t t t t t t t t t t t 5 t t 8 q t 5 t t q t t t t t 8 5 q q t t ' +- +'t t t t t t t q t t t t p v l t t t t t t t T 2 q t t t t t t t t 8 t t t t' +- +' t t 2 u t t 5 t t t t t t 5 t 4.4.t t t i p t t t t t t t t t t t t t t t ' +- +'t t t : t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t t t t t t' +- +' t t t t t t t t t t t t t 8 t t 8 t t t 8 t t t t t t t t 8 5 u 2 t t t t ' +- +'t t t t 5 8 t t t t 8 5 t v V ^ q 5 8 t t t t t t 8 t t 8 t t t t t t t 8 u' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 5 t t 5 8 t t 5 8 t ' +- +'t t t t t ' +- +' t t t t t t t 2 u t t t t t t t t t t 8 t t t t t t t t t 8 t t 5 8 ' +- +'t t t t t t t t 2 N t t t t t 5 8 t t 8 5 t t t t t t t 8 t t t t t t t t 8' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t 8 5 t t t # # o t u a t t t t t t t t t t' +- +' t t 8 t t 8 t 5 8 q 5 t 8 t t t t q q 2 8 5 q q 2 t t t q t t t 8 t t 8 t ' +- +'t t t t t t 8 5 t t t t t t t t 8 5 t t t t t t t t 5 8 t t t 8 5 t t t t t' +- +' t t t t t 8 5 q t q t t t t 8 5 t t t t t t t t t j g t t t t t t t 5 q q ' +- +'q t t t t t t t t t t 8 5 t t q 8 t t 8 t t t t t t 8 t t 4.t t t t t t t :' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t 5 8 t t t ' +- +'t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t 5 t t t t' +- +' t t t 8 5 q q q t t t t t t t t t t t t t t t 8 t t q v q q 5 8 5 8 t t t ' +- +'5 t t 5 t t t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t' +- +' t 8 t t t t t t t t t 5 t t t t t t ' +- +' t t t t t t 5 t u g p q t t 5 t t 8 t t t t t' +- +' t t t t t t t 5 8 t t t t t t t t t t t t 4.t t t t t t t t t t t t t 8 t ' +- +'t t t t t t t t t t t t t t q 5 8 5 t t 5 5 t t t t 8 t t t t t t 5 t t t t' +- ,' t t t t t t t t t t t t t t q t t u g x u t t t 5 t t t t ' +- +'p v v y t t t t t t t t t t t t t t t t t t t t u 5 t t t u t y u 2 t t t t' +- +' t t q q t t t t t q 8 t t t t t t 8 5 t t t t t t t t t 8 t t t 5 t t t t ' +- +'8 t t t t t t t t t t p l u t t t t 5 t t t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t t t t t t ' +- +'t 8 t t t t t 8 t t t t t t 2 q q q 2 q t : t t t t t t t t t t u 8 t t t t' +- +' t t t t : t t t t t t t t t t t t q t t t 5 t t t t t t t t t t t t t t t ' +- +'t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t 5 q t 8' +- +' 5 t 8 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t 5 8 t t t 8 t t t t t t q ' +- +' q w X : t t t t t v u q p c ' +- +'p 5 8 t 8 t t 5 t t 5 8 t t t 5 t t t t t t t t 5 t 8 t t t t t t t t t t t' +- +' t t 8 t 8 t t t t t t t t 8 5 t t 8 t t t t t t t q 2 q t 8 t t 8 8 t t t ' +- +'t 5 t t t 5 8 t 8 t t t 8 t t t t t t t t t t t t t 8 5 t t t u u 5 t t t 8' +- +' t t t t t t t t p ~ ~ p t t t t t t t t t t t t 5 8 t t t t t g l ' +- +'p t t t t p v j q t t t t t t 2 t t t t t t 2 u t t t 5 8 t t t t t t t t t' +- +' t t t 5 t t 5 8 t t t t t t t t t 5 t t t t t x P x t t t t 8 t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8' +- +' 5 t t t t t t t t t t t t t t t t t 4.4.t t t t t t q q q 5 q q t t t t t ' +- +'t t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t 2 8 t t 8 t t t' +- +' t 8 5 t t t t t t t t t t 8 t 5 8 t t 5 t 8 t t t 8 t t t t t t t t t t t ' +- +'t t t t : t t t t 8 L 5 t t t 5 t t t Q Q t t t t t t t t t t t t t t t t t' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 t 5 t 8 t t t t t t t t ' +- +'t t t t t t t t k [.|.) t t t t' +- +' t t t t t t t G 8 t u p u t t t t t t t t t 8 5 t t t 8 t t t t t t t t 8 ' +- +'t 5 t t t t t t 2 2 t t q q t t t 5 t t t t t t t t t t t t 5 t t t t t t t' +- +' q q 2 q t t t t t t 8 t t t 8 q t t t t t t t t 5 t t t t t t t t t 2 q t ' +- +'8 5 8 t t t t t t t t t t t t t t 5 u t t t t t l x t t t t t t t t t t' +- +' t t t t t t t t t t x ! l t t t t p l p q 8 t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t 8 t t t t t j x' +- +' h t t t t t t t t t t t t t t t t t t t t t q t t t t t t t t t t v t t t ' +- +'t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 8 5 t t 5 4.t t 5 8 t' +- +' t t 5 t t q 5 t t t t t t t t t t t t q t 8 5 t t t t q 2 t t t t t t : t ' +- +'t t t t 8 u 5 t t t t t t t t t t 8 t t q 2 t t t t t t t t t 8 t t 5 t t 5' +- +' t q t t v _ R t t t t t t t t t t t t t 8 5 v t t t 8 t t t t t t Q Q t 8 ' +- +'q t t t t t t t t t 8 5 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5' +- +' t t t t t 8 t 5 8 t t t t t t t t t 8 5 t t t t ) XfX' +- +'#.- t t t t t t t t t t t t L 5 8 5 t u t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t 8 5 8 t t t t N t t t q 2 t t t t t 8 5 t t t t ' +- +'t t t t t t t t 8 5 t t 8 q 5 q q t t t t t t 5 t t t u 2 5 8 t t t t t t t' +- +' t 8 5 t t t t t t q q t t 5 t t t t t 8 t t t 8 t 5 8 t t t t 8 v t t t t ' +- +'t t t t 5 t t t t q t t t t t t t t t 5 8 t 8 p x p t t t t 5 u i 5 t 5 t t' +- +' t t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t t t t t t t t t t t t ' +- +'t 8 t t t t t t t t t u q 2 t t t t t t t t t t t t t t t t : t t t t 5 : t' +- +' t t t t t t t t G t t : t t t t t t t t t t t t t t t t t t t 5 8 8 5 t 8 ' +- +'t 5 t t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t t t t t' +- +' t t q q q 5 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t u t t t ' +- +'t t t t t t 5 t t t t t 8 t q 2 u ) ''.O.i t t t t t t t t t t t t 5 T a t ' +- +'t t t t t t t t t t t t u 2 t t t t t t 8 5 t 5 8 t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t t t t t t 8 t t 5 t t t 8 t t t t' +- +' x :.|.) u t t t t t t t t t t t t t t 2 q t t t v u 5 q ' +- +'5 8 t q 5 q 2 t 2 q t t t t t t t t 8 8 t t t 5 t t t t t t t t t 4.t t t t' +- +' q t t 8 t t t t t t t t t t t t t t 8 5 t t t t 5 t t t t t t t 5 t t t t ' +- +'t t t 8 t t t 8 5 8 t t t 8 5 t t t t t t t t q t t t t 5 q : t 5 t 8 5 t t' +- +' t t q t 5 5 5 v t t t t t t t t q q 5 t 8 2 t t t t t t 8 t t t t t t t t ' +- +'t t t t t t l L j u 5 8 t t t t : t t t t t t t 5 t t 8 5 t t 5 8 t t t t t' +- +' t t t t 2 q t 5 8 t t 5 8 q 5 t t t t t 5 8 t q q q t t t t t t t t t t t ' +- +'5 q 8 5 5 q t t t t t t t t t t t t t t v u t t t t t t t t t t 5 8 t t t 5' +- +' t 8 t t t t 8 t t t t t 8 5 t t t t 5 8 8 t 4.t 8 t t t t t t t t t t t t ' +- +'t t t t t t t 8 5 t t t t 8 5 q 2 q q t t t t t t t t t t t t t t 5 t t t t' +- +' t 8 t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5 v _ R 2 5 8 t t ' +- +'t t t t t t t t t t t t q 2 q q t t t t t t t t t t t t t t t t q q t 8 q q' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t u 8 t t t ' +- +'t t t t t t t t 5 t t 8 t u h j t t t t : t t t t t t t' +- ,' t : t q t t t t t q 2 t t 5 t ` '' c u 8 u t t t t 5 8 t t t t 5 t 8 t 8 t' +- +' t t 5 t t t t t p ( ` h q 5 t t 5 t t t t t t t t t t t t t t t t t t t t ' +- +'t t 5 8 t t t t 8 t t t t t t t 5 t t t 5 t t t t t t t t t t t t t t : 5 t' +- +' t t t q q t t 8 t t q t t t t q q q 8 u T t t t t t t t t q q t t l _ _ i ' +- +'t 5 t t 5 t 5 8 t t t t t t t t t t t x T l t t 5 8 t t t q t t t t t 5 t 8' +- +' t t t t t t t t t t t t t t t t 8 u t t t t t t t 5 8 t t t 2 t t t t t 5 ' +- +'q 2 t t t t t t t t t t t 8 5 5 8 q q t t t t t t t t t t t t t t v t t t t' +- +' t t t t t t t t t t t t 8 t 5 t t t t 5 t t t t t t t t t t t t t t t t t ' +- +'5 t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t t 5 q q q t t t t t t' +- +' : t t t t t t t 8 t t t t t 5 t 8 t 5 8 t t t 8 5 t t t 5 t t t 5 8 t t t ' +- +'t t t t q g l 8 u q 5 u t t t t t t t t t t t t t q q 5 5 t : t t t t t : t' +- +' t t Q Q t t : q 2 q 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t ' +- +'t t t t 8 t q P l 2 5 8 t t t t t 8 t 5 t t t t u P ) x 8 t u # t' +- +' t t t t t t t t t t t t t t t t q q t t t t q q q t 5 x >..X` 8 5 q t t t ' +- +'t t t t 5 t t 8 t 5 t t t t t 8 t t t 8 t ..#X#X..q t t 8 t t t t 8 5 t t t' +- +' t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 8 ' +- +'t t t t t t t t t t q q q q t t 2 q q q t t q q t t t 5 q 2 2 u 2 G 8 : t 8' +- +' 2 t t t t 2 t t ) |.''.L t u t 8 t t t t t t t t t t t t t t t i g t t t t' +- +' t t t q 5 q 5 t t t 8 t 5 t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t 8 t t t t q q 8 t q t q 2 t t 8 t t t t t t t t t t q 8 t t 2 t t t t t t' +- +' t t t t t t t t t t t t t t t t t t 8 u t t 8 t t t t t t t t 8 t t 5 t t ' +- +'t t t t t t t t t t t t t 4.t t 8 t t 8 t t t t t t t t t t : t t t t 8 5 t' +- +' t t t t t 5 8 t t t t t t t t t t t t t t t t 5 8 t t 8 t t t t t 5 8 t t ' +- +'t t t t 8 t t t t t t 5 t t t 5 t c O.] j 5 t p j p t t t t t t t t t t t t' +- +' q t m t t t t t t t t t t t t t t Q t t 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t 5 8 ! :.@.g t t t t t t t t t 8 t t t t p )' +- +' `.P a x +.`.R t t t t t t t t t t t t t t t t t t t t t q 5 t 8 5 t t t q ' +- +'q 2 p '' %.G 8 q 5 q t t t t t t 8 t t 5 t t t t t t t t t t t t 4.&.sXsX-.' +- +'5 q 2 u t 5 8 t t t t t t t t t t t t t 5 8 8 t t t 5 8 5 8 t t t t 5 t t t' +- +' t t t t t 8 t t t t t t t t 5 8 t t t t t t q 2 q V ^ v T 5 q 2 u v V ^ v ' +- +'t t 8 5 T T v T T v ^ v ^ q q t t v ^ v ^ T #.O.c Q v v ^ t t t t 8 5 t t t' +- +' t t t t t t t t t t t t t t t q q 2 q t : t t t 8 t t t t t t t t : t t t ' +- +'t t t t t t t t t t t t t t q t t t t t 5 8 5 q q q t t 5 t t t j c p t t t' +- +' t t t t t u g j u t t t t t t t t t t t t t t t t t t t t t q 2 t t 5 t t ' +- +'t t 8 t t t 5 t t 8 t t t t 5 8 t t t t t t 5 8 t t 4.t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t ' +- +'t t t 5 t t t t t t t t t t t t t t t t t t t 8 t 8 t 8 t T #.@.x 8 t u j p' +- +' t t t t t t t t t t t t t t a p u t t t t t t t t t t t t t t t q q q t t ' +- +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t [ ''.;.x q 2 ' +- +'5 8 t t t t t t t t t 8 t L ) x 8 R ]. X+.2 8 8 t t t 5 t t t t t t t t t t' +- +' t t t t 2 q t q t t t t t t t t u p t t t p p t t t t t t t t t t t t t t ' +- +'q q t t a t t t 4.G n.!.G q t t t t t t t t t t 8 t t t t t t t 8 t t t t t' +- +' t t t t t t t 8 t t t t t v v ^ v ^ L t t t t v ^ Q Q : t t t Q Q Q Q t t ' +- +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 l p u' +- +' t 5 t t t t u v ^ v v t t t t v v ^ L t t t 2 R T G L v v t t t t t : t t ' +- +'t t t t t t t t t t t t q 5 q t t 5 t t 8 t t t t t t 5 8 t t t t t 5 8 t t' +- +' t t t t t t t l T j t t t t t 8 5 q t j x u t 5 8 t t t 5 t t t 5 t t t t ' +- +': t t t t t t t t t t t t t t 5 8 t t t t t t t t t t 5 t t 8 5 8 8 t t 5 8' +- +' t t t t 5 8 t t t t q q q t t t t t t t t 5 t t t t t t t t t t t t t t t ' +- +'q q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t q u T L t t q t q t t t t t t t t Q t t t t j ~ ~ l p t 5 t t t t t ' +- +'8 t t t t 8 5 t t 5 v u a q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t' +- +' t t t t t t j ) R 5 q q 8 5 t t 5 t t t t t t 5 8 u t u u x +.`.R t 8 a t ' +- +'t t t t 8 t t t 8 t t t t t t t t q q 8 5 t t Q t t t t t 5 q t t i L c i t' +- +' t a t t t t t t t t t t 5 v v p t t t 5 t q u i m t t t t t t t t 8 5 t 5 ' +- +'t t t t t t 2 u t t t t t t t t t t t Q G T v t t t t t t t 8 5 t t t t q 2' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t ' +- +'t t t t t t t t 8 5 t t t t 8 t t t t 2 5 8 t t t t t 5 u t t 5 8 8 5 t t 5' +- +' 8 5 u t t t t ^ v Q Q t t t t 5 u t t t t t t t t 5 8 t t t t t t t t 8 5 ' +- +'t t t t t t t t t t t t t t t 8 t t t t i p a t t t t t t q 5 t i i 5 t t t' +- +' t t 8 t t t t 8 t t t t t t t t t t 8 5 t t 5 t t t t t t t t t 5 8 t t t ' +- +'5 t 8 t t 5 q t 5 t t t t t t t 4.t t t t t t 2 u 5 q 8 t t t t t t 8 t t t' +- +' t 8 5 t t t t t t t t : 5 q q t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t 5 : t t : t t t q 2 t t t t t t t t t t y q 5 q t t t t t t Q t t t t t' +- ,' ` +X<.v u t q t q t 5 8 5 t 8 t t t t t t 8 q V v t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t q 2 q q t t 8 t t t t 5 t t 5 8' +- +' t t t t a g t t t t t t t 8 t 5 t t t 5 t t t t t t t t 8 5 5 q t t v q t ' +- +'t t t 8 5 t t i l l u u p u t t t t t t t t t 2 p ^ ~ l t t t q 2 q 5 8 5 5' +- +' q t t t t t u 5 u t t t t t t u v T t t t 2 T Q Q Q t t t t 5 q q t t t t ' +- +'t t t 8 5 t t t t t q q t t t t t t t t t t t t t t t t t t t t t t t t 5 t' +- +' t 8 t 8 t t t Q t t t t t t t t t t t t t t t t t t t 8 t t q q t t t t t ' +- +'t t q 8 5 t t t t t t t t 2 q t t t t t t t t t t t t v v v v t t q t t 8 t' +- +' u t t t t t t 8 5 t t 8 t t t t t t t t t q 2 t t t 5 t t t m q t t t t t ' +- +'5 8 t t t t t t 2 q t t 5 t t t t t t v t t t t t t t t t t t q t t 8 t t t' +- +' t t t t t t t t t t t 8 t t t 8 t t t q t t t t 8 t t t 4.t t t t t p x j ' +- +'t 5 t t t t t t t t t t t t t t t t t t t t t q q q 5 t t t t t t t t t t t' +- +' t t t t t t t t t t t t t q t t t t t t t 8 u t t t t t t 8 5 t p b l t t ' +- +'t t t t t t Q t t t t t ] .X<.b t t t t 5 q q q 8 t 5 t t t t t t t q t t t' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t 5 q q ' +- +'q t t t t t t 8 t t q 2 u t t t t u u t t t t t t t t t 8 t t t t t 8 5 t t' +- +' t t t t 8 5 8 t t Q 2 t t t t 5 8 q 5 t t t t p v p t t t t t t t t t q 5 ' +- +'x v p t t t 4.q q q t 8 5 q t t t t t v v v v t t t t v G v t t t t q q 5 :' +- +' t t t t : q 2 q t t t t t t t 5 t t 8 t t t 8 5 t t t t t t t t : t t t t ' +- +'t t t t t t t t t t t t t t t t 5 t t q v t t t t t q 8 5 t t t t t 5 t t t' +- +' t t 5 8 5 t t t t t t t t t t 5 8 t t t t t t t t q q t t t t t t t t t t ' +- +'t t t t u t t t 2 u v G v v t t t t t t t t t 5 t t t t 5 t t t t q q q t t' +- +' t t t t t t t t t t 2 q t t t t t t t t u 8 t t 8 t t t t t u v t 8 t t t ' +- +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 t t t q t t t t 5' +- +' t t t t t t t t t p c l t t t t 8 t 5 t t t t 8 t t t t t t t t t t t q q ' +- +'2 q t t t t t t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t 5' +- +' t t t t t 8 5 p T Q i t t t t t t t t t t : t t p ~ ^ 5 t t t t q 2 q 5 t ' +- +'t t t 5 8 t t t t t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t : t' +- +' t t t t t t t t t t t t t t t 5 t t t t t t t t : t t t p h u t t t t t t ' +- +'5 t t t t t t t t t t t t t t t t t t t t t v u t t t t t t t t t t t t u p' +- +' u t t t t t t t t t q t a q t t t t 4.t 8 5 t u G L Q : q : t Q t t u 2 q ' +- +'q q q t t t t t t q q 2 q t t t t t 5 t t t t t t t t t t t t 5 t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t t t t 5 T q t t t ' +- +'t 2 t 2 q q t t t 8 t t t t t t t t t 5 q 8 t t t t q 2 t t t 5 t t 5 8 t t' +- +' 5 8 q 5 t t q 2 q q t t 2 q t t t t t t t 5 t 8 2 q t t t 5 v ^ V T t 8 t ' +- +'t 8 q 8 t t t t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t 8 t t' +- +' t t t t t ^ 2 q 5 t t t t t t t t t t t t t t 8 5 5 t 8 5 t t 8 t t 8 t t ' +- +'8 t t t u 2 q q t t t t t t t t t t 4.t t t t p u t t t t t t t t t 5 t 5 t' +- +' 5 8 t t q t t t t t 5 q 8 5 t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t q q q 5 t t t t t t t 8 t t 8 5 t t t t p j 2 q t t t t : t t t t t t t t' +- +' t u 2 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoXn.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t t' +- +' t t t u u a t t t t t t 8 t t t t t t t t t t 5 u 8 t t t t t t t t t t t ' +- +'t t t t ! ] T t t t t 5 t t t t t t : t t t t t t t t t t t t t t t t t v 8' +- +' 5 t t 5 q t t t t q q 2 q 8 5 t t t t t t q 5 q q q 2 t t t 8 t t t t t t ' +- +'t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t 8 t t t q V t t t t t u t u t t t t t t 5 8 t t t t t t t q 8 5 t t 5 ' +- +'8 t u 8 t t 8 t t t t t t 8 5 8 t t t 5 q t q t t q t t t t t t t 8 5 t q q' +- +' t t t t 8 t t t q t t t t Q Q ~ t t e e e t t t t t t t t t t t t t t q q ' +- +'q q t t t t t t t t 5 t t t t t t t v t q q t t t t t t t t t t t t t t t t' +- +' t t t t t t 5 t t 5 t t t t t t 8 q q 2 t t t t t t 5 8 8 t t 4.t t t t t ' +- +'t t t t t 8 t t t 8 t t t t 5 t t 5 t t t t t 8 5 5 8 t q t t t 5 8 t t t t' +- +' t t t t t t t t t t t t t t q 2 q t t t t 5 8 t t t t t t 8 5 t t t t u 8 ' +- +'t t t t t t t t t t t 5 t t q q t t t t t t t t t t t t t t t t t t t t t t' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' +- +'t t 5 t t 8 t t t t t t t t q t t t t t t t t t t t t 8 5 t t 8 t 8 t t 8 2' +- +' t t t t t t t t t t t t t 5 m j $.|.$.t t t t t t t t t t t t t t t t t t ' +- +'t t t v Q Q v u t t t t 5 8 t t t t t t t t 5 2 q 5 5 q q t t t t t t t t t' +- +' 8 u t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t ' +- +'t t t t t t t u t t t t t 8 t 5 t t t t t t t 5 8 t t g g i t t t 8 5 5 8 t' +- +' t t t t 8 t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t q q t t t t ' +- +'q q t t t t t t 5 8 q q q q t t t t t t 5 t t t t t a ) `.].E e e e r u t t' +- +' t t q 5 t t t t 5 t 8 5 q t t t u 8 t t t t t t t t t t t 5 t t t t : t t ' +- +'t t t t t q q t t t t t t t 8 5 t t t t t t t t t t t 5 8 t 2 t t t t t t t' +- ,' t t t t t t t t t t t t t t t 8 5 t t t t t t t 8 t l ` ! t t t t 8 t t t ' +- +'8 t u 2 t t t t t t t t t t t : t t t t t t t t t t t t q q t t t t t t 5 8' +- +' t t t t t t t t t t t q t t t t t t t t t t 5 8 q q q 5 t : t t t t t t t ' +- +'t 5 t t t 5 t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' +- +' t t t t t t t t t t t t q t 8 t t 5 t t t t t t t q 5 8 5 t t t t t t t t ' +- +'t t t t t t 5 t 5 t t t q t t t 5 8 t t 5 8 t t t t m m y _ :.[ t t t t t t' +- +' t t t t t t t t t Q v t t t t t t 4.q 2 t t t t t t t t t t t t t t q q q ' +- +'q q 2 q t t t t t t t t t t t t 5 8 t 8 t t t t t t t t t 5 8 t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t g x u t t t 5 t t t t t t t t t 8 q ' +- +'t u x P p t t t t t t t t t t t t 5 t t t t t t t t t t 5 8 t t t 5 t t t t' +- +' t t t t t t 2 q t t t t t t t t t t t 5 q t q 2 q 5 t 8 t t t t 8 t t t t ' +- +'t g `.dX XW e e e G v Q v t t t t t t t t 8 t t 8 5 q t q 2 t t t t t t t t' +- +' t t t t 8 t t t t t t t t t t t t 2 t t t t t t t t t t t 8 t t t t t t t ' +- +'t t t t t t t t t h 8 a 8 5 t t t t 5 8 t 4.t t t t t t t t t 5 8 t t t t t' +- +' u ] +X|.v t t t 5 t t t t t 8 t t t 5 8 t t t t t t t t t t : t t t t t t ' +- +'t t t 2 q t t t t t t t t t t t t t t t t t t 5 t t t t Q t t t t t 8 8 q 5' +- +' q 2 q t t t t t t t t t t 8 t t t 8 t 5 8 t t t t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 8 5 t u 2 t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t 5 5 8 5 t t t t 5 y q 5 t t q 5 t t t t t t t ' +- +'t t t t y j q a t 8 8 t 8 u 5 q q 5 8 q T v t t t t t t t t 4.q t t t 8 t t' +- +' t t t t t t t q t 8 t t t t t t t t t t t 5 8 t t t t t 8 t t t t t t t t ' +- +'t 8 t t t t t t t t t t t t t t t t t t 8 5 5 q q 2 q : t t t t g x t t t t' +- +' t t t t 5 t t t t t t t t t i i t t t t t t t t t t t 8 t t 2 q q q 2 q 8 ' +- +'t t t t t 8 5 8 t t t t t q 2 q t t t t t t t 8 t t t t t t 5 8 t t t t t t' +- +' t q 5 8 5 t t t 5 t t t t g #.$X].W e e e e 8 t t t t t t v T u 5 8 t t t ' +- +'t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t 5 8 t t t t t t t t t' +- +' t t t t t t t t t t 5 t t t t 8 q 2 q u ) +.T t t 5 t t t t t t t t t t t ' +- +'t t t t t t t t t t t q 5 q ] |.>.v t t 5 5 t t t 8 5 t t t t t t 8 t t t t' +- +' t t t t t 8 t t t 5 q 2 q t t t t t t t t t 8 t t t t t t t t t t t t t t ' +- +'q q 5 T t t t t t t t t t t t t : t t t t t t t t t t t 2 u t t t t 5 8 q q' +- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8 t t t t 8 ' +- +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t q 8 8 t t t t t L *.]' +- +' u t t 8 t t t : t t T t t t t t t t t q p g p 2 ^ v v T 2 q 5 5 2 u t t t ' +- +'t t t 8 t t 5 t t t 5 t 8 t t t 8 5 t t 2 u 5 t t t t t t t t : t t t t t t' +- +' t t t 5 t t t t t t t t t 5 u t t t t 8 t t t t t t t t t t t t 5 8 q q q ' +- +'q 5 t t t t t u t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5' +- +' 8 t t t t q t q 5 q q 5 t t t t t 5 q t t t t t t t t q q t t t 8 t t 5 t ' +- +'5 t t t t t t t t t t t t t 5 : t t t t t t 8 t t t t P +.) u e e e t 8 t t' +- +' t : t t 5 t V T t t 8 5 t t 8 5 t t t t t t t t t t q 5 5 8 t t t 8 t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t 5 5 q q x `.].) t t' +- +' 8 t t t t t t t t t t t t t t t t t t t t t t 2 8 5 p ^ Q q t t 8 8 t t t ' +- +'t t t t 5 8 t t 5 t t t t t t t t t t t 5 t q q q 5 t t t t t t t t t t t t' +- +' t t t t t t t t t t t t q 2 T V t t t t t t t t t t 8 5 t t t t t t t t t ' +- +'t t t q 8 t t t 8 t 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' +- +' t t t t t t t t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t ` XX>.l t t 5 t t t t t : 5 Q t t t t t t t T g L c i t' +- +' t t 5 8 t q q 2 t t t t 8 t t t t t q t t t t t t 5 8 5 t t 8 t t 8 t t t ' +- +'t t t t t t t t t t t t t t 5 t t t t t t t 5 t t t 5 q v ~ i q 5 8 t t t t' +- +' t q 2 t t t t 8 t 2 q q 5 t t t t t t t t t t t t t t t t t t t Q : t t t ' +- +'t t t t t t t t t t t t t t t 8 t t t t t t t 8 5 t q 5 t t q 5 u 8 t t t 8' +- +' t t t t t 5 t t t 8 t t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t a q t 2 u t t t t t t t q t 5 8 t q 2 t t 5 8 v L v L 5 5 t t t t t t t' +- +' t 5 8 2 T t t t 5 t t t t t t t 5 t t t t 8 t t t t t t t t t t t t 5 t t ' +- +'2 u t t t t 2 u ) +.P 8 t t t t t q t t t t t t 4.t t t q 5 q 2 5 8 t t q q' +- +' t t m m t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 8 5 t ' +- +'q t t t t t t t t t t t t 5 t t t t q t t t t t t t t v u t t 8 t t 8 t t t' +- +' t t t t t t t t t t t t t t t t t 5 t t t q 8 t t >.oXoXoXoXoXoXoXoX>.",' +- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t 8 t t t 5 t 8 5 t t 8 5 t t t' +- +' t t t t t t a t 8 t t t t t t t t t t t 2 u b '' ~ u t t t t t t t t t t Q' +- +' t t t t Q Q Q t p x l u q t t t t t q q q t t t t 5 t t t 4.5 t t 8 5 8 t ' +- +'t t t t t t 5 t t t t t 8 5 t t 8 5 t t t t t t t t t 8 t t 8 5 t t t 8 t t' +- +' t 8 c >.XX` 5 8 5 t t t t t t u t t t t t t q 5 8 q t t t t t t t t t t t ' +- +'t t t t t t t t Q t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t q 5 8' +- +' t q t t t t q 2 t t t t 5 t t t t t 8 t t t 5 t 5 t t t t q t t t t t t 5 ' +- ,'t t t t t t t t t 8 t 5 t t t t 5 q q t t t t t t t t 2 t q 5 8 q q t t 8 5' +- +' u 5 u 5 t 8 : t v t t t t t q q q T t t t t t t t t t t 8 8 t 8 5 t 5 t t ' +- +'t t : t t t t t t t 8 t t q 8 t t t q q t q u t t 8 t 8 5 q 5 t t t t t t t' +- +' t t t t q q q t t t t q q t t 5 m t t t t t t t 5 8 t t t t t t t t t t t ' +- +'q t t t t t t t t t 5 8 t t t t t t 5 p u t 5 8 t t 8 t t t 8 5 t t t t t t' +- +' ^ ] v t t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t 8 t t t 5 t t ' +- +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q 2 8 5 t t t t 8 t t t 8 5 t' +- +' t t t 8 5 t t t 5 8 t t t t t t t t t a ^ ^ t t t t t t t t t t t q 5 q t ' +- +'t t t t t t t t t t Q Q Q t t t t t t t t t t u t t t t t t t t t t t t t t' +- +' t t t t 4.8 8 5 t t t t t t t 5 8 t t t t t t 5 t t t t t t t t t 8 t t t ' +- +'t t t t t t t t t t t t t t t c &.''.~ t t t t t 8 t t t 8 t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t 2 ^ t t t t t t t t t t t t t t 5 8' +- +' t t t t t t t t t t q t q 2 2 q d ` ~ t t t 8 5 q q t t 5 t t t t t t t t ' +- +'8 t t t t 2 q 5 q t t u u t t t 5 t t t t t t t 8 t t t t t t t t t t t t t' +- +' t 8 u t q 8 5 q 2 q q t t t t q q q t t t u v v v t t t t v q t t t t t t ' +- +'t t t t 8 5 t t t t 8 5 t 8 t t t t t t t t t t t t t t t t 8 t t t 8 5 t t' +- +' 5 t t t t t t t t t t t t t t 4.8 5 t t t 5 t t 5 8 t t t t t t t t t i p ' +- +'8 u 2 8 t t t t t t t t q q 5 q q t t y q 8 5 t t t t t t t t i v b t t t t' +- +' t 5 t t t 5 t t t t t t d &..X] 2 t t t t 8 t t t t t 8 5 t t t t t t t t ' +- +'t t t t 8 5 t t t t t t t q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q q' +- +' 5 q t t 5 : 5 t t t t t t t t t t t t t t t t t t t t t t t t t ^ ,.>.v t ' +- +'t t t t t t t t t q t t t t t t t 8 5 t t t Q Q t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t 5 8 t t t 5 t t t t t t t t t t t t t t 5 t t t t 8 ' +- +'t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 v ^ u t t t t t 5' +- +' t 5 t t t 8 5 t t t 5 t t t t t t t t t t t t t t t t t t t t 8 q v t t t ' +- +'t t t t t t t t 5 8 t t t t t t t t t t t 5 8 5 q q q t q ~ .X<.v t t t t 2' +- +' t d x p t t t t t t t t t t t t 8 q q q 2 t a l l u t t 8 t t t t 5 8 t t ' +- +'t t t t t t t 8 t t t t t h p t t 2 u 8 5 q t q t t t t t q 2 t t t 5 t u 5' +- +' t t t t ^ V v t t t t t t t t t q 5 t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t 5 t t t t t t t t t t 8 t t t t t t t t t t t 4.4.t q q 8 q t t 8' +- +' 5 t t t t t t t t t b ^ p q q t t 5 t t t t 8 t 5 5 8 q 2 a l v p u 8 t t ' +- +'t t t t t t i c l i t t 8 5 8 t t t 8 t t t t t t u '' &.~ q t t t t t t t ' +- +'5 t t t t t t t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' +- +','#10'"oXoXoXoXoXoXoX>.q t q q 5 q q q t t t t t t 8 t t t t t t 8 t t t t ' +- +'t t t t t t t t ^ >.>.v t t : t t t t t t t t t t t t t Q Q v t t 8 t t t t' +- +' t t t t t t t t t t t t t t t t t t t t 5 8 t t 8 t t t 8 4.t t t t t t t ' +- +'t t 5 t t t t 8 t t t t t t 8 8 t q q t 8 5 t t t t 8 5 t t 8 5 t t t t 5 t' +- +' t t t t t 5 5 t t 5 t t t t 8 t 5 t t t t t t 8 t t t t t t t t t t t t t ' +- +'t t t t t t t t q q 8 t 8 q t t t t t q t t t t t t t t t 8 t t t t q q 8 5' +- +' q 5 t t ~ >.*.l 8 5 t 8 5 u b T p t 8 5 t t t t t t t t t 5 8 5 q q t u p ' +- +'j u 2 t t t t t 5 t t t t t t t t t 2 8 t t t t t a g g t t t 8 5 t t q 5 t' +- +' t t 8 t t t t t t t t t t t t t t t t v ^ t t t t t t : q 2 q t t t t t 8 ' +- +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t 5 t t t t t t t t' +- +' t t t t t t q q 5 t t t t t t t t t t t t t t v Q p 5 q t t t t 8 5 t 5 t ' +- +'t 8 t q q q c v p 2 q t t t t t t t t t u t t 8 5 t t t t t t t t t t t p b' +- +' p ~ x q t t t 8 5 t t t 8 t 5 t t t t t t t t t t t t t t t t 8 t t t t t ' +- +'q t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t q 2 q q q 2 t t t t t t' +- +' t t t 5 8 t t t t 5 t t 5 8 t t t t t t 8 L V t t t t t t t t t t t t t t ' +- +'t t Q Q t u t t t t t t t t t : t t t t t t t t t t t t t t 8 5 t t t t t 5' +- +' t t t t 4.t t t t t t t t t 8 t t t t t t t 8 t t 5 t 5 8 5 q 5 q 8 5 t t ' +- +'t 5 t t t t 8 t t t t 8 t t t t t 8 5 8 t t t 8 t t t t t 8 t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t 5 8 5 5 t t t t t 2 u 8 5 8 t ' +- +'t t t t 5 t t t t t q 2 q q q t t H ` x 5 5 8 t t t t i p t t t t t t t 8 5' +- +' t t t t t t 8 5 q t t t 5 q q t t t t t 8 t t t 8 t t t t t 8 8 t t t t t ' +- +'8 a u 8 t t q 5 t 8 5 8 t t t 5 t t t t t t t t t t t t t t t t t t t t t t' +- +' Q Q G q q q t t 8 5 t t t t t t t t t t t : t t t t t t t t t t t t t t t ' +- +'t t t t t t q H ....p t t t t t t t 4.4.2 8 5 8 t t 8 5 t t t t t t t t t u' +- +' q q 2 t 5 8 t t t t t t t t t 5 t q i i 5 q t t t t t t t t q 5 t t t t t ' +- +'t t t t t t t t 8 5 5 x ! l G t t t t t t t t t t t t 8 t t t t t t t t t t' +- +' t : t t t t 5 t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: ' +- +'t t t t t q t t t t t t t t t t t t t t t t 8 t 8 t 8 t t t t 5 t t t t t t' +- +' t t t t t t t Q v Q : t t t t t t 5 2 t t t t t t 8 G 8 t t t t t t t t t ' +- +'t t t t t 8 5 t t t t t t t t t t N 2 2 t t t t t t q q q 5 t t t t t 5 t t' +- +' t : t t 2 q t t t t t t t t t t t t t t 5 8 t 8 5 t t t t 5 t t t t t 8 t ' +- ,'t t t t 5 t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t q t t 2 : G -.-.G t q q t t ' +- +'t t t t t t t t t t t t t t u t t t t t t t t t t t t t t t t t t t t t t 5' +- +' t 5 t t t t t t t t t t t t t t t t t t 2 q q q 2 q t t t t t t t 5 8 t t ' +- +'t t t 8 u 2 q t t t t 5 t t t v L t t t 5 t t t t t t t t t t t t t q 5 q t' +- +' 2 q t t t t : t t t t t t t t t t q d -.#X#X..t t t t t t t t 4.t t t t t ' +- +'t t t t t t t 8 t t t t 5 8 t t t 8 t t t t t t t t t t t q q 2 t t 5 t t t' +- +' 8 5 t t t t t t : t t t t t t t t t q q q 8 t p j ! t t t t 5 t t t t t t ' +- +': 5 q 5 8 5 q t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' +- +','#10'"oXoXoXoXoXoXoX>.t t t t t t q q t t t t t t t t t t t t t t t t t 5 ' +- +'t t t t t t t t t t t t t t t t t t t v v u t t t t t t t t q q t t t t t t' +- +' q G t t t t t t t t t t t t t t t t t t t 8 t t t t t q t t t q t t t t t ' +- +'t 2 q 2 q t t t t t 8 t t t t t t q 5 t t t t t t t t t t t t t t t t t t t' +- +' t t 5 t 8 t t t 8 t 5 t t t 5 t 8 t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t 5 t t t t t t 5 8 t 5 8 t t t t t : t t t t t t t t t 5 t' +- +' t q t G -.-.G t 5 q t t t t t t t t t t t t t t t p x x t t t t t t t t t ' +- +'t t t 8 5 t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t q t q 5 q' +- +' q q q t t 5 t t t t t t t t t 5 v q q t t 5 8 8 t t t u 5 t t t u v v v t ' +- +'t t t t t t t q t t 8 5 t t q q 5 q t t t t t t t t t t t t q b /.aXsXX.u t' +- +' 5 t t t t t t t t t t t t t t 8 t t t 5 t t t t t t t t t 5 t t t t t t t ' +- +'t t t 5 l T j t t 8 t t t t t t t t t t t t t t t t t t t t t 2 q q 5 t t 2' +- +' ^ t t t t 8 t t t t t t t 2 q q q q 2 t t t t t t t t t t t t t t t t t t ' +- +'t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 8 2 5 5 8 t t t' +- +' t 5 t t t t t t 8 t t t 8 t t t t 5 t t t t t t v V T t t t t t a t t t t ' +- +'t t t t t q 5 8 t t t 5 8 q T t t t 5 8 t 8 t t t t 5 t t t t t t t t t t t' +- +' t t 2 4.t t t t t t t : t t q q q 5 8 t t t t t t t t t q 2 q t t t t t t ' +- +'t t t t t t 8 u t t t t t t t 8 t t t t t t t t t t t 8 t 5 t t t t t t t t' +- +' t t 2 u u d p a t t t t t t t t t t t t t L t t t t t t t t t t 8 5 t t t ' +- +'t t t t t t t 5 t t t u t t t t t H H t t 2 q t t t t t t t t t t t t t t t' +- +' p L P 8 t t t t t t q t t t t t t t 8 t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t 8 5 q t t 8 t t t t t t t t t 5 T 5 q t t t t t t' +- +' t t 5 8 t t t t t t ^ V t t t t t t u 2 t t t t t t 5 8 8 5 t t t t t t t ' +- +'t t t t t 2 q o.^.~./ t t 8 t t t 8 5 t t 4.4.t t t t t 5 t 5 t t t t t 8 t' +- +' t t 5 t t 8 q t t t t t t u 8 t @.''.@.u 5 q t t t t t t t t t t t t t t t' +- +' t t t t t t q 5 q t t t t t t t t t t t 8 5 t t t t q 5 q q q t t t t t t ' +- +'t t t t t 5 t t t t 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' +- +' t t t t 5 5 q q 8 5 8 t t t 8 t t t t t t 5 t t t 5 t t t t 8 t q t t t T ' +- +'^ 8 t t t t t t t t t t t t t t t t t t t t t t t t 2 u v t t t t t 5 t t t' +- +' p p u t 5 8 t t t 5 8 t t t u u 4.t t t t t t t t t t 5 q q 8 5 t t t t t ' +- +'t t t 5 q q q t : t t t t t t t t t t q 2 t t t t 5 8 t t t t 8 5 t t t t t' +- +' t t t t 8 8 t t t 5 t t t t t q 8 t j p q t t t t t t t t t t t t 5 G q t ' +- +'t t t t t t 8 t t t t t t t t t t t t t q 5 j ..-.o.t q u t t t t t q 5 t t' +- +' t t t t t t t t 5 8 t t t u x g 8 2 t t t t t t t t 8 t t t t 5 t t t t q ' +- +'t 8 t t 8 5 t t 8 t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t t' +- +' t 8 5 8 T q 2 t t t t t t 8 5 8 5 t t t t t t q q 8 5 t t Q Q v t t t t t ' +- +'t t 8 5 8 q t t t t t t t t t t t t q 5 8 G b q t t t t t t t t 8 5 t 4.t t' +- +' t t t t t 8 t t t t t 5 t t t 8 t t u 2 t t t t t q 2 t g #.$X@.p q t t t ' +- +'5 8 t t t t t t t t t t t t t t t t t q q 2 t t t t t t t t t 8 t t t t t t' +- +' t q q 2 q q t t t t : t t 8 5 t t 8 t t t t 5 t t t 8 >.oXoXoXoXoXoXoXoX>.' +- +'",'#10'"oXoXoXoXoXoXoX<.t t t t q q q 5 t t t 5 t t t 8 t t t t t t t t t t' +- +' t t t t v ^ v ^ 2 t t t 8 t t t t t t q q 2 t t t t t t t t t 8 t t t q 2 ' +- +'q t t t t 8 t t 5 t t t t p l a t t t 5 t t t t t 5 a l d t t t t t t t t t' +- +' t t t t t 8 t t t t 5 t t t t q : t t t t t t t t t t t t t t t t t 5 t 8 ' +- +'t t t t t t t t t t t 8 t t t t t t 8 5 t q 8 t t t t t t t t a q 5 u 2 q t' +- +' t t t t t t t t 8 v t t 5 8 t t t t t t t t t t t t t t u 8 t t q 5 ( #XiX' +- +'^.H q 5 8 t t t q 2 q t t t t t t t : t 8 t t 8 u t q t t 8 t t t t t t t t' +- +' t t t t t t t 2 q 5 q t t 5 t t t t t t 5 t t t t q t t t t t q q 5 8 5 8 ' +- +'t t t t t t q 2 5 8 t t t t 5 8 v t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t 5 q V T t t 5 u 5 u t 5 2 q t t t t t t t t t t t t 5 q 5 8 5 t t ' +- +'t t 5 8 t t 8 5 t t 5 8 t t t 5 t t 8 t 5 t t t t t t 5 8 t t t t t t t t 8' +- +' 5 t t 8 ! _ R t t t t t 8 t t t t t t t t t t 5 q q 2 t t t t t t t t 2 t ' +- +'t t 5 t t t 5 t t t t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t t t t' +- +' t u >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 2 q 8 t t 8 t ' +- +'t t 5 t t t t t t t 5 t t t 8 t t T 2 8 5 q q t 5 t t t t t 8 t 5 q q t t t' +- ,' t t t t t t 5 t t t t q q t t t t t t t t t t t t u u t t t t 8 t t t t t ' +- +'8 u l p t t t t t t t t t t t t t t 5 t t t t 8 t t t t 5 t t t t t t t t t' +- +' t t t t t t t t t 8 t t t t t t t t t t t q t 5 t t t t t t 5 q t 5 t t t ' +- +'5 5 8 t t t t 5 q 8 5 t t t u p i t t t t 2 ^ t t t t t 5 t t t t t t t t t' +- +' t t t 2 t t t t 8 | #XiX^.H t 8 5 t t t t q q t t t t t t t t t 5 t t q 2 ' +- +'t t t 2 8 t t t x R i 2 t t t t 8 t t t u 8 t : t t t t u 8 t t t t t t t t' +- +' q 2 t t t t q q q 5 t t t 8 5 8 t t q q t t t t t t t t t t t t t t t t t ' +- +'t t t 8 5 t t t t t 8 t t t t t t q q q q t 8 2 v L v v u t q t t t t t t t' +- +' t t t t t 2 q q q q t t t t t t t t t t t t t t 4.4.t 8 t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t 8 q' +- +' q q t t t t 8 5 t t q t t t 8 t t t t t t 8 t t t t t t t t t t t t t t t ' +- +'t t t t t t 5 8 t t t t t t 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' +- +' t t t t t t : u 2 t t t 5 t t t t t t t t 5 L v ^ t 5 q t q t t t t t t 8 ' +- +'t t t 5 8 5 q q q 5 t t t t t t t t t t 5 8 t q 5 q 8 t t t t t t 8 t t p u' +- +' 5 q t t t t t t 5 8 t t t t u 4.t t t t t t q 2 t : t t t 8 t t t t t t t ' +- +'t t t q 2 t t t t t t t t t t t t t t t t t t t 5 8 t t t 5 t t t 2 q t t t' +- +' t t t t t 8 t t t t t t 8 t t t t t t 8 t 5 8 t t 5 p c g t t 8 5 q t t t ' +- +'t t t t t t t t 8 5 t t t t t t q t 8 5 t t b X.~.o.5 t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t q u x g O.:.) u t t 5 t t t t t t p x u u ' +- +'t t t 2 q t t 5 8 q 5 t t t t t t t : q 2 2 q t t t t 8 5 q q q 5 t t t t 8' +- +' 5 t t t t t t t t t t t t t t t t t t t 8 5 t t t 8 t t 5 q q 5 q 8 5 q q ' +- +'t t v q t t t t 2 u t t t t t t : t q 5 q q t t t t t t t 8 t t t t t t t t' +- +' 4.t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t 5 q q 5 q q t t t t q q T T 5 8 t t t t 8 t t t t t t' +- +' t t t : t t t t t t t t t 5 t t t t t t t t t t t t q >.oXoXoXoXoXoXoXoX>.' +- +'",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t q t t t 8 t t t t t t t v T q t :' +- +' t 8 5 t t t t t t t t t t 5 t 8 5 q t q 2 q t t t t t t t : t t 8 5 q q q ' +- +'2 5 t t t t t t t q p c c t t t t t t t t t t t t t t t 4.t t t t t q q q 5' +- +' q t t 5 t t 5 8 t t t t t t q q q t t t t t t t t t : t t t t 8 5 t t t t ' +- +'t t t t 8 t t t t t t t t t 8 5 t t t t t t t t t t t t 8 5 t t t t 8 q t t' +- +' t u p i t t t t q q t t t t 8 t v ~ v t t t t t t t t t t t t t t t t t d ' +- +'m t t t t t t t q 5 t t t t t t t t t t t 8 5 t t t t t t u ) `.+.O.:.[ t t' +- +' t t 8 5 8 t t g +.;.I 2 q t t t t t t 8 5 8 q t t t t t t t t 5 q q q t t ' +- +'t t 5 q t q 2 q t t 8 t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t' +- +' t 5 t : q 2 8 5 5 8 t q : 5 u t t t t Q R v 5 8 t t t t t t q q 2 q t t t ' +- +'t t t t t t t 5 8 t t 8 t t t 4.t t t t 8 t 8 t 5 t t t t t t t t t : t t t' +- +' 5 8 t t t t t t t t t t 8 5 t t t t : t t t t 5 8 q q 2 5 : t t t q 2 T 5 ' +- +'q 5 t t t t t t t 5 t t t t t t t t t t t t t t t t 8 t t t 5 8 t q t t t t' +- +' t 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t q 5 t t t t t t t t t ' +- +'t u t t t t t t t t q t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t v t t 8 t 8 u x l u 2 q 5 q q q t 5 8 5 t ' +- +'t t t t t t t t t t 5 8 t t t t t t 8 t t t t t t 5 8 t t t t t t t t t t t' +- +' t t 5 8 t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t t q 2 8 ' +- +'q t t t t t t t t t t t t t t u q t t t t t t t t t t m j >.OX<.l 8 t t t t' +- +' t t t t t t t 8 5 t t q q q 5 t 5 t t t 5 t t q 5 q q q t t t t t t t t t ' +- +'t t t t p +. X#.P v p t t t t t t t 5 8 x `.].) t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t 5 t t t t t t ' +- +'t t t t 2 q t t t t 8 5 t t t 8 t t t t t 5 8 t 5 t t t t t t t t t 8 v ^ t' +- +' t t t q q t 8 t t t t t t t 5 q 5 t t t t t t t t t t t 4.t t t t t t t t ' +- +'t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' +- +' t t q 8 5 8 t t t t v u 2 q t t t t t t t t t t t 5 t t t t t t t t t t t ' +- +'q q q q 5 t t t 5 t t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q' +- +' q 8 q t t t t t t t t t g x ~ ^ : t t t t q 2 t t t t t t t t t t t t t 5 ' +- +'t t t t t t t 8 t t t t 5 8 t t t t t t t t t t t t t t t Q t t 5 t 5 t u u' +- +' t t q q 2 q t t 8 q t 8 t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t 8 5 t t t t t t t 5 8 t t 8 t t 5 q t t t t t' +- +' 8 t t t t t t t t q u p g t t t t t t : t t t t t t t 2 q t t t t t t t t ' +- +'t t t v XXzX.XG t t t t t t t t 8 t t 5 t t t t q q 2 q t 8 t t t 8 t t : t' +- +' 2 q t t t t t t t t t t t t t t q ) +.) t t t t t t t t t t 8 8 8 R +.c t ' +- +'t t t t t t t t t 8 5 t t t t t t t t t t q t t q t t t t t t 5 8 t t t t t' +- +' t q V t t 8 t t t t t 8 t t t 8 u t t t t e e e t t t t t t 5 t t t t 8 q ' +- +'t t t t 8 5 t t t 5 t : t t t t q 2 t 5 t t t t t t t : t 8 t t t t t t 5 8' +- +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t 8 ' +- +'5 t t t t t t t t t t 5 8 t t 5 q 8 5 t t t t t t q q t t t t t t t t t t t' +- ,' 8 t t t t t t 2 q t t t 5 2 q 2 q t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.' +- +'",'#10'"oXoXoXoXoXoXoX>.t t 5 8 t t t t t t t t t ~ ] j q 5 t t t t 5 q 8 t' +- +' t t t t t t t t t t t 8 t t t t t t t 5 t t 5 8 t t t t t t t t 5 8 t : t ' +- +'q t t t v 5 t t t 2 q : 5 5 t t t t t t t t 5 t t 5 t 4.t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t q 8 q 2 5 t t t t t ' +- +'t t t t t t q 8 5 t t t t t t t t t t t t t 8 u x x p t t t t t t t t t t t' +- +' 8 5 t t q 2 q t t v t t t m t t ..''.| t t t t t t t t t 5 t t 8 t t t t 5' +- +' 8 q 5 t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'5 t t t t t u 2 u 2 8 8 t t t t t t t t t t t t 8 t t t 5 t t t t t t t 2 q' +- +' t 5 8 t 5 8 t t 8 t t t 8 t t ^ t t 8 t t t t t 5 t t 5 t t t t 5 e e e e ' +- +'e t 8 t t t 8 8 5 t t 5 t t t t t t t t t 8 5 t t t t t t T T t t t t t t t' +- +' t t t t t t t 5 q t t t t t t 5 8 t 4.q q 5 8 t t t t t t t t t t t t t t ' +- +'t t t t t t t t 8 5 t t t t t t t t 5 8 t t t t t t t 5 q q 5 q q 2 t t t t' +- +' t t t t t t 8 t t t t t t t t t t t q 2 q q t t t t 5 8 q q t t t t t t t ' +- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t 8 5 t t t t t t t t t' +- +' u p i t t t t t t 8 5 5 t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' +- +'t t t t t t t t t t t t t 2 t t t ^ 8 t t t q t t t 8 t t t t t t t t t t t' +- +' 8 t 4.t 8 5 t t t t t t t t t t 5 t t t t t t 8 8 t t t t t t t t t t t t ' +- +'t : t 5 q q q 8 t t t u 8 t 5 8 t t t 8 5 8 t t t t t t t t 5 t t t t 8 5 g' +- +' x i t t t t t t t t t t t t t t 5 5 q q q : ^ t t : 5 t t 8 p t p p t t t ' +- +'8 5 t t t t t t t t t t 8 5 t t t t t 8 t t 5 t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t 8 t t t t t t q 5 8 t t t t t t t t t t : t t t t ' +- +'t t t 8 t t p u t 5 t t t t t t t t t t t 5 t t t 5 t t v t t 5 q 5 q t t t' +- +' t t 8 t t t t 8 e e e e e t t t t t t t t t t 8 5 8 t t t t t t 8 5 q t t ' +- +'t t t t q 2 ^ v t t t t t t t t t t t t q q 8 5 t t t t t t t t 4.2 p G d t' +- +' t t t t t t t t t t t t t t t t : t t t t t t t t t t 8 t t t t t t t t t ' +- +'t t 8 2 q t t i u t t t t t t t 8 5 t 5 t t t 8 t t t t t t t q q 5 q t t t' +- +' t 8 5 q q t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' +- +'t t t t t t t Q Q Q : t t u t t t t 5 q t t 5 q t t t t t t t t t t t t t t' +- +' 5 8 t t t t 8 t t t t t 2 q t t t t t t t t t t 8 u t t 5 8 t t t t q q t ' +- +'t t t t t t t t t t : t t t t q 2 q q t t t t t t t u t a t t t t t t t t 5' +- +' t 5 t t t t t t t t t t t t t 5 q 8 t t t t t 2 t t t t t 5 t t t t t t t ' +- +'t 5 t p x p t t t t 5 t t t t t t t t t t t t t t t t t t 8 t t t t t ^ 8 5' +- +' t t t t m q ..4X4XX.5 2 t t t t t t 8 t t t t t t t t t t t t t 8 t t t t ' +- +'t t t t t 2 u t t t t t a t u P Y h 2 t t t t q t t t : t t t t t t t t t t' +- +' t t t t t t t t t t 8 5 t t t t t u z v u t t t t t t t t t t 8 5 t t t t ' +- +'5 8 u v t t t t t t t t t t t t t t t t t e e e e e t t t t t t t t t t t t' +- +' 5 t t t t t 5 q 2 q : t t t t t t t t t t t q 2 t u t t t t p p t q t t t ' +- +'t t t t t t 8 8 G !.#X!.J t q t q t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t t 5 t t t 2 q t t t t t t t j R l t t t t t t t t t t t t t t 5 t ' +- +'u 2 q t t t q t t t t t q q t t t t t t t q t t t 5 8 t >.oXoXoXoXoXoXoXoX<' +- +'.",'#10'"oXoXoXoXoXoXoX<.u t t t q t Q t t t q 5 : 5 t t t 8 q q p l u t t ' +- +'t 8 5 t t t t t t t t t t t t 5 8 t t t t t t t t u 8 t t t t t t t t ! O.R' +- +' q t t 8 5 t t t 8 t t t t t t t t t t t t t t t t t t 5 q q q 8 t 8 t t t ' +- +'t H ( G t t t t t t t t t t 8 t t t t t t t t t t t t t q q 5 t t t t t q t' +- +' t t t t 8 t t t t t t t t 8 t p v j t t t t 8 5 t t t q t t t t t t t t t ' +- +'t t t t t t t t t t v t t t t t t m z sXLXKXiXG q t t t t t t 5 t t t t t t' +- +' t t t 5 t t t t t t t t t t t t t q 8 t t t t q 2 P `.$X$X].) t a t t q q ' +- +'t t q t t t t t t t t : t t t t t t t t t t t t t t t t t t u l l 5 t t t t' +- +' t t t t t t t t t t t t 8 q 5 t t t 8 5 t t t t t i 5 t t t t t t t e e e ' +- +'t t t 5 8 t t t t t t t t 8 t t t 5 u q q q q t t t t t t t t 8 5 t t q ^ v' +- +' v t t t p G v p 2 t : t t 5 8 t t t 5 8 X.5XNXiX-.t 5 t t t t t t t t t t ' +- +'t t t t t t t t t t t 5 5 8 t t t t 8 t t t u 8 t t t t t t q x ! ] t t t t' +- +' t t t t t 5 t 8 t t t t 8 t t t t t 5 q t t t p b p t t t t t t a g p t t ' +- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXXXa G t t 8 5 8 q t t t q t' +- +' t t t t t t 2 p x y a t 2 q q t t t t l x 5 t t t t t t t t t t 5 8 t t t ' +- +'t t t t t t 8 t t p @.+XO.u t t t q t t t 5 5 5 8 t t t t 8 t t t t t t t t' +- +' t 4.q q 5 q 8 5 5 t t 5 d ..^.o.t t t t t t t t t 5 t t 8 q t t t t t t t ' +- +'t t t 2 q : t t t t t t t t t t t t t 5 8 5 8 5 t t t t u y u t t t t t t t' +- +' t q q q q t t 8 t t t t t t t t 8 t t t t t t t 8 t t t t 5 G iXKXKXiXH q ' +- +'t t t t t 8 t t t t 8 5 t t 2 u t t t t t t t t t t t t t t t t 5 8 t 2 a h' +- +' ].gXGXGXlX XP t t t q 2 q q 5 q t t t t t t t t t t t t t t t t t t t t t ' +- +'t t 8 t t t u t t t t 5 t t t 5 8 t t t t 8 t t t 5 t t t t b H u t t 5 t g' +- +' j u t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t 5 j l u 2 q t t t t ' +- ,'t t t t t t 8 t 5 t q t t t v t t u b x u t t t t t t t t 5 t t t X.sXNXiX!' +- +'.t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t t t t ' +- +'t t t t 8 5 i g ~ 8 t t t t t 8 t t 8 t t t t t 5 t t t t t t 8 2 q t t b ~' +- +' b t t t t t t p L c i q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoX' +- +'] v t t 5 8 u 2 t t t : t t t t t t t u a u t t 8 u q 5 t t t p ^ v p t t t' +- +' t t t t 8 5 t t t t 8 5 t t t t t t 5 t t t O.;._ q t t t t t t t t q 8 5 ' +- +'8 t t t 5 t t t t t t t t t 4.2 q 8 5 5 8 t t t 8 8 ( X.^ t t t t t t t t t' +- +' 8 t t u 2 t t t t t t t t t t q 5 q t t t t t t t t t t t t t t t 8 q t t ' +- +'a u t t t u t t t t t t t t 2 q 5 q 2 q 5 t t t t t t t t 5 t t 8 5 t t t t' +- +' t t t t t t ~.aXaX/.p t 8 5 t t t t t 5 8 t t t t t j x u t t t t 8 5 t t ' +- +'t t t t t t t t 8 8 8 9 ) dXGXKXJXFXgX#.t t t 5 8 5 q q 2 t t t t t t t t t' +- +' t t t t t t t t t 5 8 t t t 5 t 8 5 t t t t t 8 t t t t t t 8 t t 5 t t t ' +- +'t 8 q t G N.~.( q 5 q m p g t t t t t t t 5 8 t t t 5 t t t t t t t t t t t' +- +' t q t l v u q q 5 t t t t t t t t t 5 8 q t t t t t t t t 5 u T 5 t q 5 t ' +- +'t t t t 8 t t t ^ ~.#X^.( t t t t t t t : t t t t t t t t t t t t t t t t t' +- +' t 8 5 t 8 t t 8 5 t t t t 5 8 t t u 2 v ^ t t t t t t 5 t t t 5 t 8 t t 8 ' +- +'t t t t t t 5 q q q t p v p t t t t t t t p p t 5 8 t t >.oXoXoXoXoXoXoXoX>' +- +'.",'#10'"oXoXoXoXoXoXoXXXu t t t t t t t t t t t t t 8 t t t t t t t 2 u t ' +- +'t t p p t : p b v u t t 5 t t t t t t t t t t t t t t t t q q t t q 5 i x u' +- +' 5 t t t t G u t t t t t t t 5 t t t t t t t t 8 t 2 u t t 8 t t t t t t t ' +- +'t q d u t t 5 8 t 8 t t t t t t t t 5 t t t t t t t t t 5 8 t t t t t t t t' +- +' t t t t t q t t t t u g v p t t t t t t t t t t t 5 t t t 5 8 t 5 t t t 8 ' +- +'5 t 8 5 t t t t t t 2 q t t t t t t t y ~ ( d q : t t t t q 2 t t t t t t t' +- +' u G ^ l 8 8 t t t t t 8 5 t t t 8 t 8 t t t t 8 O.dXJXKXKXKXgX`.8 t t t t ' +- +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t u ^ ^.#Xo.t t t t u 5 t 8 t t t t t t t t t ' +- +'t t t t : t t t t t t t t t t t u p 5 8 t t t t t t t t 8 t t t t t t t t t' +- +' t t 8 5 t t v ^ R t t t t 8 5 5 q t t t t G ~ G t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t 8 t t t t t t t t 8 5 t t t t v t t 8 5 t' +- +' t t t t t t t t 2 u t t t t t t t t t t t t 5 t t t t t t t t t t t t 5 t ' +- +'t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t t 8 t' +- +' t 5 t t t t t t t q 8 t t p c g t t t t t t t t 8 t t t t t t t t t t t t ' +- +'t t t t q 2 t t : t q q 2 8 t t t t 8 v t t t t t t t 8 t t t t t 8 t t 5 t' +- +' q 8 t t 5 t t 5 t t t t q 2 : t t t t t t 5 t t t 8 5 t t t 8 t t t t t t ' +- +'t t t t t t t t t t t 8 5 t t t t t t q 5 t t 2 p l p t t t t t t t t t t t' +- +' 8 t t t t t t 8 t t t t t t t t t 5 8 t t 8 u t t t t t t t t t t 5 t t t ' +- +'t t t t q q 8 5 t t t t t t l c u 5 5 8 t t t t t t t t t 5 t t t t 5 t t )' +- +' $XCXKXKXGXdX+.a t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t : t t t t t t t t t t t t t t t t t t t t t t t v t d o.-.J t t t t 5' +- +' 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t t 8 5 ' +- +'t t t 5 t t t t 5 8 t t 5 8 t t t t t t 8 2 Q t t t 5 8 q q t t t 4.5 t : t' +- +' t t t t t 5 8 t t t t 8 t t t 8 t t t 8 t t t t t t t t t 5 t t t t t t 8 ' +- +'t 5 8 q t t t u t t 5 8 t t t t t t t t t q 8 t t t t t t t t t t : t q t t' +- +' t t t t t t t t t t 8 t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' +- +'8 2 t t t t t t t t t t t 8 t t t t t t t t t t t t u g p t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t 5 q t t t t t t t t t t t t t v t t t t q ' +- +'t t t 5 t t t t t t 8 t t N 2 5 t t t t 8 t t t t t t t t t t t t t t t q t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 5 q q t t 8 5 t t t t ' +- +'t t t t t t q 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t Q t t' +- +' t t t t t t t t t t t t t t t t q 5 q 8 t 8 t t 8 t q q u q 5 5 t t 5 8 t ' +- +'t t t t t 8 t t t 8 t t t ;.dXlXjXgX].x t t t t t t t t t t t t t t t t t t' +- +' t t t t : t t t t t t t t t t t t t t t t t t t t t t t t q 2 t : t t t t ' +- +'5 ^ 2 q t t u t t t t t 8 t t t t t t t t t t q t t t t t t t t t t t t t t' +- +' t t q q 5 q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t ' +- +'t 8 v u 2 t t t 4.t t t t t t t t t t t t t t t 5 t t t 5 t t t 5 t t t t t' +- +' t t t t t t t t t t t t t 5 q 5 q q q a u 5 8 t t t t t t t t t t t t t t ' +- +'5 8 q 5 t t t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>' +- +'.",'#10'"oXoXoXoXoXoXoX>.q q 8 5 t t 8 5 5 t t t 5 t t t t t t t t t t t t ' +- +'t t t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t q : t t t t t t t' +- +' t t t q q 2 u t t t t 2 u 8 t 8 t 8 5 t t t 5 t t 4.2 8 t t t t t q t t t ' +- +'t t 8 5 t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t 8 5 8 t' +- +' t t 2 t t t 5 8 t 8 t t t t t t t : 5 q 5 8 t t t t t t t 8 t t t t t 5 8 ' +- +'t t t t 8 t t 8 5 t Q t t t t t t t t t t t t t t t t t t t t 8 5 t 5 t t 5' +- +' q 5 2 2 q q 8 t t t t t t t t t t 5 t t t t t t t g +.].].`.K t t t t t t ' +- ,'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t q q q 5 t t t t 8 v q q t t t t t t t t 5 8 t t t t t t t t t 2 t ' +- +'t t t t t t t t t t : t t t t 5 q 2 q t 5 8 t t t t t t t t t t t t t t t t' +- +' t t t 5 8 8 t t t t t t t 5 u T v t t t t t t t t t t t p u t 5 8 t t t t ' +- +'t t t t t t t t t t 8 5 t t 8 5 t t t t 8 t t t t t q q q 2 2 u b l u t t t' +- +' t t t t t t t t t t 8 5 8 5 8 q t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.q 2 q q t t t t 8 t t t t' +- +' t t 5 t t 5 q t t t t t t t t t t t t t t t t t t t t 8 t t t t u g g t t ' +- +'t q t t t t t t t t t t t t t q 8 5 t t t t t t t t 8 5 t t t t t t t t t 5' +- +' t t t t t t t t 5 q 8 5 t t t t t t t 8 t t t t t t t t 8 5 8 t t t : t t ' +- +'t t t 5 8 t t q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' +- +' t 8 5 t 5 5 t t t t t t t t t t 5 t t 5 8 t Q t t t t t t t t 5 8 t t t t ' +- +'t t t t t t t t t t t t 8 5 8 u 5 8 t t t t t t t t t t t t t t t t t t t t' +- +' t u t u t t t t t t t t t t t t t t t t : t t t t t t : t t t t t t t t t ' +- +'t t t t t t t t t t t t t q 2 t t q 2 q q t t t t t v t t t t 5 q t t 8 t t' +- +' t 5 8 t t t t t t t u 5 8 t t t t t t t t t t t t t t q q q t t t 8 t t 8 ' +- +'t t 8 5 t 8 5 t 8 t t t t t t 2 q t t t t 5 t t t t 2 q t t t 4.t t t 5 q 5' +- +' q 5 p T x t t t t t t t t 2 q q t q 5 8 2 q t t 8 t t t t t t t t t t t t ' +- +'8 t t t t v p v v u t 5 8 t t t t t t t t t t t t t t t 2 q t t t t t t t t' +- +' t t : t t t t t t t t t t q 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' +- +'5 q t q t t t t t t t t t t t 8 t t 5 q t t 8 5 t t t t t t t t t t t t t t' +- +' 5 8 t t t t t u p i t t 8 5 t t t t t t t t t 8 t t t 5 5 8 t t t t t t t ' +- +'t t t t t t t t t t t t 8 t t t t t t t t 8 5 5 8 t t t t t t t 5 t t t t 8' +- +' 5 t t q 5 5 8 t q 5 t t t t t t 8 t t q q t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t 5 t t t t t t 8 t t t t 8 t t t t t t t t 8 5 t Q t t' +- +' t t t t 8 5 8 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t 5 8 t t t 8 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t q q t t 5 q q q t t t t ' +- +'t t t t t t q t t t 5 8 8 5 8 q t t q 2 t 5 t 8 t t t t t t t t t t t t t t' +- +' t 8 2 q 5 q t t 5 t t 5 t t t t t t t t 5 t t t t t 8 u t t t t t 8 t t t ' +- +'t q q t t t 4.8 5 Q v t 8 q 2 p T b t t t t t t t t t q q t q q 5 q q t t t' +- +' t t t t t t t t t t t t 5 t t t u ^ t i i 5 t t t t t t t t t t t 8 5 t t ' +- +'t t t t q t t t t t t t t t t t t t t t t t t t t t t 5 <.oXoXoXoXoXoXoXoX>' +- +'.",'#10'"oXoXoXoXoXoXoX>.q t t t 8 t t t t t t t 8 t t t t t 8 5 8 5 t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t q 5 q t t t t t t t t t 5 t' +- +' t t t 8 t t t 5 8 t t t t t t t t 5 t t t t t t 4.t t t t t t t t t t 8 t ' +- +'t t t 8 t 5 t t t t 5 : q q 8 5 5 8 q q t t t t t t t t 8 5 q q q 5 t t 5 t' +- +' t t 5 t t t t 5 t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t ' +- +'t t t t t t t q 8 t t t : t t t t t t t 5 t t t t t q t t t t t t t t 8 t t' +- +' 8 5 t t t 5 t t t 5 8 t t t t t 5 t t t 5 8 t t t t t t 4.t t t t t t t t ' +- +'t t t t q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t :' +- +' q 5 t t q q 5 8 t t t t t t t t t t t t t t 5 5 t t t 5 t t q q t 8 t 5 t ' +- +'t t t t t t t t t t t t t t 5 t t 8 5 5 t t t t t t t t 8 5 t t t t t t t t' +- +' t t t t t t t t 8 q 5 t t 5 8 t t t t t t t t v v t u t p u t t t t t 8 5 ' +- +'5 q 5 q t 5 t t 5 t t t t t t t t t t u t t 8 5 t t t t t v 8 t q 5 q t t t' +- +' t t t t t : 8 5 t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t y l <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t 5 5 t t t 5' +- +' t t t t t t 8 t t t t t t t t t ^ v t t t t t t t t t t t t t t t t t t q ' +- +'q 2 t t t t t t t t t t t t t t t t t t v q t t t t t t t t 8 t t t 8 5 t 4' +- +'.t t t t 8 5 t t t t t t t t t 5 t 8 t t t t t u i 2 u t q t q 2 t t t t t ' +- +'t t t 5 q t q 2 q t t t 8 t t 8 t t t t q t t t t t t t t t t t t t t t t 8' +- +' 5 t t t t t t t t t t 8 5 t t t 8 5 t 5 8 t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t 5 t t t t t t t 8 t t t t t t t t t t 8 t t t t t t t t' +- +' t t t a t t t t t t t t t t t t q 2 t t t t t t t t t t t t t t t t t t t ' +- +': t t t t t t t t t t t t 2 q t t q 2 q 5 t t t t t t t u g p t t t t q q t' +- +' t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 8 8 t t t t t ' +- +'t t t t t t t 8 t t t t t t t t t t t t t 5 t 8 t t 8 5 q 4.t t t t t t 5 u' +- +' 8 5 8 t 5 t t t t 8 5 8 q q q 2 t t t t q t t t t t t 5 t t l L l t t t t ' +- +'t t t t v 5 q 5 t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t x ^ ,.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' +- +'t t t t 8 5 t 8 8 t q 2 q t t t t t 5 t t t t t t t 5 t &.&XOX%.5 8 5 t t t' +- +' t t t t t 8 u t t t t t 8 q t t t t t t t t q q q 5 t t t t t t V q t t 8 ' +- +'5 t 5 t t t t t t 5 8 t t t t t t t t t t t t t 8 5 t t t t t t t t u l ] O' +- +'.x t t t t 5 q t t t : t t t t t t t t 5 8 t t t t t t t t t t t t q 5 q q ' +- ,'q q t t t t t t t t t t 5 t 8 t t 5 t t t t t t t t t t t t 2 q q 5 t t t t' +- +' t t t t t t t t t t t t t t t t t t t t 5 q 2 q t t t t 8 t t t t 8 5 t t ' +- +'u 2 q t t 8 t t t 5 8 t t t t t t q : t t t t q q q 8 5 t q G G a t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t q 5 q 2 q q t t t t t t q t t t ' +- +'G 8 5 t g g t t t t q 2 t t t t t t t t t t t t t 5 8 t t t t t 5 8 t t t t' +- +' t 8 5 t t t t t t t t t t t t q 2 q t t t t t t t : t t t t t 5 t t t t t ' +- +'t t t t 4.t t 5 8 t t t t 8 5 8 5 q t t t t t t t t t t t t t t t 8 5 t t t' +- +' 5 8 t t t x ! x t t t t t t t t t t t 8 5 t t t 8 t 8 t t t t t t t t t 5 ' +- +'8 t t t t t t t t t t t 8 5 : t t t t t t t t t t t p x >.oXoXoXoXoXoXoXoX>' +- +'.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 5 q t t t t t 8 t t t 8 5 t ' +- +'t q b oXPXIX.Xj t 8 5 t 8 8 5 t t t t 2 q t t t t u 2 t t t t 8 5 t t 2 q 2' +- +' q t t t t t t G u : t q 5 t 8 t t t t t t t t t t t q t t t t t t 5 8 t t ' +- +'t t t t 8 t t 8 t t L ''.''.! t t t t q q t t t t t t t t t t t t t t t t t' +- +' t t t t t t q t t q q 2 q 8 5 t t t t t : t t t t 8 t t t t t t t t t t t ' +- +'t t t : t t q 5 q q t m t t t t t t t t t t t t t t t t t t t t t t q q q t' +- +' t t t t t 5 8 t t t t t t 8 t t t t 5 t t t t t t 5 8 t 8 4.q 2 t t t t 2 ' +- +'q q 5 t t ~ !.!.^ t t t t t t t t t t 8 q t t t t t t t t t t t 8 5 t 8 q q' +- +' q t q t t t t t t 5 q t t v t 8 5 t u t t t t t 8 t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t 5 t t t t t 5 8 t t t t 5 q j j t q q q t t t t t t' +- +' t t t 8 t t t 8 t t t t t t 5 t t t t t t t t t t t t t t t Q v Q t t t t ' +- +'t t t t t u d d u 5 8 t t t t t t t t p p i t t t 8 5 t t 8 5 t t t t t t t' +- +' 5 t t t t t t t t t t t t t t t t t 8 t t 8 5 t t t t t t t t t t t t t t ' +- +'t t u 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t 8 5 t t t t a' +- +' p i t t t t t t t t t t t t t l .XCXzX.Xp t t t t t t t t t 8 t t t t t 5 ' +- +'t t t t t t t t t t t 8 5 q q t t t t p u 8 L t q 2 q t t t 8 8 t t t t t 4' +- +'.t t t t 8 t t t t t t 5 8 t t t t t t t 5 t t g _ O.l t t t q t q t t t t ' +- +'t t t t t t t t t t t q t t t t t t u 2 t t 5 2 8 5 5 q t t t t t t t t t t' +- +' t t t t t 8 t t 8 5 t t t t t t t t q q q 5 t Q t t t t t t t t 5 t t t 5 ' +- +'8 t t q 2 t t t t 2 q t t 5 8 t t t t t t t t t t t t t t 5 t 5 8 t 8 t t t' +- +' t t t 8 4.t u t t t t q 5 q q t t ..#X#X( t t t t t t t t t t t t t t t t ' +- +'5 8 t t t t t t t t 5 q q 5 t t t t q g x i 2 q q t ` l u u t t t t t t g x' +- +' i q u l t t t t t t t t t t t t t t 2 q t t 5 t 8 t t t 5 8 t t t t t t : ' +- +'u x l p 5 : 5 t t t t t t t t t 5 t t t t t 8 t t t t 8 t t t t 5 t t t t 8' +- +' 5 t 8 5 t t t Q t t t t t t t t t y d d t t t t t t t t t t t t t 5 t t t ' +- +'t t t t t t 8 5 t t 5 q t t 8 t t t t t t t t t t t t t t t t 5 t q q q t t' +- +' t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' +- +'>.5 t t t t t t t t p x v R l t t t t t 8 t t t t t t t t ( XX~.~ t t t t t' +- +' t t t t t 5 t t t t t 8 t t t t t t t t t t t 5 q t q t t t p x g 8 5 q 5 ' +- +'q q t t t 5 t t t 5 t t 4.t t t t 5 t t 8 5 t t t t t 8 t t t t t t t t t t' +- +' t t t t t 5 q 2 t t t t t t : t t t t t t t t q t t t t t t 8 t t t q q t ' +- +'8 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t q 2 q : 5 v t' +- +' t t t t t t t 8 t t t t t t t i h t t t t q q t t t t t t t t t t 5 8 t t ' +- +'t t t t 8 t t q t t t t 5 8 t t t t 8 5 t t t t q q 2 5 t t G X...z 5 8 q t' +- +' t t t t t t t t t t t t t t t t t t t t q q q 2 : t t t t t u x L g u t 8 ' +- +'^ v ^ p t t t t t t t g c i i *.n.2.t 5 t t t t t t t t t t t u 8 t t 8 t t' +- +' t t t t t t t t t t t t t p i t q t t t t t t t t t t t t t t t t t 5 t t ' +- +'q t t 4.t t t 8 t t t t t t t t t t t t t t t t t t t t t t t a t t 8 t t t' +- +' t t t t t t t 8 8 t t t t t t t 8 t t t t t 8 t t t 5 t t t t t t t t t 8 ' +- +'t t t t t t t q 2 q 5 t 5 8 t t t t t t t t t t t t t q 2 >.oXoXoXoXoXoXoXo' +- +'X>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t p v Q b j t t t t 5 t 8 t t t ' +- +'t t t t t t t t t t t t t t t t t t 5 q t t t t t t t 5 t t t t t t t t 8 5' +- +' t 8 t t t u g g t 5 8 5 t t 8 t t t t t t 8 t t t 8 t t t t t t t t t t t ' +- +'t t t 8 5 t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 2 q q q 2 q t' +- +' t t t 8 5 t t 8 5 t t t t t t t t t t t t t t t t t t t 8 5 t 5 t 8 u 2 q ' +- +'t t t t t t t t t t q G 8 t t t t t t t t t t t t t t u g j u t t t t t t t' +- +' t t 5 t t t t t t t 5 t t t t t t t q 5 t t 8 t t t t t t t 5 t t 8 5 8 t ' +- +'t t t t t t y u t 5 q t t t t t t t t t t t t t t 5 t t t 2 q t t t t t t t' +- +' t t t t t 8 i g u t t t t l v p t t t t t t t u u q v XXfXXXd t t t t t t ' +- +'t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t q u t t 8 5 t t t t t t t' +- +' t t t t 5 8 t 8 t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t 5 t t 5 ' +- +'T Q t t t t t t t t 8 t t t 5 8 t t t t 5 t t t t 2 u G L 5 t t t t t t 5 t' +- +' t t t t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t q 8 t t t ' +- +'t 5 5 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t d p' +- +' t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t q 5 t q t t t ' +- ,'t t 8 t t t t t t t 8 t t t t t t t t t t t q t t t t t t t t 5 8 t t t 4.t' +- +' 5 t 5 8 t t t t t t t t t t t t t 8 t t t t t t t t t 5 t 5 t t 8 t t t t ' +- +'t t t t t 8 q t q 5 q 5 t t t : t t t t t t t t t t t t t t t t t 5 8 t t t' +- +' 8 5 t t t t t t t t t t t t t t t t t t t t 5 L t t t t m t t t t t 8 5 t ' +- +'t t t p p t t t i j y t t t t 8 t 8 5 t t 8 5 8 t t t t t t t q q t 5 t t 8' +- +' 5 t t t 4.8 t 5 q t 5 : t t t t t t t t t t t t t t p x g t t t t t t t t ' +- +'8 t t t u 8 t t 5 t t t t t t t t q u 2 t u p 5 t t t t t t t t t t t 8 5 8' +- +' t t %.~.| u t t t t 5 8 8 t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'q 2 t t t t t t t t t t t t t t t 8 5 t 5 t t t t t 2 t t t t t t t t t t t' +- +' t t t t 5 8 t t 8 t t 5 t t Q Q t t t t t t t t t t t t t t t t t t t t t ' +- +'q 5 L 5 t t 8 t t 8 t u p u t t t t t t t t t : t 5 t 8 t t t t t t t t t 8' +- +' t t t t t t t 2 u t 8 t t 8 q 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' +- +'>.q 5 t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t 2 t t' +- +' t 5 8 t p ^ V t q t t 8 5 t t 5 8 t t t t t 5 t t t t t t t t t t q q t t ' +- +'t t t t t 5 t t 5 8 t 4.t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t' +- +' 5 t t t 8 t q 5 t t t t t t t t t t t t 2 q t 8 t t t t t t t t t t t t t ' +- +'t t 5 t t t q t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t' +- +' t t t t t t t q j j t 8 5 t t t t t t q j ^ x t t t t t t t t t t t t t t ' +- +'t t t t t : q 2 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t' +- +' q p L x t t t t t t t 5 t t 8 t t t t t 8 t t t t t t t u 2 5 8 u ] &.^ t ' +- +'t t : t t t t t t t 5 t t t t u x t t t t t t t t t t t 8 t t t t t t t t t' +- +' t t t 8 5 t t t t t t t t 8 t t t t t t t t t t t t t t 5 q 8 t t 8 q t t ' +- +'t 4.t t 8 t 5 t t t t t 8 5 t t t 8 5 t t t t t 8 t t t t t t t t t t 5 8 5' +- +' t t t t t t t t t t t t q t v u 8 t t t 8 5 q y d y t t t t t t t t t t t ' +- +'8 t 5 t t 8 t t t t t t t t t t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXo' +- +'X>.",'#10'"oXoXoXoXoXoXoX>.5 q t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t q q q t t t t t t ..^.~.H 5 t t t t t t t t t t t t t t t t' +- +' t t t t t t t t 2 u v t t t t t t 8 t t t t t 4.t t 8 t 5 8 t t t 5 t t t ' +- +'t t t t t t t t t q t t t 8 t t t t t t t t t t t t t t t t t t t q q q 5 t' +- +' t t t t 5 8 t t t t t t t t 8 t t t 2 u 8 5 8 t t t t 5 8 t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t p _ ] l t t t t t t t t 2 u d p t t' +- +' t t t t t t t t t t t t t t t t t t 5 q t t t t t i a t t t t t t t 8 t t ' +- +'t t t t t t t t t t t t t t t g u t t t t t t t 8 t t 5 t t t t t t t t t t' +- +' t t t 8 5 8 : d &.+X'' t t t t t t t t t t 8 y l t t t t t q t t t 8 5 t t' +- +' t t t 5 t t t t t t t t 8 5 t t t t t t t t t t t t t t t t 5 8 t t t t t ' +- +'t t t t q 5 q t t u 2 t t N 2 8 5 t t t t 8 t t t t t t t t t t t t t t t t' +- +' t t t : t t t Q Q t t t t t 5 8 t t t t t t t t t t : t t t 5 t t 5 q 5 a ' +- +'p a t 5 t t t t t t t t t t t 8 t t 5 t t t 8 5 t t t 8 t t t t t t t 5 t t' +- +' t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 q 8 t t t t t t t t ' +- +'t 8 t t 5 8 t t t t t t t t t t t 5 8 t t t t t t t 8 5 t p -.sX#X( t t t t' +- +' t t t t t 5 t t 5 8 t t t t t t t 8 5 t t t 8 ^ t t t t t t t t t t t t t ' +- +'t t t t 5 t 8 t t 5 t 8 t 5 8 t t t 5 8 t t t t q t q 5 q 2 t t t t t t 5 8' +- +' t t t t t t 5 t 5 8 t q t t t t t t t t t t t t t q q 2 t q 8 5 8 u t t t ' +- +'t t t t t t t 5 8 q 5 t t 8 t t t t t t t t t t t t t t t t t 5 8 p _ _ j 8' +- +' 5 8 t t t t t u 2 t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t t ' +- +'u d l u 4.5 8 5 t t u 2 t t t 8 t t 5 8 t t t t t t t t u t t t 8 t t t t t' +- +' 8 t t t t t t t q 5 8 t t t t t 8 t 5 t u ~ ] v v u 5 t 8 5 q q q 2 g %.&.' +- +'^ t t t t t t t t t t t t t t t t t t : q t t t t t t t 8 5 t t t t t t t t' +- +' t t t t t t t t t t t t t t t i g u 8 5 8 q q t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t v T q t t 5 8 t t t q t t t 5 8' +- +' t t t t t t t t t t t t t 5 q 8 t t t t t t t q q q q q q t t t t t t t t ' +- +'t 5 q q q q 5 t t t 8 t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXo' +- +'X>.t t 5 8 t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t t 5 8 ' +- +'t t t t 8 o./.!.H t t t t t t t t t 8 t t t t t t t 5 8 t t t t t t 2 u v t' +- +' t t 8 t t t t t t t 4.t t t t t t 8 t t t t t t t t t t t t t t t t t t q ' +- +'q 5 8 q q t t t t 8 5 8 q e e e t t t 8 t q 5 q q t t t t t t t t t t t t :' +- +' 5 q q t t 5 8 q 2 t t t t t t t t t t 8 5 8 q t t 5 t t t t t 5 t t 8 8 5 ' +- +'t t t t t t t t u p j 5 5 8 t t t 8 t t q q t t t t t t t t t t t t t : t t' +- +' t t 5 t t t t t t 5 t t u j p t 4.q t t u l j i t t t 5 t t t t t t t t t ' +- +'t t t 2 t t t 5 t t 5 t t 5 t t 5 8 t 2 q t q 5 8 5 t t t t t 8 t t t 8 5 T' +- +' 2 q t t t 2 q 5 q v ,..X` t t t t t t t t t t t t t t t t t t q 5 t t t t ' +- +'t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t x ^ p 5 8 q 5 q t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t t t t t u 2 t ' +- +'t t t t t t t 5 q t t t t t t : t t t t t t t t t t t q 5 t t t t t t q 2 q' +- ,' 5 2 q t t t t t t t t t t t : 2 q 2 q 5 8 t t t t t t t t >.oXoXoXoXoXoXoX' +- +'oX>.",'#10'"oXoXoXoXoXoXoX>.t t : 5 t t t t t t t t t t t t t t t t t t 8 5' +- +' t t t t t t t t t t t t q q t t t t z b t t t t t t t t t t t t t t t t t ' +- +'t t t t 8 5 t t t q t v t 8 q t t t t t t 5 8 4.t t t t t t t t t t t t t t' +- +' t t t t t t t q q q q q 2 t 5 t t t t t t t t t e e e e e t t t t 2 q 2 q ' +- +'t t t t t t t t t t t t q q q 5 t t 8 q q q x ! g u t t t t t t t t q 5 t 8' +- +' 8 5 5 8 t t 8 t t t t ^ : t t t t t t t t t t q 5 q t t t 5 t t t t q q t ' +- +'t t t t t t t t t t t t t t 8 t t t t t t t t t t u 5 t t 8 5 t t u b c u t' +- +' t 8 t t t t t t t 8 5 t t t t q q 5 t t t t 8 t 8 t t t t t t q 5 q q t t ' +- +'8 t 5 t t t t t t t 5 t Q u t t t t t t 5 t i ` '' c u 2 t t t 5 t t t t q ' +- +'t t t t t t t : t t t t t t t 8 t t 8 t 5 t t t t t t t t t t t t t t t t t' +- +' t t u j c p u 5 t q 2 4.t t t 5 t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t 8 5 t t t t v t t 2 q t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t 5 t 2 q q 5 t t t t t t t t t t t t 5 8 q q t t t t t ' +- +'t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t e r r t t 8 5 t t t' +- +' t t t t t 2 t t t t t t t t t t t t t t t 8 5 t t t 2 u u d p t 8 t t t t ' +- +'t t t t t t t 8 t 5 8 t t t t t t t t t t t t t 5 8 5 5 t t t t t t t t t 8' +- +' 5 t t t t t t 5 8 t t t t t 5 t t t t t q 2 2 q 5 q t g _ ) i t t t t t t ' +- +'e e e e e t t t t q q q 5 t t t t t t t t t t t t q q 2 q 5 8 5 5 5 g @.''.' +- +'] t t t t t t t t t t q 2 u t q t t t t t t t t t v t t t 5 8 t t t t t 5 q' +- +' 8 5 t t t t t t t t q 2 q t t t t t t t t t t t t t t 5 t 5 8 t t 8 t t t ' +- +'t t t t t 5 8 t t 5 u p 5 t t t t t t t t 8 t t t t t t t 5 q 8 t t t t t t' +- +' t t 5 8 t t t q q 2 q t t t t 8 t t t t t t t 8 5 L 5 t 5 8 t t t q t q q ' +- +'5 t q q t t t 8 t 8 t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t' +- +' t t t t t t t t : t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t ' +- +'t t : t t t t t t t t t t t t t t t t t t t t 5 q t t t t u v v u t t t t t' +- +' v t t t t t t t t t t t t t t t t t t t t t t 8 t q q 5 8 t 8 5 t t t t t ' +- +'t t t t q 5 q q t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' +- +'XoX<.e e r r r q q t t t t t t t t t q q 8 5 8 5 t t t t 8 t t t t t t t t ' +- +'5 t t 5 i l p 5 q q q 2 q t t t t q t t t t t t t t 8 8 t t : t t t t t t 5' +- +' q 2 q t t t t t t t t t 8 t t t t t t t t t t t t u 8 8 t t t t t t q t t ' +- +'t t t L #.O.x 5 t t t t t e e e e e t u t t t q 2 q t t t t t t t t 2 q t t' +- +' 5 q 2 q t t t t 2 j #.|.O.: t t t t t t t t t p j u 5 5 t t t t t t t t 2 ' +- +'^ t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t' +- +' t t t 8 u t t t 5 t t t t 5 q t t 4.q t t q t t t t 8 t t t t t 8 5 t 8 u ' +- +'2 q t t 8 t t t t t t t t t 5 8 8 t t t 5 8 t t t t t t t t t 5 t t t t t t' +- +' t 8 t 5 t t t t : t t t t t t t t t 5 q 5 5 8 t t t t t t t t t t t t t t ' +- +'t 8 5 t t t t t t : t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t' +- +' t t t t t t 8 5 t t t t t t t t t t t u 2 q t 8 t t t t t t t t t t t 8 t ' +- +'5 8 t t t t 5 8 t t t t t v t t t t t t t t t t t t t t t t t t 2 q q q t t' +- +' t t 5 8 t t t t 2 q t t 5 8 t t 8 5 5 8 t t 5 8 t t t t t t >.oXoXoXoXoXoX' +- +'oXoX>.",'#10'"oXoXoXoXoXoXoX<.e e E E k e 5 q t t t t t t t t t q q 5 t t t' +- +' t t t t t t t t t 8 t t 8 t t t t u u t 5 5 q q 5 t t t t 5 8 t 5 5 8 5 t ' +- +'t t 5 t t t t t t t t t q q q q t t t t 5 8 t 4.5 t t t t t t t t t 5 8 t q' +- +' 2 t t t 8 t t t q 5 t t t q t p ! T t 5 t t t t t t r r e t j c j t t t q ' +- +'q t t t t : t t t q t t t 8 5 q q t t t t q t c ! l t t t t t t t t t 2 p x' +- +' j t q t t t t t t 8 5 q v t t t 8 t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t q t t t t t t t t t t q 2 t t t t 2 t t t 5 8 t t 4.t t t 5 q t t' +- +' t t t 5 t t t 5 t t t t t t t t 5 8 t t t t t t t t t t 5 t t t t t t t t ' +- +'t 5 t t t t 8 t t t t t t t 5 t 8 t t t t t t t t t t t t t t q q q 8 t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t 8 t 8 t 4.t t t t t t t t t t t t t t : t t t t t t 8 t t t 5 t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t v ^ t t t t t t t t t t t ' +- +'t t t : t t t q 5 5 q t t 5 t 8 5 t t q t u 8 t t t t t t 5 8 t t t t t t t' +- +' t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.e e K E r e q t t i ' +- +'t t t t t : t t t t 8 t t t t 8 5 t t t t 8 t t 5 t t q t q t t q q 8 5 q q' +- +' t t t t t t t t t t t t t t t t t t t t t t t t 2 q t t t 5 t t t t t 4.t ' +- +'t 8 t 5 t t t 5 t t t t t t t 8 t 5 t t t t t t t t t t t t u t t t t t t 5' +- +' 8 t t t t l L l 8 t t q q t t t t t t t t q q t t 8 5 t t t t t t q q 5 q ' +- +'8 t t t t t t t t t q q p t u 8 t t t t 8 5 t t q q t t t 8 t t 5 8 q 5 t t' +- +' t t t t q t t t t t t t t t t t g ! T t t t t t t t t t t t t t t t q t t ' +- +'t 8 t 8 t 2 q t t t t t t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t' +- +' t t t t t t t t t 8 5 t t 8 t 5 8 t t t t t t t t t t t t t 8 t t t t t t ' +- +'t t t t t t 2 p g u 8 t t u t t t t t t t t t 5 : t t t t t t t t 5 t t t t' +- ,' t t t t t t t t t t t t 5 8 t t t t t t t t 4.t t t t t t t 8 t t u 2 t t ' +- +'t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t t t t t t t t t 5 q u v ^' +- +' L t t t t t t : t t t t t t t t t : q 2 q 8 2 q t 8 t t q 2 q 2 q t t 5 8 ' +- +'t t 8 5 8 t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' +- +'XoX<.e e e e e e t t c [ v t t t t t t t t t t t t t 5 q 8 5 t t t 5 t t 8 ' +- +'q 5 q q 2 t t t q 2 q q 2 t t t t t t 8 t t t 8 t t t t t t t t t t t t t u' +- +' v t t t 8 t t t t 8 5 t t t t 8 t t t 8 t t t t t t t 5 t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t p u 5 t t q 2 t t t t t t t t q 5 t t' +- +' t t t t t t t t t t q 5 t t t t t t t t t t t t t q 2 t t t 5 8 t t t 5 8 ' +- +'5 t t t 5 t t 8 q 5 q t t t t t : 5 : t t t t t t t t t t R ;.O.j t t t t t' +- +' t t t t t t t t 8 q q t t 5 t t t q q t t t t t t 5 8 t t t 5 t t t t t t ' +- +'t t t t t 8 5 t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t u b L s ! #.+.p t t t t t t t t t u t ' +- +'t t t t t t t t 8 t t t t t t t t t t t t t t t t 8 q 5 t t t t t t t t t t' +- +' t t t t t 5 t t 8 q t t t t t t t t t t t t t t t t t t t t t t t t : t t ' +- +'t t t t 8 5 t t q q 2 t 8 G Q t t t t t t t t t t t t t t t 5 q q q 5 q q q' +- +' t t q q q 5 q q t t t t t t t t t t t t t t t t 5 8 t t 5 8 >.oXoXoXoXoXoX' +- +'oXoX>.",'#10'"oXoXoXoXoXoXoX>.e e e e e t t t T ] T q 5 q t t t t t t t t :' +- +' t t t t 5 t t t t t t t t t t 5 8 t t t t t t q q t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t v t t t 8 t t t t q t t t t t t t t t t t t t t' +- +' t t t t t t t t t t p t t t t 8 t t t t t t t t t t t 5 t u t t u q q 5 e ' +- +'e e t 5 8 t t 5 t 2 q t t t t t t t t t t t t ] Q.@.a t t t t t t t t t t t' +- +' t t t t t t t t 5 t 8 t t t t u 2 q t q j ..X.( : t t t t t t t t t t t q ' +- +'t t t u l _ ! u t t t t t t 8 5 t t t t t 5 t t t t t t t t 4.t t t t t 8 u' +- +' t t t t t t t t t t 8 5 5 q t t t t u G f t u t 8 5 t t t 8 t t 8 t t t t ' +- +'t 8 t t 8 u 2 t t t t t V q t t t 8 t t 8 5 t q q q t t t : t t l x p +.$X]' +- +'.) 9 2 t t q 2 u p u t t t t t t t t t 5 t t t t 5 t t t t t t 5 8 8 5 t t ' +- +'5 8 t t 5 t t t 4.u 2 t g t 2 q t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t 8 t t t t t 5 q q 5 q t t 8 5 8 5 t t t t t t t Q t t t t t t q 5 t ' +- +'t t t t t 8 t 5 8 t t q 2 t t t t t t t t t t t t t t t t 5 q t t t t t t t' +- +' t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; e e e t t t t i l ' +- +'i q t t t t t t t t t t t t 8 t t 8 t t t t t t t t t t t t t t t t t t 5 :' +- +' t t t t t t t t t t t t t t t : t t t t t t t t t t v u t t 5 t t t 4.2 t ' +- +'t t t t t t t t t t t t t t t t t t t 8 5 t '' <.%.t q t 5 t t 8 5 t 8 t t ' +- +'t t t 8 q 2 t t 2 q 8 e e e e e t t t t 8 t q q q q t t 8 5 t t t t u v oXk' +- +'XOX[ t t t t t t q t t t t t t t t t t t t 8 t t t t t t 8 t t t 5 o.#XsX~.' +- +'z t t t t t t t t t t t t t t t t 2 t t t t q t t 5 t t t t t 5 8 t t t 5 8' +- +' t t t t t 4.t t t u t q 2 t t t t 5 t t t t t t 8 q t t t t H ~.#X^...t t ' +- +'t t t t t t t t 5 t 8 t t t 5 t t t t q t t t t v u t t t t 5 t t t t t 2 q' +- +' t t t t t t t t t 5 +.].[.P a 8 t t q u p v p t t t 8 t t t 8 t t t t 5 t ' +- +'8 t t t t t t t t t t t t t t t t 8 t 2 u 4.^ ^ i j i u t t t t t t t t t t' +- +' t t t t t t t t t t t 8 5 t t t t t t 8 t t 8 q 2 q q t t t t t t t t t t ' +- +'t t t t t t t t t t 2 q : t t t t t t 5 8 q t t q t t t t 8 t t t t t t t t' +- +' t t t t q t t t t t t t t t 8 t 5 8 >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoX' +- +'oXoX>.m m 5 q t t t t 5 q 2 u t t t t t t t t t t t t 5 t t t t 8 t t 5 t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t N 2 t t t t t t t t t t t t t t t t t t t t 5 q b XXzX.' +- +'Xv 2 t t t t t t t t t t 5 t t t q t t t t t 5 e e e e e t t t t t t t 8 5 ' +- +'q t t t t t t t t 5 v oXkXOX[ t t t t 5 8 t t t t q 5 t t t t 8 5 t t t t u' +- +' v t t t t 8 t t ..#XaX^.G t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' +- +'q 8 t t t t t t t t t t t t t t q t p a t L #.+.g t t 8 t t 8 t t t t t 8 5' +- +' 2 q t t u !.iXBXNX#X( t 8 5 t t t t t t t t t t 5 t t t t t t t t t t : V ' +- +'q t t t t 8 5 t t t t q 5 t t t t t t t t t t p L P t t t t 2 5 q p d y t 5' +- +' 8 5 t t 5 t t t 8 t 8 t 5 t 2 q t 8 5 t t t t t t t t t t q 5 q q ~ XXXX^ ' +- +'u t q t t t t t t t t : t t t t t t t t t t 5 8 t t t t t t 8 5 5 t t t t q' +- +' 2 q t t t t t 8 5 t v t t t t t t t t Q Q t q q t t t t t t t t t 5 t t t ' +- +'t t t t 5 t t t t 5 8 t t t 8 t t 2 q t t t t t t t t t 5 t t >.oXoXoXoXoXo' +- +'XoXoX>.",'#10'"oXoXoXoXoXoXoX>.m m q 5 t t t t t q q t t t t t t t t t t t ' +- +'t t t t t t t 5 t 8 8 t t t t t t t t t t t t t t t t t : t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t : q 5 p >.oX>.d 8 t t t t t t t t t t 8 t t t t t t 5 8 t q e e' +- +' e e e t t 5 8 t t q 5 q 2 t t t t t 8 5 t 8 t ] :.@.q q q 2 q t t t t t t ' +- +'2 q t t t t t t t t t t 5 v t t t t 5 t t ^ -./...t t t t t t t t t t t t t' +- +' t t t t t t t t t t t 5 8 5 t t t t t t 8 t 5 8 t t t t 5 p l p t O.$X].) ' +- ,'t t t 5 8 t t t t t t q 5 q q t 4.6.#XNXKXLXiXX.t q 5 t t t t 5 8 t t t t 8' +- +' t t t t t t t t t t q T q 5 t t t t t t t 5 8 : t t t t t t t t t t t t t ' +- +'t t 8 8 t t t t t 8 5 u 8 5 t t t 8 t t t t t t t 8 8 u t t t t t t t t t t' +- +' t t t t q t 4.t ` oX.X~ t u q 8 t t t t t t t t t t t t t t t t t 8 t 5 t ' +- +'t t t 5 t t t t t t t 8 5 q t t t t t t t t v u t t t t t t t t t t Q v q t' +- +' t t t t t t t t t t q t t t t t t t t 5 8 t t t t t 5 t t q q t : t t t 5 ' +- +'t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8' +- +' t t q q q 5 t t t t t t t t t u 2 q t t t 5 t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t : t t' +- +' t t t t t t : t t t t t t t t t t t t t t t x ~ c t t t t t t t t t t t 5 ' +- +'8 q t t t t 5 8 t t 5 t e e e t 8 t t t t t t t 5 t t t q 2 t 8 t t t t t t' +- +' t t t t t t t t 2 q q q q t t t t t t t t t t t t v t t t t t t t t d l t ' +- +'5 t : t t t t t t t t t t t t q t 8 t t t t t t t t t t t t t t t t t t t t' +- +' 8 t t t u 5.p 2 ) [.#.P a t t t t t t t 4.4.t t 4.N 2 2 t d /.aXDXBXsXo.: ' +- +'t t t t t t t t t 5 t t t 5 5 t t t t t t t q 5 q 5 t t 5 8 t t t 8 t t t t' +- +' t t t 5 5 t t t t t 8 5 t t t t t t 5 t t t t t t u u q u t t t 5 8 t t t ' +- +'t t t t t t 8 5 t 8 t t t t 5 8 q 2 q 4.t p ] ` u u 8 t t t t t t t t t t t' +- +' t t t t t t t t t t 8 t t t t 8 t t t t t t t 5 t t 5 q t t t t q u v t t ' +- +'t t t t t : t t t t t q t t q t t t t t t t t t t t t t 8 5 t t t t 8 5 8 t' +- +' t t 5 q 5 8 5 8 t q t u t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoX' +- +'oXoX>.t t t 8 t t t t 8 5 t t q 2 q : t t t t t t t t t 8 t t t t t t t t 8' +- +' t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t : t ' +- +'t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t a q t 2' +- +' u t t t t t t t 8 5 t 8 5 5 : t t t t t t t 8 t t t t t t t t t t t t 8 t ' +- +'8 t t q q t t t t t t t q t t t t t t t t q 5 q 2 q q t t 8 t t t 8 t t 5 8' +- +' ^ t 8 8 t t t t t t t t q t t t t t t t t t t t t t q t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t q q t t 4.t t u P K t 4.4.t t 4.4.5 8 t t t 5 t' +- +' t t q t t '' #XsX#X~.d t t t t t t t t t t 8 t t t 8 8 t t t t t t t q q 8' +- +' q t t t t t t 2 u t t t t t t t 8 q t t a 5 q t t t t t t t t 8 t t t t t ' +- +'t p l i 2 t t t t t t t t t t t t 8 t t t t 5 t t t t 8 5 5 q q t t 5 q 5 8' +- +' 2 t t t t t t t t t t t t t t t t t t : t q 5 q t t t t t t t t t t t t 8 ' +- +'t t 8 q q t t t q 2 t t t t t t t t t t t t t t a q 5 2 u t t t t t t t t t' +- +' t t t t t 8 5 t t q 5 5 8 t t 8 5 q e e r t q z G d t t t 8 5 >.oXoXoXoXoX' +- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 q 5 t t q 8 q q 5 q t t t t t t t t' +- +' t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t u v t t t t t 4.t t t t t t t t t t t : t t t' +- +' t t t t t t t t t t t q t 5 t t t 5 8 8 5 t t t t t t t t t t t t t t t t ' +- +'t t t t 5 t 5 8 t t t t 8 5 q q q 5 t t t t t t t 5 q 5 t t q q 5 8 q q t q' +- +' t t t 5 t t 8 t 5 t t 8 e e e 5 5 t t 5 t t t t t t t t t t t t a x ( X.( ' +- +'l q q t q 8 5 2 q t t t 8 t t t t t t t t t t q 2 u 2 u 2 t 4.4.t t 4.4.t t' +- +' t 8 5 t t t t t t t t 8 t t t t t t t ^ o.( l t t t t t t t t t t t t t t ' +- +'t t t t t t t t t : q 2 5 8 t t t t t t q t t t t t t t 8 5 t t q i p t t t' +- +' t t 8 5 t t t t t t t t t i j a t t t t t t t t t t t t t 5 t t t t t t t ' +- +'t t t t t t t t t t t t t q t 8 5 t t t t t t t t t t t t t t t t t t t q t' +- +' t t t t t t t 8 t t t t t t t q 2 q t t t 8 5 t t t 5 t t t t t t t t 2 u ' +- +'u x x L v u t t 5 8 8 t t t t t t t t t 8 5 5 8 t q t t q q e e e e e i H ^' +- +' l t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 5 8 t t t 5 ' +- +'8 5 q q 2 t t t t t t t t t t t t t t t t t t 8 5 5 8 t t t t t t t t : t t' +- +' t t t t t t t t q t t t t t t t t t t t t t t t t t t t v t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t 8' +- +' t t t t t t t t t t t t t t t t 8 t t t t t t t 5 q t q 2 q 5 8 t t t t t ' +- +'8 5 q t t q 2 q 5 q t t t t t t 8 t t 5 t t t t e e e e e t t t 8 t t t t t' +- +' t t t t t t t H /.sXiX4X^.^ 2 t 5 5 8 q q t t t 5 t t t t t t t t 2 4.N 5 ' +- +'u 8.v.[ t t t t t 8 t t t t t t t 5 8 t t t t t t t t t t t t t 5 u t t t t' +- +' t : t t t t t t t t t t t t t t t t t t t t 5 T 8 5 t t t t t t t t t t t ' +- +'t t t t t q 5 t j c i t 5 8 t t t 8 5 t t t t t t t 5 q 5 t t t t t t t 8 5' +- +' t t t t t t t t 8 t t t t 8 t t t 4.t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t q 2 t t 8 5 t t t 5 t t t t t t t 5 8 5 t t t t t t t' +- +' t 8 t t t t t t t t q 8 g P L i ^ v t t t t 5 t t t t t t t 8 t t t q t t ' +- +'q q 2 q 2 e e e e e 2 d d a t 5 8 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' +- +'XoXoX>.t t t 5 t t t t t 8 u 2 t t t t t t t t t t t : 8 t t t t t t t t 5 ' +- +'8 t q 8 5 8 t t 5 8 t t t t t t t 8 5 t u 2 t t t t t t t t t t t t q 2 8 5' +- +' 8 5 8 v u 5 8 5 8 t 5 8 t t t t t t t t t t t t t t t t : t t t t b l a 5 ' +- +'t t t t t t 8 t t 5 8 t t t t t t t t t t t t t 2 u q t t t t t t t t t t t' +- ,' t t t t t t 8 t t t : q : t t t t t t t t t t t t t t t t t t t t t t t e ' +- +'e e e e t t t t t t t t t t t t t t 5 y ~.aXDXKXBXaX~.y t t t t t p t t 4.t' +- +' t 4.N 2 2 4.4.t t t q 8 j :.%XQ.z m N 5 5 8 t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t 5 8 t t q q q 5 t t t t t t 5 8 q 5 t t t t t t t Q 5' +- +' 8 t t t t t t t t t t q q q 5 t 8 t t q i p i t t t t t t t t t t t t t t ' +- +'5 t t t 8 5 5 t t t 8 t t t t t t t t t t t t t t t q q 5 4.5 8 t t t t t t' +- +' 5 8 t t t : t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t 5 q t ' +- +'t t t t t q t 5 5 q 8 u q 8 t t t t t t 8 t 5 t t t x g t t t t t t t 8 t t' +- +' t t t t t t t t t t t t 5 t t t 5 e e e e e t t t t t t t t t >.oXoXoXoXoX' +- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t t 8 t t 5 8 t t t q t t t t t t t t t t' +- +' t t t t t t 5 t t t t t t t 5 t 8 5 t t t t t t t t t t t t t t 8 t t : t ' +- +'t t t t t t t t t q q 5 q t t 5 u v 8 5 8 4.t t t t t t t t t t t 5 t t t 8' +- +' 5 t t t t t t p ! ~ p q t t t t t t 5 t t t t t t t t 8 t t t 5 t t t u p ' +- +'j p t t t t t t t t t t t t 8 5 t t t 5 t t t t 5 q t t 5 w t t t t t t t t' +- +' : t t q t t t t t t t r e e e e t t t t t t t t t t t t t t t ^ #XBXKXKXKX' +- +'BX#XJ 4.t t 4.9.,.1.6.u 5 t t 5 q t t t t t t 8 5 p 1. X:.k 5 4.5 t t t t t' +- +' t t t t t t t t t t t t t t t t t q t t t t t t t t t 2 q 2 q t t 5 t t t ' +- +'q 5 q t t t t t t t Q t t t t t t t t 8 t t t 8 t q 2 8 t t t t 2 u t t t t' +- +' t t t t t t t t t t t t 8 t t t t t 8 t t t 5 t 8 t t t t t t t t t t t t ' +- +'t q 2 q 8 t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t t t t 5' +- +' 8 t t t t t t t t 5 8 t t t t 8 5 q 2 T t u u j g t t t t 5 u u 5 t 8 t t ' +- +'t t t t t t t t t t 5 t 8 t t t t t t t t t t t t 8 t t t t 8 e e e t t t t' +- +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 t t' +- +' t 5 8 t t t 5 t t t t t t t t t t t t t t q 2 q t t t 8 5 8 5 5 q 4.t t t ' +- +'5 t t t t t t t 8 t t t t t 8 5 t t t t u v v u t 8 t 5 t t t t t t t t t t' +- +' t 5 t t 8 t 8 t t t q p x p t t t t t t t t 5 t t t c p t t 5 8 t t t t t ' +- +'t a j T k 5 t t t t t t p b t t q t t t t t t t t e v e t t t t t t t t t t' +- +' t t t t t 5 ( *XDXKXKXKXNX#X~ t t t p !.iX#X..t q t t t t t t t t t t : q ' +- +'q c _ v t t 5 t t t t t t t t t t t t t t t t t t t t t t t 8 5 t 8 t t t t' +- +' t t t t q t t t 8 t t t 8 5 t t t t t t t t Q t t t 8 5 t t t 5 t t t 5 t ' +- +'t q 5 t t t t t 8 t 5 t t t t 5 : t m t t t t 5 t t t 5 t t t t t t t t t u' +- +' 2 t t t t t t t t t t t t 5 q 4.t t 5 8 t t t q q t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t q 5 t t t q q t t t 8 5 t t 5 t t t t u G 8 2 i x g' +- +' u t t 8 a x x u t t t t t t t t t t t t 5 t T V 5 t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' +- +'XoXoX>.t t t 8 8 5 t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' +- +'t t t t t t t t t t 5 t t t t t t t t 8 t t t t t t t t t t t 8 5 t 5 q q q' +- +' t 8 5 8 5 8 q q t t t t 8 t t t t 8 5 t t t t t 8 t t t t t t t 5 t t t t ' +- +'5 8 q t t t 8 t t t t t t t 8 t t 5 t t t t t t 5 u q t 8 5 t t t t t 8 t t' +- +' ! 1.@.p t t t t t t t t t i ] |.~.~ q y t t t p @.:.[ u 2 t t t t t t t : ' +- +'u T t 5 8 t t t t t t t t t t t t t m z #XNXKXKXKXNX#XG t t t p <.*X&Xo.t t' +- +' t t t t t t t t t t t 5 q q t t t t 5 8 t t 2 t t t t t t t t t t t t t t ' +- +'t t t t t 5 8 t t t t t t t t t t q q t t t t t 8 5 8 t t t t t t t : t t t' +- +' t t t t t t t t t t t t t q q t 8 5 t t t t 8 t t t t q t t t 8 5 t t 8 t ' +- +'t t t t 8 t t t t 8 t t t q t t t t t t t t t t t t q 4.t t t t t t t t t q' +- +' t t t t t t t t t t t t : t t t t t t t t t t t t t t t t 2 q t t t 8 t 8 ' +- +'t t t t t t v 8 5 q q i t 2 t t t u c c p t t t t t t t t t t t t 8 t t u v' +- +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoX' +- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 t t t t t t t t t t t t t t t t t t' +- +' t t t t 8 t 8 5 t t t u q q m m 5 q 5 t q q t t t 8 t t t t t 8 t 5 t t t ' +- +'t t t t t t t t t q q t t t t t t t t u 2 t t 2 u t t t t 8 5 8 t q 2 5 : 5' +- +' t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t ' +- +'t t t t t t t 8 t t t t u ~ ,.*.l t t t t t t t t t w :.UXiX^.^ 5 q q q l >' +- +'.+X] t q t t t : 5 q 5 q 2 G 8 t t t t t t q 8 5 t t t t t t t t -.4XNXBXNX' +- +'4XX.q t t t t G 1.| d t t t t t : t t t t t t t t t t t t t t 4.t t t q t t' +- +' t t t t t t t t t t t 8 8 t 2 t t t t t t t t 5 8 t t t t t t t t t t u 2 ' +- +'u u 2 t t t t t t t t t 8 t t t t t t t t q q q q q 5 q t t t t t t t t t t' +- +' t 8 5 t 5 8 t t t t t t t t t t t 5 8 t t 5 t t t t t t t t y l p u t 5 q ' +- +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' +- +' t t t 8 5 t t t t t t t t t t t t 8 G t t 5 t t t t t t t t p p t t t t t ' +- +'t t 5 8 t t t t t t t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t t t' +- +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t 8 t t t ' +- +'t t t t t t t t t t t t t t t t t 5 t t t t t 5 v _ k t t t t q 8 5 q t t t' +- ,' 5 t t t t t t t t t t t t t t t t q q t t q 2 t t t t t t t t 2 4.t t q 8 ' +- +'t t 5 8 5 8 t t q q q t t t t t t t t t t t t t t t t t 8 t t 5 t t t t t t' +- +' t t t t t 5 t t 8 t t t t t t t t t t t t t t t 8 l [ T t t t t t t t t t ' +- +'t 5 ( *XNX4Xo.t m q q 5 ! ] v t a t t t t t t q a q T t t t u t 5 t 5 q t t' +- +' t t t t t 5 q u X.^.#X^...u q t t t t t q q q t t t t t t t t t t t t t t ' +- +'t t t t t t 4.t t 8 q q t t t t t t t t t t t t 8 8 t t t t t t t t t t t t' +- +' t t 5 8 t t t 5 t t q i L G i q t t t t t t t t 5 t 8 t t t t t q 2 q 5 q ' +- +'2 q 2 t t 8 5 t t t t t t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t' +- +' t t t t t p l p t t q 5 8 t t t t t t t t t t t 8 t t t t t t t q t t t t ' +- +'t t t t t t t q : t t t t t t t t t t t t t t t t t 8 t t t t 8 t t 8 t t t' +- +' t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t v t t t t t t t ' +- +'t t t t 8 t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' +- +'XoXoX>.t t t t t t 5 t t t t t t : t t t t t t t t t t 5 t t t t t t t c ''' +- +'.%X|.v m t t t t u 2 t 5 t t 8 t t t t t 8 t t t t t t t t t 2 q 5 q t t t ' +- +'t t t t t t ^ 2 N t t t t 5 8 t t 5 q q q q 5 t t t u 2 t t t t t t t t t t' +- +' t t t t t 8 t t t t t t t t t 8 t t 8 t t 5 8 t t t t t t t t t t 8 5 t u ' +- +'5 t t t t t 8 u 2 t t t t t 5 f !.#X~.^ t Q T 2 q 5 q T Q v Q t t t t Q Q v' +- +' L ^ v v v v 5 t t t V T v Q 5 m t t T 5 5 t l V d q t t t t t t 5 8 2 q 8 ' +- +'5 t t t t t t t t t t t t t t t t 5 t t t t t 5 8 t t t t t t t t t t t t t' +- +' 2 t t t t t t t t q q t t t t q q t t t t t t t l ~ ` d t t t t t t t t t ' +- +'8 5 t t t t t 8 5 q 2 q t q t t t t t t t t t t t t t t t t t t t 8 5 8 t t' +- +' t t t t t t t t t t t t t t t t t t 5 u t t t t 8 4.4.t t t t t t : t 8 5 ' +- +'t t t t 8 t t 2 i i 5 t t t t t t t t u 2 5 t t t t t t t t t t t t t t 5 8' +- +' 5 t t t t q 5 t 5 t t 8 t t t 8 5 t t t t t t t t 2 u t t 8 5 t 5 8 t q t ' +- +'t t t t 5 q v ^ t t t t t t t t t t t 8 5 8 t t t t : t t t t t >.oXoXoXoXo' +- +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 8 5 t 8 t t t t t t t t t t t t t t ' +- +'t t t 8 t t t t t t t ! %XkX%X! m t t t p p t t 8 t t 5 t t t t t t t t t t' +- +' : t t t t q 5 8 t t t t t t t 5 8 t v q q t t t t t t t t 8 5 q q 2 q t t ' +- +'t 8 q t t t t t t t t 5 t t t t t t 5 t t t t t t t 5 8 5 t t t t t 8 5 q t' +- +' t t t 8 5 t t t t t t v L G v a v Q G L q t t t Q Q T T z J G 5 ^ Q 5 8 5 ' +- +'t t t q q t t t t t t : t 5 v 5 u t t 8 t t t t q q 5 q 5 t t 5 L T t p b u' +- +' Q ^ [ ~ t t t u v ^ L G L ^ v Q t t t t t q q t t t t t t 8 t t t 5 t 8 5 ' +- +'q t t t t t t t t t t t t t t t t q t t t t t t 2 u t t q 2 q t t t t t t t' +- +' c v t t t t t t t Q t t t t t t t 8 5 5 8 t q q t t t t t t t t t t 8 5 t ' +- +'t t t t t t t t t t 5 u t t t t t t t t t t t t t t t t t t t q 2 t t t t t' +- +' 4.t t u t t t t t 5 q 8 5 t t t 5 t t u v ^ j t t t t t t t t 8 t q t t t ' +- +'t t t t t t t t t t t 8 t t t 5 8 t q q t 8 t t 5 t t t t t t t t t t t t t' +- +' q 8 t t t t t 8 5 8 5 t t t t t 8 q q 2 t 8 5 8 t t 8 5 t t t 5 t t t t t ' +- +'t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t t t 8 5 t t t' +- +' t t t t t t t t t t t t t t t t t t 8 t t t t j :.$X:.g 5 t t u j l t t t ' +- +'t t q 2 q q 8 5 t t t t t t q q 5 t t t t t t t t t 8 5 8 5 q T q 5 t t t t' +- +' t t t t t t t t t t t t t t t 8 5 q 2 q 5 t t t t t t 5 8 t t t t t t t t ' +- +'8 t t t : t t t t : t t 8 5 8 t 5 T L G L t t t t 5 u t t t t t t t t t t t' +- +' t q 5 t t t t t t t t t 8 t t 2 q q q 5 q t t t t 8 v 5 8 5 t t 5 q 5 m y ' +- +'q q 5 m t t t q t t p l p t u j p t t t 2 t t t t t t 8 t t t t L ^ V V q 5' +- +' t t t t t t 4.t t t t t t 2 t t t t t t t t t t t t t t t t t t t t u g p ' +- +'8 8 t t t t t t t t t t t t t t a t t t t t Q t t t t 5 8 t t t t t t t t t' +- +' t t t t t t t 8 t t t q 2 8 5 8 t 5 8 t t t t p p t t t t 5 t t t t t q t ' +- +'t t t t t q t p u 5 8 8 t t t p x c u 8 t t 8 t t t t t t 5 t t u Q ~ l t 5' +- +' t t t 8 8 5 t t q u i 5 t t t t t 8 t 8 t 5 t t t t t t t v 2 q t t t t t ' +- +'t t t t t 8 5 t t t q 8 t t t t 8 5 t t t t t t t t t t t t t t t 5 t q q q' +- +' q t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' +- +'oXoXoX>.q q t t t t t t t t t t t t t t : t t t t t t t 5 8 t t t t t t q d' +- +' T j t t t t 2 i p t t t t t 5 q 5 q t t t t t t t t q 2 q t t t t t : t 5 ' +- +'q t t t 8 t V 4.q t t t t t t t t t t t t t t t t t t t 5 q q q q 8 t t t t' +- +' t t t t t t t t t 5 t 5 t t e e e t t t t ^ v v ^ t t t t 8 5 2 u t 5 t j ' +- +'b p t t t t t t t t t t t t 5 m t t t t t t t t t 5 t t t t q 2 q q t t t 5' +- +' u ^ q t 8 t t 8 5 q 5 r W $.e 6 ! T 5 m t t t t t t 5 t t t t t q t 5 q t ' +- +'t t 5 t t t t 5 t q q 8 t q t v ^ v v 4.t t t t t q q t t t t t t t t t t t' +- +' t t t t t t t t t u x p q 5 t t t t t t t t t t t t t t q t t t t Q t t t ' +- +'t t t t t t t t t t t t t t t t t 8 t t 5 t t 5 q q 5 q t t t t t t t p l g' +- +' t t t t 8 t t t t t 2 t t t 5 t t 5 j c p t 5 4.4.t t p P P p 8 t t t t t ' +- +'5 8 t t 8 t t 5 j d u t 8 t t t t t t t t t l b u t t t t t 5 t t t t 8 t t' +- +' t t t V u q 5 t t t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t 8 ' +- ,'t t t t 8 5 8 t t t q 2 T 2 t t 5 t t t t 5 t 8 t t t t t t t t >.oXoXoXoXo' +- +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 8 t t t t t t t t t t t t t t ' +- +'t t t t t 5 8 t t t t m 5 t t t t t t t t t t t t t t t 8 q 8 t t t t q q t' +- +' 5 l ` ~ 5 t t t 5 t t t t t t q 5 t t 4.t t t t t t t t : t t t t t t t t ' +- +'5 8 5 8 2 q q 5 t t t t 8 t 8 5 q q t t u t t t t t L G G T e t t 5 t t 8 t' +- +' t t t t 8 5 q 8 5 8 t l v l t t 5 8 t t t t t t t t q t q t t t t t t t t ' +- +'t t t t t t q 2 q t t q u d u 8 q t t t t w 5 r XkXkX$.] .X|.T m t t 5 q t' +- +' t t q t t t t t 8 q t t t t t t t t t t t t t 5 8 t t u 2 5 t t t t t ^ v ' +- +'T v t t t t t t t 8 t t t t t t 8 t t t t t t u t t 8 5 u a t t t : t t t t' +- +' t t t t t t t t Q t t t t t t t 5 8 t t t t t t t t t 8 t t 5 t t t t 8 q ' +- +'2 q t t t t t 5 8 q a p u t t t t t t t t t t q q t t 8 t q q p p p t t 4.t' +- +' t t u g g u t t t t t t 8 5 t t t 2 q q 5 e e e t 5 t t t t t 8 t t j j a ' +- +'t t t t t t 8 t t t t t 8 t 8 T T q 2 q t t t t t t t t t t t t t t t t 8 t' +- +' 5 t t t t t t t t 8 t t t t t t t t t t t t 5 q 8 ^ v u t t 8 t t 8 t 8 t ' +- +'t t t q 2 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 5 t t' +- +' t t t t : t t t t t t t t t t t t t t t t 5 8 t m t t t t t t t t t t t t ' +- +'t t t 5 8 5 t 5 8 t q 2 q q ~ ,.&.x t t t 8 t t t t t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t q t q q q 2 t t t t 5 8 5 u v V ^ v v v t t t ' +- +'t e e e e e t t 8 t t 5 t t t t 8 5 q 5 q t t t a p u t t t t 5 8 8 5 t t 8' +- +' 5 m 5 5 q t t t t t t t t t t t t 8 5 q t t t 5 j v d u 2 t t t t 5 w W *X' +- +'JXkX$.$.OX|.*.T t t t t q 5 t t t t t t t 5 t t t t 8 t 5 t t t t t t t 8 5' +- +' t t q q 8 t 5 8 t t t t t t t t t t V Q Q Q Q Q Q t t t 8 2 t t t t t t t ' +- +'t 5 8 d d p t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t t t' +- +' t t 5 t t 8 t t t t t 5 q q q t t t t t 8 5 t q t t t t t t t t t t t 5 q ' +- +'t t t t 2 u 5 q t t t t 8 5 t t t t 2 q t t t t t t t t t t q 5 8 e e e e e' +- +' 8 t t t t t 5 t t 5 t t t t t t t t 5 t t t t t 5 8 5 G 5 q q q t t t t t ' +- +'t t t t 5 8 t t t t t 5 t t t t t t t t t t 5 t t t t t t t t t t t t t t l' +- +' l u G t 5 5 t t t t 5 t t t t t u t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' +- +'oXoXoX>.q 5 t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t 5' +- +' q t t t t 8 t t t t t t t t t t t t t t t t 5 q t t v '' ] a t t t t t t t' +- +' t t t t t u 4.2 t t t t t t t t t t t t t t t t t t t t t t t t u 5 8 T 2 ' +- +'q q t v t t t t t t t t 8 t r e e e e t t t t t t t t 8 t t t t t t t t t t' +- +' t t q t t t t t t 8 t t t t t t t t t t t t 5 8 t 8 t t t t 5 q q q t t u ' +- +'u p a t 8 t t t t 2 q E Q.%X|.r v ] *.@.! t t t t t t t t t t t t t t t t 8' +- +' 5 5 t 8 t t t 8 5 8 t t t t t t t t 4.5 t t t t t t t t t t t t t t t t t ' +- +'t Q t t t t t t u t 5 t t t 8 u y d y t t t t t t q t t t t t t t t t t t t' +- +' t t q 2 t t 8 5 t : t t t t t t t 8 t t t t t t t t t t t t 5 t q t t 8 t ' +- +'t t t t 5 t t t t t t q q q 5 t t 8 t t t t t t t t t t q t t 5 t t t 5 t t' +- +' t t t t t q q t e e e e e t t 5 8 t t t t 5 t t 8 t 8 u t t t t 8 t 5 8 t ' +- +'5 q 2 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u t t t t' +- +' t t t t 8 5 t t t t t a l x p t t 8 2 u 5 t t t t t t t t 8 8 8 >.oXoXoXoX' +- +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t t t t t t t t t t t t' +- +' t t t 8 t t t t t t t t t t t 5 8 t t t t t t t t t t t t t 8 t t t 8 8 5 ' +- +'q q 5 u t t 5 8 q 2 t t t t t t t t 2 4.q q t t t t t t t t t : t t t t t t' +- +' t t t t t t t v ^ v 5 q q q t 8 t t t t t t t t t t 5 e e e t t t t t t t ' +- +'t t 5 t t t t t t t t t t t t q 2 t t t t t 5 t 8 t t 5 t t t t t t t 8 5 5' +- +' t t t t t q 2 t t t t 2 q 5 u t t t t 8 5 q 5 m r W r t t t y v l t t t t ' +- +'t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t 4.8 t t 8 t t' +- +' t t t t t t t t t t t t t t t t t t ^ v v Q u p t t q 2 8 5 2 u t t t 8 5 ' +- +'5 t t t t t t t t t t t t t t t u t t t t t t t t t t t t t 5 t t t t t t 8' +- +' t t t t t t t u p u 5 t t 8 t t 8 t t t t t t 2 q 8 q t t t t t 5 8 4.t t ' +- +'t t t t t t 8 t t t 8 t t t t t t t 5 q t e e e e e t t t t t t t 5 q t t 5' +- +' t t 2 q t t t 5 t t t t q q q q t t t t t t t t t t t g x x t 2 t t t t t ' +- +'t 8 5 t t 8 5 2 5 g p t t t t t t t t t t t t t t a u t t t t q v 8 q t t t' +- +' t 5 8 t t 5 : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t 5 t q 5 t t t 5 t t t t t t' +- +' t t t t t 5 t t t 5 t t t q q t t t t t t u t q 5 t t t t 5 t N Q t t t t ' +- +'t t t t t t t t t t t t Q Q Q v u t t t t 2 q q q 5 8 t t t t t t t t t t t' +- +' t 8 5 t t t t t t t t 2 u t t t t t t t t t t t t t t 8 u t t t t t t t t ' +- +'5 8 q 8 t t t t t t q q q 5 q 2 t t 8 5 t t t t t t q G t t 8 t t t q q 5 m' +- +' 5 q t t t t t t t t t t t t t t t t t t t 5 t e e e t t t t t t t 8 t t 5 ' +- +'t t t t 8 t t t t 8 5 t t t t t t 9 u ) ) u t t t t t t t t t t t t t l v p' +- +' t T G t u q t t t t t t : t t t t t t t t t t t t t t t 8 t t t t t t t t ' +- +'t : t t t t t t t t t t t t t t t t t t p l p t t t t t t t t 8 t t t t t 8' +- ,' 5 8 5 t t t t t t t t t t t t t q 2 t t t t 8 5 t t t t t t 8 t t t e e e ' +- +'t t t t t t t t 8 t 5 t t t t t t t 8 t t t t t t 2 q t t t 5 t t 5 q t t t' +- +' t t g ) P u 8 t t t t t t t t t t t t q t g g u t t t t 8 t t t t t t t t ' +- +'t m : t q q q T T q 8 5 t t t t 5 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' +- +'XoXoXoX>.5 8 t t 5 8 t t t t t t t t t t t t t : t t t t t t t t 8 5 t t 8 ' +- +'8 5 q t t t 8 t t t t t t t t t t t t t t t t t t t 2 : t t t t t x ` ~ t q' +- +' t t t t 8 t t : Q t t t t t t t t Q Q Q t t t t t t q q 2 t 8 5 t q q 2 q ' +- +'8 5 5 t t t t t t t t t t t t 8 t t t t t t t t q 8 t t t t t t t t t t t t' +- +' t t q t g g u t t t t t t t t 5 t t t t t t q q 2 q q q t t t t t t 8 5 t ' +- +'t t L t t 5 t t t 5 t q 5 m 5 t t t t t t t t t t t t t t t t t t t 8 e e e' +- +' e e t t t 8 5 t t 5 t 8 t t t t t t t t t 5 q t t t t t t g `.dX$X#.u t t ' +- +'t t t t t t t t t t l v d t 5 L v T q t t t t t t t t t t t t : t Q t t t t' +- +' t t t t t 5 8 t t t t t q 5 t t t t t t t t t t t t t t t t t t u p t t t ' +- +'t 5 8 t t t 5 t t t t t t 5 t 8 t t t 5 8 t t t t 8 5 t t q p t t t t t t p' +- +' u t t t t 5 8 t t 5 8 t t t t t t t t t t t 8 t t 5 8 t t t 5 t t t t t t ' +- +'u v t t t 8 8 5 8 t t t t t t p x g t 8 t q t t 8 t t t t t t t q q t u t t' +- +' t t t 5 t t t t c L t t t 5 q 5 q 2 q 5 2 ^ v t t t t t t t t t >.oXoXoXoX' +- +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t 5 q t t t t t t t' +- +' t t t t t t t t t q 2 q q 5 8 5 t t t t t t t u a t t t t t t t t t t t 8 ' +- +'5 q 2 q t t 2 t ^ ,.*.l t t t t 8 5 4.2 u G 8 t v u 2 5 q v t t t q q 2 5 8' +- +' t t t t t t t t 8 t t t t t t 5 t t t t 5 8 t t t t t t t t t 5 q 2 q t t ' +- +'t t t t t q q t 8 5 8 q t t t t t g c p t t t t t t t t t t t q 5 t t t t t' +- +' t t t 2 q q 5 q q q q t t t ^ 2 q t t t t t t 5 8 5 8 t t t t t 5 q 8 t t ' +- +'t t t t t t t t 5 8 e e e e e t t t 5 t t t 5 8 t t t t t t t 4.t t t t t t' +- +' 5 8 t t _ $XCXlX X) 9 2 8 t t t t t t t q 5 u p t t t t t t t t 8 2 v v ^ ' +- +'t t t t t t t t ^ q 8 5 t t t t t t t : t t t t t t t t t t t 8 5 t t t 8 t' +- +' t t 8 5 t 5 t t t t t t t t t 5 8 t t t t t t t t t t t t t t t 4.q t t t ' +- +'t t t t l L p t 5 8 t l L j t 5 t t t t t t t 8 t t t t t t t t t t t 8 t 5' +- +' t t t t t t t t t t t 8 5 L 5 t t t 8 5 t t t t t t t t t t t 5 t t t t t ' +- +'5 t t q q q t t 5 t t t t t t 5 8 q 5 w ] +X%X@.5 t t t t t t t : t t t t q' +- +' 5 q q q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 t t 8 ' +- +'t t t t : t t t t t t t t t t t t t t t t t q q q q 8 5 8 t t t t t t j L l' +- +' t t t t t t t t t 2 t 5 8 t q t t t q 5 x ] ~ t t t t t t t N q V T ^ v t ' +- +'t q q t t t t t 5 q q 8 5 t t t t t t t t u t t 5 8 t t 8 t 5 8 t t t t t t' +- +' t t t t t 8 q 5 8 q q t t t t t t q 2 q 5 t t 5 m t t t t i p u t t t t t ' +- +'t t t t t t 5 q t t t t t t t t q q q q 2 q 8 5 t t t v q q t t t t t t 8 q' +- +' t t t t t t t t 8 5 t t t t t t t t t t 8 5 e e e e e t t t 8 t t t t t t ' +- +'t t t t : t 4.t t t t t t t t t t +.dXCXlX$X) a 8 t t t t t t t t t t 2 t t' +- +' t t t t t t t 8 t t t t v t t 8 5 t t v q 8 5 t t t t t t t t t t t t t t ' +- +'t t t t 8 5 t t t t t 5 t t t t t t 8 t t t t t t t t t t t t t t t : t t t' +- +' t 8 t t t t t 4.t t t t t t t t c R g t t t : l L j t 8 t t t 5 8 t t 5 t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t 5 L 5 t t t t t t t t u 8 t' +- +' t t t t t t t t 5 8 t t 8 t t 5 q 2 t t 8 t t t t t t 8 5 q t d |.CXCX$Xv ' +- +'t t t t t t t t t t t t t 8 2 q t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' +- +'XoXoXoX>.t t t t 5 t t t t t t t t t t t t t : t t t t t 2 q t 8 5 q 8 2 u ' +- +'8 t t t t t t t t q g L x t t t t t t t t t 8 t t q q q q t t q t t t t t t' +- +' t t t t t T G t Q : 5 8 t t t t t t t : t q 2 q q t t t 5 t t t t 2 q t 8 ' +- +'5 t t t t t t t t t t t t t 2 q 8 t 5 8 q 5 t q t t t t t q q q t t t 5 m 5' +- +' q q t t t t 8 u 2 t t t t t t t t t 8 t t t 5 t t t q q q 5 q 2 t t 5 5 8 ' +- +'t t t t t t t t t t t t 5 t t t t t t t t 5 t t t 8 p l t t t t t t t t r e' +- +' e t t t t t t 8 t t t t t t t 5 q r r r 5 8 t t 5 t t t t x `.dXdX`.g 8 t ' +- +'t t t t t t t t t t q q t t t t t t t t t t t t t t t t t t v v ^ V 5 u t t' +- +' t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t 5 t t t t t t t ' +- +'t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t t t p j u t t t t u p' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t 5 t t ' +- +'v u t 8 t 8 5 t t t 2 q t t t t t t t t t t 8 5 t t 5 t q 8 t t t t t t t t' +- +' t t t t t t y |.zXCX+Xc t t t t 5 u a t q t t t t t T q t t t 5 <.oXoXoXoX' +- +'oXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.t t t t t t t t t t : t t t t t t t t t t' +- +' t t t u 8 c c q p l u 2 q 5 t t t t 8 t t 2 u u u t t t t t t t t t t t t ' +- +'q 2 q 5 t q t t t t t t Q Q u t t t a t t t v u t t t t t t t t t t 5 q q q' +- +' t t t 8 t 8 5 t t t t t t t t t t 8 5 8 t t t t t t q q t t 5 t t t t q t ' +- +'t 5 8 q 2 q 5 t t t t m z ( z t t t t 5 8 q t t t t t t t t t 5 8 t t 8 t t' +- +' t 5 q 2 q q 5 : t q 8 5 8 t t t t : t t t t t t t t t t t t t t t 8 t t t ' +- +'! ''.|.O.t t t t 2 u t 8 t t 5 8 t t t t t t t t t 5 8 t 5 e e r e e t t t ' +- ,'8 t t t t t l ) ) 0 8 a t t t t t t t : t t t t t t t 8 t t t t t t t t t t' +- +' t t t t t t t v u V v t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t 8 5 t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t 4.t t t t t t' +- +' t t t t t t 5 t t t t 5 8 t t t t t 5 8 t t t t t t t t t t t t t t t t t ' +- +'8 t t t t t t t 5 t 8 t t t t t 5 t t t t t t t t t t t t t t t t t 8 q 5 8' +- +' t 8 t t 5 t t 8 t 5 8 t t t 8 t t t t t [ |.|._ t t t t t u j p q 5 t t t ' +- +'t t 2 ^ v t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v _ R 5 t q 5 t' +- +' t t t t t t t t t t t t t t t t q j 2.&.V g L p q t t 5 8 t t 5 t t t t t ' +- +'t t t t t t q t t t t t 8 t t q 8 5 q q t t t G v t t H ( H W.H 5 t t v t t' +- +' t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t t t t 5 t ' +- +'t t t t t t t t t t t q t t t t t t t t t t t t v #XiX#XG t 5 q t t t t t t' +- +' t t t t t t t 5 t t t t t 8 q 8 5 8 t t t t t t t t q 2 t t t t t t 5 8 t ' +- +'t 5 t t t t t t t t t q q #.fXkX].x q t p i 5 q q 5 t t t t t t t t t t 5 t' +- +' t t t t e r 4.e r t t t t t t t u 2 t q 5 q t t 8 t t t t t t t t t t t t ' +- +'t t t 8 t t t t t t t t t t t t t t 5 8 v 8 q 5 8 t t t Q t t t t t t t t t' +- +' t t t t t t t t t t 8 u t t t t q t t t 5 t t t t t t t t t t t t t t t t ' +- +'8 5 8 t t 4.4.t t t t t t t u t 8 t 5 t t t t t 5 8 t t t t 5 t t t 8 t t t' +- +' t t 5 q 2 t t t t t t t t t t t t t 8 t t t 2 q q t t t t 5 8 t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t t t t t t t d l a t t t t i p q q' +- +' t t q 8 u j p t g g u t t t t 8 5 t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoX' +- +'oXoXoXoX>.'' .X@.i t t 8 t t t t t t t t t t t t t t t q t 2 l ..%.T h g u ' +- +'q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t q 2 T V t t t t t q' +- +' t b ( X.X. .( f t t t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t ' +- +'t t t t t t t 8 5 t t 8 t 5 t t t t t t t t t t 2 t t t t t t t t 8 t t t `' +- +' aXKXzX| t 8 q t t t t t t t t t t t t l x u t t t t 5 8 5 t t t t t t t t ' +- +'t t q q t t t t t t t t t t 8 t t t t t t t t q 5 2 O.%X%X''.p a p b p q q ' +- +'2 8 t t t t t 8 5 t 5 t 8 5 8 t t u e k N k r t t t t t t t t q q 8 q 5 t t' +- +' t t t t t t t t t t t 8 5 t t 2 q t t t t t t t t t t t t t t 8 G u 5 q q ' +- +'8 5 t t t Q Q Q t t t t t t t t t t t t t t t t q 2 t t t t 5 t t t 8 t t t' +- +' t t t t t t t t t t t t t 5 8 q t t 8 t t t t t t t p l p 5 u j g t t t t ' +- +'t t t 8 t t 8 t t t 5 8 5 t t t q q q t t t t t t t t t t t t t t t t t u t' +- +' q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' +- +'t t p v v p t p y t t t t t t t 8 5 t t t i v L p t t t t t t t t t >.oXoXo' +- +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.! *.~ 5 t t t t t t t t t t t t t t t ' +- +'t 2 q 2 q 8 t l c t t t t 5 8 t t t t t t t t t t t t t t t 8 g p t t t t t' +- +' t t t T ^ v t 8 t t 5 t 5 H ( X.,.,.,.X.( H t t t t t t t t t t t t t t t ' +- +'t t t 5 t t 8 t t t t t t t 5 8 t t t t t t t t t t 8 t t t t t t t t t 5 t' +- +' t t t t t t t t t q t t ( #XMX#X^ 5 t 5 t t t t t t t t t t t y T Q p t t ' +- +'t t t t t t t t t t t t t t t q V q t t t t t t t t t t t t t t t t t t t t' +- +' u l @.#.^ 8 2 i g p t q q t t 8 t t t t t t 8 t t t t t d v p k E E m t t ' +- +'t p g u 5 8 t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' +- +' t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t 8 5 t t t t 8 t t t t t t t q t t a t t u 2 q 5 q 4.5 t t t t t t' +- +' t i g u 5 u x l u t t t t 8 t 5 t t t t t t t t t t t 5 8 q 5 t t t t t t ' +- +'t t t 5 5 t 5 t 8 5 u g g t t 8 t 5 t t 5 t t t t t t t t t t t t t q t m t' +- +' 2 u t t t t t t t t t t t t : l l u a d f u 8 5 t t t t t t t 5 t t l l u ' +- +'t 5 q t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t p t q t t t' +- +' t t t t t t t t t t t q q q 5 q q 5 8 5 t t t 8 5 q 5 t t t t t t t t t t ' +- +'t t t t t u ) R g t t Q t t t t t t t t 5 5 8 q 5 m z o.,.,.,.,.Q.o.G t t t' +- +' t t t t t t t t t t t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t 8 5 t t t q t : t t t t t t t t q 2 u w ( ..( y t t t t t t t t' +- +' t : t t t t t j j t t t t t t t t t t t t t t t t t t 5 T q t t t t t t t ' +- +'8 5 t t t t t : t t t t 8 t 8 5 8 5 8 u q 5 t t q 5 t t 5 t t t t t t t t t' +- +' t t u x ^ j i i q m t t t p l u t t t t 8 5 t t t t t t t t t t t t t t t ' +- +'t t t t t t t t t t t t t t t t t t t t t 8 5 u t t t : t t t t t t t t t Q' +- +' Q Q v t t t t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t t q v _ ! t ' +- +'q q q q 2 4.t t t t t t t t 5 q t t 8 p i t t t t t t t t t t t t t t u p u' +- +' u t 8 5 8 q t t t t 5 8 t t p p t t t t 5 8 u ~ ) t t t t 8 t t 8 t t t t ' +- +'t t t t t t t t t 5 t t q ^ -...z q 5 t t t t t t t t t t 5 t q y p a t t t' +- +' t t t t t t t t t u t t t 5 8 t t t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoX' +- +'oXoXoXoXoX>.t t t t t t t t t 5 t t t t 8 t t t t t t t : t t t t 5 8 t t t' +- +' t t t 8 t t 5 8 t t 5 8 t t t t u p ) R ~ Q Q t t t t 8 5 t t t t t t 5 8 ' +- +': H X.,.,.<.,.,.X.G : t t q t t q 8 5 2 q q t t t q q t : t t t t t t t t :' +- +' t t t t t t t 8 t t t t t t t 8 5 t t t 8 5 t t t e e e q t t t t t t t t ' +- ,'t t t t t t t t t t t t t 8 5 t t t t u t t t t 8 t t t t t 8 t t 8 5 t t t' +- +' t t t Q t t t t t t 8 5 8 t t t t t q 5 q q q 5 8 5 t t 8 5 t t 8 5 2 q 8 ' +- +'t t t t t t 5 8 t t t t t t t t p p a 2 4.q 5 t t t u u t t t t t t : t t t' +- +' t t t t t t t t t 8 t t 5 8 t t t t t t t t t t t t 5 t t t t t t t t p p ' +- +'t t t t t 8 5 t t t t t t t t t t t t t t : u 5 8 5 t 2 q t t t t t t t t t' +- +' 5 q 8 t t 8 t p %XkX%X) 5 t t t t t t t t t t 5 t t t t t t t t t t t t t ' +- +'t t t t t t t t t q x R P a t 2 q q t t t t t t t t p H H d t 8 t 8 t u ^ t' +- +' q t t t t t t t t t t : v &.1.~ t t t t t t t t t X.#X#X( a 5 t t t t t t ' +- +'t 5 8 t t t t t t q t t t t t 8 t t 8 t t t t t t t t t t t t t 5 8 >.oXoXo' +- +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t : t 5 t p x p t t t 5 t t t t ' +- +'t t t t t t t t t t t t t t t t 5 t t t t t t 8 5 t t u v v t p h t a t t 8' +- +' 5 t t t t 5 8 t t t q q 2 z o.,.<.,.,.,...z q u v q q t 5 8 t q 5 q t t t ' +- +'q 2 t t t t t t t t t t t t t t t t t t 5 t 8 t t 8 t t t t t t t t t t 8 e' +- +' e e e e t t t t t t t t t t t t t : t t q p g i q 5 8 t t t q 2 t t t t 5 ' +- +'t t t t t 5 t t t t t t t t t t Q : t t t t t t t t t t t t t : t 2 q 8 q q' +- +' 5 t t t t t t t t q q t t t t t t t t t t t t t 8 t t t t t u u N t q t t ' +- +'5 q t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t u g t t t t t 8 t' +- +' t 8 5 t t t 8 5 t t l L g t 5 8 t t t t t t t t t 8 t t t 8 t Q G T v 8 5 ' +- +'8 8 u t t t t t t t t t t q q 5 t u 5 t ] kXLXkX_ q t 2 q t t t t t t t 8 t' +- +' t t t t t t t 8 q t 5 t t t t t t 8 5 t t 2 x I ` H d u 8 t p j u t t t t ' +- +'t d ^ ^ d t t t 5 t 2 T t t t t t t t t t t t t t '' *XzXXXa t t t t t t t ' +- +'t ( #X/.~ t t t t 5 t t t t t t t t t t t q 5 t t t t t t t t 5 t t t t t t' +- +' t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t ' +- +'t u T ~ l 5 t 8 t t t t t t t t t t 8 t t t t t t t t t t t 8 t t t t t t q' +- +' T V V q t t t t 8 t t t t t t t 8 t t t t t t t q 4.8.( X.,.,.,.X.( H t 5 ' +- +'v t 2 t t 5 t 5 8 q 2 t q q q t t t t t t t t t t t t t t t t 5 t t t t t t' +- +' 5 t t t t 8 t t t t t 5 e e e e e t t t t t t t t t t t t t t t t 8 g g u ' +- +'5 q t t t t q 5 t t t t t t 8 5 t t t t t t t t : t t t t t t t t t t t t 8' +- +' t t t t t t t t t t 5 q 2 q t t t t t t t t t 8 5 t t t t t t t t 8 t t t ' +- +'5 t t t t 5 t 2 q t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t 5 t' +- +' t t t x +.+.x a t t t 5 t t t 8 t t t v q q t g c p t t t t t t u 2 t 8 5 ' +- +'t 5 t t t 5 5 8 8 5 t t 8 5 t t t t t t q q t t t t 2 q 5 u g y t ` kXJXfXT' +- +' q 2 q N 8 t t t t t t t t t t t t t t t t 5 q q t t t t t t 8 5 t t t u j ' +- +'^ ( v t t t j c p t t t t t t z d a t t t t t t t t q t t t t t t t t t t t' +- +' ` OX*X.Xx t t t t t 8 t t d ( ~ a t t t t 8 t t t t 5 t t t t t t 5 8 t t ' +- +'t t t t t 8 t t t t t t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' +- +'XoXoXoXoXoX>.t t t t t t t t l v p u t t t 5 t t t t 5 t t t t t t 5 t t t ' +- +'t t t t t t t t t t t v ^ q q 5 q t t t t 8 t t t t t t t 5 t t t t t 4.t q' +- +' 5 : d ( o.X.o.( f t t t t ^ 8 8 t t t q q q q q 2 q 5 t t t t t t t t t t ' +- +'t t t t t t 8 t t t t t t t t 5 8 t 5 t t t t t t e e e e e t t t t t t t t' +- +' t t t t t t t t u t t t q t t t t t t i i t t t 8 t t t t t t 8 t t 5 8 t ' +- +'t t t t t t t t t t t t t t 5 t t 8 5 t t t t t t q q t t t t t t t t 5 q 8' +- +' 5 t 8 5 t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' +- +'t t t t t t t 8 t t t q t t t t P +.#.P t t t t t t t t t t t t ^ 2 q t t t' +- +' t t t t t t t 8 q t t t t t t t t t 8 5 8 q t 5 t 8 t Q Q Q t t t 2 t t 8 ' +- +'5 q t t p j p l T 1.|.` t q u 4.2 5 t t t 8 t t t t t t t t t t t t t q 2 t' +- +' t t t t t t t t t t t 5 y b y q 5 t i p t t t t t t t t t t t t t t t t t ' +- +'8 5 t t t t t t t t t t t t ] <.] l t t t t t 5 t u q 5 5 t t t t t t t t t' +- +' t 8 t t t t t t 8 5 t t t t 5 t t t t 5 t t t t t t t t t t t 5 t t >.oXoX' +- +'oXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.5 q 2 q t q 8 q t i q 5 t t t 8 t t t' +- +' t q q q q t t t 8 t t 8 5 t t 5 8 u 5 t t t t t t t q 8 5 t 8 5 t t t t t ' +- +'t t t t t t t 8 t 4.4.t t t t t J ( G ( H t t t q q v t t t t t q 2 q 5 t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u q ' +- +'t e e r 5 t t t t t t t t t t t t t t t t 2 q t t t t t t t t i l p t t t 5' +- +' t t 5 8 t t 5 t 8 t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t ' +- +'u 8 8 t t t t t t t t t t 5 t t t t q q q 8 t t t t t t t t t t t 4.t t t t' +- +' t q t t t t t t t t 2 u t t t t t t 5 t 8 t t t t t t t a L P a 8 a u P g ' +- +'t 8 8 t 5 8 t v t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t q' +- +' t q t 5 q G T G 8 t t t t q 2 t t a u v ^ p u t t 5 q t t t t t t 5 t 8 5 ' +- +'t t t t t t t t t t : p u 2 t t t 5 t t t t t t 5 t t t 5 q t t e e e e r 5' +- +' q 2 5 8 5 t t t q q t t t t t t t t t t t t t t t t t p p q t q 2 q t t t ' +- +'t t t t t t t t t 5 q t t t 8 5 t u 2 q t t t t t t t t t t t t 8 t t 5 t t' +- +' t t t t t t 8 t 8 >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.q t q q t q ' +- +'2 5 t t 5 q 5 8 t t 5 t t t q 2 q 5 5 8 t t t t t t t t t t v v t t t 8 5 t' +- ,' t 5 5 8 t t t t t t t t t t t t t t 4.4.t t t t t t t t 5 q q 5 t q t t 5 ' +- +'2 u t t t t t q 5 q q t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t' +- +' t t 8 t t t t t t q 2 5 m t t m t t t t : t t t t t t t t t t t t t t t t ' +- +'t t : t t t t p p t t t t t t t t t t t 2 u t t t t t t t Q t t t t t t 8 t' +- +' t 8 t t t t t t t t t q 2 t 5 t 8 t 8 t t t 8 t t 8 t t t t 2 q q 5 t 8 t ' +- +'t t t q t t t t 4.t t t t t 5 t t t t t t t t q 8 t t 5 8 8 t t t 5 t t q t' +- +' t 2 u t t u t t q ) `._ u q 2 t 8 t t ^ t t t t t t t t t 5 8 t t t t t t ' +- +'t t t t t t t t t t t t 5 t l b u q 5 8 u v v t t t q q t 8 t t l l q 2 t t' +- +' 2 4.t t t t t t t t t t t t t t t t t t t t l ^ c q t t t 8 t t t t t t t ' +- +'t t t t q e e e e e e r e r q 8 q 8 t q t t 2 t t 5 8 t t t t t t t t t t t' +- +' t 5 8 2 q 5 q q q t t t t t t t t t t t p p y t t t t t t 8 t t t 8 t t t ' +- +'5 8 t t t 8 t t t t 8 t t t t t 5 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' +- +'XoXoXoXoXoX>.t t t t t t t t t t 8 t t t t t 8 t t t 8 5 2 q t t 5 8 t t t ' +- +'t t q v ^ t t t t t t t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t t t' +- +' t t t q q 5 8 q q q q q t t t t t 5 8 t : t t t t t t t t t t t t t t : t ' +- +'t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t g l y t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t u t t t t t t t t t t t t t q t t t t ' +- +'t t t t Q t t t t 8 t 5 t t t t t t t t t t t t t t t 8 t 5 t t t 8 t 5 t t' +- +' t t t t t q 5 t t t t 5 t 8 q 2 q t t t t t t t t t t t t t t t t t t t t ' +- +'5 8 t t t t 5 8 t t t u l t q q t t t t t u +.].+.u t t 8 5 t t q 2 t t t t' +- +' t t t t t t t 5 8 t t 5 t t 8 t 8 5 t 8 t t t 8 t a v v i 5 8 t t t u q 5 ' +- +'t q 2 q 5 t t 5 t t t t t N t t t t t t t t 8 5 t t 2 q t t t t t t d J ~ c' +- +' t q t t t t t t q t t t t u t q e r r r e e e e e e e t 5 t q 5 q ^ 8 t t ' +- +'t t t t t t t t t t t 5 t t t t t t q t t 5 u g u t t t t t t t t d b y t t' +- +' t q t t t t 8 t 5 t 8 t t t t t t 5 t t t t t t 5 8 t t t t 5 8 t t >.oXoX' +- +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t t' +- +' 8 5 q q q t t t t t t t t t q q 2 t t t t t t t t t t t 8 5 8 t t t 5 t t ' +- +'8 5 4.4.t t t t t t t t t t t t q 2 q 5 2 q 5 q 2 q t t t t t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t t 5 t 5 t 8 t 5 8 t t t t u ' +- +'v R j m t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t' +- +' 8 t t t t t t t t t t t t t t t Q t t q 2 u t t t t t t t 8 5 t t t t t t ' +- +'t t 5 t t t 5 t t t t t t t t 8 5 t 5 u p a u t 8 t 5 5 q q t t t t t t t t' +- +' t t t t t t t t t t t t t t t t t t t t t t t ] 1.! 5 q t t e e e 8 P ) c ' +- +'t t t 5 q t q q q t t t t t t t t t t t 8 t t t t t 8 t t 5 8 t 5 t t t 5 t' +- +' u p i t q 5 8 t t 2 q q t 5 T T q t t q t q t t t 2 t t t t t 8 t t t t t ' +- +'8 u t t t t t t u z ~ z u 5 5 8 t t t t q 5 t t t j c p q e e W $.W e e e e' +- +' e e t t t q q 2 v t t t t t t u t t t t t u u u t t t t t t t t t j Q V p ' +- +'u t t t t t t q y d t t t t 2 u 8 t t 5 t t t 5 t t t t t t t t t t t t t 8' +- +' 5 q t t t t t t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 5 8 u 2 t ' +- +'t t t t t t t t t t t t t t t t t t t t t t v v t t t t t t t t 5 t t t t 8' +- +' t 8 5 t t t q t t t t 4.t t t t t 8 t 8 5 t t t t t t 8 t t t 5 8 t t t t ' +- +'t 5 t t t t t t t t t u 2 q q 5 8 t t t q 2 q t t t t t t t : t t t t t t t' +- +' t t t v c t t t t t t t g l i u t t t t t t t t t t t t t q q 5 8 5 8 t t ' +- +'t t t t t t t t t t t : t t t t t 5 8 q t t t t q 2 t t t Q t : t t t t t t' +- +' q 2 q 5 q 2 t t t 5 t t t t t 8 u 2 t 5 8 t t t t t t t t t m l [ d m 5 t ' +- +'t t t t t m 5 t 4.u 2 t t t u p u t t t t t t t t t t 5 t t t t 8 5 t d 1.+' +- +'X] q q t e e e e E v j t t t t t t t t t 2 t 5 q 8 5 t t t t t t t t t t t ' +- +'t t t t t q t q 2 q t t t t t t t t 5 t q 2 u t t t t t t v v t t t t t t t' +- +' t t u 8 t t t t t t t t t t t t t t t t t p d a t t t : t t t t 5 q q q u ' +- +'v @.@.E r r $. X[.r r e e e e e q t m : ^ T 2 t t t 2 i g i t t t t g l u 8' +- +' t t t 5 8 t 5 P +.+.v p u 2 q t t t t t t t t u q t t t t t t t t 5 q 8 5 ' +- +'8 t t t 5 t t t t t t t t t t q 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' +- +'XoXoXoXoXoX>.t t t t q t t t t t t t 5 t t t t t t t t t t t t t t v u 5 t ' +- +'t t t t t t t 8 t t t t 5 t t t t u 8 q 2 t t 4.q t t t t t 5 t t t t u 8 t' +- +' t t 5 t t t t t t t t t t 8 v t t t t t t 2 u p p q 5 t t t t t t q q t t ' +- +'t t t t t q t t t t t t t t t ! Q.Q.^ t t t t t t t q q 2 t t t t t t t t t' +- +' t t t t q 2 q 5 t t t t 8 t t t t t t t t t t q t 8 5 t t 8 5 5 t t t t q ' +- +'q t t t t t t t t t t t t t t q q q q t t t 8 t t 5 8 t t t q t t t t t t t' +- +' 8 t t t t 5 2.|._ t q t t t t q 5 t v R 5.q q 5 8 t g v g t 5 t t t t t 5 ' +- +'t 8 t t 5 8 t t t t t ! ] T t q q e e e e E T j t t t t t t t t q q t t 8 5' +- +' t 8 t t t t t t t t 8 5 t t t t t 5 t q q 5 t t t t t t t t q q i l p t t ' +- +'t t t t 5 a t t t t t 4.t t q 2 t t 5 8 t 8 t t 5 t t t t t t t t t t t t t' +- +' t t t t t t t q 2 5 q t #.%X%X XW e W $.W r r e e e e e m t t t v q q t t ' +- +'8 u i g p t t t q p p u t t t t t t u u P #.+.x 8 5 2 q t t t t t t t t 2 q' +- ,' t t t t t t t t t t 5 8 t t t t 8 t t t 8 5 t t q t q q 8 5 q q t t >.oXoX' +- +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 5 t t t t t 5 8 q 5 8 t t t 8 5 u' +- +' x g q v t t t t t t t t t 8 t t 8 t t t t t t t t t t t 5 2 2 N 4.4.t 5 8 ' +- +'8 t t 8 t t 8 t t t 2 q t t t t t t t t q 2 t t t t a v t t 5 t t t q i x d' +- +' u t t t 5 t t q 5 q t t q q t : t 5 u t t t t t t t t '' %X+X_ t t t t t q' +- +' 5 5 q t t t 5 t t t t t t t t 5 8 t t q q t t 8 5 5 t t t t t t t t t q 5 ' +- +'t t t t t t q q t t q t q 5 q t t t t t t t t t t t t t 8 5 q t t t t t t t' +- +' t t t t t t t t t t t t t 5 q q t t p $.|.] t t t t t t t t l #.''.` 5 5 q' +- +' t t g l p q 8 t t t t t 8 t t t 8 t t t t t 8 u t t t t t q r e e e e i a ' +- +'t t t t 8 t u v t t t t t t t t t t t t t t 5 t t t t 8 t t t t t t t q t t' +- +' q t t t t t 8 5 y v l 5 t t t t q 8 q 5 t t t v 4.t t t t t t t t t t t t ' +- +'8 8 5 t t t t t t t t : t t t t t t t t t t t 8 5 k |.CXFXgX$.e e r e r r e' +- +' e e e e t t t 5 8 q 5 t t t t q t t t t t q t t t t t t t t p x g u P x t ' +- +'t t q q t t t t t t t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t' +- +' 2 q 5 q t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t ' +- +'t t t 8 5 8 8 t t t t 5 q x <.''.` a t t t t t t t t t 5 t t 5 5 8 t t 5 8 ' +- +'t t 5 8 t 8 N 2 2 u t t t t 5 t t 5 t t 5 t t t t t t t t t t t t t q q t t' +- +' 8 5 q t v u t t t t t q p u 5 t t t 8 t q q q 2 t t t q t t t u j v l u t ' +- +'t t t q T *.%.x t t t t t t t t t 8 5 t 8 t t t t t t t t t t t t q q t t t' +- +' t t t 8 5 t t t t t t q q t t t t t 8 q 2 t t q q 2 q q q t t t t t t t t ' +- +'t t t t t 8 5 q t t t t 8 5 t t t t t t t t t t t t t t q q 2 t m R _ c t t' +- +' t t t t t t v :.:.[ t q t t t t t t 5 t t t t t t t t t t t t t t t t t 2 ' +- +'q t 8 5 q 2 q e r e ; m m t t t t 5 8 G t t q t t t t t t t t t t t t 8 t t' +- +' t t 5 t t t t q 5 t t t t q 2 t t t t t t u p p 8 t t t t q q t t t t t u ' +- +'t v t t t t 5 8 t 5 t t t t t t t t t t t t t t q 5 t t t t t t t t t t t 8' +- +' w |.kXCX%X$.e e r e r r e e e e e m t t 8 5 8 q t t t t t t t t t t t 8 8 ' +- +'5 q t t t t u j p q 2 t t t t q t t t t t t t 8 5 8 q t t t t t t t t t t t' +- +' t t t t t 5 t t t t t t t q q q 2 t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"' +- +'oXoXoXoXoXoXoX>.5 8 t : t t t t : t t 5 t t 5 m q t l O.O.l : t t t t : t t' +- +' t t : t t 8 t t t : t t : t t t : 4.t q q 2 t : t t : t t 8 8 q q 2 t t : ' +- +'t t t : t t : 8 5 q : t t t t 5 : ^ t t t t t : t t t : t 5 8 t : 5 : t t :' +- +' t t 2 t t : u c ! v i t t : t 5 t t t q t 2 q t t t t : 8 5 8 t t t t : t ' +- +'t : t : t t : t t 2 8 t t t : t t t t : t t : t t 2 t 2 q q : t t q t : t t' +- +' : t t 2 t t t t t t : t t : t t t 2 q q : 8 5 8 8 8 q 2 t t : t t t : t 2 ' +- +'q t : 5 : t t : t t t q 5 t : t t : t d ~ Q 4.t t 8 : t q 5 q t t t 8 q 2 t' +- +' : t t : t t t : 8 5 8 t : t t t t : 8 2 q t 8 t : t t t t t t v t 5 q q 2 ' +- +'t 8 t 5 : t t : t t t : 8 t 2 q q q : t 8 2 q q : 8 5 8 t t t t q 5 t 8 5 8' +- +' 2 q : 8 u 2 q t p u 4.: 2 q t : t t v t t 8 t t t t : t t t t 5 8 t t t t ' +- +'q t t t t t t t t t t : t t ) |.|.$.e e e r e e e r e e e r : t t t t : 8 5' +- +' 8 : t 5 8 8 2 t t t t 2 q q t t : 5 8 t t 5 8 5 8 t p p u t : t t t t q : ' +- +'t 5 t q q 2 t t : t t t : t t t 8 : t 8 t t t t t : t t t t t 5 : t t t >.o' +- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: : : = ; = : : : = : : ; : l = : ' +- +': : p i : : : : : = : : : : : = : : : : : = ; : : : : N : : : : : ; : : : :' +- +' : = : : : = ; : : ; : : = : : : : : = : : : : : : ; : q T T t : : : : ; = ' +- +': : : : : : : : : : : : : : : : : = = : : p g = : : : : : ; : : = : ; ; : :' +- +' : : : : : : u p t : : : : : : : : : : ; : : = : : : : : : : : : : : : : : ' +- +': : : : : = : : : : : : : : = : : : l : : ; = = : : : : ; : : : : : : = : =' +- +' : ; : = : : ; : : : : ; : : : : : : : : : : : : : : : : : : : : t > N : = ' +- +'= : : : : : : : : = ; : : : : : = : : : = : : : : : = : : : : : ; : = : = :' +- +' : : : : = ; l : : : ; : = : : : : : : : : : : : = = : : : : : : : : : : : ' +- +': : : : : : : = : : : : : ; : = : = = : = a p N : ; : : : : : : l l l = : :' +- +' : : : = : : : : : : : : = : : : : = m : : : : = : : : t p w e w e e e w w ' +- +'w w e w : = : l : = : : = = : : : ; : : = : : = : : : ; : : : : : : ; : : :' +- +' : t i t : : : : : : = : : : : ; : : ; = = : : : : : : = = : = : : = ; = : ' +- +': : : = ; ; : : : 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X' +- +' X X X X X X t t t X X X X X X % X X X # * X X X X X X X X X X # * X X X X ' +- +'X X . X X X X X X X X X X X X X X X * X X X X X X X X X X X * X X X X X X X' +- +' X X : j j : % X X X X X * X X X # X X X X X X X X X X X * # X X * - : - X ' +- +'X X X X X X X X X X X X X X X X X X # : q : % X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X ' +- +'X X X X X X X X X X X X * X X X X X X X X X X X % % X X X X X X X X X X X X' +- +' X X X X X X X X X X * * X X X X X X X X X X % % X X X X X X * X X X # X X ' +- +'X X X X X X X X X * * X X % X X X X X X X # X X X X X # X X X X X X X X X *' +- +' X * # : t : # X X X X X X X X X X X X X X X X X X % X X X X X X * % = * X ' +- ,'* * X X X X X X X X X X X X * X X # X X * * = - X X X X y d 5 % X X X X X X' +- +' * X X X & & & & & & & & & & & & X X t X * X X X * X X X X X X X X X * X X ' +- +'X X X # X X X X X X X X X X * - X X X X X X X X X X X a y = * X X X X # X X' +- +' X * X X X X X * X X X X X X X X X # X X X ; q >.oXoXoXoXoXoXoXoX>.",'#10'"' +- +'oXoXoXoXoXoXoX>.: X X X X X X X X m t : X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X * t q = % % X X X X X X & & & X X X X X X X X' +- +' X X X X X X X * = - % X X X X X X X X X X X X X X X X X X X X * : % % X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' +- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X # X X t L ) R q X X X X X X X * X X X X X X X X X X' +- +' X X X X X * X X < # X X X % X X X X X X X X X X X X : X X % X X X = = * % ' +- +'X X = z J d @ % X X X X X X X X X % % & & & & & & & & & X X X t X X X X X #' +- +' X X X X X X X * X X # X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X = f H y X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : q >.o' +- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X & & & X X X < X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 2 % % X X X X ' +- +'X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X * X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X X < X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X % j O.:._ j X X X X X ' +- +'X * - % * X X * = * X % X X X X X % = = % < X X % % % X X X X X X X X X X X' +- +' X X : : 5 X X X # * X X X X * d z y * X X X X X X X X X X % % X X & & & & ' +- +'- X X X X X X X X X X X X X X X X X X X X = ; % # X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X = d f 5 # X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X * X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X < X X X X X ' +- +'X X X X X X X X @ % % X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X * : % % X X X X X & & & & & X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X < X X X X X X X X X * # X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X % j _ #._ p X X X X X % = - * X X * 8 : = X - = X X X X X - = * X X X X ' +- +'; : = X X X X X X X X X X X X * X X : : X X X X X X X X @ 5 ; * % X X X X X' +- +' X X X X X @ X X X X X X X X X X X X X X X X X X X X X X X X X X X ; : = * ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X = = * # X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' +- +'oXoXoXoXoXoXoX>.: X : : : X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' & & < < & X X X X X X X X X X X X X X * t u = X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X : X X X X X X X & & & & & X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X * ; % * X X X X X X X % % X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X % - X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ; ; % X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X ' +- +'X X X X X X X X X X X X X X X ; x R l ; X X X X X - ; = X * X X - : : * : q' +- +' = X X X X X X X X X X X - - % # X X X X X X X X X X X X X X * X X X X X X ' +- +'X X X % X @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X * X X X # X X * = % X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : >.o' +- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X 8 X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X t ! ! j X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : X X X X X ' +- +'X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X = : = # # X X X X X - : % # X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ; ; = X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- ,'X X X X * % q : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X * : * X X X X X X X X X X X X X X X X X X X X X # X - X X X X X X X ' +- +'- 8 % X X X % # y z d : t - X X X X X < X X X X X X * % * X X X X X X X X X' +- +' X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X # u c x q X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X * X X X X X X X # X = % X X X X X X X X X X X * X X X X X X X ' +- +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X' +- +' X X X X X X % X X X = i y m X X X X X X X X X X < X & & & X X X X X X X X ' +- +'X X X X X X X p [ ] c X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * * X' +- +' X X X X X X ; : = X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X * ; : - * X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X < X X X X X X X X * - = X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X * * X % X X * * f ^ f = * X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X 2 q m X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X 8 X X X X X X X X X X q ! @.O.L - X X X X X ' +- +'X X X X X X X X X X X X X X X X X * - * # X X X X X X # 8 K x i X X X X X X' +- +' X X X ; = * X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' +- +'oXoXoXoXoXoXoX>.: X X X X X X X X X X X X @ j [ @.$._ c m X X X X < < X X X' +- +' X X X X X X X X X X X X X X X X X X X m l c i # X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X * X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X * - * X X X X X X X X X X X X X X X X' +- +' X X X X X t X X X X X X X X X X X X X X * * # X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X % t g x d 5 X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' +- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X' +- +' X h '' ,.<.! : X X X X X X X X X X X X X X X X X X X X X X - ; = X X X X X' +- +' X X % x +.+.P - X X X X X X X * 2 : = X X X X X X X X X X X X X X X : : >.' +- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX>.: * X X X X X X X X % % % l $.<.,' +- +'.<.Q.:.^ m X X X < X X X X X & & & X X X X X X X X X & & & X X X X X * X X ' +- +'X X X X X * > * # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X % = : : X X X X X X X X X X X X X X X * ; : ' +- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X' +- +' X X X X X X X X X X X X X X X X X % 5 X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = ' +- +': * X X X X X X X X X X X X X X X X # = - * X X X X X X X X X X X X X X X X' +- +' X X X % X ; c ) T u = X X X X X X < X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X % % % X % # X X X X X X X X % X % @ X X X X X X X X' +- +' X X : X X X X X X X X X X X t [ ;.@.T - X X X X X X X X X X X X X X X X X ' +- +'X X X X X X = - X X X # # # # * x +.+.P - X X X X X X X X > = X X X X X X X' +- +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoXXX",'#10'"oXoXoXoXoXoXoX&.: X X X ' +- +'X X X X X X X % i _ ,.,.,.,.,.,.:.Z < X X X X X X X & & & & & X X X X X X X' +- +' & & & & & X X X X X X X X X X X X * u : @ X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : t : % X X X X X' +- +' X X X X X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # : X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X * : : > X X X X X X X X X X X X X X X X * : t = X X X ' +- +'X X X X X X X X X X X X X X X X % % : L O.! x : * X X X X < X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X ; p i & & & 5 m 5 X X X ' +- +'X % % % % @ % X X X X X X X * : X X X X X X X X X * * % i L c q X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X * + # # # u P P q X X X X X ' +- +'X X X X # * - X X X X X X X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX,.",'#10 +- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X l :.,.,.,.,.,.,.,.^ * X X X X X X ' +- +'X & & & & & X X X X o X X & & & & & X X X X X X X X X X X X = : : X X X X X' +- +' X X X X X X X X X X X X X X X X X * % % 2 X X X X X X X X X X X X X X X X ' +- +'X X * - 8 t - * X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X' +- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X = = % X X' +- +' X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X % ; = * X X X X X X X X X X X' +- +' X X X X X * : 5 = # X X X X X X X X X X X X X X X X X X X X * p x j u t * ' +- +'X X X X = * % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X *' +- +' c _ W c & & & % X m X X X @ = m m : - X - = % X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & &' +- +' & & * * m ; * X X X X X X X X X # = q 5 = * X X X X X X X X X X X X : t >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X c <.,.,.<' +- +'.,.<.,.,.[ m % X X X X X X & & & & & X X X X X X X & & & & & X X X X X X X ' +- +'X X X X X X * % * # X X X X X X X X X X X X X X X X X X X X X % % 8 X X X X' +- +' X * X X X X X X X X X X X X % : h 8 X X X X X X X X X X X X X X X X X X # ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X u Q v t X X X X X X X X X X X X X X X X X X X X X X X M @ X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ ' +- +'X X X * : X X X X X X X X X X X X X X X * # X X X X X X X X X X X X X X X X' +- +' X X X X * ; - % % = * X X X X : p i % X X X X = d d 5 X X X X X X X X X X ' +- +'X X X X X X X X X X X X = R :.$.R w & & & * X X X X = 5 m 5 : * * = : * X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X & & & & & & & X % @ X X X X X X X X X X X - q t = @ X X X' +- +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X l :.<.,.,.<.,.<.,.R m % X X X X X X X & & & X X X X X X X X' +- +' X & & & X X X X X X X X X X X X X X - ; * # X X X X X X X X X X X X X X X ' +- +'X X X X X X X X : X X * ; ; % X X X X X X X X X X X X X - 8 ; X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X x ] ` i X X X X X X X X X X X X X X ' +- +'X X X X X X X d o.=.X./ = X X X X X X X * * X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X = & & & X X X X X < q b j = X X X * y J' +- +' J d X X X X X X X X X X X X X X X X X X X X X X X l [ _ R w & & & X X X X ' +- +'X 5 y 5 = = X X * - X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X & & & & & & & & & X X X X X X X X ' +- +'X X X X X # * = * X X X X X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X i @.<.,.,.<.,.<.:.c % % X X X X & ' +- +'& & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - % * X X X' +- +' X X X X X X X * X X X X X X X X X X X * : X X * : t * X X X X X X X X X X ' +- +'X X X X * & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X p T Q t % X' +- +' X X X X X X X X X X X X X X X X X X d -.,.,.,.>.o.* X X X X X * : : * X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X : % X % = * X X X X' +- +' X X * * * X X X X X X X X X X X X X X X X X X X X X X X X * & 8 8 w & X X ' +- +'X X X - q q X X X X X 5 G J y X X X X X X X X X X X X X X X X X X X X X X X' +- +' * e e w w & & & X X X X X % % m m X X X X X X X X : X % ; : X X X X X X X ' +- +'X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X & & & & & &' +- +' & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : 5 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % % c :.<.:' +- +'.<.,.Q.R t X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X * * * # X X X X X X X X X X X X =' +- +' - X X X X X X X X X X X X X X X & ; w & & X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t j' +- +' t X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X 5 : X X X X X X X X X X X X X X X X X X X X X ( ,.,.,.>.,.,' +- +'.z X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X t X X y z f = X X X X X % : = X X X X X X X X X X X X X X X X X X X X' +- +' X = g v a & w w & & % X X X X X X X X X X X * * 5 u > X X X X X X X X X X ' +- +'X X X X X X X X X X X X X & & & & m & & X X X X X X % X X X X X X X X X X t' +- +' X X - g j q % # X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X ' +- +'X X X X X X X & & & & & w w & & & & X X X X X X X X X X X X X @ X X X X X X' +- +' X X X o X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X % ; c _ :.:.@.T i * X X X X X & & & & & X X X X X X X X X X' +- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & q w w & X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X = p T t X X X X X X X X X X X X X X X X X : X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' +- +'X X X X X = X.,.,.,.,.,.<.J X X X X X X * X X X X X X X X X X X : - X X X X' +- +' X X X X X X X X X X X X X X X X X * d J z : X X X X X = = * X X X X X X X ' +- +'X X X X X X X X X X * # X X p ~ '' L w ; & & & % X < < X X X X X X X * ; 8 ' +- +'% X X X X X X X X X X X X X X X X X X X X X X X X & & & & & & & % X X X X X' +- +' X % % X X X X X X : X t t X X ; g x : X X X X X $ $ $ $ $ $ $ $ 9 0 $ $ $ ' +- +'$ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X & & & & m k j & & & & X X X X X X X' +- +' X X X * w k e @ X X X X X X X X X X X X X X = 8 >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X % X % m p j i * X X X X X X X & & ' +- +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X * # X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X & q q w & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X * * X X X X X X X X t i ; X X X X X X X X X X X ' +- +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X % X o X X' +- +' X X X X X X X X X X X X X X X X X * X.<.,.>.,.,.,.H X X X X X X X X X X X ' +- +'X X X X X X t c j = X X X X X X X X X X X X X X X X X X X X X 5 z d * X X X' +- +' X X # X X X X X X X X X X X X X X X X X X q x g % # u ^ ] v = & & & % # X ' +- +'< X X X X X X X X X - ; * * X X X X X X X X X X X X X X X X X X X X X X X &' +- +' & & & & @ @ X X X X X X X X X X X X X X X X t t : X X X : : * X X X X $ $ ' +- +'$ $ $ $ $ $ 7 K P 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X & & & & & k' +- +' j & & e w X X X X X X X X X X w [ @.W w X X X X X X X X X X X X X X : : <.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % X % X % X' +- +' X X X X X X X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X' +- +' X X X X X X X X X X X X X X X % % & & & X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X - : * # X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X # 5 X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X H ,.,.,.,.,.-' +- +'.y X X X X X X X X X X X X X X X X X d ^ v : X X X X X X X % X X X X X X X ' +- +'X X X X X X X = @ # X X X X X X X X X X X X X X X X X X X X X X X = x _ R u' +- +' * X a l 5 X X X X X * X X X X X X X X X X X * % * X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X & & & & & @ % % X X X X X X X X X X X X X X X t t :' +- +' : X X * % * X X X X $ $ $ $ $ $ $ $ 7 x L 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ' +- +'X X X X X X & & & & & & w & & i T k = X X X X X X X X X e ] &.] c X X X X X' +- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXOXoXoXoX>.= # X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X * u = X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X ; : * X X % = - X X X X X X X X X X X X X X X X X X X X X # : * X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'* @ % X X X = ( ,.,.,.-.V X X X X X X X X X X X * - X X X X X : j u % X X X' +- +' X X X X X * * % X X X X X X % = % X X X X X X X X X X X X X * X X X X X X ' +- +'X X X X X X X X - L _ ) u X X * X X X X X X X < X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X ' +- +'X X X X X X X X X X t X X X : * X X X X X X $ $ $ $ $ $ $ $ $ $ 9 9 7 $ $ $' +- +' $ $ $ $ $ $ $ $ $ $ $ $ $ * % - X & & & & & & & & & & w T j = X X X X X X ' +- +'X X X q A [ R w @ % X X X X X X X X X X X X : q <.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.: * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X * * * 5 X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X % * X X X * : : * X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X t l i % X X X X = d H H y X X X X X X X X X X X % = ' +- +'m - X X X X X X X X X X X X X X X = 5 ; % % X X X X X y t : X X X X X X X X' +- +' X X X X - t = X X X X X X X X X X X X X % t x g = X X X X X X X X X X < X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X & : & X X X X X X X X X X $ $ $ ' +- +'$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ % h j u k E j & & & & &' +- ,' & & & m ; X X X X X X X X X X X w k w % X * X X X X X X X X X X X X ; 2 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * % X t X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = = X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X * j ! b : X X X X X X X X X X' +- +' X X X X X X X X X X X * = % X X X X X X X X X X X X X X X - m 5 % X X X X ' +- +'X X i i m * X X X X X X X X X X = l ^ p # X X X X X X X : e y * X % % X X #' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' +- +' X X X X X : : X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ 0 h h $ $ $ $ ' +- +'$ : g I x ! @.T & & & & & & & # X X X X X X X X X X X < X & & & < X X X X X' +- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X # * - X m X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X % X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q ' +- +'j i % X X X X X X X X X X X X X X X X X X X X X % # X X X X X X X X X X X X' +- +' X X X X X y G f m % X X X t % = - X X X X X X X X X X X : v ~ l * X X X X ' +- +'X X X j _ R p % X % * # X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X & & & & & X X X X X X * t : $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $' +- +' 9 $ $ $ 7 K O.I 9 $ $ $ $ X 8 u 8 c R k & X X X X X X # X X X X X X X X X ' +- +'X < < & & & & & < X X X X X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X % X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X = G o.J f & & & X : * X X % X X X X X X X' +- +' X X X X t j q X X X X X X X % c _ _ j % % - : - X X X X X X X X X < X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X 5 $ $ $ ' +- +'$ 7 $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ h I K 7 $ $ 7 7 # X X X ; m % X X X X X' +- +' * = X X X X X X X X X X X X * & & & & & % * o X X X X X X X X X X X : : >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X - = * X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X * : X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : % % X X X' +- +' X X X X X X X X X X X X X X X X X * = - X X X X X X X X X * z ( X._ k & & ' +- +'& X X X X X X X X X X X X X X X X * % X X X X X X X X X q c k m % = : ; * X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' +- +' X X X X X X X X # $ $ $ 7 9 7 $ $ $ $ $ $ $ $ & ; & $ $ $ $ 7 0 7 $ $ $ 7 ' +- +'Y K 9 X X X X % % X X X = g j : X X X X X X X X X X X # & & & & & ; - M X X' +- +' X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X - ; - X X X X X X X X X X X X * - X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X - * X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 5 # X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X = p b t X X X X X X X X X X X X X X X X X X X X X = t = X X X X X' +- +' X X X X X 5 ( 1.:.[ e & & X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X & @ % @ : : = X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X * X X X X X t X X X X X X * * * X X X X * $ $ $ a y $ $ $ 0 h 0 $ $ & w <' +- +'.,.,.$ $ $ $ $ $ $ $ $ K Y ) x * X X X X X X X X t v R p X X X X X X X X < ' +- +'X X # X & & & 8 g u < < X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X @ % % X X X X X X X X X X X * : : * ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : = *' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X # : v ^ p X X X X X X X X X X X X X X X X ' +- +'X X X X X X = * X X X X X X X X X X X k @.<.] j & & X X X X * * X X X X X X' +- +' X X X X X X X X X X X X X X = - @ % % % : : % X X X X X X X X < X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X % = : - X X X X m X X X X X * ; t : % X X X X $ $ $ ' +- +'$ $ t t 7 P ) x $ $ & k ,.,.,.$ $ $ $ $ $ $ $ $ K +.+.k % @ % X X X X X X *' +- +' i p : X X X X X X X X X X X X X % % * 8 h q * X X X X X X X X X X X : t >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X X X X X X' +- +' X X X X X X X X % ; ; * X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X * 8 u ; * X X X X X X X X X X 5 X' +- +' X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X % 2 X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X u p : % X X X' +- +' X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X * u ! ] R e & ' +- +'X X X X * = : = t t @ % X X X X X X X X X X X X X @ u l p * X X X # * X X X' +- +' X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X % - : - X X X t : X X X X X' +- +' * t c k : X X X X $ $ $ $ $ $ $ 7 h P 0 $ $ & w ,.,.,.$ $ $ $ $ $ $ $ $ 0 ' +- +'I c 8 > : * X X X X X X X X X % X X X X X X < X X X X X X X X X % : - X X <' +- +' X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X % @ X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * p x 8 ' +- +'X X X X X X X X X X X 8 X X % X # X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X % % * X % X X X X X * X % X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X t g t @ @ m X X X X % ; t Q T m @ X X X X X X X X X X X X X ' +- +'X p ^ l - X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'* - * X X X X X X X X X X X q P L t X X X X $ $ $ $ $ $ $ $ $ 7 $ $ $ $ & &' +- +' & $ $ $ 7 9 7 $ $ $ $ $ $ * X = = > X X X X X X X X X X X X X X = M < X X ' +- +'X X X X X X @ X % % % X X < X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X 8 t ; X X X X X X X X X X X : X X ; g x t % X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X % = : * X X X X X X X X d z f = % X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X m X X X X * X t Q v 5 X X' +- +' X X X X X X X X X X X X X : p u X X X X X X X X X X X X @ < X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X % - * X X X X X X X X X X - t u - * X X X $ $ $ ' +- +'$ $ $ $ $ $ $ : 2 $ $ 7 $ $ $ $ $ u P 0 $ $ $ $ $ $ # % * * X X X X X X X X' +- +' X X X X X # y R R l * X @ % X X X X X X X % X X X X X X X X X X X X ; : >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X * X * : - * X X X X X X X X * :' +- +' X g _ _ L ; X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X' +- ,' X X X X X a J o.( f X X X X X X X X X X X * - X X X X X X X X X X X X X m ' +- +'X X X X X X # * t t % X X X X X X X X X X X X X X X X X X O O O O O O O O O' +- +' O O X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X * - - X X X X X X X X X' +- +' X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ 7 t d 0 w & & $ $ 9 0 0 $ $ $ $ $ ' +- +'$ % % X X X X X X X X X X X X X X X = A *.:.` i X X = ; X X X X - : : X X X' +- +' X X < X X X X # * = t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' +- +'8 : % * X X X X X X X X X X g _ O.L ; X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X @ X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X ; : : X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X * X X X X X X * X X X X X X X X y ( !.o.z X X X X X X X X X X % = = % X' +- +' X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X ' +- +'X X X O O O O O O O O O O 4 d 3 X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X * X X X X X & & & X X X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 9 k q' +- +' & & & $ $ $ $ $ $ $ $ $ 7 g g - X X X X X X X X X X X X X % : { >.,.] p % ' +- +'m c l : X X X = t q * X X X X < X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X = % X X X X X X X X X X X # : x P i - = X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' +- +' X X % @ ; & * X X X X X X X X X X X X X X X X X X X X X X X X X X X : t : ' +- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X * a q X X X X X X X X X X X * 5 H ( ( y X X ' +- +'X X X X X X X X % @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X O O O O O O O O O , s / o.( B X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X t X X & & & & & X X X X * * # X X X $ $ $ ' +- +'$ $ $ $ $ $ $ $ $ $ 7 g w & & & $ $ $ $ $ $ $ $ $ K _ ) i X X X X X X X X X' +- +' X X X X X X b ] 2.! m % u T Q 8 X X X - : ; X X X X X X X X X X X X ; 2 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X * - X = - * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X j T _ R k = X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X * = * X X X X X % : X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X y Q b m X X X X X X' +- +' X X X X X X 5 d a * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X % X X X X X X X X X X O O O O O O O O O 4 J' +- +' -.<.=./ : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X a * X & & & & & X' +- +' X X X = = # X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 7 i w & & t y $ $ $ $ $ $ $ $ ' +- +'K ) R i * X X X X X X X X X X X X X X - p j m @ X ; i u * X X X * % % X X X' +- +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X & c 1.:.:._ i X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X t X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X t v l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X X ' +- +'X X O O O O O O O O O 4 / ,.,.,.( t X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X # : > X X X X X X X X X X X X ' +- +'X X X p d 5 % & & & & & X X X X * = X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 &' +- +' & & $ a a $ $ $ $ $ $ $ 7 g i = # X X X X X X X X X X X < X X X X X % * = ' +- +'X X X X X X X * - % X X X X X X X < < X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : * X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X : % # X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- ,' X X X d _ 1.:.[ d % X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X * : : X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X 5 X X X X X X X X X X X X X X' +- +' X X @ % X X X X X X X X X X O O O O O O O O O O H o.N...V * X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X j ^ x' +- +' : X X X X X X X X X X X X X X d G d = X & & & X X X X X X # X X X X $ $ $ ' +- +'$ $ $ 9 9 7 $ $ $ $ $ $ $ $ $ $ $ $ : 5 $ $ $ $ $ $ X X # X X X X X X X X X' +- +' X X X X X X X X X * = = * X X X X X X * = - X X X X X X X X X X X X : t <.' +- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX,.: X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X * > X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' 5 % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X ' +- +'X X X X X X X X X X * a u * % X % q v E k ; % X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X % X X X X X X X' +- +' X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X X X X : X ' +- +'X X X X X X X X X X X X X 5 f G 5 X X X X X X X X X X O O O O O O 4 4 4 O 4' +- +' G J Z 2 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X * = ^ *.~ a X X X X X X X X X X X X X X : 5 5 % X X X X X X' +- +' X X X X X X X X X $ $ $ $ $ 7 h K 9 $ $ 7 7 $ $ $ $ $ $ $ $ $ $ : $ $ $ $ ' +- +'$ X X X X X X X X X X X X X < X X X X X X X X = * X X X X X X X X % % X X X' +- +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X = p j t X X X X X X X X X X X X * 5 v v 5 % X % X X ; % @ X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X % X X X X X X X X X : l l : * X X X X X X X X X' +- +' X * X % X X X X X X m X X X X X X X X X X X X X * b ( o.H = % % X X X X X ' +- +'X X O O O O O 4 3 y 5 O O O O O O X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X * b ~ v : X X X X X X X X X X X ' +- +'X X X X @ @ % X X X X X X X X X X X X X X X $ $ $ $ $ $ u h 9 7 0 Y Y 7 $ $' +- +' $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X < < X X X X X X X % X X ' +- +'X X X X X X X * X X X X X X X X X X X X < X = 5 >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXOX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X q T ! p X X X X X X X X X X X X X : l l' +- +' m X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X @ % X * X X X X X X X 5 ' +- +'c b : X * X X X X X X X X - ; * @ X X X X X X m X X X X X X X X X X X X X @' +- +' z o.X.J 2 % % # X X X X X X O O O O O O 4 4 4 O O O O O O X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X X = u 8' +- +' X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X $ $ ' +- +'$ $ $ 7 7 7 0 Y `.Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X < X : 8 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - j c t % X X ' +- +'X X X X X X X X X % X = = X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * *' +- +' X X = - * X X X X X X # t t * : 8 = X X X X X X % * ; * X X X X X X X X X ' +- +'X X X X X X X X X X X X X y H J d * X X X X X X X X X O O O O O O O O O O O' +- +' O O O O X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X X X ' +- +'X X X X X X X X X * X X # X X X X X X X X X X X X X t X X X X X X X X X X X' +- +' X X X X X # X X X X $ $ $ $ $ $ 7 $ 9 Y Y Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ : ' +- +': * X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X = = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X % X * X X X X X X X X X X X X t t 5 : X X X X t t : t : t t t : X X' +- +' X X : 8 : : X X X X X # X X X X X * X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X * = ; * X - - * X X X X X X X * X * 5 8 = X X % X X * X' +- +' X @ X % X X X X X X m i : X X X X X X X X X X X X X = m % X X X X X X X X ' +- +'* O O O O O O O O O O O O O O O O X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'t : X X X X X X X X X X X X X X X = = X X X X X $ $ $ $ $ $ $ $ 0 0 K 7 $ $' +- +' $ $ $ $ $ $ $ $ $ $ $ X X : * X X X & & & & & < X X X X X X X X X X * - - ' +- +'X X X X X X X X X X X X X X X X X X X X X X N : ,.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X m i = X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X m m 5 m X X X t j l u X X X X : t : t X X X X X X % X X ' +- +'X X X X X X t X X X X X X X X X X * X X X X : : 5 : X X X X : : : : * X : m' +- +' : t t X X X X X X X X X X X X X X X X X X X X % = * X X % X X X X X X X X ' +- +'X X # = = # X X X ; l T c m % X X X X X X X * b ~ j > X X X X X X X X X X X' +- +' X X X X X X X X X X X X X % + O O O O O O O O O O O O O O X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X * X' +- +' X X X X X X X X X X X X : X X X X * > # X X X X X X X X * : : * X X X X X ' +- +'$ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X # # X X X & & & & & X X' +- +' X X X X X X X X X * - = X X X X X X X X X X X X X X X X X X X X X X : 4.<.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' +- +' : v ! l = m = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - ' +- +'= X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X m m 5 m X X X X X X X X X X : c Q u X X X X X' +- +' X X X X X X * X X X X X X X X X X X : X X X X X X X X X X X X X X X * X X ' +- +'X X X X X X * X X X X X X X X X X X X : t t : X X X X X X X X X X X X X # #' +- +' X X X X X X X X X X X X X X X X X X X X X j ] :.] j X X X X X X X X = v ] ' +- +'T ; X X X X X X X X X X X X X X X X X X X X X X X % - 4 O O O O O O O O O O' +- +' O * % O X X X @ * X X X X X X X X X X X X X X X X X X X X o & & & X X X X ' +- +'X X X X X X X X X X q g g = X X X X X X X X X X t X X X X * * = * X X X X X' +- +' X X X * : = # X X X X X X X $ $ $ $ $ $ 7 7 $ $ $ $ $ $ $ $ $ $ $ X X X X ' +- +'X * = = X X & & & & & X X X X X X X X X X X X * * X X X X X X X % X X X X X' +- +' X X X X X X X # * = t >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX|.y X X X ' +- +'X X X X X X X X X X X X X 8 ^ ] v m 5 : X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X * - % X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X % % q 2 X X X X : : t t X X X X X X X X X X X X X X ' +- +'X X X X = g l q X X X X X X X X X : l x 5 X X X X X X X X X X t X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X # : : 2 q % X X X : % % X X X X X X X X X X X X X X X X X X X X X b @.<.@' +- +'.l X X X X X X X X q i c w & & % % X X X X X X X X X X X X X X X X X X X X ' +- +'X * * O O O O O O O O O O O X O X X X X % = * X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X ; c +.[ j X X X X X X X X X X X ' +- +'X X X X X * * # * # X X X X X X X X X X X X X X X X X X X * % = X X X X X X' +- +' X X X X X X X X X X X X X * = % * X : & M < o X X X X X X X X X X X X X X ' +- +'X X X X * > * X X X X X X X X X X X X X X X : t b.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoXn.d X X X X X X X X X X X X X X X X * g x i = = = X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X : : X X X : q : X X X X X * X X X X X' +- +' X X X X X X X X X X X X X X X X X = ; # X X X X X X X X X u ^ ` g X X X X ' +- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X % % X X X X : t : X 5 8 t X X X X X X X ' +- +'X X X X X X X X X i [ ] ! t X X X X X X X t % & & & & & X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X O O O O O O O O O O O X X X X X = a : * X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : R @.O' +- +'.g X X X X X X X X X X X X X X X X X X u h 8 * X X X X X X X X X X X X X X ' +- +'X X X X X = : * X X X X X X X X X X X X X X X X X X X X X X X X 8 X X X X X' +- ,' X X X X X X X X X X X X X X X X = : > X X X X X X X X X X X X X X X : q <.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX,.5 X X X X X X X X X X X X X X X X' +- +' X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X t X X X X X X X X X X X % % X X X X X X X X X X X X X X : * * X X X * ' +- +'X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X t v V u X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * > * X * X' +- +' X X X X X : X X X X X * X * * - > X X X X # m y t X X X X X X X X t X & & ' +- +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X - q : * X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X g P P t X X X X X X X X X X X X X X X X X * g P h * X X' +- +' X X X X X X X X X X X X X X X * : : * * % X % X X X X X X X X X X X X X X ' +- +'X X X X X X X * : X X X X X X X X X X X X X X X X X X X X * = % X X X X X X' +- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X % : X X X X X X X X X # % % % X X X X X X t : 8' +- +' 5 X X X X X X X X X X X X X X X X X X * ; = * X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X % : : * X X X X X X X X * X X X X : : : 8 - : - X X X X X X X X' +- +' X X X X X X X X t X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X * % : : X X X X X X X X X t X X ' +- +'X X X X X X X u h q X X X X X X X X X X X X X X X X X X = u : * X * X @ * *' +- +' X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X X X ' +- +'X X X X % X X X X X X X X X X X X X X X X X ; 2 >.oXoXoXoXoXoXoXoX<.",'#10 +- +'"oXoXoXoXoXoXoX>.: : > X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X ' +- +'X X X % 8 : X X X X X X X X X X X X X X X X X X X X X X X X X X = q : % * X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X = : * X X X X X X X X X X X X X X X ' +- +'X X % * * X : 5 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X * : X X X X X X X X X X * * X X X X X X X X X X X X X X X ' +- +'X X X * : : X X X X * : * X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * # X : 2 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXOXb.8.v v u X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X * ; % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X % % X X X X X X X X X X : 2 X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X % = = * X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X ; = X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % % % X X X' +- +' X X X X X X X X X X X X X X X X X X % % 5 : X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X # X X X X X X * > = * X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X * 8 8 * : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v.'' ` l' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X % X X t : t : X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X - : ; * ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # X X X X X ' +- +'X X : t t t X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- ,'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ X X ' +- +'X X X X X X X X X X X X X X X X < X X X X X X X % X % 2 : X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X 8 h g ; ; t >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.` ` ^ F X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X : 2 X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X : X * - * X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X : m X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * m ' +- +': X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X * X X X X X X X X < X X X X X X X % %' +- +' % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - h u - : 8 >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t u t * % X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # * X X X X' +- +' q : * : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X : l l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X % : X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X : 2 X ' +- +'X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X p R v t X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q h : X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X * % = % : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' +- +'X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ; : * X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X 5 : X X X X X X X X t X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X : l l : X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X # X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X * : * X % % X X X X : m X X X X X X X X X = : ; * X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X c 2.` g X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X - h K 8 X X X X < < X X X X X X X X X X X X X X X X X : X X X X X ' +- +'X X X X X X X X X X X X X X X X X X # X # % : 5 >.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.: + o X X X X < X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X # = - X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X : : 8 X X X X X X X % X t X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X X X' +- +' X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' +- +' X X X X X X X X X X X X X X X X X : u : # * X X X X X X X X * X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X X : X X % % X X X X X t m m X X X X X X' +- +' X > : : X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X i T ' +- +'T t X X X X X X X X X X X X X X X # * X X X X X X X X X X * # X X X X X X X' +- +' X X X # % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' +- +'X X X X X X X X X X X X X X X X X X : u : # X X X X X X X X X X X X X X X X' +- +' X # X X X X * : : # X X * X X X X X X X X X X X X X X X X X X X % % : : >.' +- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t N : = = ; : : = > N : : = - : =' +- +' : : ; = : : : = : = : = : : - = : : : : : : : : : : : ; = : : = : : ; : : ' +- +': = : : ; = = : - : - : : = : : : : = - : : : : = l = : : : : : : : : : : =' +- +' : : : : : : = ; : ; = : : : : : = : : = = : : ; = : : : : : : = : - : : ; ' +- +': = : : : : : : : : = ; : : : - : : = : - : : : : : : : = ; : ; = : : ; : :' +- +' ; : = ; : ; : = : : : : : = - : : : : : = : : : : = : - : - : = : : : : : ' +- +'; = : : : : - = : : : : : : = : = : : - = : : : ; : : = : = T O.! 8 : = : :' +- ,' : : : : v '' ^ : : : : = : : ; = : : = ; : : : = : : : ; = : : : : : : ; :' +- +' : = : ; m 2 y m : ; : l = : : : : : : : = = : - : : : ; = : : : : : : : = ' +- +': : : - : ; : : : = : : j p : : : ; ; = ; = : ; ; : : = : : : = = : : - : :' +- +' = : : : = = : ; = : - = : : : : : ; l = ; : : : - = : : : : : : : = = : : ' +- +'- : : : : = ; : = = : ; : = : : : : : = : = : - : : : : : = : : : : : - : :' +- +' : ; : : : = ; - = : : : : : : = : : - : = : l = : : : : : : = : = ; : : : ' +- +': : = - : : : : : ; 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t' +- +' : t t t 8 t t t 8 5 q q : t t t q q q t t t t 8 8 q q 5 q q q t t t t t : ' +- +'t t t q q t t : t t t t 5 q q t t t t t t t t 2 q t t t t t t q q q 5 v L ^' +- +' : q t t t t 8 t 5 : t 8 5 t t t t t t 8 5 : t t t 8 t t t t t t t : t t t ' +- +'q q t t t t t 8 : t t t t t t t t t q 2 : t t t q q t t t t 8 5 : t t e e e' +- +' q : t t t t : t t t t t u 2 t q q q : t t t t t 5 t t t : q : 5 8 5 t t t ' +- +'t t t t t 2 q t t q q t t 8 5 q q : t t t t t 5 t t t q q : t t t q q t t t' +- +' t t t t t T O.! 8 t t 8 ^ ` v 5 t %.OX&.l 5 t t t t t t t t t t t u ` '' l' +- +' q q : t t t 5 8 t t 5 q q 2 t t t p X.!.X.y t q 2 T T v a q 8 t t t 8 5 q ' +- +'q : t t t q q t t 8 5 q q : t t t 5 q q q t t t t m 5 q 5 t t t t t t t t 2' +- +' t t t t t t 5 t t t t : q q t 8 5 q 8 t t t t 8 q t t 5 8 5 2 v t t 5 : t ' +- +'t t q t 5 t q 2 q q 8 8 t t t t t t t t q q : t t 8 q q t t t t t 8 8 5 8 t' +- +' t t t t 8 5 q q 8 t t 4.q 2 q 5 t t t t 8 q t t q q 8 5 5 8 t t t t t t V ' +- +'T q t t q u t q 5 8 t t t 5 t t t t t : t t t q t <.oXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoX>.t t t t 4.4.t t q 2 t t t 4.8 2 8 t t t 2 8 t t 5 t t 5 2 ' +- +'q t 8 2 8 5 8 5 t t t t t t t q 2 t t t t t q : t q 2 t t t t t t t t q q t' +- +' t t t t t t q 2 8 8 5 q 2 q 2 t t t t t 8 8 5 t t q 2 t t t 8 5 8 t t t t ' +- +'5 t t t t t t t 8 t t t q 2 t t t t t 5 t t t t t t t t t t q u t t t t 2 8' +- +' t t 5 t t 8 t t e e r r e q t t t t t t t t 5 x ` ^ t 5 q 2 t t t t t t 8 ' +- +'t t t q q v u 8 t t : t t t t t t q q t t 2 8 t t 5 q q 2 t t t t t t 8 t :' +- +' t t 2 8 t t t q 2 t t t t t : t t t p t 5 t t u %..X'' t t ^ '' ~ t 8 t : ' +- +'t t t t t t t t q b &.,.~ t 2 t t t t t t t t 8 q q 5 t t t H (.iX^.J t q q' +- +' 5 : t 8 5 5 8 t t 5 q q 2 t t t t 2 8 t t 5 8 q 2 8 5 5 8 t t 2 q t t t t ' +- +'5 m t q t t t t t t t t q q t t 5 8 t 8 t t t : 8 2 t t 5 q 8 5 t t t t 2 q' +- +' t t 8 : 8 ^ t t t 8 t t t t 5 q 8 t q q q 2 2 q t t t t t t t t t 2 t t t ' +- +'t q 2 t t t t t 5 5 8 t t t t t t t t t 2 t t t t 5 q q q t t t t 2 q t t q' +- +' 2 5 8 t t t t t t t t q G v t u ` | v 5 8 t t t t 8 t t t t t t t t t q 2 ' +- +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX.X>.>.>.>.>.>.>.<.n.>.>.>.>.>.n.>' +- +'.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.' +- +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.,.,.XX,.>.>.>.>.>.<.<.>.>.>.>.>.<.>.>.>.>.>.>' +- +'.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' +- +'>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.<.>.>.<.<.<.<.<.<.<.>.>.>.>.>.>.>.>.>.>.X' +- +'XoX.X,.>.>.>.>.>.<.>.>.>.>.>.>.>.<.<.n.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' +- +'<.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>' +- +'.XXXXXX>.>.<.>.<.>.>.>.>.>.>.>.>.>.>.>.>.,.XX.X.X<.<.>.>.>.>.>.>.>.>.>.>.>.' +- +'>.>.>.<.<.,.+XOX+X,.>.>.>.>.>.>.>.>.<.>.,.,.,.XX>.>.>.>.>.>.>.>.>.<.>.>.>.>' +- +'.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.' +- +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<' +- +'.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.' +- +'>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<..XoXXX>.>.>.>.>.>' +- +'.>.>.>.>.>.>.>.>.>.>.>.>..XoXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX>.",'#10 +- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX'' ",'#10 +- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoX.X^ ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX,.p ",'#10'".XoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXX^ q ",'#10 +- +'"~ XXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' +- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' +- +'oXoXoXoXoX,.~ u 2 "'#10'};'#10#7'Stretch'#9#0#0#6'TLabel'#6'Label1'#4'Left' +- +#3')'#1#6'Height'#2' '#3'Top'#2'l'#5'Width'#3#144#0#9'Alignment'#7#14'taRigh' +- +'tJustify'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#10'Sky Charts'#10 +- +'Font.Color'#7#7'clWhite'#11'Font.Height'#2#230#10'Font.Style'#11#6'fsBold'#0 +- +#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'H' +- +'eight'#2#25#3'Top'#3#151#0#5'Width'#2'_'#7'Caption'#6#10'Version 3 '#10'Fon' +- +'t.Color'#7#7'clWhite'#11'Font.Height'#2#236#10'Font.Style'#11#6'fsBold'#0#11 +- +'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Heig' +- +'ht'#2#14#3'Top'#3#240#0#5'Width'#3#208#1#7'Anchors'#11#6'akLeft'#7'akRight' +- +#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6#14'Copyright (C) '#10'Font.Color'#7 +- +#7'clWhite'#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label4'#4'Lef' +- +'t'#2#16#6'Height'#2'*'#3'Top'#3#190#0#5'Width'#3#204#1#7'Anchors'#11#6'akLe' +- +'ft'#7'akRight'#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6'yThis program is fr' +- +'ee software; you can redistribute it and/or modify it under the terms of th' +- +'e GNU General Public License'#10'Font.Color'#7#7'clWhite'#11'ParentColor'#8 +- +#10'ParentFont'#8#8'WordWrap'#9#0#0#6'TLabel'#9'LabelDate'#4'Left'#3#128#0#6 +- +'Height'#2#19#3'Top'#3#157#0#5'Width'#2' '#7'Caption'#6#4'Date'#10'Font.Colo' +- +'r'#7#7'clWhite'#11'Font.Height'#2#241#11'ParentColor'#8#10'ParentFont'#8#7 +- +'Visible'#8#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#3#184#11#7'On' +- +'Timer'#7#11'Timer1Timer'#4'left'#2#8#3'top'#2#16#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tf_splash','FORMDATA',[ ++ 'TPF0'#9'Tf_splash'#8'f_splash'#4'Left'#3#165#1#6'Height'#3#7#1#3'Top'#3#156#0 ++ +#5'Width'#3#240#1#13'ActiveControl'#7#6'Panel1'#11'BorderIcons'#11#0#11'Bord' ++ +'erStyle'#7#6'bsNone'#7'Caption'#6#8'f_splash'#12'ClientHeight'#3#7#1#11'Cli' ++ +'entWidth'#3#240#1#10'Font.Color'#7#7'clBlack'#11'Font.Height'#2#245#9'FormS' ++ +'tyle'#7#8'fsSplash'#8'OnCreate'#7#10'FormCreate'#9'OnMouseUp'#7#11'FormMous' ++ +'eUp'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' ++ +#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#7#1#3'Top'#2#0#5 ++ +'Width'#3#240#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#7'Caption' ++ +#6#14'Cartes du Ciel'#12'ClientHeight'#3#7#1#11'ClientWidth'#3#240#1#8'TabOr' ++ +'der'#2#0#10'OnDblClick'#7#12'logoDblClick'#0#6'TImage'#6'Image1'#4'Left'#2#0 ++ +#6'Height'#3#7#1#3'Top'#2#0#5'Width'#3#240#1#5'Align'#7#8'alClient'#10'OnDbl' ++ +'Click'#7#12'logoDblClick'#12'Picture.Data'#10#182#21#4#0#7'TPixmap'#170#21#4 ++ +#0'/* XPM */'#10'static char *splash[] = {'#10'/* columns rows colors chars-' ++ +'per-pixel */'#10'"496 263 256 2",'#10'" c #00090009000A",'#10'". c #0411' ++ +'040B0AF1",'#10'"X c #0F640F630F63",'#10'"o c #087D07CA06D8",'#10'"O c #0' ++ +'01C0D101A81",'#10'"+ c #081208301667",'#10'"@ c #0CC4119214A6",'#10'"# c' ++ +' #11AB0E410D7B",'#10'"$ c #1A9A003F003F",'#10'"% c #10FC106B0E9D",'#10'"&' ++ +' c #1A7E1A7B0D09",'#10'"* c #13C4139D1353",'#10'"= c #16311A1F1A95",'#10 ++ +'"- c #1977163F1535",'#10'"; c #1B1B1A381648",'#10'": c #1B461B3D1B20",' ++ +#10'"> c #123012E019DA",'#10'", c #068C068C26D5",'#10'"< c #002E002B3D8C"' ++ +','#10'"1 c #08B309093636",'#10'"2 c #1597177B286D",'#10'"3 c #1741172C38' ++ +'1C",'#10'"4 c #0BB6182424C0",'#10'"5 c #1BEC220F2385",'#10'"6 c #1B71352' ++ +'D3670",'#10'"7 c #24700AA80A5D",'#10'"8 c #22BD1DA11C1E",'#10'"9 c #2872' ++ +'170015AC",'#10'"0 c #334D18DA1847",'#10'"q c #234921C81D9D",'#10'"w c #2' ++ +'7C727A81802",'#10'"e c #373737371B1B",'#10'"r c #39BA390E1CF2",'#10'"t c' ++ +' #203D203C203B",'#10'"y c #255129D92A44",'#10'"u c #29732612256D",'#10'"i' ++ +' c #2A8B2998265E",'#10'"p c #2BC72B442AA9",'#10'"a c #24E425562A69",'#10 ++ +'"s c #29552AAD358E",'#10'"d c #2CAF32EA3381",'#10'"f c #2BC037D039B6",' ++ +#10'"g c #326B2DA92C55",'#10'"h c #38702868269A",'#10'"j c #32FF31AC2E04"' ++ +','#10'"k c #395C373727C1",'#10'"l c #344733E13302",'#10'"z c #338C3B623C' ++ +'47",'#10'"x c #3A98349A32AF",'#10'"c c #3B2F39AA3545",'#10'"v c #3BFB3BE' ++ +'23B09",'#10'"b c #33E134D539EF",'#10'"n c #30302F2F3F3F",'#10'"m c #1F77' ++ +'206D1C58",'#10'"M c #109410AD4DAB",'#10'"N c #0E940E946C52",'#10'"B c #2' ++ +'81F288146B9",'#10'"V c #379E38F24629",'#10'"C c #3782377757F8",'#10'"Z c' ++ +' #2AA32EFB5046",'#10'"A c #39C739C766E1",'#10'"S c #37E237F876F6",'#10'"D' ++ +' c #2833284A7166",'#10'"F c #1F1F20205252",'#10'"G c #3ABA42F543F6",'#10 ++ +'"H c #39F346AE485B",'#10'"J c #3D604CBC5223",'#10'"K c #445D2C312ABA",' ++ +#10'"L c #434D3CDB3A2C",'#10'"P c #4617395F370D",'#10'"I c #4E5437043039"' ++ +','#10'"U c #7291000A000A",'#10'"Y c #55432DFF2C50",'#10'"T c #444E42823D' ++ +'3F",'#10'"R c #4A4245163BFF",'#10'"E c #4ED647A231E6",'#10'"W c #630D5A5' ++ +'A3D3D",'#10'"Q c #40A740A34099",'#10'"! c #4C6D4AC14505",'#10'"~ c #4BE7' ++ +'4BC14B2B",'#10'"^ c #461E481E487C",'#10'"/ c #46CA48965860",'#10'"( c #4' ++ +'801563F585D",'#10'") c #558D4A23469F",'#10'"_ c #58A155E04B83",'#10'"` c' ++ +' #540053BD53BD",'#10'"'' c #5C185C085BE8",'#10'"] c #5A4F5A03553F",'#10'"' ++ +'[ c #4E55511C444E",'#10'"{ c #469846A86677",'#10'"} c #4958493A762A",'#10 ++ +'"| c #569B59366572",'#10'" . c #54085ACF7064",'#10'".. c #567E67C869AB",' ++ +#10'"X. c #5B7072B1752F",'#10'"o. c #5309676069F4",'#10'"O. c #66E6591E5412"' ++ +','#10'"+. c #6CB3544C5052",'#10'"@. c #681963F15A0A",'#10'"#. c #772D66F45D' ++ +'19",'#10'"$. c #6D636C17528D",'#10'"%. c #644C644C6483",'#10'"&. c #6DCB6DC' ++ +'A6DC7",'#10'"*. c #681B6989680D",'#10'"=. c #682B681B783B",'#10'"-. c #6457' ++ +'77FD79D1",'#10'";. c #77126ABF641D",'#10'":. c #7910770D6947",'#10'">. c #7' ++ +'62F76307630",'#10'",. c #7B2C7B387B33",'#10'"<. c #793F79DF769B",'#10'"1. c' ++ +' #6AB672B86A4F",'#10'"2. c #62B85FB55C5C",'#10'"3. c #3EBF41414B4B",'#10'"4' ++ +'. c #000F000E80F1",'#10'"5. c #0B8B0B8B8606",'#10'"6. c #1305134993E4",'#10 ++ +'"7. c #14431489B1C8",'#10'"8. c #2F1A2EC69283",'#10'"9. c #2FB52FEDB24D",' ++ +#10'"0. c #0E5F0E5FCF63",'#10'"q. c #00D100D4FFD3",'#10'"w. c #0BC30B92FFE7"' ++ +','#10'"e. c #012C012CF4F4",'#10'"r. c #139D139DFF4D",'#10'"t. c #1B2F1B11FF' ++ +'C4",'#10'"y. c #18C3186EFCFC",'#10'"u. c #099C09AEEA57",'#10'"i. c #30C830C' ++ +'8CF14",'#10'"p. c #23E123E1FFC8",'#10'"a. c #2C242C12FFFF",'#10'"s. c #2811' ++ +'283FF99C",'#10'"d. c #33E633DBFFEE",'#10'"f. c #3BFC3BF8FFF1",'#10'"g. c #3' ++ +'7CA376EFA55",'#10'"h. c #2F402F40EF44",'#10'"j. c #1F1F2020E8E8",'#10'"k. c' ++ +' #3F3F4040FFFF",'#10'"l. c #40963EE9FFFF",'#10'"z. c #5631560D9704",'#10'"x' ++ +'. c #4C3C4C648C8C",'#10'"c. c #56BD569BB73F",'#10'"v. c #4D4C4CF1AC51",'#10 ++ +'"b. c #68F869078947",'#10'"n. c #705274D58E51",'#10'"m. c #6A226A22A7E5",' ++ ,#10'"M. c #7272727CB4F2",'#10'"N. c #5F5F7B7B8484",'#10'"B. c #52FB52FBD130"' ++ +','#10'"V. c #43A943A7FFE0",'#10'"C. c #4BBD4BBFFFE0",'#10'"Z. c #492C4910F8' ++ +'DB",'#10'"A. c #53D553C2FFE2",'#10'"S. c #5BE55BE1FFF9",'#10'"D. c #593B58E' ++ +'FF9DB",'#10'"F. c #50154FD9EDF7",'#10'"G. c #5F2C60FAFFFF",'#10'"H. c #60C7' ++ +'5EC5FFFF",'#10'"J. c #71897159D2E4",'#10'"K. c #65A565A5EA9D",'#10'"L. c #6' ++ +'40B6404FFF4",'#10'"P. c #6BB86BA8FFF8",'#10'"I. c #6846685DFB96",'#10'"U. c' ++ +' #6F4470DBFF54",'#10'"Y. c #742D7434FFF1",'#10'"T. c #7C117C14FFED",'#10'"R' ++ +'. c #785278CEFBFB",'#10'"E. c #754E750EF0BD",'#10'"W. c #3ABB41C7AB07",'#10 ++ +'"Q. c #79F9828272F2",'#10'"!. c #6AA384DA8824",'#10'"~. c #74378AD08B9F",' ++ +#10'"^. c #7A3396799A44",'#10'"/. c #74748DB291DA",'#10'"(. c #7CD29E9EA54F"' ++ +','#10'"). c #7D7D80DDFFD0",'#10'"_. c #7F7FA6A6FFFF",'#10'"`. c #8594685964' ++ +'64",'#10'"''. c #88337D227703",'#10'"]. c #91067676705B",'#10'"[. c #8E386F' ++ +'C562B8",'#10'"{. c #ABAB42C342C3",'#10'"}. c #80807F7FFF29",'#10'"|. c #8CD' ++ +'3868678DC",'#10'" X c #AAD58AE07BA6",'#10'".X c #8BE88BF08BDA",'#10'"XX c #' ++ +'856384F884A3",'#10'"oX c #948F948F948F",'#10'"OX c #9AC59B1A9B36",'#10'"+X ' ++ +'c #9150907B8EE6",'#10'"@X c #8D458E04B0C4",'#10'"#X c #8D98AD8BB1C2",'#10'"' ++ +'$X c #AE4392D28B0A",'#10'"%X c #B088A7CF92E1",'#10'"&X c #AAB9A95DAAD7",'#10 ++ +'"*X c #AF40AF95B613",'#10'"=X c #880787F7D797",'#10'"-X c #927B927BCD1E",' ++ +#10'";X c #83EE83E7FFDB",'#10'":X c #8BF88BFAFFE1",'#10'">X c #883F88D1FE34"' ++ +','#10'",X c #98879898EA50",'#10'"<X c #93F693F2FFF6",'#10'"1X c #9B9B9BA9FF' ++ +'DF",'#10'"2X c #98EA98ADF9D0",'#10'"3X c #897D8A72F2B5",'#10'"4X c #9B1ABAB' ++ +'AC6C6",'#10'"5X c #9555A9C9FFFF",'#10'"6X c #AE64AE7FD30F",'#10'"7X c #A80E' ++ +'A7ECEAB7",'#10'"8X c #A3E7A3E0FFED",'#10'"9X c #AC32AC23FFE6",'#10'"0X c #A' ++ +'8BFA8FAFD94",'#10'"qX c #AD96B10DFFFF",'#10'"wX c #B0B0AFAFFFFF",'#10'"eX c' ++ +' #B420B425FFFD",'#10'"rX c #BC2BBC2DFFD3",'#10'"tX c #B77CB89AFC85",'#10'"y' ++ +'X c #B77CB754E937",'#10'"uX c #A0A09F9FFFFF",'#10'"iX c #A9CFD100D43C",'#10 ++ +'"pX c #B825CC02F966",'#10'"aX c #B598E804EC08",'#10'"sX c #9CC7C771CBF6",' ++ +#10'"dX c #C9E6987B9321",'#10'"fX c #C8FBB5E8AE61",'#10'"gX c #E0C0B332A464"' ++ +','#10'"hX c #C0C0BF9AFC44",'#10'"jX c #E8E8A9A9FFFF",'#10'"kX c #D2D2CB20B6' ++ +'44",'#10'"lX c #EEEECE4EBC3C",'#10'"zX c #D133CEE7D01A",'#10'"xX c #C42CC43' ++ +'3FFE8",'#10'"cX c #CC00CC10FFEF",'#10'"vX c #C865CAA2FABF",'#10'"bX c #D40F' ++ +'D420FFEF",'#10'"nX c #DBFBDC01FFF2",'#10'"mX c #D86AD8A1FAD5",'#10'"MX c #D' ++ +'011D0C8F0F8",'#10'"NX c #C8C8FCB3FE0F",'#10'"BX c #D83EFFFFFFFF",'#10'"VX c' ++ +' #D990E375FC20",'#10'"CX c #F1C6D672D008",'#10'"ZX c #E449E453FFF2",'#10'"A' ++ +'X c #EC68EC85FFE7",'#10'"SX c #E719E89BFCE2",'#10'"DX c #E968F91DFFFF",'#10 ++ +'"FX c #FFCAEDCAEDDB",'#10'"GX c #FB2DE7A2E6E6",'#10'"HX c #F491F480FFE8",' ++ +#10'"JX c #FFA8F511F509",'#10'"KX c #FE1EFD20FEE6",'#10'"LX c #F98EF9F9FB25"' ++ +','#10'"PX c #EF83ED30EF32",'#10'"IX c #EE98E48EE3E3",'#10'"UX c #B8B8C7C7B7' ++ +'B7",'#10'/* pixels */'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXXl ",'#10'"oXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.* ",'#10 ++ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXv ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX-.",'#10 ++ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ ,'oXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX.X&.&.&.&.' ++ +'&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' ++ +'.,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' ++ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' ++ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' ++ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.,.&.&.&.&.&' ++ +'.&.&.&.&.&.&.&.&.&.''.''.<.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.<..X.X' ++ +'XX<.&.1.&.&.&.&.&.XX.X.X,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' ++ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' ++ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.n.:.&.&.&.&.&.&.&.&.&.&' ++ +'.&.&.&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' ++ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' ++ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.&.&.&.,.' ++ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&..XoXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. o : - ' ++ +' ' ++ +' ' ++ +' X % o ' ++ +' # t % ' ++ +' v Y ]. X{.2 ' ++ +' O.%XGXCX&XXX^ * X ' ++ +' ' ++ +' ' ++ +'v ' ++ +' ' ++ +' = : X X - # ' ++ +' &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' o = = . ' ++ +' % * o 4. ' ++ +' o : p = ' ++ +' L #.R o ' ++ +' ) dXgX[.' ++ +'h ) kXKXKXKXPXoXl ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +'- : o X v v ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' % ; o 4. ' ++ +' ' ++ +' * : o R ;.) o ' ++ +' ' ++ +' I `.].+.# % %XKXKX' ++ +'KXLXzX` ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' o o ' ++ +' o v &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. ' ++ +' o ' ++ +' ' ++ +' ' ++ +' 8 k q ' ++ +' 0 K - ' ++ +' %.IXKXKXLXpXB. ' ++ ,' ' ++ +' o o ' ++ +' o - X ' ++ +' ' ++ +' ' ++ +' &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' v o ' ++ +' 4.4. ' ++ +' ' ++ +' ' ++ +' ^ ' ++ +' 4.B.OXPXKXIXoX9. ' ++ +' X i i ' ++ +' ' ++ +' X u 2 o * i : ' ++ +' ' ++ +' ' ++ +' v ^ ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' v 4. ' ++ +' ' ++ +' . i t ' ++ +' U v ' ++ +' ` XX' ++ +'OX''.^ 4.4. q $.[ ; ' ++ +' ' ++ +' * i q o v o o - * ' ++ +' ' ++ +' ' ++ +' X j p o ' ++ +' ^ v &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. ' ++ +' v ' ++ +' X - X ' ++ +' p '' ~ * ' ++ +' U U U U ' ++ +' ^ ' ++ +' 4.4. : a = ' ++ +' ; R T % ' ++ +' X o v ' ++ +' ' ++ +' ' ++ +' w ] ] : ' ++ +' o o &' ++ +'.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' o X o ' ++ +' = p - ' ++ +' u ` ^ X ' ++ +' ' ++ +' U U U U U U * l p v ' ++ +' 4. ' ++ +' X o ' ++ +' o o : o ' ++ +' v ' ++ +' ' ++ +' ' ++ +' - R T % o # X ' ++ +' v v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' e e e ' ++ +' X t X o o 4. o' ++ +' - X ' ++ +' 5 X ' ++ ,' U U U U U ] +Xn.v ' ++ +' 4.4. ' ++ +' o # o 4. ' ++ +' - q % ' ++ +' o ` >.~ o v ' ++ +' ' ++ +' ' ++ +' o o X -' ++ +' X v v &.OXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. e e e e ' ++ +'e o X o o : > 4. ' ++ +' ' ++ +' y J 6 ' ++ +' U U U U U XzX&X' ++ +'~ 4. ' ++ +' o q - 4. ' ++ +' % q % ' ++ +' 2 >.*X&.; ' ++ +' ' ++ +' - 0 - ' ++ +' ' ++ +' o o &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' e e e e e e e ' ++ +' o * X ' ++ +' f o.G o ' ++ +' ' ++ +' U U U U +.''.<.l ' ++ +' 4.4. o X o ' ++ +' 4. ' ++ +' o X ] >.` o ' ++ +' ' ++ +' # I #.I # ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' e e e e e e e ' ++ +' o v 4. ' ++ +' ' ++ +' = d : ' ++ +' o o U o h t ' ++ +' ' ++ +' ' ++ +' ' ++ +' o t o ' ++ +' ' ++ +' # I `.I # ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. e e e e e ' ++ +'e e v 4. ' ++ +' ' ++ +' ' ++ +' > = ' ++ +' o v 4. ' ++ +' 4.4. ' ++ +' ' ++ +' v ' ++ +' ' ++ +' - o % x p 8 K 8 ' ++ +' ' ++ +' &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' e e e e e ^ ' ++ ,' ' ++ +' ' ++ +' ' ++ +' f X.N.J v ' ++ +' 4. ' ++ +' ' ++ +' ' ++ +' v o ' ++ +' o T O.R o ~ .X>.a ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' e e e ' ++ +' v o 4. ' ++ +' ' ++ +' : q ' ++ +' o o.#XsX!.5 v ' ++ +' 4. ' ++ +' 4.4. o % o ' ++ +' ' ++ +' o # o v ' ++ +' # - ' ++ +'; +.%X@.8 ..&X.Xl ' ++ +' > X ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. = * ' ++ +' # ; # ' ++ +' 4. ' ++ +' - R R : ' ++ +' o.#XsXN.2 ' ++ +' ^ 4. ' ++ +' ' ++ +' = p = ' ++ +' X ; o ^ ' ++ +' ' ++ +' % - o R +.R o b O.` = ' ++ +' ' ++ +' = l p o &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' * p p X X - X ' ++ +' ' ++ +' ' ++ +'X x P - o o Q Q' ++ +' Q X.o.X.G Q Q Q v v v ^ V T v ^ T ^ v v v v o v v ' ++ +'4.v o o o ' ++ +' o q = 4. X * o ' ++ +' o ' ++ +' ' ++ +' o ; o X ' ++ +' ' ++ +' * p p o ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' X t t o ' ++ +' o ' ++ +' ' ++ +' o # T V ^ v o v v v v ^ v v Q ' ++ +' % ) ^ Q Q o @ o ' ++ +' o 4. o v L ^ v Q Q T Q ^ v v v ' ++ +' ^ v v v o i ] R o 4.4. ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' X o ' ++ ,' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. o # o o o ' ++ +' ' ++ +' 4. ' ++ +' v v v Q ' ++ +' o o X ' ++ +' 4. ' ++ +' X o v v v ^ y _ v o ' ++ +' 4. ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' ,.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' - i - v ' ++ +' 4. ' ++ +' v v ^ v ' ++ +' o ' ++ +' v 4. ' ++ +' X : % ' ++ +' X u - Q Q Q Q 4.4. ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' % 8 % ' ++ +' ^ ' ++ +' 8 K 9 v ^ v v ^' ++ +' ' ++ +' v ' ++ +' % - o o % X ' ++ +' X * o v v G ' ++ +' . # o ' ++ +' v ' ++ +' ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXOXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. o ' ++ +' v ' ++ +' 4. # I `.I v T ' ++ +' v ^ v ' ++ +' ' ++ +' ^ 4.4. - 9 o ' ++ +' ' ++ +' X *.5 v v v 4.4. 7 u - ' ++ +' Q ' ++ +' ' ++ +' ' ++ +' ' ++ +' &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' v ' ++ +' 4. ' ++ +' ^ ;.+.x v ^ ' ++ +' ' ++ +' v ' ++ +' o o X t : ' ++ +' O o./.!.H o ^ 4.) ] - o ' ++ +' ' ++ +' Q ' ++ ,' ' ++ +' ' ++ +' ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' ' ++ +' v v X 7 o ' ++ +' ' ++ +' 4.4.4' ++ +'. ' ++ +' = x p X f ^.aXsXX.X ' ++ +' 4.o ^ v v v ' ++ +' Q % : - ' ++ +' ' ++ +' ' ++ +' X % o ' ++ +' v o &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' v v ^ ' ++ +' ' ++ +' ' ++ +' ' ++ +' o : = ' ++ +' f ^.aXsXX.@ 4.4. Q Q ' ++ +' ' ++ +'; p ; ' ++ +' ' ++ +' # ; o o & #' ++ +' o V &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' 4. ^ v ^ ^ ' ++ +' o @ o ' ++ +' : ^ v ' ++ +' 4.4. ' ++ +' ' ++ +' X ( !.X.z ' ++ +' v Q Q ' ++ +' o * o ' ++ +' o ' ++ +' o o ' ++ +' # X - g ; ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' o v v o - o ' ++ +' = y * ' ++ +' ' ++ +'T XX%.: ' ++ +' ' ++ +' . 4 5 ' ++ +' 4.4. Q Q Q v o ' ++ +' t t t t t t o' ++ +' o % c P # ' ++ +' ' ++ +' o % # X ; % ' ++ +' &.OXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. ' ++ +' v o' ++ +' v v X ^ ! : @ 5 X ' ++ +' ' ++ +' g ..~ * ' ++ +' 4.4. Q ' ++ +' ' ++ ,' ' ++ +' v ^ ' ++ +'t t t t t t t t : t t t d z y t 5 t t t t t t t t t t t T ;.#.T t t t t t t' ++ +' t t : t t t t ' ++ +' o ' ++ +' &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' o v ' ++ +' v ^ v v 4.c %X&X_ ' ++ +' o ' ++ +' : # ' ++ +' 4. G ' ++ +' ' ++ +' ' ++ +' 4.4. T v ' ++ +' o v t t t t t t t t t t t t d z u t t t t t t t t t t ' ++ +'t t t j _ _ v t t t 5 8 t t t t t t t t t ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' ' ++ +' v v ^ v v.dXfX' ++ +'O. o # o ' ++ +' ' ++ +' 4. Q ' ++ +' ' ++ +' ' ++ +' 4. ' ++ +' v v ^ v o v t t t t t t t t t t t t t t t t t t' ++ +' t q t t t t t t t t 8 t t t t t u g g t t t t t t t t t t t t t t t ' ++ +' ' ++ +' ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. ' ++ +' o v ^ ' ++ +' h #.[.h # - o ' ++ +' ' ++ +' ' ++ +' o v ' ++ +' ' ++ +' 4. ' ++ +' v ^ v v t t t : t t ' ++ +'t t t t t t t t t t t t t t q t t t t t t t t 5 t t t t t 8 5 t t t 5 t t t' ++ +' t t t t t t t t t q q t ' ++ +' ' ++ +' o v &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' % o v v ' ++ +' 8.q ' ++ +' o X ' ++ +' ' ++ +' 4.4. 5 z 5 ' ++ +' ' ++ +' ' ++ +' 4. o o ' ++ +' ^ ^ v t t t t t t t t t t : t t t t t t t q 2 t t t t t t t t t t ' ++ +'8 5 t t t 8 t t t 8 t t t t t t t t t t t t q 2 t t t t t t 8 5 t t 8 t t t' ++ +' ' ++ +' ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' < N 9.j.u.e.e.q.e.e.0.B.9' ++ +'.M 4. ' ++ +' ' ++ +' ' ++ ,' 4. = o' ++ +'./.o.> ' ++ +' ' ++ +' 4. ' ++ +' o ; - t t v v u 5 8 5 t 8 2 q t t t t t t q :' ++ +' 8 Z 8.v.B.F.D.H.L.H.D.B.B.x.D : 8 8 8 t t t t t t t 2 q t t q q q 2 t t t ' ++ +'t t q 8 5 t t t t t t t t t ' ++ +' ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. < 4.e.' ++ +'q.r.a.y.e.q.q.q.q.f.V.e.q.e.e.4.+ o ' ++ +' - h 9 ' ++ +' + 4.u.q.0.N ' ++ +' 4. ' ++ +' = X.(.X.5 ' ++ +' ' ++ +' N i.h.h.9., ' ++ +' 4.4. o ; % 8 t t u t 5 8 t ' ++ +'t v ^ t t t t 8 t t t B v.D.H.P.L.P.L.I.L.I.L.P.P.P.P.I.K.x.s q 2 t t t t t' ++ +' t q 5 u A c.K.P.K.c.Z t t u v l t t t t t 8 5 5 8 t t ' ++ +' 3 c.E.Y.v.2 ' ++ +' ^ &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' . < 7.q.q.q.q.q.w.w.f.q.q.q.q.q.q.q.q.q.q.q.e.4.. ` P R - ' ++ +' h +.K ' ++ +' o ^ ] d , u.w.' ++ +'w.w.w.q.N o u V i ' ++ +' 4. G ( H ' ++ +' ' ++ +' . 9.d.d.d.d.f.d., ' ++ +' o > X o ' ++ +' 5 t t t t t 8 5 t t t t v ^ q t t t B c.P.P.P.P.P.P.P.P.I.P.P.P.P.P.' ++ +'P.P.P.P.L.I.x.a 5 8 t t t 8 q s B.R.Y.P.Y.Y.Y.P.B t O.].#.l t t 5 t t t t t' ++ +' : t t t t t t t t 5 t D P.Y.' ++ +'>X>XY.K.= ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' . 4.e.q.q.q.q.q.f.f.f.q.q.q.q.q.q.q.q.q' ++ +'.q.q.q.q.e.u., %.#.#.g ' ++ +'4. - K 8 ' ++ +' x XX&X*.X . u.r.w.w.r.w.r.0. % = v ,.~ . ' ++ +' 4. v ' ++ +' o ' ++ +' 9.g.f.f.f.f.k.f.8. ' ++ +' 4.4. = ( #XiX^.' ++ +'> 8 t v t t t t t 8 t 5 8 t t t t t u v.T.P.P.P' ++ +'.P.P.P.P.P.Y.P.P.U.P.U.U.U.U.U.U.U.U.R.K.B q t t t 5 2 J.Y.Y.Y.Y.Y.Y.R.R.z.' ++ +'p ;.%X|.T t t 8 t t t t t t t t t t t t t t t t t ' ++ +' B Y.Y.T.;X}.Y.Y.8. ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. < 0.q.q.f.q.q.q.' ++ +'q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.0. ` R R ; o ' ++ +' 4. o @ ' ++ +' l XX&X*.* N w.r.r.r.r.r.r.r. ; : o ' ++ +' p ` l 4.4. ' ++ +' o v ' ++ +' ' ++ +' 1 f.f.f.k.k.k.V.f.9. ' ++ +' . ( aXKXKXBX!. t 5 5 2 ^ t t t t 5 8 t ' ++ +'t t t t t 2 B K.P.U.;X;X;XU.U.Y.Y.Y.U.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.B.5 t 2 t' ++ +' 8 z.Y.R.R.T.R.T.T.R.T.c.q ) ;.@.i t t t t t 5 t t t 8 t t t t t t t t t t ' ++ +'t J.Y.Y.R.R.T.T.Y.c. ' ++ +' X # &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' M e.f.f.f.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q. ^ o ' ++ ,' % : # X f G = ' ++ +' . ^ ` p 7.y.r.r.' ++ +'y.y.t.t.t.N . o X 4. ' ++ +' v ' ++ +' ' ++ +' 8.f.V.C.V.V.V.V.f.8. ' ++ +' @ !.NXKXKXKX#X t' ++ +' t q 8 q v t 5 t t t t t t t t t t C E.P.P.Y.R.Y.Y.Y.Y.Y.Y.Y.Y.Y.R.Y.R.Y.R.' ++ +'R.R.R.R.R.T.T.T.;Xu t t t t R.T.T.T.T.T.T.T.T.T.J.q 5 p q 5 t t t t t 8 t t' ++ +' t 5 t t t t t t 8 t t t t t t t t t t 3 T.T.T.T.' ++ +'T.T.T.T.J. o t 2 o ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' c N e.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q' ++ +'.q.q.q.q.q.q.e. # 8 # ' ++ +' 4. @ J J = ' ++ +' . y.t.p.s.t.p.p.p.t.1 ' ++ +' 4. v ' ++ +' ' ++ +' i.C.C.V.C.C.C.C.C.F .' ++ +' @ !.aXKXKXDX' ++ +'!. t t t 2 q T t t 8 t t t t 5 8 t t t } U.T.Y.Y.R.Y.Y.R' ++ +'.R.T.R.T.:X:X:X:XT.T.T.T.T.T.T.T.T.T.T.T.T.t t t q V T.;X}.}.;X}.;X;X;X;Xz.' ++ +'q t t 8 5 8 t 5 t t t t t t t t t t t t t 5 t q 5 t t t t : t t t ' ++ +' S ;XT.;X;X}.;X;X;Xc. o ' ++ +': : v &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX&. v v V M q.q.q.q.q.q.q.q.q.q.' ++ +'q.q.q.q.q.q.q.q.q.q.q.q.w.q.q.w.q.q.q.6. o ' ++ +' 4. = 5 ' ++ +' , t.p.d.f.a.d.f.d.p. ' ++ +' ' ++ +' ' ++ +' ' ++ +' o Z.C.C.L.L.C.C.C.A., ' ++ +' o ( (.aXaX5Xf t q q q t t t t t t t t t t ' ++ +'t t 8 A R.T.T.T.T.T.T.T.T.T.}.T.T.).T.}.T.T.}.}.:XT.}.;X}.}.;X}.}.m.t t t 2' ++ +' V ;X;X;X;X;X;X;X>X;X;XB t t 8 5 8 t t t t 8 t 5 8 t t t t t t t t 8 5 8 q ' ++ +'5 q t t t t t t t c.;X;X;X>X;X>X>X>Xx. ' ++ +' v o &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. o v ' ++ +' < e.q.q.q.q.q.q.q.q.q.q.e.4.M , + M N u.q.w.e.w.w.w.w.w.u.+ ' ++ +' ' ++ +' N p.s.d.d.' ++ +'a.a.f.a.i. 4.4. ' ++ +' ' ++ +' ' ++ +' 3 A.A.U.5X5X).C.A.F. ' ++ +' . H o.o.f 4. q t' ++ +' t t t t t 5 t t t t t 8 5 8 C R.T.T.T.T.T.;XT.}.}.T.E.z.A n t u s C x.E.>X' ++ +'2X<X<X;X>X;X;XE.s 8 5 5 8 u E.:X>X:X>X:X:X:X:Xx.q q 8 5 q q q t t t t 2 q q' ++ +' t t t t t t 5 t t t t t t t t t t t 5 8 t t 8 t 2 =X:X:X>X:X' ++ +':X:X>X:XZ : p X ' ++ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' ++ +' T v v , e.q.q.q.w.w.q.w.w.w.w.5.. . M 0.w' ++ +'.w.w.w.w.0., ' ++ +' 6 6 6 ' ++ +' 6.a.s.a.a.a.a.a.a.6. ' ++ +' ' ++ +' ' ++ +' D A.A.).pXpX5XS.A.B. ' ++ +' ' ++ +' q t t t t t t 8 t t t t t t t n E.;X;X;X;X;X;X;X;X;X;' ++ +'Xz.a t t t t : t t t t A J.3X>X>X:X3XJ.b 5 u 8 t q 2 { <X:X:X:X:X:X:Xz.q 5 ' ++ +'m 5 q 2 q t t t t t q 5 q t t t t t t t t t t t t t t t t t t t t t t 5 t q' ++ +' u > :X:X:X<X:X:X<X<X:X> ' ++ ,'> ] >.^ &.oXoXoXoXoXoXoXoX*.",'#10 ++ +'"oXoXoXoXoXoXoX>. V 0.w.w.w.w.w.w.w.w.w.u.< ' ++ +' < 6.u.0.N . v o ' ++ +' 6 H 4.4.6 o o ' ++ +' o i.a.a.a.a.d.a.d.a.M o ' ++ +' 4.4. o o . ' ++ +' ' ++ +' . ' ++ +' 9.S.S.).5X5X:XS.S.8. ' ++ +' 4. t q t t 5 q t t t t t t t t t ' ++ +'t J.;X;X;X;X;X;X>X;X3XE.C : 5 t t t t t t t t q q 2 V m.J.J.z.p G L v v q q' ++ +' 5 q C M.3X<X3Xm.C t t q t q q 5 q t 5 8 t q t q 2 t t 8 8 t q q t q 2 t t ' ++ +'q q t q 8 u t t t 8 t t q t 8 Z <X<X<X<X<X<X<X<X}. ' ++ +' = *..X` o &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>. v ^ 5.w' ++ +'.r.w.r.w.w.r.r.r.u., v ' ++ +' , N 7.0.j.t.s.0.N + M 7.j.p.0.N..XQ.6.6 ' ++ +' + 6.j.s.j.6.+ M 6.j.h.s.6.o + 7.h.d.d.d.a.d.d.g.d.' ++ +'d.d.f.l.d.d.d.g.i.N o + N 8.i.i.g.k.h.i.8.N' ++ +' o ^ + D 9.i.F.Z.Z.F.9.D 2 ' ++ +' ' ++ +' M 8.v.B.D.S.D.B.W.D o B.S.S.G.).).I.G.G.F . D B.I.B.D ' ++ +' 3 v.K.K.c.3 4. t t 2 t' ++ +' t 5 L t t t t t t 8 5 t z.>X>X:X>X:X:X:X:X:X}.V q q q t t t t t t t q 5 q ' ++ +'q t 2 q t t a q t t t q V T 2 5 : a s t t t t t t t q 2 q q t t t t 5 q q q' ++ +' q q 2 d } m.=X=X,X2X,X=Xm.} a q q 2 t t t 5 t t t t t t z.<X<X2X1X2X' ++ +'1X1X1Xm. x ~ u ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t ' ++ +' , r.r.w.r.r.r.r.r.r.y.< ' ++ +' ^ o M 7.p.p.s.p.p.p.p.p.p.p.7.+ 7.p.s.s.' ++ +'s.C.8XzX*X1.6 , j.a.a.a.d.s.h.. M i.a.a.d.a.d.d.N ' ++ +' + h.g.d.g.g.f.d.g.f.g.f.f.C.A.A.C.f.f.f.f.g.M N 4.o ' ++ +'M i.f.V.f.V.V.V.V.f.V.V.f.Z.8. X o v M i.A' ++ +'.C.C.A.C.C.A.C.A.A.C.i.3 ' ++ +' . D F.G.S.L.S.L.H.H.H.H.L.D.D L.G.L.L.L.L.L.L.L.+ ' ++ +' . c.L.P.P.P.P.S o D >X<X;XU.Y.P.3 o ' ++ +' t 8 5 8 t t t v 5 8 5 t t t t t V :X:X:X:X:X:X:X<X:X:XC t t' ++ +' t t 5 8 t t t t t t 2 q t t 5 8 t t t t 8 5 t t t t v / m.2X1X1Xm.i t t t ' ++ +'t t t 2 q 5 8 q 5 8 2 q q : { }.1XuXuX8XuXuX8XuX8X8XuX2Xm.y 8 5 t 5 8 t t q' ++ +' t t 5 t M.1X1X1X1XuX8X8XuX} ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t 0.y.r.t.t.t.r.t.t.p.N ' ++ +' v , 0.p.p.p.s.a.p.a' ++ +'.p.p.a.a.a.a.h.7.s.a.a.a.a.V.:XIX*XX.4. 9.d.d.d.a.d.d.d.N 6.f.d.d.' ++ +'g.g.g.g.g.i. i.f.f.f.f.f.f.f.f.f.f.f.C.A.A.S.C.f.f.f.f.f.8. ' ++ +' M i.Z.V.C.V.C.C.V.C.C.C.C.C.C.C.V.F.M - K h o ' ++ +' o v + 9.A.A.A.A.A.A.A.A.A.A.A.A.A.S.D.8. ' ++ +' F F.L.I.L.L.L.L.L.L.I.P.L.I.L.' ++ +'P.P.I.I.I.P.P.P.I.K. 8.R.P.P.U.P.P.K. B ;' ++ +'XuXeX<XY.Y.Y.c.t t t t t t o # # 4.4.8 t 5 8 q 8 5 8 ^ 8 q 8 t t t t q J.' ++ +':X<X<X<X<X<X<X<X1X .t t t t q t t t t t t t t u 8 t t t t t t t 8 5 8 t t t' ++ +' t V ,X1X1X1XuX1Xz.t t t t t t q q 8 5 8 t 5 q t / ,X8X7X7X8X8X8X8X8X0X8X8X' ++ +'8X9X9X8X,X/ u 8 t t t t 5 8 8 q t t 2XuX8X8XuXuX9X9X0Xn ' ++ +' ^ v &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t M t.t.t' ++ +'.t.t.t.t.t.t.0. ' ++ +' o M s.a.a.a.a.a.a.a.a.a.a.a.a.a.d.a.g.d.d.a.d.d.d.L.J.W - 4. + g' ++ +'.g.d.d.g.d.g.f.h.g.f.f.f.g.f.f.f.g.g. 1 f.f.f.f.f.f.V.V.f.f.f.l.' ++ +'C.C.V.C.l.V.V.V.V.V.9. 4.4. . 9.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C' ++ +'.C.C.A.A.M 9 ) I # V 3 F.S.S.A.A.S.A.S.A.A.S.S.S.S.S.S.S.' ++ +'S.8. 8.P.I.P' ++ +'.L.I.I.P.P.P.P.P.P.P.P.P.P.P.U.U.P.U.P.U.U.v. + I.Y.Y.Y.Y.Y.Y.' ++ +'Y.+ K.R.<X1X>XR.T.T.E.t t 5 t t t t t p g 2 q 5 t t q 5 q' ++ +' 5 2 R q 5 q 5 2 q t { 2X<X<X<X2X<X2X<X2XJ.t t t u j p t t 8 5 t t t t t t ' ++ ,'5 8 t t 8 5 t t 5 q q 5 t u =XuXuX8XuXuXeX-XQ t t t t t t 5 t t t t 8 d M.9' ++ +'X8X0X0X0X9X9X9X0X9X9X9X9X9X9X9X9X9X0X/ 2 t t t t t t 5 8 t t V 9XeX8X8X8X8X' ++ +'9X9X0X. v' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX<.t t t t ' ++ +' 0.p.t.p.t.p.p.p.p.p.1 ' ++ +' N a.a.a.d.a.a.d.d.a.d.d.d.d.d.d.d.d.d.g.d.d.d.' ++ +'d.g.f.6. N f.f.f.f.f.f.f.f.f.f.f.f.f.k.f.k.k.V.g. D' ++ +' f.V.V.V.V.V.V.V.V.C.V.V.C.V.C.V.C.V.C.L.Y.D.8. 3 F.C.C.A.' ++ +'C.A.C.A.C.A.C.A.A.A.A.A.A.A.A.A.A.F.2 8 9 3 D.S.S.S.S.S' ++ +'.S.S.S.S.G.S.S.S.S.L.S.S.G.K.o ' ++ +' v.U.P.P.P.P.Y.R.Y.P.P.U.U.P.U.U.U.U.Y.U.U.U.U.U.R.U.S ' ++ +' Z T.T.Y.R.R.R.R.T.Z B T.T.T.T.).T.;X2XJ.t t 8 t t ' ++ +'5 8 t u 8 u q q 4.t q q 2 8 q 5 q q 2 q q q w J.2X2X1X2X2X1X1X1X1XC t q 5 p' ++ +' L j u t t t t t t t t t t t t t t t t t t 8 5 q q } 8X8X0X8X8X0X8X,Xt Q t ' ++ +'t t t t : t t q q C ,X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9XeX9XeX9XeX9Xb t t t t t' ++ +' t 8 5 t 8 .eXtXeX9X9X9X9X9X=X o o o ' ++ +' o v &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t t t 8 1 p.p.p.p.p.p.p.p.a.7. ' ++ +' N d.d.d.d.d.d.f.d.d.d.d' ++ +'.f.f.d.d.f.g.g.f.f.g.f.f.f.f.f.M 8.f.V.f.f.f.f.k.f.V.V.f.V.V.' ++ +'V.V.V.f.V.9. D V.C.V.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C.S.:X8XR.+ ' ++ +' 4. M F.A.A.A.A.A.A.A.A.A.A.S.A.A.S.A.A.S.S.S.A.S.S.9.o ' ++ +' + F.G.S.H.S.L.L.L.G.L.L.L.L.L.L.L.L.L.L.L.L.+ ' ++ +' o v.P.Y.P.Y.Y.Y.T.:X).Y.Y.Y.Y.Y.Y.Y.Y.' ++ +'Y.Y.Y.Y.R.R.R.R.R.F x.T.T.T.T.T.T.T.T.v. x.;X;' ++ +'X;X<X<X<X<X<Xm.q 2 q 5 8 t t q 5 u u t 5 4.4.t t t t t t t t t t t t V 1X1X' ++ +'1X1X1XuXuX1XuXM.q t t 2 q g p t t t t t 5 8 t t t t t t t t t t t t t 8 u 2' ++ +' M.9X9X9X8X9X9X9X9XV t t t t t Q t t t 8 / 0X9X9XeXwXwXwXwXwXwXwXwXwXwXwXeX' ++ +'eXwXeXeXtXeXeX@X2 2 q q t t t t 5 8 M.tXtXtXrXwXwXwX9Xm. ' ++ +' o = o &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t 5 6.a.a.a.a' ++ +'.a.a.a.a.a.M ' ++ +'F f.f.f.g.g.f.g.f.f.f.f.f.f.f.f.f.k.f.f.k.k.f.f.f.f.f.g.+ 4. i.V' ++ +'.V.f.C.V.V.V.V.V.C.V.V.C.V.C.C.C.V.3 1 C.C.C.C.C.C.C.C.C.C.A.C.' ++ +'A.A.C.A.A.A.S.:X8X . 4. 3 A.S.A.S.A.S.A.S.A.S.S.S.S.S.S.S.S.S.S' ++ +'.S.S.S.S.S.S.3 v.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.I.P.I.I.' ++ +'I.K. 8.Y.Y.Y.Y.Y.R' ++ +'.Y.;X:X;XT.Y.R.R.R.R.T.R.T.T.T.T.T.T.T.T.T.+ o B.;X).).;X;X;X;X' ++ +';XA c.;X;X<X<X<X2X<X2X} t q q 8 5 8 t t d G z t 8 t t t t t' ++ +' t t t t t t t t q M.8XuXuXuX8X8XuXuX8X{ 8 t t u t q 5 t t t t t t t t t t ' ++ +'8 t t t t t t t t t x V p 7XwX9XwX9X9X9X9X9X/ 5 8 5 t t t Q ^ v / 9XeXwXeXe' ++ +'XeXeXeXeXeXtXtXeXtXtXtXeXtXtXtXtXtXtXrXtXV u t t t t t t t t 6XrXrXrXrXrXrX' ++ +'rXrX=.8 t t t t t t t t t t t t t t t q 2 u u p u u t t t t t t t t t t t ' ++ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t ' ++ +'8 t h.a.a.a.a.a.a.d.a.h. ' ++ +' / g.f.f.f.f.f.f.f.f.f.f.k.k.k.k.k.V.V.f.V.V.f.V.f.V.' ++ +'V.f.F. 4. Z.V.C.C.S.H.L.L.G.L.L.C.C.C.A.Z.V.F.F ' ++ +' D F.Z.A.A.A.A.A.A.A.A.A.A.A.A.A.S.A.F.c.C * 4.4. , F.S.H.P.L.S.S.' ++ +'G.S.S.S.H.S.G.G.S.S.L.L.L.L.L.L.L.L.L.D 3 L.I.P.I.P.I.P.I' ++ +'.P.L.P.P.P.P.P.P.P.P.P.P.P.D ' ++ +' 3 R.R.Y.}.}.R.T.T.T.T.R.T.T.T.T.T.}.T.}.T.}.}.}.}.}.}.}.J. ' ++ +' o ).;X;X;X>X;X>X;X>X3 3X;X1X1X1X1X1X1X1XV t 5 q q q ' ++ +'5 t t l H G u 5 t 8 t 4.2 2 2 u t t t t 2 t 2X8X8X8X0X8X0X8X0X,X8 t t t t t' ++ +' t t t t t t t t t t 8 t 5 t 8 t t t t t t a v ^ ^ eX9XwXeX9XwXwXwX9Xs 8 q ' ++ +'8 t t t t 2 v 7XtXtXtXtXtXtXtXtXtXtXtXrXtXtXrXtXrXrXrXrXrXrXrXrXrXn.t t t t' ++ +' t t t t a rXxXxXhXxXxXxXhXxXQ t 5 : t t t t t q t 8 p g u 8 q 5 q t u 5 t ' ++ +'t 8 : t t t t t t t t t t t t t t t t &.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t 8 5 5 t t M d.d.d.d.d.g.g.g.g.6. ' ++ +' . i.U.f.V.f.V.f.f.f.C.i.D , ' ++ +' o M i.V.V.C.V.V.C.C.V.C.C.C.9. 3 C.C.C.L.L.L.L.L.L.L.L.L.I.I.' ++ +'Y.B.8.a : t t t t t t : o 9.A.A.S.S.A.S.S.S.D ' ++ +' B.L.H.P.Y.P.L.G.L.L.D.v.F + B x.K.L.L.L.L.L.L.P.L.L.c. ' ++ +' v.P.<XP.P.P.P.P.P.c.2 . + 3 S v.K.Y.Y.U.x. ' ++ +' o J.}.}.}.}.}.T.T.T.;XE.x.3 . 2 x.T.;X}.' ++ ,';X;X;X;X;X>X;X;Xz. 2 >X>X:X:X:X>X>X:X>Xo t V 1X1X1' ++ +'X1X1XuX9X9X2Xu t q 2 q t t t t t d y t t t 5 t 4.N t T 8 t t t t 8 / 9X0X0X' ++ +'0X0X0X0X0X0Xm.t t t t t 8 t t t 5 8 t t t t t 5 t t t 5 t t t t t t t g b ' ++ +'.tXtXeXtXtXtXeXtX,X5 8 5 q : t q 2 q -XrXrXtXxXxXxXrXrXrXrX@X{ s u V b.yXrX' ++ +'hXrXhXhXrXxXxXxX-X8 5 q 8 t t 5 t / xXxXxXxXxXxXcXxXvX^ t u t t t t t t q 2' ++ +' u x R x t 2 q 2 t t 5 8 5 t t t t t t t t t t t : t t t t t t t &.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 8 6.g.g.g.f.g' ++ +'.g.f.g.g.M D V.' ++ +'Y.V.V.V.C.V.V.f.D . 9.V.C.C.C.C.C.C.C.C.C.D 9.C.C' ++ +'.L.P.L.P.L.P.I.P.P.I.K.x.B q t t t t t t t t t t 8 F.H.S.S.S.S.S.' ++ +'S.S.M o 4. D L.L.L.I.P.P.L.L.P.K.3 = J o.V K.L.P' ++ +'.P.P.P.P.P.P.B. I.U.<XU.Y.Y.Y.Y.Y.+ 3 B 4 ' ++ +' } }.}.:X<X:X}.;X;' ++ +'X>Xc.o Z ;X>X>X:X>X>X:X>X:X:XA A <X:X:X<X:X:X<X3X' ++ +'J. t t } 8X8X1X8X1X9XwX9X=X: 8 t t t t t 5 t t u 2 q q t t t 8 5' ++ +' v 8 5 t q t t t b.9X9XqXqX9X9XwX9XwX .t t 8 5 t t 5 t t t t t t 8 t t t t ' ++ +'t t t t t t t t t t t t n.hXtXtXrXtXrXtXtX@X8 t t t 8 5 8 u =.rXhXrXrXrXrXc' ++ +'XxXrXyX/ 5 q 2 q 8 5 V yXxXxXxXxXxXxXxXxX6Xq q 8 t 5 q 8 8 n.xXcXxXcXcXcXcX' ++ +'mXMXoX] t t t t t t t t 8 u x L g t t q 5 q 8 t t t t t t t t t t t v t t t' ++ +' t t t t t 8 t t &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.L x u t ' ++ +'t t t t t 9.f.f.f.f.f.f.f.f.f.2 X ' ++ +' . g.Z.R.C.C.C.C.C.C.D . F.C.C.A.C.A.C.A.' ++ +'A.C.3 2 c.A.P.P.P.P.P.P.P.P.Y.K.C 5 2 t t t t t t t t t t t t t' ++ +' t o , S.L.L.L.L.L.L.L.L.. 4. . K.L.P.L.P.P.P.P.P.' ++ +'B.. = ( ( 6 D P.P.P.U.P.U.U.Y.K. 3 Y.Y.1XY.Y.T.R.Y.Y' ++ +'.F ' ++ +' X R.;X;X:X1X<X}.;X;Xm. m.:X:X:X:X:X:X:X:X:X3 o -' ++ +' % m.<X:X<X<X<X<X<X<Xz. t t t t t t m.8X0X8X0X0X8X9X9Xm.q q 8 t t t ' ++ +'t 8 t t 8 5 q 5 t t t t 8 ^ 4.5 t t t t 2 -XwXwXeXqXqXwXeXtXrX` g t t t t t' ++ +' 8 t 8 t t t t t t 8 t t t 8 t t t t t t t t t t -XrXrXrXrXrXrXrXtXb.5 t 8 ' ++ +'t q 5 5 u yXxXxXxXxXxXxXxXxX6Xp 2 q q q q 8 8 : b.xXcXxXcXxXcXcXcXyX2 8 5 t' ++ +' q 8 5 8 @XcXcXcXcXcXcXcXnXzX*X*.t t t t t t t t t 5 u p t t t q t q 5 t t ' ++ +'t t t t t t t t u v t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10 ++ +'"oXoXoXoXoXoXoXXX`.+.g t 8 5 t t t g.f.k.f.V.f.V.f.V.V.- - o ' ++ +' D C.C.C.C.C.C.A.C.8. ' ++ +' 8.A.A.A.A.A.A.A.A.A. 5 8 : K.U.U.U.U.U.U.Y.Y.Y.v.u t t 8 ' ++ +'t t t t t t t t t t t t t t t Z P.L.L.L.L.L.L.L.B. 4. o' ++ +' . D P.P.P.P.P.P.U.P.K.2 = 5 4 Y.Y.Y.Y.Y.Y.Y.R.J. ' ++ +' B T.T.1XT.T.T.T.T.T.T.x. t p # ' ++ +' } :X:X:X:X<X:X:X:XJ.. S <X' ++ +'<X:X:X<X<X<X2X<Xo - g 8 o J.1X2X2X2X2X1X1X1XC t t : 8 t 8 q -X9X0X9' ++ +'X0X9X9X9X9X .8 t t t t t t t t t t t t t t 8 5 t t ^ 8.) g t t t t 7XeXeXeX' ++ +'tXtXtXtXtXhXQ g u 2 t t t t t 5 t t 5 t t t 5 t t t t t t t t t t t t t a t' ++ +'XrXxXhXxXxXxXxXxX^ t t u 2 5 8 2 b.rXxXxXxXxXxXxXxXrXv t 8 8 G v ^ t q 8 V ' ++ +'cXcXcXcXcXcXvXcXyXt t t q q t t t yXcXbXbXbXbXbXbXmXOX>.^ 2 8 5 t t t t t t' ++ +' t t 8 t 8 t t t 2 q t t t 8 t t t 8 t t v ^ t t t t t t q t t t 8 5 t t <.' ++ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXXX`.+.g t t t t t t q . V.V.V.V.C.V' ++ +'.V.V.C.Z.X X o V G = F.A.A.' ++ +'A.A.A.A.A.F.. D S.S.S.S.S.S.S.S.B. + u 8 8 s Y.Y.Y' ++ +'.Y.Y.Y.Y.Y.Y.c.q 2 t t 5 t t t t 8 5 t t t t t t t t t t 8.P.L.P.P.P.P.P.' ++ +'P.B.4. z ( f B.T.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.T.T.T.R.R.T.Y.R' ++ +'.T.T.R.T.R.T.B. 3 ;XT.T.T.T.T.T.;XT.T.T.E.A o = ' ++ +''' ,.^ J.<X:X:X:X<X:X<X<X' ++ +'B B <X<X2X2X2X2X2X2XJ. o ; % + 1X1X1X1X1XuX0XuX1' ++ +'X2 t t t t 5 8 5 q 0X9XwX9XwX9XwXwXeXV t t 5 t t t t t t t t t t t t t t t ' ++ +'t L ;.''.! t t t p rXtXtXtXtXtXtXtXtXrXg t t q t 8 5 t t t t t 8 t t t t 8 ' ++ +'5 t t 5 8 t t t t t t t ^ xXxXxXxXxXxXxXxXhXu t t t q q q q 6XcXcXcXcXcXcXc' ++ +'XcXcXcXcXcXcXcXcXcXcXcXcXbXcXcXbXcXbXbXbXcX6X8 5 t 2 q t t l bXbXbXbXbXmXbX' ++ +'mXnXV u q q t t t 5 8 t 5 8 t t t t 5 t t t q q t t t 5 t t t 5 t t L 5 t t' ++ +' t t t t 2 u 8 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.P P q ' ++ +'q q 2 5 8 t t B C.C.C.C.C.C.C.C.C.C. 5 ..-.b ' ++ +' 3 A.S.A.S.A.S.A.S.8. = - o D S.S.S.S.S.S.' ++ +'H.H.8.o X 5 j t t t A Y.R.Y.L.R.R.R.R.Y.s : q 2 q 5 q 2 t t t t t t t 5 8 t' ++ +' t t t t B.P.U.U.U.P.P.U.Y.D = o.(.o.B Y.Y.R.Y.Y.Y.T.Y.R.' ++ ,'T.R.T.R.T.R.;X:X;X;X}.T.T.T.T.T.T.;XT.T.z. E.;X;X;X;X;X;X>' ++ +'X;X;X>X>X>XJ.B = *..X[ ' ++ +' 2 <X<X<X<X<X<X<X<XJ. B 1X1X1X1X1X1X1X1Xz.o ' ++ +' Z 8X8X1X8X8X0XtXeX7X: 8 q q 5 t t t C eXeXeXeXeXqXtXtXwXt t t t t t ' ++ +'t 8 t t t t t 8 t t t t t t l @.#.8.4.t t V rXrXrXrXrXrXrXrXrXrX8 t t 5 t t' ++ +' t t t t 8 t 5 t t t t t t t t t t 5 8 t t t t 8 =.cXxXcXcXxXcXcXxX6Xt t t ' ++ +'t t t t G cXcXcXcXcXcXbXcXbXcXbXcXbXbXbXbXbXbXbXbXbXmXnXbXbXbXbXbXbX@X8 t t' ++ +' t t t t | bXnXnXmXnXnXnXmXhX8 8 t t t t t t t t t t t t t t t t t t t t t ' ++ +'t 5 t t t 8 5 t t t t t t t t t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.2 u t 5 q q 8 5 t t Z L.C.C.C.C.C.C.A.C.C.+ ' ++ +' > ^ ~ a 8.S.S.S.S.S.S.S.S.3 o q q 5 J J' ++ +' = D G.L.L.L.L.L.L.L.F X v p t t t z.R.T.T.T.T.T.T.T.J.8 8 t t q q ' ++ +'q q t t t t t t t t t t t t t 8 u T.;X>XY.Y.Y.Y.Y.T.3 X J X' ++ +'.H S T.T.T.T.T.T.T.T.T.T.T.T.}.T.}.;X}.:X<X:X}.}.;X;X;X;X;X;XT.A ' ++ +' Z >X>X;X>X>X>X>X:X>X:X:X:X:X:Xm.+ d L 2 ' ++ +' } 2X2X<X1X1X1X1X2X{ C 1X' ++ +'uX1XuXuXuXuX8XC } 8X0X8X8X0XwXtXeX-Xt 2 q t 8 t t t =.eXpXcXv' ++ +'XtXtXtXrX-Xt t t t t t t t t t t t 5 t t t t t t t t p l 2 t t t / hXhXhXxX' ++ +'xXxXxXxXxXxXg t 8 q t t t t t t t t 8 t t t t t t t t t t 8 5 t t t t 2 @Xc' ++ +'XcXcXcXcXcXcXxX@Xt t t t t t t n.bXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXmXbX' ++ +'bXmXnXnXnXmXnXmX=.t t t t t t t XXmXnXnXnXnXnXnXnX*X5 8 t t t t 2 q t q t t' ++ +' t t t t : t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 5 8 t t >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t q 2 q q t t C L.L.A.A.A.A' ++ +'.A.A.A.D.M o X B.H.H.H.' ++ +'L.>XL.H.D. * % f X.!.z x.L.I.I.L.P.P.L.P.2 q u t q t t J.R.T.}' ++ +'.T.}.}.}.;Xz.5 8 t t t t q t t t t t t t t t t t t t t 5 V >X>X>X>XR.R.T.T.' ++ +'R. @ 5 o c.T.;X;XT.;X).).;X}.;X;X}.}.;X;X;X}.<X<X:X;X>X>' ++ +'X;X;X>X>X;XT.o } :X:X:X:X:X:X:X:X:X<X:X<X:X:X3Xa ' ++ +' m.uX1X1X1X1XuX1X1X2 ' ++ +' z.uX8X8X9X9X0X8X9X2 o M.0X0X9X0XeXtXtXeXb.' ++ +'t t t t t 8 t w M.cXZXSXnXcXrXrXrXn.t t t t t t t 5 t t t t t t t t t t t t' ++ +' t t t 8 u q 8 / xXxXxXxXxXxXxXxXxXxX/ t 5 t t t t t t t t 8 5 t t t t t t ' ++ +'8 t t t q q t 5 t t 8 6XcXbXcXbXbXbXbXbX*.8 t t t t q q *XcXbXbXbXbXbXbXbXb' ++ +'XmXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXp : t t t t t t 6XZXZXZXZXZXZXZXZX' ++ +'n.8 5 t t t t q 5 q q t t t t t t t t t t t t 8 t t t q 2 t t t t t t t t t' ++ +' t t t t t t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 5 8 t ' ++ +'5 q q q t 8 Z P.P.S.A.S.S.S.A.S.S.D ' ++ +' F.L.L.L.L.>XL.P.B.o 5 J ( 5 B.P.P.P.P.P.P.P.' ++ +'K. 2 q t t q 2 u T.;X;X;X;X;XY.;X;XA 8 5 t t t t t t t t t t : t t t 8 t t' ++ +' t t t } :X:XT.T.:XT.T.;XB. E.;X;X;X;X;X;X>X;X;X;X' ++ +'>X>X;X>X>X:X>X:X>X:X>X:X>X>X:X:X:X:X} =.J.<X<X<X<X<' ++ +'X<X<X<X<X<X<X<X<X3X2 ' ++ +' =XuXuXuX8X8X8X8X8X. -X9X9X9X9XeX9X9X,X ' ++ +' ,X9XwX9XtXtXrXrXtX{ t t t t t q q : 7XbXDXLXBXbXrXxXrX .u t t t t t t ' ++ +'8 t t t t 8 t t t t t t v t t t q 2 q 2 8.xXcXcXxXcXcXcXcXcXcXn.t t t t t t' ++ +' t : t t q 5 t t t t t t 5 t t t q q t 8 8 8 s mXbXbXmXbXbXbXmXbXV t t t t ' ++ +'t 8 : hXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXZXnXZXZXnXZXoXv ^ t t t' ++ +' t t t MXZXZXZXZXZXZXZXSX'' t 8 t 8 5 t q q 2 q t t t t t t t t t 8 5 t t t' ++ +' t t t u 8 t Q t t t t t t t t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t 8 t t 8 t t t t s U.U.S.S.S.S.S.H.S.S.B. ' ++ +' + P.P.P.P.P.:XP.P.B. * @' ++ +' 2 U.U.Y.Y.P.Y.Y.Y.v.5 8 t 8 t t t V >X>X;X>X>X>XR.>X>Xs t t t t t t ' ++ +'t t 8 5 t t t t t t 8 t t t t t m.:X<X<X<X<X<X;X>Xx. ' ++ +' >X;X>X>X>X>X:X>X:X:X:X:X:X:X:X:X:X:X:X:X<X:X<X:X<X<X<XJ.} ' ++ +' V o C J.1X<X2X2X1X1X1X2X1X1X1X1X}.o ' ++ +' ,X0X8X8X0X0X8X0X8X B 9X9X' ++ +'9X9XeX9X9X9XM.o 2 wXeXeXrXrXrXrXrXrXp t t t t t t t s hXbXZXDXS' ++ +'XbXxXxXxXb t t t t t t t t t 5 8 t t 5 t t t t t T u 2 t q t t t b cXcXcXcX' ++ +'cXcXcXcXcXcX6Xt q t t t t t t t t t 5 q t t t t t t t q q q 2 t t t t ` mXm' ++ +'XnXmXnXnXmXmXMXt t t t t t t t nXnXnXnXZXnXnXZXZXnXZXnXZXnXZXZXZXnXZXZXZXnX' ++ +'ZXZXZXZXZXMXn.q t t t t t t q G AXSXSXSXSXAXAXAXAXp q q q q t t q q t t t t' ++ +' t t t t t t t t t t 5 8 t t t t t t Q t t t t t t t t t t t 5 t t t t t >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5 t t 5 t t t t a Y.Y.H.H.L.L' ++ +'.L.L.L.L.L.3 , P.P.P.P.' ++ ,'U.U.<XY.K. v.Y.Y.Y.Y.Y.Y.Y.R.z.8 q 5 5 t t 5 } >X:X:X:' ++ +'X>X:X:X:X3Xt t t t t t 8 t 8 5 8 t t t t t t 5 t t t t 4.E.:X<X<X<X<X<X<X>X' ++ +'C + :X:X:X:X:X:X:X:X:X o ' ++ +' T o B M.1X1X1X1X1X1X1X1X8X0X8XC ' ++ +' 9X9X9X9X9X9X9X9X9Xo ' ++ +' @X9XeXeXwXeXeXeXeXb. / eXtXhXhXxXxXxXxX@X5 ' ++ +'t t t t t t t ` xXvXbXnXbXvXpXcXyXt t t t 5 t t t t t t t t t 8 t t t t t v' ++ +' t q q 5 g c g p vXbXcXbXbXbXbXbXbXbXbX/ t t t t t t t t t t 8 t t t t 5 8 ' ++ +'t t 2 q 5 q t t t t n.mXnXnXnXnXZXnXmX6X2 8 t t t t t p ZXZXnXZXZXZXZXZXnXa' ++ +' 5 8 t t q 2 t t t t t t 5 q t t 8 5 w : t 8 5 t t t 2 =.AXAXAXAXAXHXLXHXMX' ++ +'8 5 8 q 2 t t q 2 q t 5 t t t t t t t t t t t t t t t t t t Q t t t t t t t' ++ +' t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t ' ++ +'t t t t 8 t t E.R.R.L.L.L.L.L.L.P.P.B.+ ' ++ +' 3 U.U.U.Y.Y.Y.Y.Y.Y.4 B R.T.R.T.R.T.T.:X:X' ++ +'C t 5 t q t : u m.:X:X<X:X<X:X:X<XB.t t t t t t 5 t t 5 q t t t t 5 t t t t' ++ +' t t y 2X1X2X2X1X1X1X1X1X2 . :X:X<X<X<X<X<X<X<Xa ' ++ +' o v 2' ++ +' m.uX1X8X8XuX8X9X9X0XM. t t t t t t t t t t t q q 2 ' ++ +' 9X9X9XqX9XqXwXwXwXB / eXtXtXtXeXtXtXtXtXV ' ++ +' b.rXxXxXxXxXxXxXxX3.t t 5 t t t 5 t @XcXvXvXcXcXcXcXcX-Xt t t t 8 t 8 t ' ++ +'t t t t t 5 t t 5 q t v t t t t t v ! l q MXbXbXbXbXmXbXbXmXmXmXyXp t t t t' ++ +' 2 u t t t t t t 2 8 t t t t 5 q t t t t 8 5 &XnXnXZXZXZXZXnXZX.Xt t t t t ' ++ +'t t p ZXZXZXZXZXSXSXSXAX^ 8 8 t t q t t t t t t t t t t t 2 q t t t t q t t' ++ +' t v &XHXAXHXHXHXHXHXLX&X5 q 2 5 q t q 5 q t t 8 t 8 t y v u 5 t 8 t t t t ' ++ +'8 5 t t t Q t t : t t t t t t t t t t t 8 t t t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t c.T.T.T.P.P.P.P.P.P.P.P.B.+ ' ++ +' > F 2 > R.R.Y.R.Y.R.R.Y.Y.x. ' ++ +' , E.T.T.T.T.T.).:X:X:Xy t 8 t t t q m E.<X<X<X<X<X<X<X<X9.u t t t t t t ' ++ +'t t t t t t t t 8 t t 4.4.t q A 1X1X1X1XuX1X1X1X,X2 u ' ++ +' <X2X2X<X2X<X2X2X1Xz. o A m.M.z.> ' ++ +' { 8X0X0X0X0X0X9X0X,X p p t t t t 8 t t 8' ++ +' 5 t q q t t 0XeXeXtXeXtXeXtXeXM. a 9XtXrXtX' ++ +'rXrXrXrXtXrX> @XcXxXxXcXxXcXcXxX| t t 8 t t t 8 V vXcXcXcXcXb' ++ +'XcXcXmXn.t t t t t t 5 q t t t t t 8 t t 8 5 q a t t t t t g x i u @XnXmXmX' ++ +'nXmXnXmXnXnXmXZX6Xb t t q q 8 t t t t t t q V ` ^ t t t t t t 8 t t t MXZXZ' ++ +'XZXZXZXZXZXAX| t t t t t t t q mXAXAXAXAXZXAXAXAXOXt 5 t t t t t t t t t t ' ++ +'u :.*X6XoXp q t t t 5 : t t t zXHXHXHXHXHXHXHXHX,.q q q 8 5 q q q 2 t t t t' ++ +' 5 8 '' >.` q t t 5 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t >' ++ +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t t 2 } }.}.}.U.' ++ +'U.U.U.U.U.U.Y.U.I.x.F . o + 2 F S z.B.E.R.Y.Y.K.2 . T.T.T.T' ++ +'.T.T.T.T.T.T.B o 3 E.T.T.;X;X:X<X1X<X<X=Xq t t 8 t t t s <X2X2X<X' ++ +'2X2X2X1X1XC t q q 5 q q 5 t t t t q q 5 q q 4.2 u t t t b.1X8X8X1X8X8XuX8X@' ++ +'X2 8 t t J.1X1X1X1X1X1X1X1X1XA . A =X' ++ +'uX8XtXpX-X@ 2 s X o 2 9X9X9X9X9X9XwXwX,Xq' ++ +' 8 t i l p t t t t t t t t t t t t t t t 7XtXtXrXtXrXtXrXrXhX' ++ +'/ V 7XhXhXhXhXxXhXhXhXhX7X u 5 8 t 6XvXcXcXcXcXcXcXcX6X8' ++ +' 8 t q 8 8 v yXbXcXbXbXbXbXbXbXbXV t t t q t t t t 5 t t t 5 t t t t t 2 q ' ++ +'q q 8 5 t t u q t =.mXnXnXnXZXnXnXnXZXnXnXZXmXoX( s t u d Q | n.OX6XZXSXZXZ' ++ +'XMX! t t t t 5 t t c ZXAXSXAXAXAXZXAXAXl t t t t t t t t zXAXAXAXAXAXAXHXAX' ++ +'AX>.w t 5 t t t t t t y >.MXHXHXHXHXzX2 t t t t t t t u HXLXHXLXLXKXLXLXKX~' ++ +' t t t t t t t 5 8 t t t t t p *..X2.t t t t t 8 t t t t t q q t t t t t : ' ++ +'t t t t t t t t t 5 8 t >.oXoXoXoXoXoXoXOX>.",'#10'"oXoXoXoXoXoXoX>.t t t 2' ++ +' 8 5 t t t t t a }.;X;XY.Y.Y.Y.Y.Y.R.Y.Y.R.Y.Y.Y.R.R.R.R.R.R.T.T.T.T.T.T.T.' ++ +'E.+ E.T.;X;XT.;X;X}.;X;X}.x.3 o + 3 z.;X;X>X>X>X:XqXpXtX1X<Xm' ++ +'.2 t t 5 t t t / 1X1X1X1X1X1X1XuXuXy t t 2 q q 5 m t t t t q 2 q 2 N 4.8 5 ' ++ +'t t t M.8X8X8X8X0X8X8X0Xm.t t t t t z.uXuXuXuXuXuXuXuX8X8' ++ +'XM.C > . . > s } M.,X0X9X8X8XpXbXxXV a ,X9X9X9X-Xm.} B 2 . ' ++ +'o 2 -XwXwXwXwXwXeXwXwX-Xq t t t i i t t t t t t t t t t t 8 5 t t t t t t t' ++ +' t t @XhXrXrXrXrXrXhXhXhXtXn.a o @ b M.hXxXxXxXxXxXxXxXxXxXxX@X q 2 q ' ++ +'t t yXbXcXbXbXbXbXbXcXbX6X/ u 2 b n.MXbXbXbXbXbXbXmXbXmX6Xt t t 2 q t t t t' ++ +' 8 t t t 8 t t 8 t t q 5 q 5 5 8 t t 2 q 5 j mXnXZXZXnXZXZXZXZXZXZXZXZXZXZX' ++ +'SXZXZXSXZXSXAXAXZXSXSXSXSXSXMXl t t t t t q %.AXAXAXAXAXAXAXAXMX5 t t t t :' ++ +' t t 5 .XAXHXHXHXHXHXHXHXHXHX6X*.b i i b ` XX*XPXHXLXHXHXLXLXLX! t t t t t ' ++ +'t t ~ KXKXKXKXKXKXKXKXHXu t t t t t t t t t t t t t 8 5 V ] v t t t t t 5 t' ++ ,' t t t t t q t t t t t t t t t t t t 8 5 t t t t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t t t t t t 8 t t 5 8 z.:X>XR.R.T.T.T.T.R.T.T.T.T.T.T.T.' ++ +'T.T.T.T.T.).T.T.T.;X).T.;XS o c.3X;X;X;X;X;X8X>X>X>X>X>X>X>X>X;' ++ +'X>X:X>X>X>X5XpXVXpX8X1X} q t t t t w & z.1X1XuXuX1X1XuXuX=Xq t 4.u 5 8 m 5 ' ++ +'t t 5 8 2 u 2 q t t t t 8 t 8 ,X9X0X0X0X0X0X9X0X{ t 2 q t t t ' ++ +' 2 0X8X8X8X8X8X8X8X0X0X8X0X0X9X0X0X9X0X0X9X9X9X9X9XtXpXhXs ' ++ +'@ ,X9XeXwXwXwXwXeXtXeXeXeXtXeXeXeXeXeXeXtXrXhXn.t t t u q q 5 t t t t 2 q 5' ++ +' t t t t t t t t t t t t t u n.hXhXxXxXxXxXxXxXxXxXxXxXxXxXxXcXxXxXcXxXxXcX' ++ +'xXcXxXcXcX . u 2 t t t t 6XbXbXbXbXbXbXbXmXbXmXbXbXMXnXmXbXmXmXnXnXnXnXn' ++ +'XmXnX` 5 t t t t t t t t t t t t t t t t t q 2 q t t 8 t t 8 t 5 t t oXZXZX' ++ +'ZXZXZXZXZXZXAXSXSXSXSXSXAXAXAXSXAXAXAXAXAXAXAXAXAXAXAXXXu 2 t t 8 5 oXHXAXA' ++ +'XHXHXAXHXHX*Xq q t t t t t t 8 ^ HXHXHXHXHXHXHXHXLXHXLXHXLXHXKXKXKXKXLXKXKX' ++ +'KXKXKXKXKXKX` t t t t t t t ,.KXKXKXKXKXKXKXKXzXT t t t t t t t t t t t t t' ++ +' t t t t 5 q t t t t t t t t t t q 2 q 2 t t t t t t t t t t 5 8 t t t t >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t 8 8 s 3X:XT.T' ++ +'.T.T.T.}.}.}.}.}.}.}.;X}.;X;X;X;X;X;X;X;X;X;X>X;X;Xz. C >X:X>X' ++ +':X:X:X0X:X>X:X:X:X>X:X:X<X:X:X:X<X<XuXrXpXtXuX1XV q t t t t q & }.8X8X8X8Xu' ++ +'X8X8X8Xm.t t 4.t t t q m t t t t 4.N q t t 8 5 t 5 8 n wX9X9X9X9X9XwX9XwXd ' ++ +'q q t 8 5 t t y m o m.8X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9X9X9XwX9' ++ +'XeX9XeX9XX b.tXtXeXeXeXcXtXtXtXtXtXtXtXtXrXtXrXrXtXrXxXhX3.t ' ++ +'t t 2 q 5 8 t t t t u 8 8 t t t t t t t t 8 5 t t t t V xXxXxXcXxXxXxXcXcXx' ++ +'XcXcXcXxXcXcXcXcXcXcXcXcXcXcXcXcXcXz 8 t t t 8 5 @XmXnXnXmXnXmXnXmXnXmX' ++ +'mXnXnXnXnXnXnXnXnXVXnXnXnXZX@X5 8 t t t t t t t t t t t t t t t t t t T q t' ++ +' t t t t t t 8 t t b mXZXSXAXAXSXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXHXAXAXHXAX' ++ +'HXHXOX5 q t t t t 6XHXHXHXHXHXHXHXHXXX: t t 5 t t t t t : *XKXLXLXKXKXKXKXK' ++ +'XKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXLXp t t t t t t t &XKXKXKXHXJXJXKXKXOXt ' ++ +'t t t 5 t t t t t t t t t t t 8 5 q q t t t t t t t t Q Q 5 q q q t t t t t' ++ +' t t t t t q t t t t t >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.t t t t ' ++ +'t t 5 8 t t t t t { :X}.}.;X;X;X}.;X;X;X;X;X>X;X;X>X;X>X;X>X>X>X:X>X>X:X>X:' ++ +'X} 3X:X:X:X:X<X9X<X:X<X:X<X<X<X<X<X<X<X<X<XuX8X8X9X8X7X,X8 ' ++ +'q t t 2 u q t 2X9X8X0X0X0X0X0X0X .t t t G -.^.!.^ t u 4.t t t t t t t t 8 5' ++ +' t } wXwXwXwXwXeXeXwX7Xt t t t q q q 5 q 2 t > 7X9X9X9X9XeX9X9X9X' ++ +'eX9XwXwXeXeXwXeXeXwXeXeXeXeXtXrXb. ,XtXrXrXrXrXcXrXrXrXrXrXr' ++ +'XhXrXrXrXrXhXhXxXxX@X8 t t t t 8 q q q t 5 t t t t t t 8 5 t 8 t t t 5 t t ' ++ +'t t t 6XbXbXbXbXcXcXcXcXcXcXcXcXcXcXbXcXbXcXbXbXbXcXbXmXbXbXo 8 5 t t t t t' ++ +' q =.nXnXnXnXnXnXnXZXnXnXZXZXnXnXZXZXnXZXZXZXZXZXAX6Xp q q t t t t t t t t ' ++ +'t t t t t t 8 t t t T q 5 t t t 5 t t t t t q .AXAXAXAXAXAXAXAXAXHXAXHXHXH' ++ +'XAXHXHXHXHXHXHXHXHXHXHXHXHXHXXX5 t t t t u PXHXHXLXLXLXLXLXLX` 8 q q q q 8 ' ++ +'5 8 t t v PXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXJXKXOXq t t t t t t' ++ +' q zXKXJXJXJXJXJXJXJX&.t t t t L ^ 8 2 q t t t t t t 8 5 t u 2 t t t t t q ' ++ +'t t Q t t t t t t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX<.",'#10 ++ +'"oXoXoXoXoXoXoX>.q t t t t t 8 q t t t t t t m.}.>X>X;X>X>X>X>X>X>X>X>X:X:X' ++ +':X:X:X:X:X:X:X:X:X:X:X:X3X@ A <X<X<X<X<X9X<X<X<X2X<X2X<X<X1' ++ +'X1X<X<X0XuX0X8X8X0X7X}.2 q t t q 8 q b 9X9X9X9X9X9X9X9X9XV t t l /.5XaXaX(.' ++ +'J 4.t t t t t t t t t t t t n.eXtXeXeXeXeXeXwX@Xt t t t t q 2 8 q t t t ' ++ +' V 0XeXeXeXeXtXtXeXtXeXtXeXtXeXtXtXtXtXtXtXtXtXrXM.. ' ++ +'yXrXrXrXhXrXcXhXhXhXhXxXhXxXxXxXxXxXxXcXcXpX] L t t t t 5 2 q t t 8 t t t t' ++ +' t t t t t t t t t 8 t t t t 8 3.bXbXbXbXmXmXcXbXbXbXbXmXbXbXbXbXbXmXbXbXbX' ++ +'mXbXnXnXyX8 t t t t q t q q p mXnXZXZXZXnXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZX6' ++ +'Xj q t t t t 5 8 q t t t t t t t t t 5 t t t v 2 8 t t t 8 t t t t t t u OX' ++ +'AXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXKXHXLXHXPXl q : t t t V KXKXKXK' ++ +'XKXKXKXKXLXp 5 q q q 2 5 q t t t 8 '' LXKXKXKXKXKXKXKXKXJXKXJXKXKXJXKXJXJXK' ++ +'XJXKXKXJX*Xu q : t t t t t p JXJXJXJXJXJXFXJXFXv t t t t 8 : ^ v t t t t t ' ++ +'t t t t t 8 t t t t t 8 5 t t Q t t t t t t t t t t t t t t t t t t t : 2 >' ++ +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t x.' ++ +'>X:X:X:X:X:X:X:X:X<X:X:X:X:X<X:X:X<X<X<X<X:X<X<XJ.2 m.<' ++ +'X<X1X2X1X1X1X1X1X1X1X1X1X1X1X9X9X9X9X9X9X9X9X9Xb.t t t t 8 5 q .eX9X9XwX9X' ++ +'wXwXwX7X5 t t | sXNXKXNXaX-.5 8 t t 8 t t t t 8 t t 5 @XeXtXrXtXtXrXtXtX .t' ++ +' t t t t t q 5 q t t t 8 5 t t t t / tXxXrXxXrXtXrXrXrXrXrXrXtXrXrXrXrXrXrX' ++ +'rXrXb. -XxXxXxXxXxXbXxXxXxXxXxXxXxXxXxXxXxXcXcXvX%.`.O.p' ++ +' t t t t t t q 5 t t 8 t t t 8 t t t 5 t t 5 t t t t t t u n.mXnXnXmXnXnXmX' ++ +'mXmXbXmXnXnXmXbXnXmXnXnXnXnXZXnXZXOX8 t t 8 t 2 q 5 q t n.AXZXZXZXZXZXZXZXS' ++ +'XSXSXSXSXSXSXAXAXAXAXAX&Xa q 5 t t t t 8 5 5 q t t t t t t 5 t t t t t v u ' ++ +'t t t t t t t t t t t 8 t OXHXLXLXHXKXHXHXLXLXHXHXKXLXLXKXLXKXLXKXKXKXKXLXK' ++ ,'XIX^ 2 q t t t t [ KXKXKXKXKXKXKXKX&X5 8 q 2 q q 2 q t t t 5 : '' PXLXKXJXJ' ++ +'XJXJXJXJXJXJXJXJXJXJXJXJXJXJXJXFXoXt t t t t 8 t t 8 c FXFXFXFXFXFXFXFXzX8 ' ++ +'8 t t 2 5 8 5 t t t t t t 5 8 t t 5 t t t t t t 5 t 5 t t t t t t t t t t :' ++ +' t t : t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t ' ++ +'t t t t t t t t t t t t 8 C 3X:X<X:X<X<X<X<X<X<X<X<X2X<X2X<X<X<X<X<X<XM.C o' ++ +' m.1X1X1X1X1X1X1XuX1XuXuXuXuX9X0X9X9X9X9X9XeX9XwXH ' ++ +'t t t t 8 8 a / tXtXeXeXeXeXeXeXb.t t : o.iXLXKXDXMX!.8 5 8 t 5 t t t t 5 t' ++ +' t 8 @XtXrXrXrXhXrXhX7Xa 8 5 t t t t t t t t t t t q 5 q t t t b @XxXxXxXxX' ++ +'rXrXhXrXhXhXrXhXhXxXhXxXhX@Xs a 6XxXxXxXxXxXcXcXcXcXc' ++ +'XcXcXcXcXbXbXcX&Xl L @.] p t t t t t 8 5 8 t t 5 t t t 5 t t 8 t t t 8 t t ' ++ +'8 5 t t t t .XnXnXnXZXnXZXnXnXnXnXnXnXnXyX&XnXnXZXnXZXZXZXZX..u t t 5 t q q' ++ +' q 2 t t &XAXZXAXAXAXAXSXAXAXAXAXAXAXAXAXAXAXMX%.t 5 8 t t t t t t 8 5 8 t ' ++ +'t t q q 2 8 t t t t t 8 5 t t t t t t t t t t t t t t =.PXLXLXKXKXKXKXKXKXK' ++ +'XKXKXKXKXKXKXKXKXKXKXKXzX&.2 : q q t t t t c KXKXKXKXKXJXKXPXv 8 5 5 q q 5 ' ++ +'q q t t t t t t c fXJXJXJXJXJXJXJXJXJXFXJXJXFXFXFXFXFX*X! q t t t q 2 u t t' ++ +' t t IXFXGXFXGXGXFXGX_ 8 t t t t t t t t t q t t t t t t t 8 t t t t t t 8 ' ++ +'t 8 t : t t t t t t t t t t q 5 t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t 5 8 t t t 8 t t t t t t t 5 t X x.3X2X2X2X<X<X<X2X<X1X' ++ +'2X2X2X1X1X2XM.A > A ,X8X8XuX8X8X8XuX9X8X8X-' ++ +'X/ b.9XeXeXeX9XeXeXn.5 t t t t t t t p 7XtXrXtXtXhXrXn.t t t a ^ #XNXNXNXsX' ++ +'o.u t t 5 8 t t t t t t t t ^ rXhXhXxXhXxX7Xv 5 t t 5 t t u u 5 t t q 8 t t' ++ +' t t t t t t t | -XcXcXxXhXxXxXxXxXxXxXxXxXyXn.a ' ++ +' .6XcXcXcXMXvXcXcXcXbXMXbXbXmX6X` t t t l p 8 t t t t t t t 5 8 t t t 2' ++ +' q 5 q 2 q t t t t t t t q 8 5 t t t =.MXnXZXnXnXZXZXZXZXZXzXb.t | AXAXAXZX' ++ +'SXSXSX*Xq 8 t 8 5 t t t t t t t a .XSXAXAXHXAXAXAXAXAXAXHXAXHXHXmX|.u 5 8 t' ++ +' t t t t t t t t 8 t t t t t t t 5 8 8 5 t t t t t t t t t t t t t t t t t ' ++ +'t t j +XPXKXKXKXKXKXKXKXKXKXKXKXKXKXJXLX*X''.l t t t t t q 2 q q 2 q *XJXJX' ++ +'JXKXJXIX~ q t t q q t t t t t t t t t 8 t t %.fXFXFXFXGXFXFXFXFXFXFXFXFXCXO' ++ +'X^ 8 t t t t t t t : q q 5 q ''.GXFXGXGXGXGX>.t t 8 t t t 5 8 q t t t t t L' ++ +' G v t t t t t 8 t t t t t 5 q t t t t 8 5 t t t 8 t 5 8 t t t t t t t t t ' ++ +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t t 5 t 8' ++ +' q 2 B x.M.=X2X1X1X2X2X=XJ.m.} B ' ++ +' o C m.=X,X0X2X-Xm.{ l 2 t : b.-XyXxXyX@X/ t t t t t t t t t t C @X7XtX,' ++ +'Xn.V a t t t t 8 ..#X5X#XN.p t 8 t t t t t t t t t 2 t 8 V @XtXhX6Xb.u q 8 ' ++ +'8 t t t t g x i t 5 8 5 t t t t t t 8 5 t t q v =.@X6XyXvXxXyX6X@X=.V ' ++ +' s %.@X6XhXMXcXMXhX6X@X=.b q 2 t t t t t ' ++ +'t t t t t t t t t t t t 5 q 5 8 t q t t t t t t t t 2 u 8 t t 2 8 u =.&XzXM' ++ +'XZXIX6X.X( q 5 t t | *XmXSXMX*X%.2 q 2 t t t t t t t t t q 2 t v OXSXHXHXHX' ++ +'HXHXHXLXHXAX*X&.5 m 5 8 t t t t t 8 t t t t 5 t 8 t t t t t t t t t t t t t' ++ +' t t t t t t 8 t t t t t t t t t 5 5 '' oXkXMXPXJXKXJXPXCXzX&X.X] u t 5 t t' ++ +' t t t t t q q 5 8 q i .XCXFXzX+Xg t t t t 2 q t t t t t t t t t 5 t t 5 5 ' ++ +'L >.&XzXCXGXGXCXzX&X''.` a t 8 a t t t t t t q 5 q q 8 5 q %.kXCXCX&X) t t ' ++ +'t 5 t t t t 5 8 t t t t t u 8 ^ t t t t t t t t t t t 8 5 t t t t t t t t t' ++ +' 5 t t t t t t t i c p t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 u ' ++ +'t t t t t t t t t t t 8 t t q ' ++ +' v o t t t t : t y &.oX*.a = t ' ++ +'t t t t t t t t t 2 q t t t t t t t t q q 5 t H ( ^ a 5 t t t t t 8 5 t t t' ++ +' t t t 5 t t t t t t 5 t t 5 t t t t g g p 5 q t t t 8 t t t t t t t t t t ' ++ +'t t t t t t ' ++ +' t t t t t t t t t t 8 t 8 t t t t t t t t t t 8 q q q q q q t t t t t ' ++ +'t t t 8 5 t t 8 8 t t t t q q t t 8 q 2 q t t t t q q t t t t q t t t t 8 8' ++ +' 5 t t t t t t 2 q t ~ ,.OX&X&XOXn.O.p t t 5 t t t t t t t t 5 t t 8 t 8 t ' ++ +'5 t t t t t t t t t q a t t t t t t t 8 5 t t t t t t t t t q 8 5 t t t t t' ++ +' t 5 t t t t : q 5 q t t q 2 q t t q 5 q q 5 2 q 5 t t t t t t t t t 5 t t ' ++ +'t t t t t t t t t t t 8 5 t t t t : t t t t t q t t t t t t t t t t t q q q' ++ +' 2 2 t a 8 t t t t : 8 5 t t t t t t t t t t t t t 2 q t t t t t t t 5 t t ' ++ +'t v q q q q t 5 t t t t t t 8 t t t t t t b ~ v t u >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.q 2 t t 5 8 t t t t t t t t t 5 t ' ++ +' v q t ' ++ +'t t t t t a *..X*.u 2 t t t t t t t t t t 8 q t 5 8 t t t t t t 2 u t 4.t 5' ++ +' t t t 5 8 t t t t t t t q t t 8 t t t t t t t t t t t t 8 t t t t q t t t ' ++ +'t 5 t t t t t t t t t t t t t t t t t ' ++ +' V 8 t t t t t t t t q t 5 t 5 t t t t t t 8 t t t ' ++ +'t t t q 2 q 5 t t t t t t t t q t t t t 8 t t t 8 q 5 t t 5 5 q q t t t t q' ++ ,' : t t t t t t t t t 5 t t t 8 5 q t t q q q q 2 u t t 8 t t t t t t t t t ' ++ +'t t t t t t t t 5 t t t t t t t t t t t t t 5 v t t t t t : 5 q 8 5 t t 8 5' ++ +' t t t t 8 5 t t t t t t t 4.t 8 t t t t u t t t 5 q q q t q q 2 q q q 5 5 ' ++ +'t t t t t t t t t 8 t q : t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t' ++ +' t t t t t t t t t 2 q 5 q q t t t t t t t 2 8 8 t t t t t 8 t t 5 u u t t ' ++ +'t t t t t t t v v t t 5 u v q 2 q 2 q q t 5 8 t t t t t 5 t t t q j v l u j' ++ +' <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' ++ +'8 t q ' ++ +' v t q t t t t t t t x ! l u 2 q q t t 8 t t t t t t 8 t 8 ' ++ +'5 t t t 8 5 t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' 5 t t t t t t t t t : t t t t t 8 5 8 u 2 q t t t t t t t t 8 t t 8 t ' ++ +' ^ t t : t t t t t t 8 t t q' ++ +' 2 t t t 8 t t t 5 q q t t t t t t t t t t t t t t 8 5 8 5 t 5 t t t 8 t t ' ++ +'5 t t t 8 t t t t t t t t t t t q 5 t t 5 8 t t t 8 5 t t t t t q 5 8 t t t' ++ +' t t t t 8 5 q q q 5 t t t 8 t t t t t t t t t 2 q q t t t 8 t t t t T 2 t ' ++ +'t t t t t 8 t t t t t t t t t t t t 5 t t t t t 5 q 4.4.t t t 8 u l l t t t' ++ +' t t t t t t t q q 2 q t t t t t t t t t t t t 5 q q q u 2 q t t t 8 5 t t ' ++ +'t t t t t : 5 q t t 8 t 2 t t t t t t t t t t t t t 8 q t t t t t t q t t q' ++ +' t t 5 t t t t u x g 8 : t t t t t t t t t T ^ 2 V T q q 5 q t t t t t t t ' ++ +'t 8 t 8 t t t t q t t 8 p <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' ++ +' t t t t t t q t t t t t t t t t ' ++ +' 5 q 2 t t t t t t t t t t t t t t' ++ +' t t t t t 5 t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t 8 8 t t t t q t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t 5 t t u 2 q t t v ' ++ +': t t t t t t t 5 t t t t u t t t 5 t t t t q q 2 t t t 8 5 t t 5 8 t t q :' ++ +' 5 q t t t 8 t t t 5 t t 8 t t t 5 8 t t t t t t t t t t 8 q t t t t t t t ' ++ +'t t t t 8 t t 5 8 t t t t t t t t t t 2 q 2 q t t t 5 t t t t t t t t t u t' ++ +' p p t t t t t t t T q t t t t t t 5 t t 5 t t t t t t t t t 8 t t t t t t ' ++ +'5 8 t t t t t p v x u t t t t t t t t t 5 : q q t t t t t t t t t t t t q 2' ++ +' t t 8 t t t t t t t t t t t t t t t t t t t t 8 8 t t t t t t t t t t t t ' ++ +': 5 8 t t t t t t t t t t t t 8 t t 5 t u x g 5 8 t t t t t t t t t t q q T' ++ +' ^ t t q 2 t t t t t t t t 5 t t t t t t t 5 q 5 u >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 2 q ' ++ +' t t q q q t ' ++ +'t t t t t 8 5 t t t t t t t t t t t 8 t 5 t t t t t t t t t t t t q 2 t t t' ++ +' t t t t t t t t t t t t q t t 5 t t t t 2 t t t t t t t t t t t t t t t t ' ++ +'t t t t t 8 5 t t t t t t t t t t t t t t t t t t t 5 8 8 t ' ++ +' v t t t t t t t 8 t t t t t 8 t 5 t t t t 8 5 5 8 t ' ++ +'t t t t t q t q 5 q q 5 q t t t t t t t 5 t t t 5 t t t t t t t t t t t t t' ++ +' t t : 5 8 t t t t t t t t t t t 5 t t 8 q t 5 t t q t t t t t 8 5 q q t t ' ++ +'t t t t t t t q t t t t p v l t t t t t t t T 2 q t t t t t t t t 8 t t t t' ++ +' t t 2 u t t 5 t t t t t t 5 t 4.4.t t t i p t t t t t t t t t t t t t t t ' ++ +'t t t : t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t t t t t t' ++ +' t t t t t t t t t t t t t 8 t t 8 t t t 8 t t t t t t t t 8 5 u 2 t t t t ' ++ +'t t t t 5 8 t t t t 8 5 t v V ^ q 5 8 t t t t t t 8 t t 8 t t t t t t t 8 u' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 5 t t 5 8 t t 5 8 t ' ++ +'t t t t t ' ++ +' t t t t t t t 2 u t t t t t t t t t t 8 t t t t t t t t t 8 t t 5 8 ' ++ +'t t t t t t t t 2 N t t t t t 5 8 t t 8 5 t t t t t t t 8 t t t t t t t t 8' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t 8 5 t t t # # o t u a t t t t t t t t t t' ++ +' t t 8 t t 8 t 5 8 q 5 t 8 t t t t q q 2 8 5 q q 2 t t t q t t t 8 t t 8 t ' ++ +'t t t t t t 8 5 t t t t t t t t 8 5 t t t t t t t t 5 8 t t t 8 5 t t t t t' ++ +' t t t t t 8 5 q t q t t t t 8 5 t t t t t t t t t j g t t t t t t t 5 q q ' ++ +'q t t t t t t t t t t 8 5 t t q 8 t t 8 t t t t t t 8 t t 4.t t t t t t t :' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t 5 8 t t t ' ++ +'t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t 5 t t t t' ++ +' t t t 8 5 q q q t t t t t t t t t t t t t t t 8 t t q v q q 5 8 5 8 t t t ' ++ +'5 t t 5 t t t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t' ++ +' t 8 t t t t t t t t t 5 t t t t t t ' ++ +' t t t t t t 5 t u g p q t t 5 t t 8 t t t t t' ++ +' t t t t t t t 5 8 t t t t t t t t t t t t 4.t t t t t t t t t t t t t 8 t ' ++ +'t t t t t t t t t t t t t t q 5 8 5 t t 5 5 t t t t 8 t t t t t t 5 t t t t' ++ ,' t t t t t t t t t t t t t t q t t u g x u t t t 5 t t t t ' ++ +'p v v y t t t t t t t t t t t t t t t t t t t t u 5 t t t u t y u 2 t t t t' ++ +' t t q q t t t t t q 8 t t t t t t 8 5 t t t t t t t t t 8 t t t 5 t t t t ' ++ +'8 t t t t t t t t t t p l u t t t t 5 t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t t t t t t ' ++ +'t 8 t t t t t 8 t t t t t t 2 q q q 2 q t : t t t t t t t t t t u 8 t t t t' ++ +' t t t t : t t t t t t t t t t t t q t t t 5 t t t t t t t t t t t t t t t ' ++ +'t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t 5 q t 8' ++ +' 5 t 8 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t 5 8 t t t 8 t t t t t t q ' ++ +' q w X : t t t t t v u q p c ' ++ +'p 5 8 t 8 t t 5 t t 5 8 t t t 5 t t t t t t t t 5 t 8 t t t t t t t t t t t' ++ +' t t 8 t 8 t t t t t t t t 8 5 t t 8 t t t t t t t q 2 q t 8 t t 8 8 t t t ' ++ +'t 5 t t t 5 8 t 8 t t t 8 t t t t t t t t t t t t t 8 5 t t t u u 5 t t t 8' ++ +' t t t t t t t t p ~ ~ p t t t t t t t t t t t t 5 8 t t t t t g l ' ++ +'p t t t t p v j q t t t t t t 2 t t t t t t 2 u t t t 5 8 t t t t t t t t t' ++ +' t t t 5 t t 5 8 t t t t t t t t t 5 t t t t t x P x t t t t 8 t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8' ++ +' 5 t t t t t t t t t t t t t t t t t 4.4.t t t t t t q q q 5 q q t t t t t ' ++ +'t t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t 2 8 t t 8 t t t' ++ +' t 8 5 t t t t t t t t t t 8 t 5 8 t t 5 t 8 t t t 8 t t t t t t t t t t t ' ++ +'t t t t : t t t t 8 L 5 t t t 5 t t t Q Q t t t t t t t t t t t t t t t t t' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 t 5 t 8 t t t t t t t t ' ++ +'t t t t t t t t k [.|.) t t t t' ++ +' t t t t t t t G 8 t u p u t t t t t t t t t 8 5 t t t 8 t t t t t t t t 8 ' ++ +'t 5 t t t t t t 2 2 t t q q t t t 5 t t t t t t t t t t t t 5 t t t t t t t' ++ +' q q 2 q t t t t t t 8 t t t 8 q t t t t t t t t 5 t t t t t t t t t 2 q t ' ++ +'8 5 8 t t t t t t t t t t t t t t 5 u t t t t t l x t t t t t t t t t t' ++ +' t t t t t t t t t t x ! l t t t t p l p q 8 t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t 8 t t t t t j x' ++ +' h t t t t t t t t t t t t t t t t t t t t t q t t t t t t t t t t v t t t ' ++ +'t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 8 5 t t 5 4.t t 5 8 t' ++ +' t t 5 t t q 5 t t t t t t t t t t t t q t 8 5 t t t t q 2 t t t t t t : t ' ++ +'t t t t 8 u 5 t t t t t t t t t t 8 t t q 2 t t t t t t t t t 8 t t 5 t t 5' ++ +' t q t t v _ R t t t t t t t t t t t t t 8 5 v t t t 8 t t t t t t Q Q t 8 ' ++ +'q t t t t t t t t t 8 5 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5' ++ +' t t t t t 8 t 5 8 t t t t t t t t t 8 5 t t t t ) XfX' ++ +'#.- t t t t t t t t t t t t L 5 8 5 t u t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t 8 5 8 t t t t N t t t q 2 t t t t t 8 5 t t t t ' ++ +'t t t t t t t t 8 5 t t 8 q 5 q q t t t t t t 5 t t t u 2 5 8 t t t t t t t' ++ +' t 8 5 t t t t t t q q t t 5 t t t t t 8 t t t 8 t 5 8 t t t t 8 v t t t t ' ++ +'t t t t 5 t t t t q t t t t t t t t t 5 8 t 8 p x p t t t t 5 u i 5 t 5 t t' ++ +' t t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t t t t t t t t t t t t ' ++ +'t 8 t t t t t t t t t u q 2 t t t t t t t t t t t t t t t t : t t t t 5 : t' ++ +' t t t t t t t t G t t : t t t t t t t t t t t t t t t t t t t 5 8 8 5 t 8 ' ++ +'t 5 t t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t t t t t' ++ +' t t q q q 5 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t u t t t ' ++ +'t t t t t t 5 t t t t t 8 t q 2 u ) ''.O.i t t t t t t t t t t t t 5 T a t ' ++ +'t t t t t t t t t t t t u 2 t t t t t t 8 5 t 5 8 t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t t t t t t 8 t t 5 t t t 8 t t t t' ++ +' x :.|.) u t t t t t t t t t t t t t t 2 q t t t v u 5 q ' ++ +'5 8 t q 5 q 2 t 2 q t t t t t t t t 8 8 t t t 5 t t t t t t t t t 4.t t t t' ++ +' q t t 8 t t t t t t t t t t t t t t 8 5 t t t t 5 t t t t t t t 5 t t t t ' ++ +'t t t 8 t t t 8 5 8 t t t 8 5 t t t t t t t t q t t t t 5 q : t 5 t 8 5 t t' ++ +' t t q t 5 5 5 v t t t t t t t t q q 5 t 8 2 t t t t t t 8 t t t t t t t t ' ++ +'t t t t t t l L j u 5 8 t t t t : t t t t t t t 5 t t 8 5 t t 5 8 t t t t t' ++ +' t t t t 2 q t 5 8 t t 5 8 q 5 t t t t t 5 8 t q q q t t t t t t t t t t t ' ++ +'5 q 8 5 5 q t t t t t t t t t t t t t t v u t t t t t t t t t t 5 8 t t t 5' ++ +' t 8 t t t t 8 t t t t t 8 5 t t t t 5 8 8 t 4.t 8 t t t t t t t t t t t t ' ++ +'t t t t t t t 8 5 t t t t 8 5 q 2 q q t t t t t t t t t t t t t t 5 t t t t' ++ +' t 8 t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5 v _ R 2 5 8 t t ' ++ +'t t t t t t t t t t t t q 2 q q t t t t t t t t t t t t t t t t q q t 8 q q' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t u 8 t t t ' ++ +'t t t t t t t t 5 t t 8 t u h j t t t t : t t t t t t t' ++ ,' t : t q t t t t t q 2 t t 5 t ` '' c u 8 u t t t t 5 8 t t t t 5 t 8 t 8 t' ++ +' t t 5 t t t t t p ( ` h q 5 t t 5 t t t t t t t t t t t t t t t t t t t t ' ++ +'t t 5 8 t t t t 8 t t t t t t t 5 t t t 5 t t t t t t t t t t t t t t : 5 t' ++ +' t t t q q t t 8 t t q t t t t q q q 8 u T t t t t t t t t q q t t l _ _ i ' ++ +'t 5 t t 5 t 5 8 t t t t t t t t t t t x T l t t 5 8 t t t q t t t t t 5 t 8' ++ +' t t t t t t t t t t t t t t t t 8 u t t t t t t t 5 8 t t t 2 t t t t t 5 ' ++ +'q 2 t t t t t t t t t t t 8 5 5 8 q q t t t t t t t t t t t t t t v t t t t' ++ +' t t t t t t t t t t t t 8 t 5 t t t t 5 t t t t t t t t t t t t t t t t t ' ++ +'5 t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t t 5 q q q t t t t t t' ++ +' : t t t t t t t 8 t t t t t 5 t 8 t 5 8 t t t 8 5 t t t 5 t t t 5 8 t t t ' ++ +'t t t t q g l 8 u q 5 u t t t t t t t t t t t t t q q 5 5 t : t t t t t : t' ++ +' t t Q Q t t : q 2 q 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t ' ++ +'t t t t 8 t q P l 2 5 8 t t t t t 8 t 5 t t t t u P ) x 8 t u # t' ++ +' t t t t t t t t t t t t t t t t q q t t t t q q q t 5 x >..X` 8 5 q t t t ' ++ +'t t t t 5 t t 8 t 5 t t t t t 8 t t t 8 t ..#X#X..q t t 8 t t t t 8 5 t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 8 ' ++ +'t t t t t t t t t t q q q q t t 2 q q q t t q q t t t 5 q 2 2 u 2 G 8 : t 8' ++ +' 2 t t t t 2 t t ) |.''.L t u t 8 t t t t t t t t t t t t t t t i g t t t t' ++ +' t t t q 5 q 5 t t t 8 t 5 t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t 8 t t t t q q 8 t q t q 2 t t 8 t t t t t t t t t t q 8 t t 2 t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t 8 u t t 8 t t t t t t t t 8 t t 5 t t ' ++ +'t t t t t t t t t t t t t 4.t t 8 t t 8 t t t t t t t t t t : t t t t 8 5 t' ++ +' t t t t t 5 8 t t t t t t t t t t t t t t t t 5 8 t t 8 t t t t t 5 8 t t ' ++ +'t t t t 8 t t t t t t 5 t t t 5 t c O.] j 5 t p j p t t t t t t t t t t t t' ++ +' q t m t t t t t t t t t t t t t t Q t t 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t 5 8 ! :.@.g t t t t t t t t t 8 t t t t p )' ++ +' `.P a x +.`.R t t t t t t t t t t t t t t t t t t t t t q 5 t 8 5 t t t q ' ++ +'q 2 p '' %.G 8 q 5 q t t t t t t 8 t t 5 t t t t t t t t t t t t 4.&.sXsX-.' ++ +'5 q 2 u t 5 8 t t t t t t t t t t t t t 5 8 8 t t t 5 8 5 8 t t t t 5 t t t' ++ +' t t t t t 8 t t t t t t t t 5 8 t t t t t t q 2 q V ^ v T 5 q 2 u v V ^ v ' ++ +'t t 8 5 T T v T T v ^ v ^ q q t t v ^ v ^ T #.O.c Q v v ^ t t t t 8 5 t t t' ++ +' t t t t t t t t t t t t t t t q q 2 q t : t t t 8 t t t t t t t t : t t t ' ++ +'t t t t t t t t t t t t t t q t t t t t 5 8 5 q q q t t 5 t t t j c p t t t' ++ +' t t t t t u g j u t t t t t t t t t t t t t t t t t t t t t q 2 t t 5 t t ' ++ +'t t 8 t t t 5 t t 8 t t t t 5 8 t t t t t t 5 8 t t 4.t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t ' ++ +'t t t 5 t t t t t t t t t t t t t t t t t t t 8 t 8 t 8 t T #.@.x 8 t u j p' ++ +' t t t t t t t t t t t t t t a p u t t t t t t t t t t t t t t t q q q t t ' ++ +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t [ ''.;.x q 2 ' ++ +'5 8 t t t t t t t t t 8 t L ) x 8 R ]. X+.2 8 8 t t t 5 t t t t t t t t t t' ++ +' t t t t 2 q t q t t t t t t t t u p t t t p p t t t t t t t t t t t t t t ' ++ +'q q t t a t t t 4.G n.!.G q t t t t t t t t t t 8 t t t t t t t 8 t t t t t' ++ +' t t t t t t t 8 t t t t t v v ^ v ^ L t t t t v ^ Q Q : t t t Q Q Q Q t t ' ++ +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 l p u' ++ +' t 5 t t t t u v ^ v v t t t t v v ^ L t t t 2 R T G L v v t t t t t : t t ' ++ +'t t t t t t t t t t t t q 5 q t t 5 t t 8 t t t t t t 5 8 t t t t t 5 8 t t' ++ +' t t t t t t t l T j t t t t t 8 5 q t j x u t 5 8 t t t 5 t t t 5 t t t t ' ++ +': t t t t t t t t t t t t t t 5 8 t t t t t t t t t t 5 t t 8 5 8 8 t t 5 8' ++ +' t t t t 5 8 t t t t q q q t t t t t t t t 5 t t t t t t t t t t t t t t t ' ++ +'q q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t q u T L t t q t q t t t t t t t t Q t t t t j ~ ~ l p t 5 t t t t t ' ++ +'8 t t t t 8 5 t t 5 v u a q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t' ++ +' t t t t t t j ) R 5 q q 8 5 t t 5 t t t t t t 5 8 u t u u x +.`.R t 8 a t ' ++ +'t t t t 8 t t t 8 t t t t t t t t q q 8 5 t t Q t t t t t 5 q t t i L c i t' ++ +' t a t t t t t t t t t t 5 v v p t t t 5 t q u i m t t t t t t t t 8 5 t 5 ' ++ +'t t t t t t 2 u t t t t t t t t t t t Q G T v t t t t t t t 8 5 t t t t q 2' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t ' ++ +'t t t t t t t t 8 5 t t t t 8 t t t t 2 5 8 t t t t t 5 u t t 5 8 8 5 t t 5' ++ +' 8 5 u t t t t ^ v Q Q t t t t 5 u t t t t t t t t 5 8 t t t t t t t t 8 5 ' ++ +'t t t t t t t t t t t t t t t 8 t t t t i p a t t t t t t q 5 t i i 5 t t t' ++ +' t t 8 t t t t 8 t t t t t t t t t t 8 5 t t 5 t t t t t t t t t 5 8 t t t ' ++ +'5 t 8 t t 5 q t 5 t t t t t t t 4.t t t t t t 2 u 5 q 8 t t t t t t 8 t t t' ++ +' t 8 5 t t t t t t t t : 5 q q t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t 5 : t t : t t t q 2 t t t t t t t t t t y q 5 q t t t t t t Q t t t t t' ++ ,' ` +X<.v u t q t q t 5 8 5 t 8 t t t t t t 8 q V v t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t q 2 q q t t 8 t t t t 5 t t 5 8' ++ +' t t t t a g t t t t t t t 8 t 5 t t t 5 t t t t t t t t 8 5 5 q t t v q t ' ++ +'t t t 8 5 t t i l l u u p u t t t t t t t t t 2 p ^ ~ l t t t q 2 q 5 8 5 5' ++ +' q t t t t t u 5 u t t t t t t u v T t t t 2 T Q Q Q t t t t 5 q q t t t t ' ++ +'t t t 8 5 t t t t t q q t t t t t t t t t t t t t t t t t t t t t t t t 5 t' ++ +' t 8 t 8 t t t Q t t t t t t t t t t t t t t t t t t t 8 t t q q t t t t t ' ++ +'t t q 8 5 t t t t t t t t 2 q t t t t t t t t t t t t v v v v t t q t t 8 t' ++ +' u t t t t t t 8 5 t t 8 t t t t t t t t t q 2 t t t 5 t t t m q t t t t t ' ++ +'5 8 t t t t t t 2 q t t 5 t t t t t t v t t t t t t t t t t t q t t 8 t t t' ++ +' t t t t t t t t t t t 8 t t t 8 t t t q t t t t 8 t t t 4.t t t t t p x j ' ++ +'t 5 t t t t t t t t t t t t t t t t t t t t t q q q 5 t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t q t t t t t t t 8 u t t t t t t 8 5 t p b l t t ' ++ +'t t t t t t Q t t t t t ] .X<.b t t t t 5 q q q 8 t 5 t t t t t t t q t t t' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t 5 q q ' ++ +'q t t t t t t 8 t t q 2 u t t t t u u t t t t t t t t t 8 t t t t t 8 5 t t' ++ +' t t t t 8 5 8 t t Q 2 t t t t 5 8 q 5 t t t t p v p t t t t t t t t t q 5 ' ++ +'x v p t t t 4.q q q t 8 5 q t t t t t v v v v t t t t v G v t t t t q q 5 :' ++ +' t t t t : q 2 q t t t t t t t 5 t t 8 t t t 8 5 t t t t t t t t : t t t t ' ++ +'t t t t t t t t t t t t t t t t 5 t t q v t t t t t q 8 5 t t t t t 5 t t t' ++ +' t t 5 8 5 t t t t t t t t t t 5 8 t t t t t t t t q q t t t t t t t t t t ' ++ +'t t t t u t t t 2 u v G v v t t t t t t t t t 5 t t t t 5 t t t t q q q t t' ++ +' t t t t t t t t t t 2 q t t t t t t t t u 8 t t 8 t t t t t u v t 8 t t t ' ++ +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 t t t q t t t t 5' ++ +' t t t t t t t t t p c l t t t t 8 t 5 t t t t 8 t t t t t t t t t t t q q ' ++ +'2 q t t t t t t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t 5' ++ +' t t t t t 8 5 p T Q i t t t t t t t t t t : t t p ~ ^ 5 t t t t q 2 q 5 t ' ++ +'t t t 5 8 t t t t t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t : t' ++ +' t t t t t t t t t t t t t t t 5 t t t t t t t t : t t t p h u t t t t t t ' ++ +'5 t t t t t t t t t t t t t t t t t t t t t v u t t t t t t t t t t t t u p' ++ +' u t t t t t t t t t q t a q t t t t 4.t 8 5 t u G L Q : q : t Q t t u 2 q ' ++ +'q q q t t t t t t q q 2 q t t t t t 5 t t t t t t t t t t t t 5 t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t t t t 5 T q t t t ' ++ +'t 2 t 2 q q t t t 8 t t t t t t t t t 5 q 8 t t t t q 2 t t t 5 t t 5 8 t t' ++ +' 5 8 q 5 t t q 2 q q t t 2 q t t t t t t t 5 t 8 2 q t t t 5 v ^ V T t 8 t ' ++ +'t 8 q 8 t t t t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t 8 t t' ++ +' t t t t t ^ 2 q 5 t t t t t t t t t t t t t t 8 5 5 t 8 5 t t 8 t t 8 t t ' ++ +'8 t t t u 2 q q t t t t t t t t t t 4.t t t t p u t t t t t t t t t 5 t 5 t' ++ +' 5 8 t t q t t t t t 5 q 8 5 t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t q q q 5 t t t t t t t 8 t t 8 5 t t t t p j 2 q t t t t : t t t t t t t t' ++ +' t u 2 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoXn.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t t' ++ +' t t t u u a t t t t t t 8 t t t t t t t t t t 5 u 8 t t t t t t t t t t t ' ++ +'t t t t ! ] T t t t t 5 t t t t t t : t t t t t t t t t t t t t t t t t v 8' ++ +' 5 t t 5 q t t t t q q 2 q 8 5 t t t t t t q 5 q q q 2 t t t 8 t t t t t t ' ++ +'t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t 8 t t t q V t t t t t u t u t t t t t t 5 8 t t t t t t t q 8 5 t t 5 ' ++ +'8 t u 8 t t 8 t t t t t t 8 5 8 t t t 5 q t q t t q t t t t t t t 8 5 t q q' ++ +' t t t t 8 t t t q t t t t Q Q ~ t t e e e t t t t t t t t t t t t t t q q ' ++ +'q q t t t t t t t t 5 t t t t t t t v t q q t t t t t t t t t t t t t t t t' ++ +' t t t t t t 5 t t 5 t t t t t t 8 q q 2 t t t t t t 5 8 8 t t 4.t t t t t ' ++ +'t t t t t 8 t t t 8 t t t t 5 t t 5 t t t t t 8 5 5 8 t q t t t 5 8 t t t t' ++ +' t t t t t t t t t t t t t t q 2 q t t t t 5 8 t t t t t t 8 5 t t t t u 8 ' ++ +'t t t t t t t t t t t 5 t t q q t t t t t t t t t t t t t t t t t t t t t t' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' ++ +'t t 5 t t 8 t t t t t t t t q t t t t t t t t t t t t 8 5 t t 8 t 8 t t 8 2' ++ +' t t t t t t t t t t t t t 5 m j $.|.$.t t t t t t t t t t t t t t t t t t ' ++ +'t t t v Q Q v u t t t t 5 8 t t t t t t t t 5 2 q 5 5 q q t t t t t t t t t' ++ +' 8 u t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t ' ++ +'t t t t t t t u t t t t t 8 t 5 t t t t t t t 5 8 t t g g i t t t 8 5 5 8 t' ++ +' t t t t 8 t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t q q t t t t ' ++ +'q q t t t t t t 5 8 q q q q t t t t t t 5 t t t t t a ) `.].E e e e r u t t' ++ +' t t q 5 t t t t 5 t 8 5 q t t t u 8 t t t t t t t t t t t 5 t t t t : t t ' ++ +'t t t t t q q t t t t t t t 8 5 t t t t t t t t t t t 5 8 t 2 t t t t t t t' ++ ,' t t t t t t t t t t t t t t t 8 5 t t t t t t t 8 t l ` ! t t t t 8 t t t ' ++ +'8 t u 2 t t t t t t t t t t t : t t t t t t t t t t t t q q t t t t t t 5 8' ++ +' t t t t t t t t t t t q t t t t t t t t t t 5 8 q q q 5 t : t t t t t t t ' ++ +'t 5 t t t 5 t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' ++ +' t t t t t t t t t t t t q t 8 t t 5 t t t t t t t q 5 8 5 t t t t t t t t ' ++ +'t t t t t t 5 t 5 t t t q t t t 5 8 t t 5 8 t t t t m m y _ :.[ t t t t t t' ++ +' t t t t t t t t t Q v t t t t t t 4.q 2 t t t t t t t t t t t t t t q q q ' ++ +'q q 2 q t t t t t t t t t t t t 5 8 t 8 t t t t t t t t t 5 8 t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t g x u t t t 5 t t t t t t t t t 8 q ' ++ +'t u x P p t t t t t t t t t t t t 5 t t t t t t t t t t 5 8 t t t 5 t t t t' ++ +' t t t t t t 2 q t t t t t t t t t t t 5 q t q 2 q 5 t 8 t t t t 8 t t t t ' ++ +'t g `.dX XW e e e G v Q v t t t t t t t t 8 t t 8 5 q t q 2 t t t t t t t t' ++ +' t t t t 8 t t t t t t t t t t t t 2 t t t t t t t t t t t 8 t t t t t t t ' ++ +'t t t t t t t t t h 8 a 8 5 t t t t 5 8 t 4.t t t t t t t t t 5 8 t t t t t' ++ +' u ] +X|.v t t t 5 t t t t t 8 t t t 5 8 t t t t t t t t t t : t t t t t t ' ++ +'t t t 2 q t t t t t t t t t t t t t t t t t t 5 t t t t Q t t t t t 8 8 q 5' ++ +' q 2 q t t t t t t t t t t 8 t t t 8 t 5 8 t t t t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 8 5 t u 2 t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t 5 5 8 5 t t t t 5 y q 5 t t q 5 t t t t t t t ' ++ +'t t t t y j q a t 8 8 t 8 u 5 q q 5 8 q T v t t t t t t t t 4.q t t t 8 t t' ++ +' t t t t t t t q t 8 t t t t t t t t t t t 5 8 t t t t t 8 t t t t t t t t ' ++ +'t 8 t t t t t t t t t t t t t t t t t t 8 5 5 q q 2 q : t t t t g x t t t t' ++ +' t t t t 5 t t t t t t t t t i i t t t t t t t t t t t 8 t t 2 q q q 2 q 8 ' ++ +'t t t t t 8 5 8 t t t t t q 2 q t t t t t t t 8 t t t t t t 5 8 t t t t t t' ++ +' t q 5 8 5 t t t 5 t t t t g #.$X].W e e e e 8 t t t t t t v T u 5 8 t t t ' ++ +'t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t 5 8 t t t t t t t t t' ++ +' t t t t t t t t t t 5 t t t t 8 q 2 q u ) +.T t t 5 t t t t t t t t t t t ' ++ +'t t t t t t t t t t t q 5 q ] |.>.v t t 5 5 t t t 8 5 t t t t t t 8 t t t t' ++ +' t t t t t 8 t t t 5 q 2 q t t t t t t t t t 8 t t t t t t t t t t t t t t ' ++ +'q q 5 T t t t t t t t t t t t t : t t t t t t t t t t t 2 u t t t t 5 8 q q' ++ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8 t t t t 8 ' ++ +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t q 8 8 t t t t t L *.]' ++ +' u t t 8 t t t : t t T t t t t t t t t q p g p 2 ^ v v T 2 q 5 5 2 u t t t ' ++ +'t t t 8 t t 5 t t t 5 t 8 t t t 8 5 t t 2 u 5 t t t t t t t t : t t t t t t' ++ +' t t t 5 t t t t t t t t t 5 u t t t t 8 t t t t t t t t t t t t 5 8 q q q ' ++ +'q 5 t t t t t u t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5' ++ +' 8 t t t t q t q 5 q q 5 t t t t t 5 q t t t t t t t t q q t t t 8 t t 5 t ' ++ +'5 t t t t t t t t t t t t t 5 : t t t t t t 8 t t t t P +.) u e e e t 8 t t' ++ +' t : t t 5 t V T t t 8 5 t t 8 5 t t t t t t t t t t q 5 5 8 t t t 8 t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t 5 5 q q x `.].) t t' ++ +' 8 t t t t t t t t t t t t t t t t t t t t t t 2 8 5 p ^ Q q t t 8 8 t t t ' ++ +'t t t t 5 8 t t 5 t t t t t t t t t t t 5 t q q q 5 t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t q 2 T V t t t t t t t t t t 8 5 t t t t t t t t t ' ++ +'t t t q 8 t t t 8 t 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' ++ +' t t t t t t t t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t ` XX>.l t t 5 t t t t t : 5 Q t t t t t t t T g L c i t' ++ +' t t 5 8 t q q 2 t t t t 8 t t t t t q t t t t t t 5 8 5 t t 8 t t 8 t t t ' ++ +'t t t t t t t t t t t t t t 5 t t t t t t t 5 t t t 5 q v ~ i q 5 8 t t t t' ++ +' t q 2 t t t t 8 t 2 q q 5 t t t t t t t t t t t t t t t t t t t Q : t t t ' ++ +'t t t t t t t t t t t t t t t 8 t t t t t t t 8 5 t q 5 t t q 5 u 8 t t t 8' ++ +' t t t t t 5 t t t 8 t t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t a q t 2 u t t t t t t t q t 5 8 t q 2 t t 5 8 v L v L 5 5 t t t t t t t' ++ +' t 5 8 2 T t t t 5 t t t t t t t 5 t t t t 8 t t t t t t t t t t t t 5 t t ' ++ +'2 u t t t t 2 u ) +.P 8 t t t t t q t t t t t t 4.t t t q 5 q 2 5 8 t t q q' ++ +' t t m m t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 8 5 t ' ++ +'q t t t t t t t t t t t t 5 t t t t q t t t t t t t t v u t t 8 t t 8 t t t' ++ +' t t t t t t t t t t t t t t t t t 5 t t t q 8 t t >.oXoXoXoXoXoXoXoX>.",' ++ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t 8 t t t 5 t 8 5 t t 8 5 t t t' ++ +' t t t t t t a t 8 t t t t t t t t t t t 2 u b '' ~ u t t t t t t t t t t Q' ++ +' t t t t Q Q Q t p x l u q t t t t t q q q t t t t 5 t t t 4.5 t t 8 5 8 t ' ++ +'t t t t t t 5 t t t t t 8 5 t t 8 5 t t t t t t t t t 8 t t 8 5 t t t 8 t t' ++ +' t 8 c >.XX` 5 8 5 t t t t t t u t t t t t t q 5 8 q t t t t t t t t t t t ' ++ +'t t t t t t t t Q t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t q 5 8' ++ +' t q t t t t q 2 t t t t 5 t t t t t 8 t t t 5 t 5 t t t t q t t t t t t 5 ' ++ ,'t t t t t t t t t 8 t 5 t t t t 5 q q t t t t t t t t 2 t q 5 8 q q t t 8 5' ++ +' u 5 u 5 t 8 : t v t t t t t q q q T t t t t t t t t t t 8 8 t 8 5 t 5 t t ' ++ +'t t : t t t t t t t 8 t t q 8 t t t q q t q u t t 8 t 8 5 q 5 t t t t t t t' ++ +' t t t t q q q t t t t q q t t 5 m t t t t t t t 5 8 t t t t t t t t t t t ' ++ +'q t t t t t t t t t 5 8 t t t t t t 5 p u t 5 8 t t 8 t t t 8 5 t t t t t t' ++ +' ^ ] v t t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t 8 t t t 5 t t ' ++ +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q 2 8 5 t t t t 8 t t t 8 5 t' ++ +' t t t 8 5 t t t 5 8 t t t t t t t t t a ^ ^ t t t t t t t t t t t q 5 q t ' ++ +'t t t t t t t t t t Q Q Q t t t t t t t t t t u t t t t t t t t t t t t t t' ++ +' t t t t 4.8 8 5 t t t t t t t 5 8 t t t t t t 5 t t t t t t t t t 8 t t t ' ++ +'t t t t t t t t t t t t t t t c &.''.~ t t t t t 8 t t t 8 t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t 2 ^ t t t t t t t t t t t t t t 5 8' ++ +' t t t t t t t t t t q t q 2 2 q d ` ~ t t t 8 5 q q t t 5 t t t t t t t t ' ++ +'8 t t t t 2 q 5 q t t u u t t t 5 t t t t t t t 8 t t t t t t t t t t t t t' ++ +' t 8 u t q 8 5 q 2 q q t t t t q q q t t t u v v v t t t t v q t t t t t t ' ++ +'t t t t 8 5 t t t t 8 5 t 8 t t t t t t t t t t t t t t t t 8 t t t 8 5 t t' ++ +' 5 t t t t t t t t t t t t t t 4.8 5 t t t 5 t t 5 8 t t t t t t t t t i p ' ++ +'8 u 2 8 t t t t t t t t q q 5 q q t t y q 8 5 t t t t t t t t i v b t t t t' ++ +' t 5 t t t 5 t t t t t t d &..X] 2 t t t t 8 t t t t t 8 5 t t t t t t t t ' ++ +'t t t t 8 5 t t t t t t t q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q q' ++ +' 5 q t t 5 : 5 t t t t t t t t t t t t t t t t t t t t t t t t t ^ ,.>.v t ' ++ +'t t t t t t t t t q t t t t t t t 8 5 t t t Q Q t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t 5 8 t t t 5 t t t t t t t t t t t t t t 5 t t t t 8 ' ++ +'t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 v ^ u t t t t t 5' ++ +' t 5 t t t 8 5 t t t 5 t t t t t t t t t t t t t t t t t t t t 8 q v t t t ' ++ +'t t t t t t t t 5 8 t t t t t t t t t t t 5 8 5 q q q t q ~ .X<.v t t t t 2' ++ +' t d x p t t t t t t t t t t t t 8 q q q 2 t a l l u t t 8 t t t t 5 8 t t ' ++ +'t t t t t t t 8 t t t t t h p t t 2 u 8 5 q t q t t t t t q 2 t t t 5 t u 5' ++ +' t t t t ^ V v t t t t t t t t t q 5 t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t 5 t t t t t t t t t t 8 t t t t t t t t t t t 4.4.t q q 8 q t t 8' ++ +' 5 t t t t t t t t t b ^ p q q t t 5 t t t t 8 t 5 5 8 q 2 a l v p u 8 t t ' ++ +'t t t t t t i c l i t t 8 5 8 t t t 8 t t t t t t u '' &.~ q t t t t t t t ' ++ +'5 t t t t t t t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' ++ +','#10'"oXoXoXoXoXoXoX>.q t q q 5 q q q t t t t t t 8 t t t t t t 8 t t t t ' ++ +'t t t t t t t t ^ >.>.v t t : t t t t t t t t t t t t t Q Q v t t 8 t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t 5 8 t t 8 t t t 8 4.t t t t t t t ' ++ +'t t 5 t t t t 8 t t t t t t 8 8 t q q t 8 5 t t t t 8 5 t t 8 5 t t t t 5 t' ++ +' t t t t t 5 5 t t 5 t t t t 8 t 5 t t t t t t 8 t t t t t t t t t t t t t ' ++ +'t t t t t t t t q q 8 t 8 q t t t t t q t t t t t t t t t 8 t t t t q q 8 5' ++ +' q 5 t t ~ >.*.l 8 5 t 8 5 u b T p t 8 5 t t t t t t t t t 5 8 5 q q t u p ' ++ +'j u 2 t t t t t 5 t t t t t t t t t 2 8 t t t t t a g g t t t 8 5 t t q 5 t' ++ +' t t 8 t t t t t t t t t t t t t t t t v ^ t t t t t t : q 2 q t t t t t 8 ' ++ +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t 5 t t t t t t t t' ++ +' t t t t t t q q 5 t t t t t t t t t t t t t t v Q p 5 q t t t t 8 5 t 5 t ' ++ +'t 8 t q q q c v p 2 q t t t t t t t t t u t t 8 5 t t t t t t t t t t t p b' ++ +' p ~ x q t t t 8 5 t t t 8 t 5 t t t t t t t t t t t t t t t t 8 t t t t t ' ++ +'q t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t q 2 q q q 2 t t t t t t' ++ +' t t t 5 8 t t t t 5 t t 5 8 t t t t t t 8 L V t t t t t t t t t t t t t t ' ++ +'t t Q Q t u t t t t t t t t t : t t t t t t t t t t t t t t 8 5 t t t t t 5' ++ +' t t t t 4.t t t t t t t t t 8 t t t t t t t 8 t t 5 t 5 8 5 q 5 q 8 5 t t ' ++ +'t 5 t t t t 8 t t t t 8 t t t t t 8 5 8 t t t 8 t t t t t 8 t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t 5 8 5 5 t t t t t 2 u 8 5 8 t ' ++ +'t t t t 5 t t t t t q 2 q q q t t H ` x 5 5 8 t t t t i p t t t t t t t 8 5' ++ +' t t t t t t 8 5 q t t t 5 q q t t t t t 8 t t t 8 t t t t t 8 8 t t t t t ' ++ +'8 a u 8 t t q 5 t 8 5 8 t t t 5 t t t t t t t t t t t t t t t t t t t t t t' ++ +' Q Q G q q q t t 8 5 t t t t t t t t t t t : t t t t t t t t t t t t t t t ' ++ +'t t t t t t q H ....p t t t t t t t 4.4.2 8 5 8 t t 8 5 t t t t t t t t t u' ++ +' q q 2 t 5 8 t t t t t t t t t 5 t q i i 5 q t t t t t t t t q 5 t t t t t ' ++ +'t t t t t t t t 8 5 5 x ! l G t t t t t t t t t t t t 8 t t t t t t t t t t' ++ +' t : t t t t 5 t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: ' ++ +'t t t t t q t t t t t t t t t t t t t t t t 8 t 8 t 8 t t t t 5 t t t t t t' ++ +' t t t t t t t Q v Q : t t t t t t 5 2 t t t t t t 8 G 8 t t t t t t t t t ' ++ +'t t t t t 8 5 t t t t t t t t t t N 2 2 t t t t t t q q q 5 t t t t t 5 t t' ++ +' t : t t 2 q t t t t t t t t t t t t t t 5 8 t 8 5 t t t t 5 t t t t t 8 t ' ++ ,'t t t t 5 t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t q t t 2 : G -.-.G t q q t t ' ++ +'t t t t t t t t t t t t t t u t t t t t t t t t t t t t t t t t t t t t t 5' ++ +' t 5 t t t t t t t t t t t t t t t t t t 2 q q q 2 q t t t t t t t 5 8 t t ' ++ +'t t t 8 u 2 q t t t t 5 t t t v L t t t 5 t t t t t t t t t t t t t q 5 q t' ++ +' 2 q t t t t : t t t t t t t t t t q d -.#X#X..t t t t t t t t 4.t t t t t ' ++ +'t t t t t t t 8 t t t t 5 8 t t t 8 t t t t t t t t t t t q q 2 t t 5 t t t' ++ +' 8 5 t t t t t t : t t t t t t t t t q q q 8 t p j ! t t t t 5 t t t t t t ' ++ +': 5 q 5 8 5 q t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' ++ +','#10'"oXoXoXoXoXoXoX>.t t t t t t q q t t t t t t t t t t t t t t t t t 5 ' ++ +'t t t t t t t t t t t t t t t t t t t v v u t t t t t t t t q q t t t t t t' ++ +' q G t t t t t t t t t t t t t t t t t t t 8 t t t t t q t t t q t t t t t ' ++ +'t 2 q 2 q t t t t t 8 t t t t t t q 5 t t t t t t t t t t t t t t t t t t t' ++ +' t t 5 t 8 t t t 8 t 5 t t t 5 t 8 t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t 5 t t t t t t 5 8 t 5 8 t t t t t : t t t t t t t t t 5 t' ++ +' t q t G -.-.G t 5 q t t t t t t t t t t t t t t t p x x t t t t t t t t t ' ++ +'t t t 8 5 t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t q t q 5 q' ++ +' q q q t t 5 t t t t t t t t t 5 v q q t t 5 8 8 t t t u 5 t t t u v v v t ' ++ +'t t t t t t t q t t 8 5 t t q q 5 q t t t t t t t t t t t t q b /.aXsXX.u t' ++ +' 5 t t t t t t t t t t t t t t 8 t t t 5 t t t t t t t t t 5 t t t t t t t ' ++ +'t t t 5 l T j t t 8 t t t t t t t t t t t t t t t t t t t t t 2 q q 5 t t 2' ++ +' ^ t t t t 8 t t t t t t t 2 q q q q 2 t t t t t t t t t t t t t t t t t t ' ++ +'t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 8 2 5 5 8 t t t' ++ +' t 5 t t t t t t 8 t t t 8 t t t t 5 t t t t t t v V T t t t t t a t t t t ' ++ +'t t t t t q 5 8 t t t 5 8 q T t t t 5 8 t 8 t t t t 5 t t t t t t t t t t t' ++ +' t t 2 4.t t t t t t t : t t q q q 5 8 t t t t t t t t t q 2 q t t t t t t ' ++ +'t t t t t t 8 u t t t t t t t 8 t t t t t t t t t t t 8 t 5 t t t t t t t t' ++ +' t t 2 u u d p a t t t t t t t t t t t t t L t t t t t t t t t t 8 5 t t t ' ++ +'t t t t t t t 5 t t t u t t t t t H H t t 2 q t t t t t t t t t t t t t t t' ++ +' p L P 8 t t t t t t q t t t t t t t 8 t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t 8 5 q t t 8 t t t t t t t t t 5 T 5 q t t t t t t' ++ +' t t 5 8 t t t t t t ^ V t t t t t t u 2 t t t t t t 5 8 8 5 t t t t t t t ' ++ +'t t t t t 2 q o.^.~./ t t 8 t t t 8 5 t t 4.4.t t t t t 5 t 5 t t t t t 8 t' ++ +' t t 5 t t 8 q t t t t t t u 8 t @.''.@.u 5 q t t t t t t t t t t t t t t t' ++ +' t t t t t t q 5 q t t t t t t t t t t t 8 5 t t t t q 5 q q q t t t t t t ' ++ +'t t t t t 5 t t t t 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' ++ +' t t t t 5 5 q q 8 5 8 t t t 8 t t t t t t 5 t t t 5 t t t t 8 t q t t t T ' ++ +'^ 8 t t t t t t t t t t t t t t t t t t t t t t t t 2 u v t t t t t 5 t t t' ++ +' p p u t 5 8 t t t 5 8 t t t u u 4.t t t t t t t t t t 5 q q 8 5 t t t t t ' ++ +'t t t 5 q q q t : t t t t t t t t t t q 2 t t t t 5 8 t t t t 8 5 t t t t t' ++ +' t t t t 8 8 t t t 5 t t t t t q 8 t j p q t t t t t t t t t t t t 5 G q t ' ++ +'t t t t t t 8 t t t t t t t t t t t t t q 5 j ..-.o.t q u t t t t t q 5 t t' ++ +' t t t t t t t t 5 8 t t t u x g 8 2 t t t t t t t t 8 t t t t 5 t t t t q ' ++ +'t 8 t t 8 5 t t 8 t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t t' ++ +' t 8 5 8 T q 2 t t t t t t 8 5 8 5 t t t t t t q q 8 5 t t Q Q v t t t t t ' ++ +'t t 8 5 8 q t t t t t t t t t t t t q 5 8 G b q t t t t t t t t 8 5 t 4.t t' ++ +' t t t t t 8 t t t t t 5 t t t 8 t t u 2 t t t t t q 2 t g #.$X@.p q t t t ' ++ +'5 8 t t t t t t t t t t t t t t t t t q q 2 t t t t t t t t t 8 t t t t t t' ++ +' t q q 2 q q t t t t : t t 8 5 t t 8 t t t t 5 t t t 8 >.oXoXoXoXoXoXoXoX>.' ++ +'",'#10'"oXoXoXoXoXoXoX<.t t t t q q q 5 t t t 5 t t t 8 t t t t t t t t t t' ++ +' t t t t v ^ v ^ 2 t t t 8 t t t t t t q q 2 t t t t t t t t t 8 t t t q 2 ' ++ +'q t t t t 8 t t 5 t t t t p l a t t t 5 t t t t t 5 a l d t t t t t t t t t' ++ +' t t t t t 8 t t t t 5 t t t t q : t t t t t t t t t t t t t t t t t 5 t 8 ' ++ +'t t t t t t t t t t t 8 t t t t t t 8 5 t q 8 t t t t t t t t a q 5 u 2 q t' ++ +' t t t t t t t t 8 v t t 5 8 t t t t t t t t t t t t t t u 8 t t q 5 ( #XiX' ++ +'^.H q 5 8 t t t q 2 q t t t t t t t : t 8 t t 8 u t q t t 8 t t t t t t t t' ++ +' t t t t t t t 2 q 5 q t t 5 t t t t t t 5 t t t t q t t t t t q q 5 8 5 8 ' ++ +'t t t t t t q 2 5 8 t t t t 5 8 v t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t 5 q V T t t 5 u 5 u t 5 2 q t t t t t t t t t t t t 5 q 5 8 5 t t ' ++ +'t t 5 8 t t 8 5 t t 5 8 t t t 5 t t 8 t 5 t t t t t t 5 8 t t t t t t t t 8' ++ +' 5 t t 8 ! _ R t t t t t 8 t t t t t t t t t t 5 q q 2 t t t t t t t t 2 t ' ++ +'t t 5 t t t 5 t t t t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t t t t' ++ +' t u >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 2 q 8 t t 8 t ' ++ +'t t 5 t t t t t t t 5 t t t 8 t t T 2 8 5 q q t 5 t t t t t 8 t 5 q q t t t' ++ ,' t t t t t t 5 t t t t q q t t t t t t t t t t t t u u t t t t 8 t t t t t ' ++ +'8 u l p t t t t t t t t t t t t t t 5 t t t t 8 t t t t 5 t t t t t t t t t' ++ +' t t t t t t t t t 8 t t t t t t t t t t t q t 5 t t t t t t 5 q t 5 t t t ' ++ +'5 5 8 t t t t 5 q 8 5 t t t u p i t t t t 2 ^ t t t t t 5 t t t t t t t t t' ++ +' t t t 2 t t t t 8 | #XiX^.H t 8 5 t t t t q q t t t t t t t t t 5 t t q 2 ' ++ +'t t t 2 8 t t t x R i 2 t t t t 8 t t t u 8 t : t t t t u 8 t t t t t t t t' ++ +' q 2 t t t t q q q 5 t t t 8 5 8 t t q q t t t t t t t t t t t t t t t t t ' ++ +'t t t 8 5 t t t t t 8 t t t t t t q q q q t 8 2 v L v v u t q t t t t t t t' ++ +' t t t t t 2 q q q q t t t t t t t t t t t t t t 4.4.t 8 t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t 8 q' ++ +' q q t t t t 8 5 t t q t t t 8 t t t t t t 8 t t t t t t t t t t t t t t t ' ++ +'t t t t t t 5 8 t t t t t t 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' ++ +' t t t t t t : u 2 t t t 5 t t t t t t t t 5 L v ^ t 5 q t q t t t t t t 8 ' ++ +'t t t 5 8 5 q q q 5 t t t t t t t t t t 5 8 t q 5 q 8 t t t t t t 8 t t p u' ++ +' 5 q t t t t t t 5 8 t t t t u 4.t t t t t t q 2 t : t t t 8 t t t t t t t ' ++ +'t t t q 2 t t t t t t t t t t t t t t t t t t t 5 8 t t t 5 t t t 2 q t t t' ++ +' t t t t t 8 t t t t t t 8 t t t t t t 8 t 5 8 t t 5 p c g t t 8 5 q t t t ' ++ +'t t t t t t t t 8 5 t t t t t t q t 8 5 t t b X.~.o.5 t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t q u x g O.:.) u t t 5 t t t t t t p x u u ' ++ +'t t t 2 q t t 5 8 q 5 t t t t t t t : q 2 2 q t t t t 8 5 q q q 5 t t t t 8' ++ +' 5 t t t t t t t t t t t t t t t t t t t 8 5 t t t 8 t t 5 q q 5 q 8 5 q q ' ++ +'t t v q t t t t 2 u t t t t t t : t q 5 q q t t t t t t t 8 t t t t t t t t' ++ +' 4.t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t 5 q q 5 q q t t t t q q T T 5 8 t t t t 8 t t t t t t' ++ +' t t t : t t t t t t t t t 5 t t t t t t t t t t t t q >.oXoXoXoXoXoXoXoX>.' ++ +'",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t q t t t 8 t t t t t t t v T q t :' ++ +' t 8 5 t t t t t t t t t t 5 t 8 5 q t q 2 q t t t t t t t : t t 8 5 q q q ' ++ +'2 5 t t t t t t t q p c c t t t t t t t t t t t t t t t 4.t t t t t q q q 5' ++ +' q t t 5 t t 5 8 t t t t t t q q q t t t t t t t t t : t t t t 8 5 t t t t ' ++ +'t t t t 8 t t t t t t t t t 8 5 t t t t t t t t t t t t 8 5 t t t t 8 q t t' ++ +' t u p i t t t t q q t t t t 8 t v ~ v t t t t t t t t t t t t t t t t t d ' ++ +'m t t t t t t t q 5 t t t t t t t t t t t 8 5 t t t t t t u ) `.+.O.:.[ t t' ++ +' t t 8 5 8 t t g +.;.I 2 q t t t t t t 8 5 8 q t t t t t t t t 5 q q q t t ' ++ +'t t 5 q t q 2 q t t 8 t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t' ++ +' t 5 t : q 2 8 5 5 8 t q : 5 u t t t t Q R v 5 8 t t t t t t q q 2 q t t t ' ++ +'t t t t t t t 5 8 t t 8 t t t 4.t t t t 8 t 8 t 5 t t t t t t t t t : t t t' ++ +' 5 8 t t t t t t t t t t 8 5 t t t t : t t t t 5 8 q q 2 5 : t t t q 2 T 5 ' ++ +'q 5 t t t t t t t 5 t t t t t t t t t t t t t t t t 8 t t t 5 8 t q t t t t' ++ +' t 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t q 5 t t t t t t t t t ' ++ +'t u t t t t t t t t q t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t v t t 8 t 8 u x l u 2 q 5 q q q t 5 8 5 t ' ++ +'t t t t t t t t t t 5 8 t t t t t t 8 t t t t t t 5 8 t t t t t t t t t t t' ++ +' t t 5 8 t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t t q 2 8 ' ++ +'q t t t t t t t t t t t t t t u q t t t t t t t t t t m j >.OX<.l 8 t t t t' ++ +' t t t t t t t 8 5 t t q q q 5 t 5 t t t 5 t t q 5 q q q t t t t t t t t t ' ++ +'t t t t p +. X#.P v p t t t t t t t 5 8 x `.].) t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t 5 t t t t t t ' ++ +'t t t t 2 q t t t t 8 5 t t t 8 t t t t t 5 8 t 5 t t t t t t t t t 8 v ^ t' ++ +' t t t q q t 8 t t t t t t t 5 q 5 t t t t t t t t t t t 4.t t t t t t t t ' ++ +'t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' ++ +' t t q 8 5 8 t t t t v u 2 q t t t t t t t t t t t 5 t t t t t t t t t t t ' ++ +'q q q q 5 t t t 5 t t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q' ++ +' q 8 q t t t t t t t t t g x ~ ^ : t t t t q 2 t t t t t t t t t t t t t 5 ' ++ +'t t t t t t t 8 t t t t 5 8 t t t t t t t t t t t t t t t Q t t 5 t 5 t u u' ++ +' t t q q 2 q t t 8 q t 8 t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t 8 5 t t t t t t t 5 8 t t 8 t t 5 q t t t t t' ++ +' 8 t t t t t t t t q u p g t t t t t t : t t t t t t t 2 q t t t t t t t t ' ++ +'t t t v XXzX.XG t t t t t t t t 8 t t 5 t t t t q q 2 q t 8 t t t 8 t t : t' ++ +' 2 q t t t t t t t t t t t t t t q ) +.) t t t t t t t t t t 8 8 8 R +.c t ' ++ +'t t t t t t t t t 8 5 t t t t t t t t t t q t t q t t t t t t 5 8 t t t t t' ++ +' t q V t t 8 t t t t t 8 t t t 8 u t t t t e e e t t t t t t 5 t t t t 8 q ' ++ +'t t t t 8 5 t t t 5 t : t t t t q 2 t 5 t t t t t t t : t 8 t t t t t t 5 8' ++ +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t 8 ' ++ +'5 t t t t t t t t t t 5 8 t t 5 q 8 5 t t t t t t q q t t t t t t t t t t t' ++ ,' 8 t t t t t t 2 q t t t 5 2 q 2 q t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.' ++ +'",'#10'"oXoXoXoXoXoXoX>.t t 5 8 t t t t t t t t t ~ ] j q 5 t t t t 5 q 8 t' ++ +' t t t t t t t t t t t 8 t t t t t t t 5 t t 5 8 t t t t t t t t 5 8 t : t ' ++ +'q t t t v 5 t t t 2 q : 5 5 t t t t t t t t 5 t t 5 t 4.t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t q 8 q 2 5 t t t t t ' ++ +'t t t t t t q 8 5 t t t t t t t t t t t t t 8 u x x p t t t t t t t t t t t' ++ +' 8 5 t t q 2 q t t v t t t m t t ..''.| t t t t t t t t t 5 t t 8 t t t t 5' ++ +' 8 q 5 t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'5 t t t t t u 2 u 2 8 8 t t t t t t t t t t t t 8 t t t 5 t t t t t t t 2 q' ++ +' t 5 8 t 5 8 t t 8 t t t 8 t t ^ t t 8 t t t t t 5 t t 5 t t t t 5 e e e e ' ++ +'e t 8 t t t 8 8 5 t t 5 t t t t t t t t t 8 5 t t t t t t T T t t t t t t t' ++ +' t t t t t t t 5 q t t t t t t 5 8 t 4.q q 5 8 t t t t t t t t t t t t t t ' ++ +'t t t t t t t t 8 5 t t t t t t t t 5 8 t t t t t t t 5 q q 5 q q 2 t t t t' ++ +' t t t t t t 8 t t t t t t t t t t t q 2 q q t t t t 5 8 q q t t t t t t t ' ++ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t 8 5 t t t t t t t t t' ++ +' u p i t t t t t t 8 5 5 t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' ++ +'t t t t t t t t t t t t t 2 t t t ^ 8 t t t q t t t 8 t t t t t t t t t t t' ++ +' 8 t 4.t 8 5 t t t t t t t t t t 5 t t t t t t 8 8 t t t t t t t t t t t t ' ++ +'t : t 5 q q q 8 t t t u 8 t 5 8 t t t 8 5 8 t t t t t t t t 5 t t t t 8 5 g' ++ +' x i t t t t t t t t t t t t t t 5 5 q q q : ^ t t : 5 t t 8 p t p p t t t ' ++ +'8 5 t t t t t t t t t t 8 5 t t t t t 8 t t 5 t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t 8 t t t t t t q 5 8 t t t t t t t t t t : t t t t ' ++ +'t t t 8 t t p u t 5 t t t t t t t t t t t 5 t t t 5 t t v t t 5 q 5 q t t t' ++ +' t t 8 t t t t 8 e e e e e t t t t t t t t t t 8 5 8 t t t t t t 8 5 q t t ' ++ +'t t t t q 2 ^ v t t t t t t t t t t t t q q 8 5 t t t t t t t t 4.2 p G d t' ++ +' t t t t t t t t t t t t t t t t : t t t t t t t t t t 8 t t t t t t t t t ' ++ +'t t 8 2 q t t i u t t t t t t t 8 5 t 5 t t t 8 t t t t t t t q q 5 q t t t' ++ +' t 8 5 q q t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' ++ +'t t t t t t t Q Q Q : t t u t t t t 5 q t t 5 q t t t t t t t t t t t t t t' ++ +' 5 8 t t t t 8 t t t t t 2 q t t t t t t t t t t 8 u t t 5 8 t t t t q q t ' ++ +'t t t t t t t t t t : t t t t q 2 q q t t t t t t t u t a t t t t t t t t 5' ++ +' t 5 t t t t t t t t t t t t t 5 q 8 t t t t t 2 t t t t t 5 t t t t t t t ' ++ +'t 5 t p x p t t t t 5 t t t t t t t t t t t t t t t t t t 8 t t t t t ^ 8 5' ++ +' t t t t m q ..4X4XX.5 2 t t t t t t 8 t t t t t t t t t t t t t 8 t t t t ' ++ +'t t t t t 2 u t t t t t a t u P Y h 2 t t t t q t t t : t t t t t t t t t t' ++ +' t t t t t t t t t t 8 5 t t t t t u z v u t t t t t t t t t t 8 5 t t t t ' ++ +'5 8 u v t t t t t t t t t t t t t t t t t e e e e e t t t t t t t t t t t t' ++ +' 5 t t t t t 5 q 2 q : t t t t t t t t t t t q 2 t u t t t t p p t q t t t ' ++ +'t t t t t t 8 8 G !.#X!.J t q t q t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t 5 t t t 2 q t t t t t t t j R l t t t t t t t t t t t t t t 5 t ' ++ +'u 2 q t t t q t t t t t q q t t t t t t t q t t t 5 8 t >.oXoXoXoXoXoXoXoX<' ++ +'.",'#10'"oXoXoXoXoXoXoX<.u t t t q t Q t t t q 5 : 5 t t t 8 q q p l u t t ' ++ +'t 8 5 t t t t t t t t t t t t 5 8 t t t t t t t t u 8 t t t t t t t t ! O.R' ++ +' q t t 8 5 t t t 8 t t t t t t t t t t t t t t t t t t 5 q q q 8 t 8 t t t ' ++ +'t H ( G t t t t t t t t t t 8 t t t t t t t t t t t t t q q 5 t t t t t q t' ++ +' t t t t 8 t t t t t t t t 8 t p v j t t t t 8 5 t t t q t t t t t t t t t ' ++ +'t t t t t t t t t t v t t t t t t m z sXLXKXiXG q t t t t t t 5 t t t t t t' ++ +' t t t 5 t t t t t t t t t t t t t q 8 t t t t q 2 P `.$X$X].) t a t t q q ' ++ +'t t q t t t t t t t t : t t t t t t t t t t t t t t t t t t u l l 5 t t t t' ++ +' t t t t t t t t t t t t 8 q 5 t t t 8 5 t t t t t i 5 t t t t t t t e e e ' ++ +'t t t 5 8 t t t t t t t t 8 t t t 5 u q q q q t t t t t t t t 8 5 t t q ^ v' ++ +' v t t t p G v p 2 t : t t 5 8 t t t 5 8 X.5XNXiX-.t 5 t t t t t t t t t t ' ++ +'t t t t t t t t t t t 5 5 8 t t t t 8 t t t u 8 t t t t t t q x ! ] t t t t' ++ +' t t t t t 5 t 8 t t t t 8 t t t t t 5 q t t t p b p t t t t t t a g p t t ' ++ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXXXa G t t 8 5 8 q t t t q t' ++ +' t t t t t t 2 p x y a t 2 q q t t t t l x 5 t t t t t t t t t t 5 8 t t t ' ++ +'t t t t t t 8 t t p @.+XO.u t t t q t t t 5 5 5 8 t t t t 8 t t t t t t t t' ++ +' t 4.q q 5 q 8 5 5 t t 5 d ..^.o.t t t t t t t t t 5 t t 8 q t t t t t t t ' ++ +'t t t 2 q : t t t t t t t t t t t t t 5 8 5 8 5 t t t t u y u t t t t t t t' ++ +' t q q q q t t 8 t t t t t t t t 8 t t t t t t t 8 t t t t 5 G iXKXKXiXH q ' ++ +'t t t t t 8 t t t t 8 5 t t 2 u t t t t t t t t t t t t t t t t 5 8 t 2 a h' ++ +' ].gXGXGXlX XP t t t q 2 q q 5 q t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t 8 t t t u t t t t 5 t t t 5 8 t t t t 8 t t t 5 t t t t b H u t t 5 t g' ++ +' j u t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t 5 j l u 2 q t t t t ' ++ ,'t t t t t t 8 t 5 t q t t t v t t u b x u t t t t t t t t 5 t t t X.sXNXiX!' ++ +'.t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t t t t ' ++ +'t t t t 8 5 i g ~ 8 t t t t t 8 t t 8 t t t t t 5 t t t t t t 8 2 q t t b ~' ++ +' b t t t t t t p L c i q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoX' ++ +'] v t t 5 8 u 2 t t t : t t t t t t t u a u t t 8 u q 5 t t t p ^ v p t t t' ++ +' t t t t 8 5 t t t t 8 5 t t t t t t 5 t t t O.;._ q t t t t t t t t q 8 5 ' ++ +'8 t t t 5 t t t t t t t t t 4.2 q 8 5 5 8 t t t 8 8 ( X.^ t t t t t t t t t' ++ +' 8 t t u 2 t t t t t t t t t t q 5 q t t t t t t t t t t t t t t t 8 q t t ' ++ +'a u t t t u t t t t t t t t 2 q 5 q 2 q 5 t t t t t t t t 5 t t 8 5 t t t t' ++ +' t t t t t t ~.aXaX/.p t 8 5 t t t t t 5 8 t t t t t j x u t t t t 8 5 t t ' ++ +'t t t t t t t t 8 8 8 9 ) dXGXKXJXFXgX#.t t t 5 8 5 q q 2 t t t t t t t t t' ++ +' t t t t t t t t t 5 8 t t t 5 t 8 5 t t t t t 8 t t t t t t 8 t t 5 t t t ' ++ +'t 8 q t G N.~.( q 5 q m p g t t t t t t t 5 8 t t t 5 t t t t t t t t t t t' ++ +' t q t l v u q q 5 t t t t t t t t t 5 8 q t t t t t t t t 5 u T 5 t q 5 t ' ++ +'t t t t 8 t t t ^ ~.#X^.( t t t t t t t : t t t t t t t t t t t t t t t t t' ++ +' t 8 5 t 8 t t 8 5 t t t t 5 8 t t u 2 v ^ t t t t t t 5 t t t 5 t 8 t t 8 ' ++ +'t t t t t t 5 q q q t p v p t t t t t t t p p t 5 8 t t >.oXoXoXoXoXoXoXoX>' ++ +'.",'#10'"oXoXoXoXoXoXoXXXu t t t t t t t t t t t t t 8 t t t t t t t 2 u t ' ++ +'t t p p t : p b v u t t 5 t t t t t t t t t t t t t t t t q q t t q 5 i x u' ++ +' 5 t t t t G u t t t t t t t 5 t t t t t t t t 8 t 2 u t t 8 t t t t t t t ' ++ +'t q d u t t 5 8 t 8 t t t t t t t t 5 t t t t t t t t t 5 8 t t t t t t t t' ++ +' t t t t t q t t t t u g v p t t t t t t t t t t t 5 t t t 5 8 t 5 t t t 8 ' ++ +'5 t 8 5 t t t t t t 2 q t t t t t t t y ~ ( d q : t t t t q 2 t t t t t t t' ++ +' u G ^ l 8 8 t t t t t 8 5 t t t 8 t 8 t t t t 8 O.dXJXKXKXKXgX`.8 t t t t ' ++ +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t u ^ ^.#Xo.t t t t u 5 t 8 t t t t t t t t t ' ++ +'t t t t : t t t t t t t t t t t u p 5 8 t t t t t t t t 8 t t t t t t t t t' ++ +' t t 8 5 t t v ^ R t t t t 8 5 5 q t t t t G ~ G t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t 8 t t t t t t t t 8 5 t t t t v t t 8 5 t' ++ +' t t t t t t t t 2 u t t t t t t t t t t t t 5 t t t t t t t t t t t t 5 t ' ++ +'t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t t 8 t' ++ +' t 5 t t t t t t t q 8 t t p c g t t t t t t t t 8 t t t t t t t t t t t t ' ++ +'t t t t q 2 t t : t q q 2 8 t t t t 8 v t t t t t t t 8 t t t t t 8 t t 5 t' ++ +' q 8 t t 5 t t 5 t t t t q 2 : t t t t t t 5 t t t 8 5 t t t 8 t t t t t t ' ++ +'t t t t t t t t t t t 8 5 t t t t t t q 5 t t 2 p l p t t t t t t t t t t t' ++ +' 8 t t t t t t 8 t t t t t t t t t 5 8 t t 8 u t t t t t t t t t t 5 t t t ' ++ +'t t t t q q 8 5 t t t t t t l c u 5 5 8 t t t t t t t t t 5 t t t t 5 t t )' ++ +' $XCXKXKXGXdX+.a t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t : t t t t t t t t t t t t t t t t t t t t t t t v t d o.-.J t t t t 5' ++ +' 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t t 8 5 ' ++ +'t t t 5 t t t t 5 8 t t 5 8 t t t t t t 8 2 Q t t t 5 8 q q t t t 4.5 t : t' ++ +' t t t t t 5 8 t t t t 8 t t t 8 t t t 8 t t t t t t t t t 5 t t t t t t 8 ' ++ +'t 5 8 q t t t u t t 5 8 t t t t t t t t t q 8 t t t t t t t t t t : t q t t' ++ +' t t t t t t t t t t 8 t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' ++ +'8 2 t t t t t t t t t t t 8 t t t t t t t t t t t t u g p t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t 5 q t t t t t t t t t t t t t v t t t t q ' ++ +'t t t 5 t t t t t t 8 t t N 2 5 t t t t 8 t t t t t t t t t t t t t t t q t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 5 q q t t 8 5 t t t t ' ++ +'t t t t t t q 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t Q t t' ++ +' t t t t t t t t t t t t t t t t q 5 q 8 t 8 t t 8 t q q u q 5 5 t t 5 8 t ' ++ +'t t t t t 8 t t t 8 t t t ;.dXlXjXgX].x t t t t t t t t t t t t t t t t t t' ++ +' t t t t : t t t t t t t t t t t t t t t t t t t t t t t t q 2 t : t t t t ' ++ +'5 ^ 2 q t t u t t t t t 8 t t t t t t t t t t q t t t t t t t t t t t t t t' ++ +' t t q q 5 q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t ' ++ +'t 8 v u 2 t t t 4.t t t t t t t t t t t t t t t 5 t t t 5 t t t 5 t t t t t' ++ +' t t t t t t t t t t t t t 5 q 5 q q q a u 5 8 t t t t t t t t t t t t t t ' ++ +'5 8 q 5 t t t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>' ++ +'.",'#10'"oXoXoXoXoXoXoX>.q q 8 5 t t 8 5 5 t t t 5 t t t t t t t t t t t t ' ++ +'t t t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t q : t t t t t t t' ++ +' t t t q q 2 u t t t t 2 u 8 t 8 t 8 5 t t t 5 t t 4.2 8 t t t t t q t t t ' ++ +'t t 8 5 t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t 8 5 8 t' ++ +' t t 2 t t t 5 8 t 8 t t t t t t t : 5 q 5 8 t t t t t t t 8 t t t t t 5 8 ' ++ +'t t t t 8 t t 8 5 t Q t t t t t t t t t t t t t t t t t t t t 8 5 t 5 t t 5' ++ +' q 5 2 2 q q 8 t t t t t t t t t t 5 t t t t t t t g +.].].`.K t t t t t t ' ++ ,'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t q q q 5 t t t t 8 v q q t t t t t t t t 5 8 t t t t t t t t t 2 t ' ++ +'t t t t t t t t t t : t t t t 5 q 2 q t 5 8 t t t t t t t t t t t t t t t t' ++ +' t t t 5 8 8 t t t t t t t 5 u T v t t t t t t t t t t t p u t 5 8 t t t t ' ++ +'t t t t t t t t t t 8 5 t t 8 5 t t t t 8 t t t t t q q q 2 2 u b l u t t t' ++ +' t t t t t t t t t t 8 5 8 5 8 q t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.q 2 q q t t t t 8 t t t t' ++ +' t t 5 t t 5 q t t t t t t t t t t t t t t t t t t t t 8 t t t t u g g t t ' ++ +'t q t t t t t t t t t t t t t q 8 5 t t t t t t t t 8 5 t t t t t t t t t 5' ++ +' t t t t t t t t 5 q 8 5 t t t t t t t 8 t t t t t t t t 8 5 8 t t t : t t ' ++ +'t t t 5 8 t t q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' ++ +' t 8 5 t 5 5 t t t t t t t t t t 5 t t 5 8 t Q t t t t t t t t 5 8 t t t t ' ++ +'t t t t t t t t t t t t 8 5 8 u 5 8 t t t t t t t t t t t t t t t t t t t t' ++ +' t u t u t t t t t t t t t t t t t t t t : t t t t t t : t t t t t t t t t ' ++ +'t t t t t t t t t t t t t q 2 t t q 2 q q t t t t t v t t t t 5 q t t 8 t t' ++ +' t 5 8 t t t t t t t u 5 8 t t t t t t t t t t t t t t q q q t t t 8 t t 8 ' ++ +'t t 8 5 t 8 5 t 8 t t t t t t 2 q t t t t 5 t t t t 2 q t t t 4.t t t 5 q 5' ++ +' q 5 p T x t t t t t t t t 2 q q t q 5 8 2 q t t 8 t t t t t t t t t t t t ' ++ +'8 t t t t v p v v u t 5 8 t t t t t t t t t t t t t t t 2 q t t t t t t t t' ++ +' t t : t t t t t t t t t t q 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' ++ +'5 q t q t t t t t t t t t t t 8 t t 5 q t t 8 5 t t t t t t t t t t t t t t' ++ +' 5 8 t t t t t u p i t t 8 5 t t t t t t t t t 8 t t t 5 5 8 t t t t t t t ' ++ +'t t t t t t t t t t t t 8 t t t t t t t t 8 5 5 8 t t t t t t t 5 t t t t 8' ++ +' 5 t t q 5 5 8 t q 5 t t t t t t 8 t t q q t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t 5 t t t t t t 8 t t t t 8 t t t t t t t t 8 5 t Q t t' ++ +' t t t t 8 5 8 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t 5 8 t t t 8 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t q q t t 5 q q q t t t t ' ++ +'t t t t t t q t t t 5 8 8 5 8 q t t q 2 t 5 t 8 t t t t t t t t t t t t t t' ++ +' t 8 2 q 5 q t t 5 t t 5 t t t t t t t t 5 t t t t t 8 u t t t t t 8 t t t ' ++ +'t q q t t t 4.8 5 Q v t 8 q 2 p T b t t t t t t t t t q q t q q 5 q q t t t' ++ +' t t t t t t t t t t t t 5 t t t u ^ t i i 5 t t t t t t t t t t t 8 5 t t ' ++ +'t t t t q t t t t t t t t t t t t t t t t t t t t t t 5 <.oXoXoXoXoXoXoXoX>' ++ +'.",'#10'"oXoXoXoXoXoXoX>.q t t t 8 t t t t t t t 8 t t t t t 8 5 8 5 t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t q 5 q t t t t t t t t t 5 t' ++ +' t t t 8 t t t 5 8 t t t t t t t t 5 t t t t t t 4.t t t t t t t t t t 8 t ' ++ +'t t t 8 t 5 t t t t 5 : q q 8 5 5 8 q q t t t t t t t t 8 5 q q q 5 t t 5 t' ++ +' t t 5 t t t t 5 t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t ' ++ +'t t t t t t t q 8 t t t : t t t t t t t 5 t t t t t q t t t t t t t t 8 t t' ++ +' 8 5 t t t 5 t t t 5 8 t t t t t 5 t t t 5 8 t t t t t t 4.t t t t t t t t ' ++ +'t t t t q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t :' ++ +' q 5 t t q q 5 8 t t t t t t t t t t t t t t 5 5 t t t 5 t t q q t 8 t 5 t ' ++ +'t t t t t t t t t t t t t t 5 t t 8 5 5 t t t t t t t t 8 5 t t t t t t t t' ++ +' t t t t t t t t 8 q 5 t t 5 8 t t t t t t t t v v t u t p u t t t t t 8 5 ' ++ +'5 q 5 q t 5 t t 5 t t t t t t t t t t u t t 8 5 t t t t t v 8 t q 5 q t t t' ++ +' t t t t t : 8 5 t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t y l <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t 5 5 t t t 5' ++ +' t t t t t t 8 t t t t t t t t t ^ v t t t t t t t t t t t t t t t t t t q ' ++ +'q 2 t t t t t t t t t t t t t t t t t t v q t t t t t t t t 8 t t t 8 5 t 4' ++ +'.t t t t 8 5 t t t t t t t t t 5 t 8 t t t t t u i 2 u t q t q 2 t t t t t ' ++ +'t t t 5 q t q 2 q t t t 8 t t 8 t t t t q t t t t t t t t t t t t t t t t 8' ++ +' 5 t t t t t t t t t t 8 5 t t t 8 5 t 5 8 t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t 5 t t t t t t t 8 t t t t t t t t t t 8 t t t t t t t t' ++ +' t t t a t t t t t t t t t t t t q 2 t t t t t t t t t t t t t t t t t t t ' ++ +': t t t t t t t t t t t t 2 q t t q 2 q 5 t t t t t t t u g p t t t t q q t' ++ +' t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 8 8 t t t t t ' ++ +'t t t t t t t 8 t t t t t t t t t t t t t 5 t 8 t t 8 5 q 4.t t t t t t 5 u' ++ +' 8 5 8 t 5 t t t t 8 5 8 q q q 2 t t t t q t t t t t t 5 t t l L l t t t t ' ++ +'t t t t v 5 q 5 t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t x ^ ,.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' ++ +'t t t t 8 5 t 8 8 t q 2 q t t t t t 5 t t t t t t t 5 t &.&XOX%.5 8 5 t t t' ++ +' t t t t t 8 u t t t t t 8 q t t t t t t t t q q q 5 t t t t t t V q t t 8 ' ++ +'5 t 5 t t t t t t 5 8 t t t t t t t t t t t t t 8 5 t t t t t t t t u l ] O' ++ +'.x t t t t 5 q t t t : t t t t t t t t 5 8 t t t t t t t t t t t t q 5 q q ' ++ ,'q q t t t t t t t t t t 5 t 8 t t 5 t t t t t t t t t t t t 2 q q 5 t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t 5 q 2 q t t t t 8 t t t t 8 5 t t ' ++ +'u 2 q t t 8 t t t 5 8 t t t t t t q : t t t t q q q 8 5 t q G G a t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t q 5 q 2 q q t t t t t t q t t t ' ++ +'G 8 5 t g g t t t t q 2 t t t t t t t t t t t t t 5 8 t t t t t 5 8 t t t t' ++ +' t 8 5 t t t t t t t t t t t t q 2 q t t t t t t t : t t t t t 5 t t t t t ' ++ +'t t t t 4.t t 5 8 t t t t 8 5 8 5 q t t t t t t t t t t t t t t t 8 5 t t t' ++ +' 5 8 t t t x ! x t t t t t t t t t t t 8 5 t t t 8 t 8 t t t t t t t t t 5 ' ++ +'8 t t t t t t t t t t t 8 5 : t t t t t t t t t t t p x >.oXoXoXoXoXoXoXoX>' ++ +'.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 5 q t t t t t 8 t t t 8 5 t ' ++ +'t q b oXPXIX.Xj t 8 5 t 8 8 5 t t t t 2 q t t t t u 2 t t t t 8 5 t t 2 q 2' ++ +' q t t t t t t G u : t q 5 t 8 t t t t t t t t t t t q t t t t t t 5 8 t t ' ++ +'t t t t 8 t t 8 t t L ''.''.! t t t t q q t t t t t t t t t t t t t t t t t' ++ +' t t t t t t q t t q q 2 q 8 5 t t t t t : t t t t 8 t t t t t t t t t t t ' ++ +'t t t : t t q 5 q q t m t t t t t t t t t t t t t t t t t t t t t t q q q t' ++ +' t t t t t 5 8 t t t t t t 8 t t t t 5 t t t t t t 5 8 t 8 4.q 2 t t t t 2 ' ++ +'q q 5 t t ~ !.!.^ t t t t t t t t t t 8 q t t t t t t t t t t t 8 5 t 8 q q' ++ +' q t q t t t t t t 5 q t t v t 8 5 t u t t t t t 8 t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t 5 t t t t t 5 8 t t t t 5 q j j t q q q t t t t t t' ++ +' t t t 8 t t t 8 t t t t t t 5 t t t t t t t t t t t t t t t Q v Q t t t t ' ++ +'t t t t t u d d u 5 8 t t t t t t t t p p i t t t 8 5 t t 8 5 t t t t t t t' ++ +' 5 t t t t t t t t t t t t t t t t t 8 t t 8 5 t t t t t t t t t t t t t t ' ++ +'t t u 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t 8 5 t t t t a' ++ +' p i t t t t t t t t t t t t t l .XCXzX.Xp t t t t t t t t t 8 t t t t t 5 ' ++ +'t t t t t t t t t t t 8 5 q q t t t t p u 8 L t q 2 q t t t 8 8 t t t t t 4' ++ +'.t t t t 8 t t t t t t 5 8 t t t t t t t 5 t t g _ O.l t t t q t q t t t t ' ++ +'t t t t t t t t t t t q t t t t t t u 2 t t 5 2 8 5 5 q t t t t t t t t t t' ++ +' t t t t t 8 t t 8 5 t t t t t t t t q q q 5 t Q t t t t t t t t 5 t t t 5 ' ++ +'8 t t q 2 t t t t 2 q t t 5 8 t t t t t t t t t t t t t t 5 t 5 8 t 8 t t t' ++ +' t t t 8 4.t u t t t t q 5 q q t t ..#X#X( t t t t t t t t t t t t t t t t ' ++ +'5 8 t t t t t t t t 5 q q 5 t t t t q g x i 2 q q t ` l u u t t t t t t g x' ++ +' i q u l t t t t t t t t t t t t t t 2 q t t 5 t 8 t t t 5 8 t t t t t t : ' ++ +'u x l p 5 : 5 t t t t t t t t t 5 t t t t t 8 t t t t 8 t t t t 5 t t t t 8' ++ +' 5 t 8 5 t t t Q t t t t t t t t t y d d t t t t t t t t t t t t t 5 t t t ' ++ +'t t t t t t 8 5 t t 5 q t t 8 t t t t t t t t t t t t t t t t 5 t q q q t t' ++ +' t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' ++ +'>.5 t t t t t t t t p x v R l t t t t t 8 t t t t t t t t ( XX~.~ t t t t t' ++ +' t t t t t 5 t t t t t 8 t t t t t t t t t t t 5 q t q t t t p x g 8 5 q 5 ' ++ +'q q t t t 5 t t t 5 t t 4.t t t t 5 t t 8 5 t t t t t 8 t t t t t t t t t t' ++ +' t t t t t 5 q 2 t t t t t t : t t t t t t t t q t t t t t t 8 t t t q q t ' ++ +'8 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t q 2 q : 5 v t' ++ +' t t t t t t t 8 t t t t t t t i h t t t t q q t t t t t t t t t t 5 8 t t ' ++ +'t t t t 8 t t q t t t t 5 8 t t t t 8 5 t t t t q q 2 5 t t G X...z 5 8 q t' ++ +' t t t t t t t t t t t t t t t t t t t t q q q 2 : t t t t t u x L g u t 8 ' ++ +'^ v ^ p t t t t t t t g c i i *.n.2.t 5 t t t t t t t t t t t u 8 t t 8 t t' ++ +' t t t t t t t t t t t t t p i t q t t t t t t t t t t t t t t t t t 5 t t ' ++ +'q t t 4.t t t 8 t t t t t t t t t t t t t t t t t t t t t t t a t t 8 t t t' ++ +' t t t t t t t 8 8 t t t t t t t 8 t t t t t 8 t t t 5 t t t t t t t t t 8 ' ++ +'t t t t t t t q 2 q 5 t 5 8 t t t t t t t t t t t t t q 2 >.oXoXoXoXoXoXoXo' ++ +'X>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t p v Q b j t t t t 5 t 8 t t t ' ++ +'t t t t t t t t t t t t t t t t t t 5 q t t t t t t t 5 t t t t t t t t 8 5' ++ +' t 8 t t t u g g t 5 8 5 t t 8 t t t t t t 8 t t t 8 t t t t t t t t t t t ' ++ +'t t t 8 5 t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 2 q q q 2 q t' ++ +' t t t 8 5 t t 8 5 t t t t t t t t t t t t t t t t t t t 8 5 t 5 t 8 u 2 q ' ++ +'t t t t t t t t t t q G 8 t t t t t t t t t t t t t t u g j u t t t t t t t' ++ +' t t 5 t t t t t t t 5 t t t t t t t q 5 t t 8 t t t t t t t 5 t t 8 5 8 t ' ++ +'t t t t t t y u t 5 q t t t t t t t t t t t t t t 5 t t t 2 q t t t t t t t' ++ +' t t t t t 8 i g u t t t t l v p t t t t t t t u u q v XXfXXXd t t t t t t ' ++ +'t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t q u t t 8 5 t t t t t t t' ++ +' t t t t 5 8 t 8 t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t 5 t t 5 ' ++ +'T Q t t t t t t t t 8 t t t 5 8 t t t t 5 t t t t 2 u G L 5 t t t t t t 5 t' ++ +' t t t t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t q 8 t t t ' ++ +'t 5 5 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t d p' ++ +' t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t q 5 t q t t t ' ++ ,'t t 8 t t t t t t t 8 t t t t t t t t t t t q t t t t t t t t 5 8 t t t 4.t' ++ +' 5 t 5 8 t t t t t t t t t t t t t 8 t t t t t t t t t 5 t 5 t t 8 t t t t ' ++ +'t t t t t 8 q t q 5 q 5 t t t : t t t t t t t t t t t t t t t t t 5 8 t t t' ++ +' 8 5 t t t t t t t t t t t t t t t t t t t t 5 L t t t t m t t t t t 8 5 t ' ++ +'t t t p p t t t i j y t t t t 8 t 8 5 t t 8 5 8 t t t t t t t q q t 5 t t 8' ++ +' 5 t t t 4.8 t 5 q t 5 : t t t t t t t t t t t t t t p x g t t t t t t t t ' ++ +'8 t t t u 8 t t 5 t t t t t t t t q u 2 t u p 5 t t t t t t t t t t t 8 5 8' ++ +' t t %.~.| u t t t t 5 8 8 t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'q 2 t t t t t t t t t t t t t t t 8 5 t 5 t t t t t 2 t t t t t t t t t t t' ++ +' t t t t 5 8 t t 8 t t 5 t t Q Q t t t t t t t t t t t t t t t t t t t t t ' ++ +'q 5 L 5 t t 8 t t 8 t u p u t t t t t t t t t : t 5 t 8 t t t t t t t t t 8' ++ +' t t t t t t t 2 u t 8 t t 8 q 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' ++ +'>.q 5 t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t 2 t t' ++ +' t 5 8 t p ^ V t q t t 8 5 t t 5 8 t t t t t 5 t t t t t t t t t t q q t t ' ++ +'t t t t t 5 t t 5 8 t 4.t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t' ++ +' 5 t t t 8 t q 5 t t t t t t t t t t t t 2 q t 8 t t t t t t t t t t t t t ' ++ +'t t 5 t t t q t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t' ++ +' t t t t t t t q j j t 8 5 t t t t t t q j ^ x t t t t t t t t t t t t t t ' ++ +'t t t t t : q 2 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t' ++ +' q p L x t t t t t t t 5 t t 8 t t t t t 8 t t t t t t t u 2 5 8 u ] &.^ t ' ++ +'t t : t t t t t t t 5 t t t t u x t t t t t t t t t t t 8 t t t t t t t t t' ++ +' t t t 8 5 t t t t t t t t 8 t t t t t t t t t t t t t t 5 q 8 t t 8 q t t ' ++ +'t 4.t t 8 t 5 t t t t t 8 5 t t t 8 5 t t t t t 8 t t t t t t t t t t 5 8 5' ++ +' t t t t t t t t t t t t q t v u 8 t t t 8 5 q y d y t t t t t t t t t t t ' ++ +'8 t 5 t t 8 t t t t t t t t t t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXo' ++ +'X>.",'#10'"oXoXoXoXoXoXoX>.5 q t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t q q q t t t t t t ..^.~.H 5 t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t 2 u v t t t t t t 8 t t t t t 4.t t 8 t 5 8 t t t 5 t t t ' ++ +'t t t t t t t t t q t t t 8 t t t t t t t t t t t t t t t t t t t q q q 5 t' ++ +' t t t t 5 8 t t t t t t t t 8 t t t 2 u 8 5 8 t t t t 5 8 t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t p _ ] l t t t t t t t t 2 u d p t t' ++ +' t t t t t t t t t t t t t t t t t t 5 q t t t t t i a t t t t t t t 8 t t ' ++ +'t t t t t t t t t t t t t t t g u t t t t t t t 8 t t 5 t t t t t t t t t t' ++ +' t t t 8 5 8 : d &.+X'' t t t t t t t t t t 8 y l t t t t t q t t t 8 5 t t' ++ +' t t t 5 t t t t t t t t 8 5 t t t t t t t t t t t t t t t t 5 8 t t t t t ' ++ +'t t t t q 5 q t t u 2 t t N 2 8 5 t t t t 8 t t t t t t t t t t t t t t t t' ++ +' t t t : t t t Q Q t t t t t 5 8 t t t t t t t t t t : t t t 5 t t 5 q 5 a ' ++ +'p a t 5 t t t t t t t t t t t 8 t t 5 t t t 8 5 t t t 8 t t t t t t t 5 t t' ++ +' t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 q 8 t t t t t t t t ' ++ +'t 8 t t 5 8 t t t t t t t t t t t 5 8 t t t t t t t 8 5 t p -.sX#X( t t t t' ++ +' t t t t t 5 t t 5 8 t t t t t t t 8 5 t t t 8 ^ t t t t t t t t t t t t t ' ++ +'t t t t 5 t 8 t t 5 t 8 t 5 8 t t t 5 8 t t t t q t q 5 q 2 t t t t t t 5 8' ++ +' t t t t t t 5 t 5 8 t q t t t t t t t t t t t t t q q 2 t q 8 5 8 u t t t ' ++ +'t t t t t t t 5 8 q 5 t t 8 t t t t t t t t t t t t t t t t t 5 8 p _ _ j 8' ++ +' 5 8 t t t t t u 2 t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t t ' ++ +'u d l u 4.5 8 5 t t u 2 t t t 8 t t 5 8 t t t t t t t t u t t t 8 t t t t t' ++ +' 8 t t t t t t t q 5 8 t t t t t 8 t 5 t u ~ ] v v u 5 t 8 5 q q q 2 g %.&.' ++ +'^ t t t t t t t t t t t t t t t t t t : q t t t t t t t 8 5 t t t t t t t t' ++ +' t t t t t t t t t t t t t t t i g u 8 5 8 q q t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t v T q t t 5 8 t t t q t t t 5 8' ++ +' t t t t t t t t t t t t t 5 q 8 t t t t t t t q q q q q q t t t t t t t t ' ++ +'t 5 q q q q 5 t t t 8 t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXo' ++ +'X>.t t 5 8 t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t t 5 8 ' ++ +'t t t t 8 o./.!.H t t t t t t t t t 8 t t t t t t t 5 8 t t t t t t 2 u v t' ++ +' t t 8 t t t t t t t 4.t t t t t t 8 t t t t t t t t t t t t t t t t t t q ' ++ +'q 5 8 q q t t t t 8 5 8 q e e e t t t 8 t q 5 q q t t t t t t t t t t t t :' ++ +' 5 q q t t 5 8 q 2 t t t t t t t t t t 8 5 8 q t t 5 t t t t t 5 t t 8 8 5 ' ++ +'t t t t t t t t u p j 5 5 8 t t t 8 t t q q t t t t t t t t t t t t t : t t' ++ +' t t 5 t t t t t t 5 t t u j p t 4.q t t u l j i t t t 5 t t t t t t t t t ' ++ +'t t t 2 t t t 5 t t 5 t t 5 t t 5 8 t 2 q t q 5 8 5 t t t t t 8 t t t 8 5 T' ++ +' 2 q t t t 2 q 5 q v ,..X` t t t t t t t t t t t t t t t t t t q 5 t t t t ' ++ +'t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t x ^ p 5 8 q 5 q t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t t t t t u 2 t ' ++ +'t t t t t t t 5 q t t t t t t : t t t t t t t t t t t q 5 t t t t t t q 2 q' ++ ,' 5 2 q t t t t t t t t t t t : 2 q 2 q 5 8 t t t t t t t t >.oXoXoXoXoXoXoX' ++ +'oX>.",'#10'"oXoXoXoXoXoXoX>.t t : 5 t t t t t t t t t t t t t t t t t t 8 5' ++ +' t t t t t t t t t t t t q q t t t t z b t t t t t t t t t t t t t t t t t ' ++ +'t t t t 8 5 t t t q t v t 8 q t t t t t t 5 8 4.t t t t t t t t t t t t t t' ++ +' t t t t t t t q q q q q 2 t 5 t t t t t t t t t e e e e e t t t t 2 q 2 q ' ++ +'t t t t t t t t t t t t q q q 5 t t 8 q q q x ! g u t t t t t t t t q 5 t 8' ++ +' 8 5 5 8 t t 8 t t t t ^ : t t t t t t t t t t q 5 q t t t 5 t t t t q q t ' ++ +'t t t t t t t t t t t t t t 8 t t t t t t t t t t u 5 t t 8 5 t t u b c u t' ++ +' t 8 t t t t t t t 8 5 t t t t q q 5 t t t t 8 t 8 t t t t t t q 5 q q t t ' ++ +'8 t 5 t t t t t t t 5 t Q u t t t t t t 5 t i ` '' c u 2 t t t 5 t t t t q ' ++ +'t t t t t t t : t t t t t t t 8 t t 8 t 5 t t t t t t t t t t t t t t t t t' ++ +' t t u j c p u 5 t q 2 4.t t t 5 t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t 8 5 t t t t v t t 2 q t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t 5 t 2 q q 5 t t t t t t t t t t t t 5 8 q q t t t t t ' ++ +'t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t e r r t t 8 5 t t t' ++ +' t t t t t 2 t t t t t t t t t t t t t t t 8 5 t t t 2 u u d p t 8 t t t t ' ++ +'t t t t t t t 8 t 5 8 t t t t t t t t t t t t t 5 8 5 5 t t t t t t t t t 8' ++ +' 5 t t t t t t 5 8 t t t t t 5 t t t t t q 2 2 q 5 q t g _ ) i t t t t t t ' ++ +'e e e e e t t t t q q q 5 t t t t t t t t t t t t q q 2 q 5 8 5 5 5 g @.''.' ++ +'] t t t t t t t t t t q 2 u t q t t t t t t t t t v t t t 5 8 t t t t t 5 q' ++ +' 8 5 t t t t t t t t q 2 q t t t t t t t t t t t t t t 5 t 5 8 t t 8 t t t ' ++ +'t t t t t 5 8 t t 5 u p 5 t t t t t t t t 8 t t t t t t t 5 q 8 t t t t t t' ++ +' t t 5 8 t t t q q 2 q t t t t 8 t t t t t t t 8 5 L 5 t 5 8 t t t q t q q ' ++ +'5 t q q t t t 8 t 8 t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t' ++ +' t t t t t t t t : t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t ' ++ +'t t : t t t t t t t t t t t t t t t t t t t t 5 q t t t t u v v u t t t t t' ++ +' v t t t t t t t t t t t t t t t t t t t t t t 8 t q q 5 8 t 8 5 t t t t t ' ++ +'t t t t q 5 q q t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' ++ +'XoX<.e e r r r q q t t t t t t t t t q q 8 5 8 5 t t t t 8 t t t t t t t t ' ++ +'5 t t 5 i l p 5 q q q 2 q t t t t q t t t t t t t t 8 8 t t : t t t t t t 5' ++ +' q 2 q t t t t t t t t t 8 t t t t t t t t t t t t u 8 8 t t t t t t q t t ' ++ +'t t t L #.O.x 5 t t t t t e e e e e t u t t t q 2 q t t t t t t t t 2 q t t' ++ +' 5 q 2 q t t t t 2 j #.|.O.: t t t t t t t t t p j u 5 5 t t t t t t t t 2 ' ++ +'^ t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t' ++ +' t t t 8 u t t t 5 t t t t 5 q t t 4.q t t q t t t t 8 t t t t t 8 5 t 8 u ' ++ +'2 q t t 8 t t t t t t t t t 5 8 8 t t t 5 8 t t t t t t t t t 5 t t t t t t' ++ +' t 8 t 5 t t t t : t t t t t t t t t 5 q 5 5 8 t t t t t t t t t t t t t t ' ++ +'t 8 5 t t t t t t : t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t' ++ +' t t t t t t 8 5 t t t t t t t t t t t u 2 q t 8 t t t t t t t t t t t 8 t ' ++ +'5 8 t t t t 5 8 t t t t t v t t t t t t t t t t t t t t t t t t 2 q q q t t' ++ +' t t 5 8 t t t t 2 q t t 5 8 t t 8 5 5 8 t t 5 8 t t t t t t >.oXoXoXoXoXoX' ++ +'oXoX>.",'#10'"oXoXoXoXoXoXoX<.e e E E k e 5 q t t t t t t t t t q q 5 t t t' ++ +' t t t t t t t t t 8 t t 8 t t t t u u t 5 5 q q 5 t t t t 5 8 t 5 5 8 5 t ' ++ +'t t 5 t t t t t t t t t q q q q t t t t 5 8 t 4.5 t t t t t t t t t 5 8 t q' ++ +' 2 t t t 8 t t t q 5 t t t q t p ! T t 5 t t t t t t r r e t j c j t t t q ' ++ +'q t t t t : t t t q t t t 8 5 q q t t t t q t c ! l t t t t t t t t t 2 p x' ++ +' j t q t t t t t t 8 5 q v t t t 8 t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t q t t t t t t t t t t q 2 t t t t 2 t t t 5 8 t t 4.t t t 5 q t t' ++ +' t t t 5 t t t 5 t t t t t t t t 5 8 t t t t t t t t t t 5 t t t t t t t t ' ++ +'t 5 t t t t 8 t t t t t t t 5 t 8 t t t t t t t t t t t t t t q q q 8 t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t 8 t 8 t 4.t t t t t t t t t t t t t t : t t t t t t 8 t t t 5 t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t v ^ t t t t t t t t t t t ' ++ +'t t t : t t t q 5 5 q t t 5 t 8 5 t t q t u 8 t t t t t t 5 8 t t t t t t t' ++ +' t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.e e K E r e q t t i ' ++ +'t t t t t : t t t t 8 t t t t 8 5 t t t t 8 t t 5 t t q t q t t q q 8 5 q q' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t 2 q t t t 5 t t t t t 4.t ' ++ +'t 8 t 5 t t t 5 t t t t t t t 8 t 5 t t t t t t t t t t t t u t t t t t t 5' ++ +' 8 t t t t l L l 8 t t q q t t t t t t t t q q t t 8 5 t t t t t t q q 5 q ' ++ +'8 t t t t t t t t t q q p t u 8 t t t t 8 5 t t q q t t t 8 t t 5 8 q 5 t t' ++ +' t t t t q t t t t t t t t t t t g ! T t t t t t t t t t t t t t t t q t t ' ++ +'t 8 t 8 t 2 q t t t t t t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t' ++ +' t t t t t t t t t 8 5 t t 8 t 5 8 t t t t t t t t t t t t t 8 t t t t t t ' ++ +'t t t t t t 2 p g u 8 t t u t t t t t t t t t 5 : t t t t t t t t 5 t t t t' ++ ,' t t t t t t t t t t t t 5 8 t t t t t t t t 4.t t t t t t t 8 t t u 2 t t ' ++ +'t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t t t t t t t t t 5 q u v ^' ++ +' L t t t t t t : t t t t t t t t t : q 2 q 8 2 q t 8 t t q 2 q 2 q t t 5 8 ' ++ +'t t 8 5 8 t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' ++ +'XoX<.e e e e e e t t c [ v t t t t t t t t t t t t t 5 q 8 5 t t t 5 t t 8 ' ++ +'q 5 q q 2 t t t q 2 q q 2 t t t t t t 8 t t t 8 t t t t t t t t t t t t t u' ++ +' v t t t 8 t t t t 8 5 t t t t 8 t t t 8 t t t t t t t 5 t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t p u 5 t t q 2 t t t t t t t t q 5 t t' ++ +' t t t t t t t t t t q 5 t t t t t t t t t t t t t q 2 t t t 5 8 t t t 5 8 ' ++ +'5 t t t 5 t t 8 q 5 q t t t t t : 5 : t t t t t t t t t t R ;.O.j t t t t t' ++ +' t t t t t t t t 8 q q t t 5 t t t q q t t t t t t 5 8 t t t 5 t t t t t t ' ++ +'t t t t t 8 5 t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t u b L s ! #.+.p t t t t t t t t t u t ' ++ +'t t t t t t t t 8 t t t t t t t t t t t t t t t t 8 q 5 t t t t t t t t t t' ++ +' t t t t t 5 t t 8 q t t t t t t t t t t t t t t t t t t t t t t t t : t t ' ++ +'t t t t 8 5 t t q q 2 t 8 G Q t t t t t t t t t t t t t t t 5 q q q 5 q q q' ++ +' t t q q q 5 q q t t t t t t t t t t t t t t t t 5 8 t t 5 8 >.oXoXoXoXoXoX' ++ +'oXoX>.",'#10'"oXoXoXoXoXoXoX>.e e e e e t t t T ] T q 5 q t t t t t t t t :' ++ +' t t t t 5 t t t t t t t t t t 5 8 t t t t t t q q t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t v t t t 8 t t t t q t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t p t t t t 8 t t t t t t t t t t t 5 t u t t u q q 5 e ' ++ +'e e t 5 8 t t 5 t 2 q t t t t t t t t t t t t ] Q.@.a t t t t t t t t t t t' ++ +' t t t t t t t t 5 t 8 t t t t u 2 q t q j ..X.( : t t t t t t t t t t t q ' ++ +'t t t u l _ ! u t t t t t t 8 5 t t t t t 5 t t t t t t t t 4.t t t t t 8 u' ++ +' t t t t t t t t t t 8 5 5 q t t t t u G f t u t 8 5 t t t 8 t t 8 t t t t ' ++ +'t 8 t t 8 u 2 t t t t t V q t t t 8 t t 8 5 t q q q t t t : t t l x p +.$X]' ++ +'.) 9 2 t t q 2 u p u t t t t t t t t t 5 t t t t 5 t t t t t t 5 8 8 5 t t ' ++ +'5 8 t t 5 t t t 4.u 2 t g t 2 q t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t 8 t t t t t 5 q q 5 q t t 8 5 8 5 t t t t t t t Q t t t t t t q 5 t ' ++ +'t t t t t 8 t 5 8 t t q 2 t t t t t t t t t t t t t t t t 5 q t t t t t t t' ++ +' t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; e e e t t t t i l ' ++ +'i q t t t t t t t t t t t t 8 t t 8 t t t t t t t t t t t t t t t t t t 5 :' ++ +' t t t t t t t t t t t t t t t : t t t t t t t t t t v u t t 5 t t t 4.2 t ' ++ +'t t t t t t t t t t t t t t t t t t t 8 5 t '' <.%.t q t 5 t t 8 5 t 8 t t ' ++ +'t t t 8 q 2 t t 2 q 8 e e e e e t t t t 8 t q q q q t t 8 5 t t t t u v oXk' ++ +'XOX[ t t t t t t q t t t t t t t t t t t t 8 t t t t t t 8 t t t 5 o.#XsX~.' ++ +'z t t t t t t t t t t t t t t t t 2 t t t t q t t 5 t t t t t 5 8 t t t 5 8' ++ +' t t t t t 4.t t t u t q 2 t t t t 5 t t t t t t 8 q t t t t H ~.#X^...t t ' ++ +'t t t t t t t t 5 t 8 t t t 5 t t t t q t t t t v u t t t t 5 t t t t t 2 q' ++ +' t t t t t t t t t 5 +.].[.P a 8 t t q u p v p t t t 8 t t t 8 t t t t 5 t ' ++ +'8 t t t t t t t t t t t t t t t t 8 t 2 u 4.^ ^ i j i u t t t t t t t t t t' ++ +' t t t t t t t t t t t 8 5 t t t t t t 8 t t 8 q 2 q q t t t t t t t t t t ' ++ +'t t t t t t t t t t 2 q : t t t t t t 5 8 q t t q t t t t 8 t t t t t t t t' ++ +' t t t t q t t t t t t t t t 8 t 5 8 >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoX' ++ +'oXoX>.m m 5 q t t t t 5 q 2 u t t t t t t t t t t t t 5 t t t t 8 t t 5 t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t N 2 t t t t t t t t t t t t t t t t t t t t 5 q b XXzX.' ++ +'Xv 2 t t t t t t t t t t 5 t t t q t t t t t 5 e e e e e t t t t t t t 8 5 ' ++ +'q t t t t t t t t 5 v oXkXOX[ t t t t 5 8 t t t t q 5 t t t t 8 5 t t t t u' ++ +' v t t t t 8 t t ..#XaX^.G t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' ++ +'q 8 t t t t t t t t t t t t t t q t p a t L #.+.g t t 8 t t 8 t t t t t 8 5' ++ +' 2 q t t u !.iXBXNX#X( t 8 5 t t t t t t t t t t 5 t t t t t t t t t t : V ' ++ +'q t t t t 8 5 t t t t q 5 t t t t t t t t t t p L P t t t t 2 5 q p d y t 5' ++ +' 8 5 t t 5 t t t 8 t 8 t 5 t 2 q t 8 5 t t t t t t t t t t q 5 q q ~ XXXX^ ' ++ +'u t q t t t t t t t t : t t t t t t t t t t 5 8 t t t t t t 8 5 5 t t t t q' ++ +' 2 q t t t t t 8 5 t v t t t t t t t t Q Q t q q t t t t t t t t t 5 t t t ' ++ +'t t t t 5 t t t t 5 8 t t t 8 t t 2 q t t t t t t t t t 5 t t >.oXoXoXoXoXo' ++ +'XoXoX>.",'#10'"oXoXoXoXoXoXoX>.m m q 5 t t t t t q q t t t t t t t t t t t ' ++ +'t t t t t t t 5 t 8 8 t t t t t t t t t t t t t t t t t : t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t : q 5 p >.oX>.d 8 t t t t t t t t t t 8 t t t t t t 5 8 t q e e' ++ +' e e e t t 5 8 t t q 5 q 2 t t t t t 8 5 t 8 t ] :.@.q q q 2 q t t t t t t ' ++ +'2 q t t t t t t t t t t 5 v t t t t 5 t t ^ -./...t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t 5 8 5 t t t t t t 8 t 5 8 t t t t 5 p l p t O.$X].) ' ++ ,'t t t 5 8 t t t t t t q 5 q q t 4.6.#XNXKXLXiXX.t q 5 t t t t 5 8 t t t t 8' ++ +' t t t t t t t t t t q T q 5 t t t t t t t 5 8 : t t t t t t t t t t t t t ' ++ +'t t 8 8 t t t t t 8 5 u 8 5 t t t 8 t t t t t t t 8 8 u t t t t t t t t t t' ++ +' t t t t q t 4.t ` oX.X~ t u q 8 t t t t t t t t t t t t t t t t t 8 t 5 t ' ++ +'t t t 5 t t t t t t t 8 5 q t t t t t t t t v u t t t t t t t t t t Q v q t' ++ +' t t t t t t t t t t q t t t t t t t t 5 8 t t t t t 5 t t q q t : t t t 5 ' ++ +'t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8' ++ +' t t q q q 5 t t t t t t t t t u 2 q t t t 5 t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t : t t' ++ +' t t t t t t : t t t t t t t t t t t t t t t x ~ c t t t t t t t t t t t 5 ' ++ +'8 q t t t t 5 8 t t 5 t e e e t 8 t t t t t t t 5 t t t q 2 t 8 t t t t t t' ++ +' t t t t t t t t 2 q q q q t t t t t t t t t t t t v t t t t t t t t d l t ' ++ +'5 t : t t t t t t t t t t t t q t 8 t t t t t t t t t t t t t t t t t t t t' ++ +' 8 t t t u 5.p 2 ) [.#.P a t t t t t t t 4.4.t t 4.N 2 2 t d /.aXDXBXsXo.: ' ++ +'t t t t t t t t t 5 t t t 5 5 t t t t t t t q 5 q 5 t t 5 8 t t t 8 t t t t' ++ +' t t t 5 5 t t t t t 8 5 t t t t t t 5 t t t t t t u u q u t t t 5 8 t t t ' ++ +'t t t t t t 8 5 t 8 t t t t 5 8 q 2 q 4.t p ] ` u u 8 t t t t t t t t t t t' ++ +' t t t t t t t t t t 8 t t t t 8 t t t t t t t 5 t t 5 q t t t t q u v t t ' ++ +'t t t t t : t t t t t q t t q t t t t t t t t t t t t t 8 5 t t t t 8 5 8 t' ++ +' t t 5 q 5 8 5 8 t q t u t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoX' ++ +'oXoX>.t t t 8 t t t t 8 5 t t q 2 q : t t t t t t t t t 8 t t t t t t t t 8' ++ +' t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t : t ' ++ +'t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t a q t 2' ++ +' u t t t t t t t 8 5 t 8 5 5 : t t t t t t t 8 t t t t t t t t t t t t 8 t ' ++ +'8 t t q q t t t t t t t q t t t t t t t t q 5 q 2 q q t t 8 t t t 8 t t 5 8' ++ +' ^ t 8 8 t t t t t t t t q t t t t t t t t t t t t t q t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t q q t t 4.t t u P K t 4.4.t t 4.4.5 8 t t t 5 t' ++ +' t t q t t '' #XsX#X~.d t t t t t t t t t t 8 t t t 8 8 t t t t t t t q q 8' ++ +' q t t t t t t 2 u t t t t t t t 8 q t t a 5 q t t t t t t t t 8 t t t t t ' ++ +'t p l i 2 t t t t t t t t t t t t 8 t t t t 5 t t t t 8 5 5 q q t t 5 q 5 8' ++ +' 2 t t t t t t t t t t t t t t t t t t : t q 5 q t t t t t t t t t t t t 8 ' ++ +'t t 8 q q t t t q 2 t t t t t t t t t t t t t t a q 5 2 u t t t t t t t t t' ++ +' t t t t t 8 5 t t q 5 5 8 t t 8 5 q e e r t q z G d t t t 8 5 >.oXoXoXoXoX' ++ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 q 5 t t q 8 q q 5 q t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t u v t t t t t 4.t t t t t t t t t t t : t t t' ++ +' t t t t t t t t t t t q t 5 t t t 5 8 8 5 t t t t t t t t t t t t t t t t ' ++ +'t t t t 5 t 5 8 t t t t 8 5 q q q 5 t t t t t t t 5 q 5 t t q q 5 8 q q t q' ++ +' t t t 5 t t 8 t 5 t t 8 e e e 5 5 t t 5 t t t t t t t t t t t t a x ( X.( ' ++ +'l q q t q 8 5 2 q t t t 8 t t t t t t t t t t q 2 u 2 u 2 t 4.4.t t 4.4.t t' ++ +' t 8 5 t t t t t t t t 8 t t t t t t t ^ o.( l t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t : q 2 5 8 t t t t t t q t t t t t t t 8 5 t t q i p t t t' ++ +' t t 8 5 t t t t t t t t t i j a t t t t t t t t t t t t t 5 t t t t t t t ' ++ +'t t t t t t t t t t t t t q t 8 5 t t t t t t t t t t t t t t t t t t t q t' ++ +' t t t t t t t 8 t t t t t t t q 2 q t t t 8 5 t t t 5 t t t t t t t t 2 u ' ++ +'u x x L v u t t 5 8 8 t t t t t t t t t 8 5 5 8 t q t t q q e e e e e i H ^' ++ +' l t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 5 8 t t t 5 ' ++ +'8 5 q q 2 t t t t t t t t t t t t t t t t t t 8 5 5 8 t t t t t t t t : t t' ++ +' t t t t t t t t q t t t t t t t t t t t t t t t t t t t v t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t 8' ++ +' t t t t t t t t t t t t t t t t 8 t t t t t t t 5 q t q 2 q 5 8 t t t t t ' ++ +'8 5 q t t q 2 q 5 q t t t t t t 8 t t 5 t t t t e e e e e t t t 8 t t t t t' ++ +' t t t t t t t H /.sXiX4X^.^ 2 t 5 5 8 q q t t t 5 t t t t t t t t 2 4.N 5 ' ++ +'u 8.v.[ t t t t t 8 t t t t t t t 5 8 t t t t t t t t t t t t t 5 u t t t t' ++ +' t : t t t t t t t t t t t t t t t t t t t t 5 T 8 5 t t t t t t t t t t t ' ++ +'t t t t t q 5 t j c i t 5 8 t t t 8 5 t t t t t t t 5 q 5 t t t t t t t 8 5' ++ +' t t t t t t t t 8 t t t t 8 t t t 4.t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t q 2 t t 8 5 t t t 5 t t t t t t t 5 8 5 t t t t t t t' ++ +' t 8 t t t t t t t t q 8 g P L i ^ v t t t t 5 t t t t t t t 8 t t t q t t ' ++ +'q q 2 q 2 e e e e e 2 d d a t 5 8 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' ++ +'XoXoX>.t t t 5 t t t t t 8 u 2 t t t t t t t t t t t : 8 t t t t t t t t 5 ' ++ +'8 t q 8 5 8 t t 5 8 t t t t t t t 8 5 t u 2 t t t t t t t t t t t t q 2 8 5' ++ +' 8 5 8 v u 5 8 5 8 t 5 8 t t t t t t t t t t t t t t t t : t t t t b l a 5 ' ++ +'t t t t t t 8 t t 5 8 t t t t t t t t t t t t t 2 u q t t t t t t t t t t t' ++ ,' t t t t t t 8 t t t : q : t t t t t t t t t t t t t t t t t t t t t t t e ' ++ +'e e e e t t t t t t t t t t t t t t 5 y ~.aXDXKXBXaX~.y t t t t t p t t 4.t' ++ +' t 4.N 2 2 4.4.t t t q 8 j :.%XQ.z m N 5 5 8 t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t 5 8 t t q q q 5 t t t t t t 5 8 q 5 t t t t t t t Q 5' ++ +' 8 t t t t t t t t t t q q q 5 t 8 t t q i p i t t t t t t t t t t t t t t ' ++ +'5 t t t 8 5 5 t t t 8 t t t t t t t t t t t t t t t q q 5 4.5 8 t t t t t t' ++ +' 5 8 t t t : t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t 5 q t ' ++ +'t t t t t q t 5 5 q 8 u q 8 t t t t t t 8 t 5 t t t x g t t t t t t t 8 t t' ++ +' t t t t t t t t t t t t 5 t t t 5 e e e e e t t t t t t t t t >.oXoXoXoXoX' ++ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t t 8 t t 5 8 t t t q t t t t t t t t t t' ++ +' t t t t t t 5 t t t t t t t 5 t 8 5 t t t t t t t t t t t t t t 8 t t : t ' ++ +'t t t t t t t t t q q 5 q t t 5 u v 8 5 8 4.t t t t t t t t t t t 5 t t t 8' ++ +' 5 t t t t t t p ! ~ p q t t t t t t 5 t t t t t t t t 8 t t t 5 t t t u p ' ++ +'j p t t t t t t t t t t t t 8 5 t t t 5 t t t t 5 q t t 5 w t t t t t t t t' ++ +' : t t q t t t t t t t r e e e e t t t t t t t t t t t t t t t ^ #XBXKXKXKX' ++ +'BX#XJ 4.t t 4.9.,.1.6.u 5 t t 5 q t t t t t t 8 5 p 1. X:.k 5 4.5 t t t t t' ++ +' t t t t t t t t t t t t t t t t t q t t t t t t t t t 2 q 2 q t t 5 t t t ' ++ +'q 5 q t t t t t t t Q t t t t t t t t 8 t t t 8 t q 2 8 t t t t 2 u t t t t' ++ +' t t t t t t t t t t t t 8 t t t t t 8 t t t 5 t 8 t t t t t t t t t t t t ' ++ +'t q 2 q 8 t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t t t t 5' ++ +' 8 t t t t t t t t 5 8 t t t t 8 5 q 2 T t u u j g t t t t 5 u u 5 t 8 t t ' ++ +'t t t t t t t t t t 5 t 8 t t t t t t t t t t t t 8 t t t t 8 e e e t t t t' ++ +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 t t' ++ +' t 5 8 t t t 5 t t t t t t t t t t t t t t q 2 q t t t 8 5 8 5 5 q 4.t t t ' ++ +'5 t t t t t t t 8 t t t t t 8 5 t t t t u v v u t 8 t 5 t t t t t t t t t t' ++ +' t 5 t t 8 t 8 t t t q p x p t t t t t t t t 5 t t t c p t t 5 8 t t t t t ' ++ +'t a j T k 5 t t t t t t p b t t q t t t t t t t t e v e t t t t t t t t t t' ++ +' t t t t t 5 ( *XDXKXKXKXNX#X~ t t t p !.iX#X..t q t t t t t t t t t t : q ' ++ +'q c _ v t t 5 t t t t t t t t t t t t t t t t t t t t t t t 8 5 t 8 t t t t' ++ +' t t t t q t t t 8 t t t 8 5 t t t t t t t t Q t t t 8 5 t t t 5 t t t 5 t ' ++ +'t q 5 t t t t t 8 t 5 t t t t 5 : t m t t t t 5 t t t 5 t t t t t t t t t u' ++ +' 2 t t t t t t t t t t t t 5 q 4.t t 5 8 t t t q q t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t q 5 t t t q q t t t 8 5 t t 5 t t t t u G 8 2 i x g' ++ +' u t t 8 a x x u t t t t t t t t t t t t 5 t T V 5 t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' ++ +'XoXoX>.t t t 8 8 5 t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' ++ +'t t t t t t t t t t 5 t t t t t t t t 8 t t t t t t t t t t t 8 5 t 5 q q q' ++ +' t 8 5 8 5 8 q q t t t t 8 t t t t 8 5 t t t t t 8 t t t t t t t 5 t t t t ' ++ +'5 8 q t t t 8 t t t t t t t 8 t t 5 t t t t t t 5 u q t 8 5 t t t t t 8 t t' ++ +' ! 1.@.p t t t t t t t t t i ] |.~.~ q y t t t p @.:.[ u 2 t t t t t t t : ' ++ +'u T t 5 8 t t t t t t t t t t t t t m z #XNXKXKXKXNX#XG t t t p <.*X&Xo.t t' ++ +' t t t t t t t t t t t 5 q q t t t t 5 8 t t 2 t t t t t t t t t t t t t t ' ++ +'t t t t t 5 8 t t t t t t t t t t q q t t t t t 8 5 8 t t t t t t t : t t t' ++ +' t t t t t t t t t t t t t q q t 8 5 t t t t 8 t t t t q t t t 8 5 t t 8 t ' ++ +'t t t t 8 t t t t 8 t t t q t t t t t t t t t t t t q 4.t t t t t t t t t q' ++ +' t t t t t t t t t t t t : t t t t t t t t t t t t t t t t 2 q t t t 8 t 8 ' ++ +'t t t t t t v 8 5 q q i t 2 t t t u c c p t t t t t t t t t t t t 8 t t u v' ++ +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoX' ++ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 t t t t t t t t t t t t t t t t t t' ++ +' t t t t 8 t 8 5 t t t u q q m m 5 q 5 t q q t t t 8 t t t t t 8 t 5 t t t ' ++ +'t t t t t t t t t q q t t t t t t t t u 2 t t 2 u t t t t 8 5 8 t q 2 5 : 5' ++ +' t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t ' ++ +'t t t t t t t 8 t t t t u ~ ,.*.l t t t t t t t t t w :.UXiX^.^ 5 q q q l >' ++ +'.+X] t q t t t : 5 q 5 q 2 G 8 t t t t t t q 8 5 t t t t t t t t -.4XNXBXNX' ++ +'4XX.q t t t t G 1.| d t t t t t : t t t t t t t t t t t t t t 4.t t t q t t' ++ +' t t t t t t t t t t t 8 8 t 2 t t t t t t t t 5 8 t t t t t t t t t t u 2 ' ++ +'u u 2 t t t t t t t t t 8 t t t t t t t t q q q q q 5 q t t t t t t t t t t' ++ +' t 8 5 t 5 8 t t t t t t t t t t t 5 8 t t 5 t t t t t t t t y l p u t 5 q ' ++ +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' ++ +' t t t 8 5 t t t t t t t t t t t t 8 G t t 5 t t t t t t t t p p t t t t t ' ++ +'t t 5 8 t t t t t t t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t t t' ++ +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t 8 t t t ' ++ +'t t t t t t t t t t t t t t t t t 5 t t t t t 5 v _ k t t t t q 8 5 q t t t' ++ ,' 5 t t t t t t t t t t t t t t t t q q t t q 2 t t t t t t t t 2 4.t t q 8 ' ++ +'t t 5 8 5 8 t t q q q t t t t t t t t t t t t t t t t t 8 t t 5 t t t t t t' ++ +' t t t t t 5 t t 8 t t t t t t t t t t t t t t t 8 l [ T t t t t t t t t t ' ++ +'t 5 ( *XNX4Xo.t m q q 5 ! ] v t a t t t t t t q a q T t t t u t 5 t 5 q t t' ++ +' t t t t t 5 q u X.^.#X^...u q t t t t t q q q t t t t t t t t t t t t t t ' ++ +'t t t t t t 4.t t 8 q q t t t t t t t t t t t t 8 8 t t t t t t t t t t t t' ++ +' t t 5 8 t t t 5 t t q i L G i q t t t t t t t t 5 t 8 t t t t t q 2 q 5 q ' ++ +'2 q 2 t t 8 5 t t t t t t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t' ++ +' t t t t t p l p t t q 5 8 t t t t t t t t t t t 8 t t t t t t t q t t t t ' ++ +'t t t t t t t q : t t t t t t t t t t t t t t t t t 8 t t t t 8 t t 8 t t t' ++ +' t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t v t t t t t t t ' ++ +'t t t t 8 t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' ++ +'XoXoX>.t t t t t t 5 t t t t t t : t t t t t t t t t t 5 t t t t t t t c ''' ++ +'.%X|.v m t t t t u 2 t 5 t t 8 t t t t t 8 t t t t t t t t t 2 q 5 q t t t ' ++ +'t t t t t t ^ 2 N t t t t 5 8 t t 5 q q q q 5 t t t u 2 t t t t t t t t t t' ++ +' t t t t t 8 t t t t t t t t t 8 t t 8 t t 5 8 t t t t t t t t t t 8 5 t u ' ++ +'5 t t t t t 8 u 2 t t t t t 5 f !.#X~.^ t Q T 2 q 5 q T Q v Q t t t t Q Q v' ++ +' L ^ v v v v 5 t t t V T v Q 5 m t t T 5 5 t l V d q t t t t t t 5 8 2 q 8 ' ++ +'5 t t t t t t t t t t t t t t t t 5 t t t t t 5 8 t t t t t t t t t t t t t' ++ +' 2 t t t t t t t t q q t t t t q q t t t t t t t l ~ ` d t t t t t t t t t ' ++ +'8 5 t t t t t 8 5 q 2 q t q t t t t t t t t t t t t t t t t t t t 8 5 8 t t' ++ +' t t t t t t t t t t t t t t t t t t 5 u t t t t 8 4.4.t t t t t t : t 8 5 ' ++ +'t t t t 8 t t 2 i i 5 t t t t t t t t u 2 5 t t t t t t t t t t t t t t 5 8' ++ +' 5 t t t t q 5 t 5 t t 8 t t t 8 5 t t t t t t t t 2 u t t 8 5 t 5 8 t q t ' ++ +'t t t t 5 q v ^ t t t t t t t t t t t 8 5 8 t t t t : t t t t t >.oXoXoXoXo' ++ +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 8 5 t 8 t t t t t t t t t t t t t t ' ++ +'t t t 8 t t t t t t t ! %XkX%X! m t t t p p t t 8 t t 5 t t t t t t t t t t' ++ +' : t t t t q 5 8 t t t t t t t 5 8 t v q q t t t t t t t t 8 5 q q 2 q t t ' ++ +'t 8 q t t t t t t t t 5 t t t t t t 5 t t t t t t t 5 8 5 t t t t t 8 5 q t' ++ +' t t t 8 5 t t t t t t v L G v a v Q G L q t t t Q Q T T z J G 5 ^ Q 5 8 5 ' ++ +'t t t q q t t t t t t : t 5 v 5 u t t 8 t t t t q q 5 q 5 t t 5 L T t p b u' ++ +' Q ^ [ ~ t t t u v ^ L G L ^ v Q t t t t t q q t t t t t t 8 t t t 5 t 8 5 ' ++ +'q t t t t t t t t t t t t t t t t q t t t t t t 2 u t t q 2 q t t t t t t t' ++ +' c v t t t t t t t Q t t t t t t t 8 5 5 8 t q q t t t t t t t t t t 8 5 t ' ++ +'t t t t t t t t t t 5 u t t t t t t t t t t t t t t t t t t t q 2 t t t t t' ++ +' 4.t t u t t t t t 5 q 8 5 t t t 5 t t u v ^ j t t t t t t t t 8 t q t t t ' ++ +'t t t t t t t t t t t 8 t t t 5 8 t q q t 8 t t 5 t t t t t t t t t t t t t' ++ +' q 8 t t t t t 8 5 8 5 t t t t t 8 q q 2 t 8 5 8 t t 8 5 t t t 5 t t t t t ' ++ +'t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t t t 8 5 t t t' ++ +' t t t t t t t t t t t t t t t t t t 8 t t t t j :.$X:.g 5 t t u j l t t t ' ++ +'t t q 2 q q 8 5 t t t t t t q q 5 t t t t t t t t t 8 5 8 5 q T q 5 t t t t' ++ +' t t t t t t t t t t t t t t t 8 5 q 2 q 5 t t t t t t 5 8 t t t t t t t t ' ++ +'8 t t t : t t t t : t t 8 5 8 t 5 T L G L t t t t 5 u t t t t t t t t t t t' ++ +' t q 5 t t t t t t t t t 8 t t 2 q q q 5 q t t t t 8 v 5 8 5 t t 5 q 5 m y ' ++ +'q q 5 m t t t q t t p l p t u j p t t t 2 t t t t t t 8 t t t t L ^ V V q 5' ++ +' t t t t t t 4.t t t t t t 2 t t t t t t t t t t t t t t t t t t t t u g p ' ++ +'8 8 t t t t t t t t t t t t t t a t t t t t Q t t t t 5 8 t t t t t t t t t' ++ +' t t t t t t t 8 t t t q 2 8 5 8 t 5 8 t t t t p p t t t t 5 t t t t t q t ' ++ +'t t t t t q t p u 5 8 8 t t t p x c u 8 t t 8 t t t t t t 5 t t u Q ~ l t 5' ++ +' t t t 8 8 5 t t q u i 5 t t t t t 8 t 8 t 5 t t t t t t t v 2 q t t t t t ' ++ +'t t t t t 8 5 t t t q 8 t t t t 8 5 t t t t t t t t t t t t t t t 5 t q q q' ++ +' q t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' ++ +'oXoXoX>.q q t t t t t t t t t t t t t t : t t t t t t t 5 8 t t t t t t q d' ++ +' T j t t t t 2 i p t t t t t 5 q 5 q t t t t t t t t q 2 q t t t t t : t 5 ' ++ +'q t t t 8 t V 4.q t t t t t t t t t t t t t t t t t t t 5 q q q q 8 t t t t' ++ +' t t t t t t t t t 5 t 5 t t e e e t t t t ^ v v ^ t t t t 8 5 2 u t 5 t j ' ++ +'b p t t t t t t t t t t t t 5 m t t t t t t t t t 5 t t t t q 2 q q t t t 5' ++ +' u ^ q t 8 t t 8 5 q 5 r W $.e 6 ! T 5 m t t t t t t 5 t t t t t q t 5 q t ' ++ +'t t 5 t t t t 5 t q q 8 t q t v ^ v v 4.t t t t t q q t t t t t t t t t t t' ++ +' t t t t t t t t t u x p q 5 t t t t t t t t t t t t t t q t t t t Q t t t ' ++ +'t t t t t t t t t t t t t t t t t 8 t t 5 t t 5 q q 5 q t t t t t t t p l g' ++ +' t t t t 8 t t t t t 2 t t t 5 t t 5 j c p t 5 4.4.t t p P P p 8 t t t t t ' ++ +'5 8 t t 8 t t 5 j d u t 8 t t t t t t t t t l b u t t t t t 5 t t t t 8 t t' ++ +' t t t V u q 5 t t t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t 8 ' ++ ,'t t t t 8 5 8 t t t q 2 T 2 t t 5 t t t t 5 t 8 t t t t t t t t >.oXoXoXoXo' ++ +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 8 t t t t t t t t t t t t t t ' ++ +'t t t t t 5 8 t t t t m 5 t t t t t t t t t t t t t t t 8 q 8 t t t t q q t' ++ +' 5 l ` ~ 5 t t t 5 t t t t t t q 5 t t 4.t t t t t t t t : t t t t t t t t ' ++ +'5 8 5 8 2 q q 5 t t t t 8 t 8 5 q q t t u t t t t t L G G T e t t 5 t t 8 t' ++ +' t t t t 8 5 q 8 5 8 t l v l t t 5 8 t t t t t t t t q t q t t t t t t t t ' ++ +'t t t t t t q 2 q t t q u d u 8 q t t t t w 5 r XkXkX$.] .X|.T m t t 5 q t' ++ +' t t q t t t t t 8 q t t t t t t t t t t t t t 5 8 t t u 2 5 t t t t t ^ v ' ++ +'T v t t t t t t t 8 t t t t t t 8 t t t t t t u t t 8 5 u a t t t : t t t t' ++ +' t t t t t t t t Q t t t t t t t 5 8 t t t t t t t t t 8 t t 5 t t t t 8 q ' ++ +'2 q t t t t t 5 8 q a p u t t t t t t t t t t q q t t 8 t q q p p p t t 4.t' ++ +' t t u g g u t t t t t t 8 5 t t t 2 q q 5 e e e t 5 t t t t t 8 t t j j a ' ++ +'t t t t t t 8 t t t t t 8 t 8 T T q 2 q t t t t t t t t t t t t t t t t 8 t' ++ +' 5 t t t t t t t t 8 t t t t t t t t t t t t 5 q 8 ^ v u t t 8 t t 8 t 8 t ' ++ +'t t t q 2 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 5 t t' ++ +' t t t t : t t t t t t t t t t t t t t t t 5 8 t m t t t t t t t t t t t t ' ++ +'t t t 5 8 5 t 5 8 t q 2 q q ~ ,.&.x t t t 8 t t t t t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t q t q q q 2 t t t t 5 8 5 u v V ^ v v v t t t ' ++ +'t e e e e e t t 8 t t 5 t t t t 8 5 q 5 q t t t a p u t t t t 5 8 8 5 t t 8' ++ +' 5 m 5 5 q t t t t t t t t t t t t 8 5 q t t t 5 j v d u 2 t t t t 5 w W *X' ++ +'JXkX$.$.OX|.*.T t t t t q 5 t t t t t t t 5 t t t t 8 t 5 t t t t t t t 8 5' ++ +' t t q q 8 t 5 8 t t t t t t t t t t V Q Q Q Q Q Q t t t 8 2 t t t t t t t ' ++ +'t 5 8 d d p t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t t t' ++ +' t t 5 t t 8 t t t t t 5 q q q t t t t t 8 5 t q t t t t t t t t t t t 5 q ' ++ +'t t t t 2 u 5 q t t t t 8 5 t t t t 2 q t t t t t t t t t t q 5 8 e e e e e' ++ +' 8 t t t t t 5 t t 5 t t t t t t t t 5 t t t t t 5 8 5 G 5 q q q t t t t t ' ++ +'t t t t 5 8 t t t t t 5 t t t t t t t t t t 5 t t t t t t t t t t t t t t l' ++ +' l u G t 5 5 t t t t 5 t t t t t u t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' ++ +'oXoXoX>.q 5 t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t 5' ++ +' q t t t t 8 t t t t t t t t t t t t t t t t 5 q t t v '' ] a t t t t t t t' ++ +' t t t t t u 4.2 t t t t t t t t t t t t t t t t t t t t t t t t u 5 8 T 2 ' ++ +'q q t v t t t t t t t t 8 t r e e e e t t t t t t t t 8 t t t t t t t t t t' ++ +' t t q t t t t t t 8 t t t t t t t t t t t t 5 8 t 8 t t t t 5 q q q t t u ' ++ +'u p a t 8 t t t t 2 q E Q.%X|.r v ] *.@.! t t t t t t t t t t t t t t t t 8' ++ +' 5 5 t 8 t t t 8 5 8 t t t t t t t t 4.5 t t t t t t t t t t t t t t t t t ' ++ +'t Q t t t t t t u t 5 t t t 8 u y d y t t t t t t q t t t t t t t t t t t t' ++ +' t t q 2 t t 8 5 t : t t t t t t t 8 t t t t t t t t t t t t 5 t q t t 8 t ' ++ +'t t t t 5 t t t t t t q q q 5 t t 8 t t t t t t t t t t q t t 5 t t t 5 t t' ++ +' t t t t t q q t e e e e e t t 5 8 t t t t 5 t t 8 t 8 u t t t t 8 t 5 8 t ' ++ +'5 q 2 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u t t t t' ++ +' t t t t 8 5 t t t t t a l x p t t 8 2 u 5 t t t t t t t t 8 8 8 >.oXoXoXoX' ++ +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t t t t t t t t t t t t' ++ +' t t t 8 t t t t t t t t t t t 5 8 t t t t t t t t t t t t t 8 t t t 8 8 5 ' ++ +'q q 5 u t t 5 8 q 2 t t t t t t t t 2 4.q q t t t t t t t t t : t t t t t t' ++ +' t t t t t t t v ^ v 5 q q q t 8 t t t t t t t t t t 5 e e e t t t t t t t ' ++ +'t t 5 t t t t t t t t t t t t q 2 t t t t t 5 t 8 t t 5 t t t t t t t 8 5 5' ++ +' t t t t t q 2 t t t t 2 q 5 u t t t t 8 5 q 5 m r W r t t t y v l t t t t ' ++ +'t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t 4.8 t t 8 t t' ++ +' t t t t t t t t t t t t t t t t t t ^ v v Q u p t t q 2 8 5 2 u t t t 8 5 ' ++ +'5 t t t t t t t t t t t t t t t u t t t t t t t t t t t t t 5 t t t t t t 8' ++ +' t t t t t t t u p u 5 t t 8 t t 8 t t t t t t 2 q 8 q t t t t t 5 8 4.t t ' ++ +'t t t t t t 8 t t t 8 t t t t t t t 5 q t e e e e e t t t t t t t 5 q t t 5' ++ +' t t 2 q t t t 5 t t t t q q q q t t t t t t t t t t t g x x t 2 t t t t t ' ++ +'t 8 5 t t 8 5 2 5 g p t t t t t t t t t t t t t t a u t t t t q v 8 q t t t' ++ +' t 5 8 t t 5 : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t 5 t q 5 t t t 5 t t t t t t' ++ +' t t t t t 5 t t t 5 t t t q q t t t t t t u t q 5 t t t t 5 t N Q t t t t ' ++ +'t t t t t t t t t t t t Q Q Q v u t t t t 2 q q q 5 8 t t t t t t t t t t t' ++ +' t 8 5 t t t t t t t t 2 u t t t t t t t t t t t t t t 8 u t t t t t t t t ' ++ +'5 8 q 8 t t t t t t q q q 5 q 2 t t 8 5 t t t t t t q G t t 8 t t t q q 5 m' ++ +' 5 q t t t t t t t t t t t t t t t t t t t 5 t e e e t t t t t t t 8 t t 5 ' ++ +'t t t t 8 t t t t 8 5 t t t t t t 9 u ) ) u t t t t t t t t t t t t t l v p' ++ +' t T G t u q t t t t t t : t t t t t t t t t t t t t t t 8 t t t t t t t t ' ++ +'t : t t t t t t t t t t t t t t t t t t p l p t t t t t t t t 8 t t t t t 8' ++ ,' 5 8 5 t t t t t t t t t t t t t q 2 t t t t 8 5 t t t t t t 8 t t t e e e ' ++ +'t t t t t t t t 8 t 5 t t t t t t t 8 t t t t t t 2 q t t t 5 t t 5 q t t t' ++ +' t t g ) P u 8 t t t t t t t t t t t t q t g g u t t t t 8 t t t t t t t t ' ++ +'t m : t q q q T T q 8 5 t t t t 5 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' ++ +'XoXoXoX>.5 8 t t 5 8 t t t t t t t t t t t t t : t t t t t t t t 8 5 t t 8 ' ++ +'8 5 q t t t 8 t t t t t t t t t t t t t t t t t t t 2 : t t t t t x ` ~ t q' ++ +' t t t t 8 t t : Q t t t t t t t t Q Q Q t t t t t t q q 2 t 8 5 t q q 2 q ' ++ +'8 5 5 t t t t t t t t t t t t 8 t t t t t t t t q 8 t t t t t t t t t t t t' ++ +' t t q t g g u t t t t t t t t 5 t t t t t t q q 2 q q q t t t t t t 8 5 t ' ++ +'t t L t t 5 t t t 5 t q 5 m 5 t t t t t t t t t t t t t t t t t t t 8 e e e' ++ +' e e t t t 8 5 t t 5 t 8 t t t t t t t t t 5 q t t t t t t g `.dX$X#.u t t ' ++ +'t t t t t t t t t t l v d t 5 L v T q t t t t t t t t t t t t : t Q t t t t' ++ +' t t t t t 5 8 t t t t t q 5 t t t t t t t t t t t t t t t t t t u p t t t ' ++ +'t 5 8 t t t 5 t t t t t t 5 t 8 t t t 5 8 t t t t 8 5 t t q p t t t t t t p' ++ +' u t t t t 5 8 t t 5 8 t t t t t t t t t t t 8 t t 5 8 t t t 5 t t t t t t ' ++ +'u v t t t 8 8 5 8 t t t t t t p x g t 8 t q t t 8 t t t t t t t q q t u t t' ++ +' t t t 5 t t t t c L t t t 5 q 5 q 2 q 5 2 ^ v t t t t t t t t t >.oXoXoXoX' ++ +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t 5 q t t t t t t t' ++ +' t t t t t t t t t q 2 q q 5 8 5 t t t t t t t u a t t t t t t t t t t t 8 ' ++ +'5 q 2 q t t 2 t ^ ,.*.l t t t t 8 5 4.2 u G 8 t v u 2 5 q v t t t q q 2 5 8' ++ +' t t t t t t t t 8 t t t t t t 5 t t t t 5 8 t t t t t t t t t 5 q 2 q t t ' ++ +'t t t t t q q t 8 5 8 q t t t t t g c p t t t t t t t t t t t q 5 t t t t t' ++ +' t t t 2 q q 5 q q q q t t t ^ 2 q t t t t t t 5 8 5 8 t t t t t 5 q 8 t t ' ++ +'t t t t t t t t 5 8 e e e e e t t t 5 t t t 5 8 t t t t t t t 4.t t t t t t' ++ +' 5 8 t t _ $XCXlX X) 9 2 8 t t t t t t t q 5 u p t t t t t t t t 8 2 v v ^ ' ++ +'t t t t t t t t ^ q 8 5 t t t t t t t : t t t t t t t t t t t 8 5 t t t 8 t' ++ +' t t 8 5 t 5 t t t t t t t t t 5 8 t t t t t t t t t t t t t t t 4.q t t t ' ++ +'t t t t l L p t 5 8 t l L j t 5 t t t t t t t 8 t t t t t t t t t t t 8 t 5' ++ +' t t t t t t t t t t t 8 5 L 5 t t t 8 5 t t t t t t t t t t t 5 t t t t t ' ++ +'5 t t q q q t t 5 t t t t t t 5 8 q 5 w ] +X%X@.5 t t t t t t t : t t t t q' ++ +' 5 q q q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 t t 8 ' ++ +'t t t t : t t t t t t t t t t t t t t t t t q q q q 8 5 8 t t t t t t j L l' ++ +' t t t t t t t t t 2 t 5 8 t q t t t q 5 x ] ~ t t t t t t t N q V T ^ v t ' ++ +'t q q t t t t t 5 q q 8 5 t t t t t t t t u t t 5 8 t t 8 t 5 8 t t t t t t' ++ +' t t t t t 8 q 5 8 q q t t t t t t q 2 q 5 t t 5 m t t t t i p u t t t t t ' ++ +'t t t t t t 5 q t t t t t t t t q q q q 2 q 8 5 t t t v q q t t t t t t 8 q' ++ +' t t t t t t t t 8 5 t t t t t t t t t t 8 5 e e e e e t t t 8 t t t t t t ' ++ +'t t t t : t 4.t t t t t t t t t t +.dXCXlX$X) a 8 t t t t t t t t t t 2 t t' ++ +' t t t t t t t 8 t t t t v t t 8 5 t t v q 8 5 t t t t t t t t t t t t t t ' ++ +'t t t t 8 5 t t t t t 5 t t t t t t 8 t t t t t t t t t t t t t t t : t t t' ++ +' t 8 t t t t t 4.t t t t t t t t c R g t t t : l L j t 8 t t t 5 8 t t 5 t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t 5 L 5 t t t t t t t t u 8 t' ++ +' t t t t t t t t 5 8 t t 8 t t 5 q 2 t t 8 t t t t t t 8 5 q t d |.CXCX$Xv ' ++ +'t t t t t t t t t t t t t 8 2 q t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' ++ +'XoXoXoX>.t t t t 5 t t t t t t t t t t t t t : t t t t t 2 q t 8 5 q 8 2 u ' ++ +'8 t t t t t t t t q g L x t t t t t t t t t 8 t t q q q q t t q t t t t t t' ++ +' t t t t t T G t Q : 5 8 t t t t t t t : t q 2 q q t t t 5 t t t t 2 q t 8 ' ++ +'5 t t t t t t t t t t t t t 2 q 8 t 5 8 q 5 t q t t t t t q q q t t t 5 m 5' ++ +' q q t t t t 8 u 2 t t t t t t t t t 8 t t t 5 t t t q q q 5 q 2 t t 5 5 8 ' ++ +'t t t t t t t t t t t t 5 t t t t t t t t 5 t t t 8 p l t t t t t t t t r e' ++ +' e t t t t t t 8 t t t t t t t 5 q r r r 5 8 t t 5 t t t t x `.dXdX`.g 8 t ' ++ +'t t t t t t t t t t q q t t t t t t t t t t t t t t t t t t v v ^ V 5 u t t' ++ +' t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t 5 t t t t t t t ' ++ +'t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t t t p j u t t t t u p' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t 5 t t ' ++ +'v u t 8 t 8 5 t t t 2 q t t t t t t t t t t 8 5 t t 5 t q 8 t t t t t t t t' ++ +' t t t t t t y |.zXCX+Xc t t t t 5 u a t q t t t t t T q t t t 5 <.oXoXoXoX' ++ +'oXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.t t t t t t t t t t : t t t t t t t t t t' ++ +' t t t u 8 c c q p l u 2 q 5 t t t t 8 t t 2 u u u t t t t t t t t t t t t ' ++ +'q 2 q 5 t q t t t t t t Q Q u t t t a t t t v u t t t t t t t t t t 5 q q q' ++ +' t t t 8 t 8 5 t t t t t t t t t t 8 5 8 t t t t t t q q t t 5 t t t t q t ' ++ +'t 5 8 q 2 q 5 t t t t m z ( z t t t t 5 8 q t t t t t t t t t 5 8 t t 8 t t' ++ +' t 5 q 2 q q 5 : t q 8 5 8 t t t t : t t t t t t t t t t t t t t t 8 t t t ' ++ +'! ''.|.O.t t t t 2 u t 8 t t 5 8 t t t t t t t t t 5 8 t 5 e e r e e t t t ' ++ ,'8 t t t t t l ) ) 0 8 a t t t t t t t : t t t t t t t 8 t t t t t t t t t t' ++ +' t t t t t t t v u V v t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t 8 5 t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t 4.t t t t t t' ++ +' t t t t t t 5 t t t t 5 8 t t t t t 5 8 t t t t t t t t t t t t t t t t t ' ++ +'8 t t t t t t t 5 t 8 t t t t t 5 t t t t t t t t t t t t t t t t t 8 q 5 8' ++ +' t 8 t t 5 t t 8 t 5 8 t t t 8 t t t t t [ |.|._ t t t t t u j p q 5 t t t ' ++ +'t t 2 ^ v t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v _ R 5 t q 5 t' ++ +' t t t t t t t t t t t t t t t t q j 2.&.V g L p q t t 5 8 t t 5 t t t t t ' ++ +'t t t t t t q t t t t t 8 t t q 8 5 q q t t t G v t t H ( H W.H 5 t t v t t' ++ +' t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t t t t 5 t ' ++ +'t t t t t t t t t t t q t t t t t t t t t t t t v #XiX#XG t 5 q t t t t t t' ++ +' t t t t t t t 5 t t t t t 8 q 8 5 8 t t t t t t t t q 2 t t t t t t 5 8 t ' ++ +'t 5 t t t t t t t t t q q #.fXkX].x q t p i 5 q q 5 t t t t t t t t t t 5 t' ++ +' t t t t e r 4.e r t t t t t t t u 2 t q 5 q t t 8 t t t t t t t t t t t t ' ++ +'t t t 8 t t t t t t t t t t t t t t 5 8 v 8 q 5 8 t t t Q t t t t t t t t t' ++ +' t t t t t t t t t t 8 u t t t t q t t t 5 t t t t t t t t t t t t t t t t ' ++ +'8 5 8 t t 4.4.t t t t t t t u t 8 t 5 t t t t t 5 8 t t t t 5 t t t 8 t t t' ++ +' t t 5 q 2 t t t t t t t t t t t t t 8 t t t 2 q q t t t t 5 8 t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t t t t t t d l a t t t t i p q q' ++ +' t t q 8 u j p t g g u t t t t 8 5 t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoX' ++ +'oXoXoXoX>.'' .X@.i t t 8 t t t t t t t t t t t t t t t q t 2 l ..%.T h g u ' ++ +'q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t q 2 T V t t t t t q' ++ +' t b ( X.X. .( f t t t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t ' ++ +'t t t t t t t 8 5 t t 8 t 5 t t t t t t t t t t 2 t t t t t t t t 8 t t t `' ++ +' aXKXzX| t 8 q t t t t t t t t t t t t l x u t t t t 5 8 5 t t t t t t t t ' ++ +'t t q q t t t t t t t t t t 8 t t t t t t t t q 5 2 O.%X%X''.p a p b p q q ' ++ +'2 8 t t t t t 8 5 t 5 t 8 5 8 t t u e k N k r t t t t t t t t q q 8 q 5 t t' ++ +' t t t t t t t t t t t 8 5 t t 2 q t t t t t t t t t t t t t t 8 G u 5 q q ' ++ +'8 5 t t t Q Q Q t t t t t t t t t t t t t t t t q 2 t t t t 5 t t t 8 t t t' ++ +' t t t t t t t t t t t t t 5 8 q t t 8 t t t t t t t p l p 5 u j g t t t t ' ++ +'t t t 8 t t 8 t t t 5 8 5 t t t q q q t t t t t t t t t t t t t t t t t u t' ++ +' q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' ++ +'t t p v v p t p y t t t t t t t 8 5 t t t i v L p t t t t t t t t t >.oXoXo' ++ +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.! *.~ 5 t t t t t t t t t t t t t t t ' ++ +'t 2 q 2 q 8 t l c t t t t 5 8 t t t t t t t t t t t t t t t 8 g p t t t t t' ++ +' t t t T ^ v t 8 t t 5 t 5 H ( X.,.,.,.X.( H t t t t t t t t t t t t t t t ' ++ +'t t t 5 t t 8 t t t t t t t 5 8 t t t t t t t t t t 8 t t t t t t t t t 5 t' ++ +' t t t t t t t t t q t t ( #XMX#X^ 5 t 5 t t t t t t t t t t t y T Q p t t ' ++ +'t t t t t t t t t t t t t t t q V q t t t t t t t t t t t t t t t t t t t t' ++ +' u l @.#.^ 8 2 i g p t q q t t 8 t t t t t t 8 t t t t t d v p k E E m t t ' ++ +'t p g u 5 8 t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' ++ +' t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t 8 5 t t t t 8 t t t t t t t q t t a t t u 2 q 5 q 4.5 t t t t t t' ++ +' t i g u 5 u x l u t t t t 8 t 5 t t t t t t t t t t t 5 8 q 5 t t t t t t ' ++ +'t t t 5 5 t 5 t 8 5 u g g t t 8 t 5 t t 5 t t t t t t t t t t t t t q t m t' ++ +' 2 u t t t t t t t t t t t t : l l u a d f u 8 5 t t t t t t t 5 t t l l u ' ++ +'t 5 q t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t p t q t t t' ++ +' t t t t t t t t t t t q q q 5 q q 5 8 5 t t t 8 5 q 5 t t t t t t t t t t ' ++ +'t t t t t u ) R g t t Q t t t t t t t t 5 5 8 q 5 m z o.,.,.,.,.Q.o.G t t t' ++ +' t t t t t t t t t t t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t 8 5 t t t q t : t t t t t t t t q 2 u w ( ..( y t t t t t t t t' ++ +' t : t t t t t j j t t t t t t t t t t t t t t t t t t 5 T q t t t t t t t ' ++ +'8 5 t t t t t : t t t t 8 t 8 5 8 5 8 u q 5 t t q 5 t t 5 t t t t t t t t t' ++ +' t t u x ^ j i i q m t t t p l u t t t t 8 5 t t t t t t t t t t t t t t t ' ++ +'t t t t t t t t t t t t t t t t t t t t t 8 5 u t t t : t t t t t t t t t Q' ++ +' Q Q v t t t t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t t q v _ ! t ' ++ +'q q q q 2 4.t t t t t t t t 5 q t t 8 p i t t t t t t t t t t t t t t u p u' ++ +' u t 8 5 8 q t t t t 5 8 t t p p t t t t 5 8 u ~ ) t t t t 8 t t 8 t t t t ' ++ +'t t t t t t t t t 5 t t q ^ -...z q 5 t t t t t t t t t t 5 t q y p a t t t' ++ +' t t t t t t t t t u t t t 5 8 t t t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoX' ++ +'oXoXoXoXoX>.t t t t t t t t t 5 t t t t 8 t t t t t t t : t t t t 5 8 t t t' ++ +' t t t 8 t t 5 8 t t 5 8 t t t t u p ) R ~ Q Q t t t t 8 5 t t t t t t 5 8 ' ++ +': H X.,.,.<.,.,.X.G : t t q t t q 8 5 2 q q t t t q q t : t t t t t t t t :' ++ +' t t t t t t t 8 t t t t t t t 8 5 t t t 8 5 t t t e e e q t t t t t t t t ' ++ ,'t t t t t t t t t t t t t 8 5 t t t t u t t t t 8 t t t t t 8 t t 8 5 t t t' ++ +' t t t Q t t t t t t 8 5 8 t t t t t q 5 q q q 5 8 5 t t 8 5 t t 8 5 2 q 8 ' ++ +'t t t t t t 5 8 t t t t t t t t p p a 2 4.q 5 t t t u u t t t t t t : t t t' ++ +' t t t t t t t t t 8 t t 5 8 t t t t t t t t t t t t 5 t t t t t t t t p p ' ++ +'t t t t t 8 5 t t t t t t t t t t t t t t : u 5 8 5 t 2 q t t t t t t t t t' ++ +' 5 q 8 t t 8 t p %XkX%X) 5 t t t t t t t t t t 5 t t t t t t t t t t t t t ' ++ +'t t t t t t t t t q x R P a t 2 q q t t t t t t t t p H H d t 8 t 8 t u ^ t' ++ +' q t t t t t t t t t t : v &.1.~ t t t t t t t t t X.#X#X( a 5 t t t t t t ' ++ +'t 5 8 t t t t t t q t t t t t 8 t t 8 t t t t t t t t t t t t t 5 8 >.oXoXo' ++ +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t : t 5 t p x p t t t 5 t t t t ' ++ +'t t t t t t t t t t t t t t t t 5 t t t t t t 8 5 t t u v v t p h t a t t 8' ++ +' 5 t t t t 5 8 t t t q q 2 z o.,.<.,.,.,...z q u v q q t 5 8 t q 5 q t t t ' ++ +'q 2 t t t t t t t t t t t t t t t t t t 5 t 8 t t 8 t t t t t t t t t t 8 e' ++ +' e e e e t t t t t t t t t t t t t : t t q p g i q 5 8 t t t q 2 t t t t 5 ' ++ +'t t t t t 5 t t t t t t t t t t Q : t t t t t t t t t t t t t : t 2 q 8 q q' ++ +' 5 t t t t t t t t q q t t t t t t t t t t t t t 8 t t t t t u u N t q t t ' ++ +'5 q t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t u g t t t t t 8 t' ++ +' t 8 5 t t t 8 5 t t l L g t 5 8 t t t t t t t t t 8 t t t 8 t Q G T v 8 5 ' ++ +'8 8 u t t t t t t t t t t q q 5 t u 5 t ] kXLXkX_ q t 2 q t t t t t t t 8 t' ++ +' t t t t t t t 8 q t 5 t t t t t t 8 5 t t 2 x I ` H d u 8 t p j u t t t t ' ++ +'t d ^ ^ d t t t 5 t 2 T t t t t t t t t t t t t t '' *XzXXXa t t t t t t t ' ++ +'t ( #X/.~ t t t t 5 t t t t t t t t t t t q 5 t t t t t t t t 5 t t t t t t' ++ +' t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t ' ++ +'t u T ~ l 5 t 8 t t t t t t t t t t 8 t t t t t t t t t t t 8 t t t t t t q' ++ +' T V V q t t t t 8 t t t t t t t 8 t t t t t t t q 4.8.( X.,.,.,.X.( H t 5 ' ++ +'v t 2 t t 5 t 5 8 q 2 t q q q t t t t t t t t t t t t t t t t 5 t t t t t t' ++ +' 5 t t t t 8 t t t t t 5 e e e e e t t t t t t t t t t t t t t t t 8 g g u ' ++ +'5 q t t t t q 5 t t t t t t 8 5 t t t t t t t t : t t t t t t t t t t t t 8' ++ +' t t t t t t t t t t 5 q 2 q t t t t t t t t t 8 5 t t t t t t t t 8 t t t ' ++ +'5 t t t t 5 t 2 q t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t 5 t' ++ +' t t t x +.+.x a t t t 5 t t t 8 t t t v q q t g c p t t t t t t u 2 t 8 5 ' ++ +'t 5 t t t 5 5 8 8 5 t t 8 5 t t t t t t q q t t t t 2 q 5 u g y t ` kXJXfXT' ++ +' q 2 q N 8 t t t t t t t t t t t t t t t t 5 q q t t t t t t 8 5 t t t u j ' ++ +'^ ( v t t t j c p t t t t t t z d a t t t t t t t t q t t t t t t t t t t t' ++ +' ` OX*X.Xx t t t t t 8 t t d ( ~ a t t t t 8 t t t t 5 t t t t t t 5 8 t t ' ++ +'t t t t t 8 t t t t t t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' ++ +'XoXoXoXoXoX>.t t t t t t t t l v p u t t t 5 t t t t 5 t t t t t t 5 t t t ' ++ +'t t t t t t t t t t t v ^ q q 5 q t t t t 8 t t t t t t t 5 t t t t t 4.t q' ++ +' 5 : d ( o.X.o.( f t t t t ^ 8 8 t t t q q q q q 2 q 5 t t t t t t t t t t ' ++ +'t t t t t t 8 t t t t t t t t 5 8 t 5 t t t t t t e e e e e t t t t t t t t' ++ +' t t t t t t t t u t t t q t t t t t t i i t t t 8 t t t t t t 8 t t 5 8 t ' ++ +'t t t t t t t t t t t t t t 5 t t 8 5 t t t t t t q q t t t t t t t t 5 q 8' ++ +' 5 t 8 5 t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' ++ +'t t t t t t t 8 t t t q t t t t P +.#.P t t t t t t t t t t t t ^ 2 q t t t' ++ +' t t t t t t t 8 q t t t t t t t t t 8 5 8 q t 5 t 8 t Q Q Q t t t 2 t t 8 ' ++ +'5 q t t p j p l T 1.|.` t q u 4.2 5 t t t 8 t t t t t t t t t t t t t q 2 t' ++ +' t t t t t t t t t t t 5 y b y q 5 t i p t t t t t t t t t t t t t t t t t ' ++ +'8 5 t t t t t t t t t t t t ] <.] l t t t t t 5 t u q 5 5 t t t t t t t t t' ++ +' t 8 t t t t t t 8 5 t t t t 5 t t t t 5 t t t t t t t t t t t 5 t t >.oXoX' ++ +'oXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.5 q 2 q t q 8 q t i q 5 t t t 8 t t t' ++ +' t q q q q t t t 8 t t 8 5 t t 5 8 u 5 t t t t t t t q 8 5 t 8 5 t t t t t ' ++ +'t t t t t t t 8 t 4.4.t t t t t J ( G ( H t t t q q v t t t t t q 2 q 5 t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u q ' ++ +'t e e r 5 t t t t t t t t t t t t t t t t 2 q t t t t t t t t i l p t t t 5' ++ +' t t 5 8 t t 5 t 8 t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t ' ++ +'u 8 8 t t t t t t t t t t 5 t t t t q q q 8 t t t t t t t t t t t 4.t t t t' ++ +' t q t t t t t t t t 2 u t t t t t t 5 t 8 t t t t t t t a L P a 8 a u P g ' ++ +'t 8 8 t 5 8 t v t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t q' ++ +' t q t 5 q G T G 8 t t t t q 2 t t a u v ^ p u t t 5 q t t t t t t 5 t 8 5 ' ++ +'t t t t t t t t t t : p u 2 t t t 5 t t t t t t 5 t t t 5 q t t e e e e r 5' ++ +' q 2 5 8 5 t t t q q t t t t t t t t t t t t t t t t t p p q t q 2 q t t t ' ++ +'t t t t t t t t t 5 q t t t 8 5 t u 2 q t t t t t t t t t t t t 8 t t 5 t t' ++ +' t t t t t t 8 t 8 >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.q t q q t q ' ++ +'2 5 t t 5 q 5 8 t t 5 t t t q 2 q 5 5 8 t t t t t t t t t t v v t t t 8 5 t' ++ ,' t 5 5 8 t t t t t t t t t t t t t t 4.4.t t t t t t t t 5 q q 5 t q t t 5 ' ++ +'2 u t t t t t q 5 q q t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t' ++ +' t t 8 t t t t t t q 2 5 m t t m t t t t : t t t t t t t t t t t t t t t t ' ++ +'t t : t t t t p p t t t t t t t t t t t 2 u t t t t t t t Q t t t t t t 8 t' ++ +' t 8 t t t t t t t t t q 2 t 5 t 8 t 8 t t t 8 t t 8 t t t t 2 q q 5 t 8 t ' ++ +'t t t q t t t t 4.t t t t t 5 t t t t t t t t q 8 t t 5 8 8 t t t 5 t t q t' ++ +' t 2 u t t u t t q ) `._ u q 2 t 8 t t ^ t t t t t t t t t 5 8 t t t t t t ' ++ +'t t t t t t t t t t t t 5 t l b u q 5 8 u v v t t t q q t 8 t t l l q 2 t t' ++ +' 2 4.t t t t t t t t t t t t t t t t t t t t l ^ c q t t t 8 t t t t t t t ' ++ +'t t t t q e e e e e e r e r q 8 q 8 t q t t 2 t t 5 8 t t t t t t t t t t t' ++ +' t 5 8 2 q 5 q q q t t t t t t t t t t t p p y t t t t t t 8 t t t 8 t t t ' ++ +'5 8 t t t 8 t t t t 8 t t t t t 5 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' ++ +'XoXoXoXoXoX>.t t t t t t t t t t 8 t t t t t 8 t t t 8 5 2 q t t 5 8 t t t ' ++ +'t t q v ^ t t t t t t t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t t t' ++ +' t t t q q 5 8 q q q q q t t t t t 5 8 t : t t t t t t t t t t t t t t : t ' ++ +'t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t g l y t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t u t t t t t t t t t t t t t q t t t t ' ++ +'t t t t Q t t t t 8 t 5 t t t t t t t t t t t t t t t 8 t 5 t t t 8 t 5 t t' ++ +' t t t t t q 5 t t t t 5 t 8 q 2 q t t t t t t t t t t t t t t t t t t t t ' ++ +'5 8 t t t t 5 8 t t t u l t q q t t t t t u +.].+.u t t 8 5 t t q 2 t t t t' ++ +' t t t t t t t 5 8 t t 5 t t 8 t 8 5 t 8 t t t 8 t a v v i 5 8 t t t u q 5 ' ++ +'t q 2 q 5 t t 5 t t t t t N t t t t t t t t 8 5 t t 2 q t t t t t t d J ~ c' ++ +' t q t t t t t t q t t t t u t q e r r r e e e e e e e t 5 t q 5 q ^ 8 t t ' ++ +'t t t t t t t t t t t 5 t t t t t t q t t 5 u g u t t t t t t t t d b y t t' ++ +' t q t t t t 8 t 5 t 8 t t t t t t 5 t t t t t t 5 8 t t t t 5 8 t t >.oXoX' ++ +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t t' ++ +' 8 5 q q q t t t t t t t t t q q 2 t t t t t t t t t t t 8 5 8 t t t 5 t t ' ++ +'8 5 4.4.t t t t t t t t t t t t q 2 q 5 2 q 5 q 2 q t t t t t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t t 5 t 5 t 8 t 5 8 t t t t u ' ++ +'v R j m t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t' ++ +' 8 t t t t t t t t t t t t t t t Q t t q 2 u t t t t t t t 8 5 t t t t t t ' ++ +'t t 5 t t t 5 t t t t t t t t 8 5 t 5 u p a u t 8 t 5 5 q q t t t t t t t t' ++ +' t t t t t t t t t t t t t t t t t t t t t t t ] 1.! 5 q t t e e e 8 P ) c ' ++ +'t t t 5 q t q q q t t t t t t t t t t t 8 t t t t t 8 t t 5 8 t 5 t t t 5 t' ++ +' u p i t q 5 8 t t 2 q q t 5 T T q t t q t q t t t 2 t t t t t 8 t t t t t ' ++ +'8 u t t t t t t u z ~ z u 5 5 8 t t t t q 5 t t t j c p q e e W $.W e e e e' ++ +' e e t t t q q 2 v t t t t t t u t t t t t u u u t t t t t t t t t j Q V p ' ++ +'u t t t t t t q y d t t t t 2 u 8 t t 5 t t t 5 t t t t t t t t t t t t t 8' ++ +' 5 q t t t t t t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 5 8 u 2 t ' ++ +'t t t t t t t t t t t t t t t t t t t t t t v v t t t t t t t t 5 t t t t 8' ++ +' t 8 5 t t t q t t t t 4.t t t t t 8 t 8 5 t t t t t t 8 t t t 5 8 t t t t ' ++ +'t 5 t t t t t t t t t u 2 q q 5 8 t t t q 2 q t t t t t t t : t t t t t t t' ++ +' t t t v c t t t t t t t g l i u t t t t t t t t t t t t t q q 5 8 5 8 t t ' ++ +'t t t t t t t t t t t : t t t t t 5 8 q t t t t q 2 t t t Q t : t t t t t t' ++ +' q 2 q 5 q 2 t t t 5 t t t t t 8 u 2 t 5 8 t t t t t t t t t m l [ d m 5 t ' ++ +'t t t t t m 5 t 4.u 2 t t t u p u t t t t t t t t t t 5 t t t t 8 5 t d 1.+' ++ +'X] q q t e e e e E v j t t t t t t t t t 2 t 5 q 8 5 t t t t t t t t t t t ' ++ +'t t t t t q t q 2 q t t t t t t t t 5 t q 2 u t t t t t t v v t t t t t t t' ++ +' t t u 8 t t t t t t t t t t t t t t t t t p d a t t t : t t t t 5 q q q u ' ++ +'v @.@.E r r $. X[.r r e e e e e q t m : ^ T 2 t t t 2 i g i t t t t g l u 8' ++ +' t t t 5 8 t 5 P +.+.v p u 2 q t t t t t t t t u q t t t t t t t t 5 q 8 5 ' ++ +'8 t t t 5 t t t t t t t t t t q 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' ++ +'XoXoXoXoXoX>.t t t t q t t t t t t t 5 t t t t t t t t t t t t t t v u 5 t ' ++ +'t t t t t t t 8 t t t t 5 t t t t u 8 q 2 t t 4.q t t t t t 5 t t t t u 8 t' ++ +' t t 5 t t t t t t t t t t 8 v t t t t t t 2 u p p q 5 t t t t t t q q t t ' ++ +'t t t t t q t t t t t t t t t ! Q.Q.^ t t t t t t t q q 2 t t t t t t t t t' ++ +' t t t t q 2 q 5 t t t t 8 t t t t t t t t t t q t 8 5 t t 8 5 5 t t t t q ' ++ +'q t t t t t t t t t t t t t t q q q q t t t 8 t t 5 8 t t t q t t t t t t t' ++ +' 8 t t t t 5 2.|._ t q t t t t q 5 t v R 5.q q 5 8 t g v g t 5 t t t t t 5 ' ++ +'t 8 t t 5 8 t t t t t ! ] T t q q e e e e E T j t t t t t t t t q q t t 8 5' ++ +' t 8 t t t t t t t t 8 5 t t t t t 5 t q q 5 t t t t t t t t q q i l p t t ' ++ +'t t t t 5 a t t t t t 4.t t q 2 t t 5 8 t 8 t t 5 t t t t t t t t t t t t t' ++ +' t t t t t t t q 2 5 q t #.%X%X XW e W $.W r r e e e e e m t t t v q q t t ' ++ +'8 u i g p t t t q p p u t t t t t t u u P #.+.x 8 5 2 q t t t t t t t t 2 q' ++ ,' t t t t t t t t t t 5 8 t t t t 8 t t t 8 5 t t q t q q 8 5 q q t t >.oXoX' ++ +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 5 t t t t t 5 8 q 5 8 t t t 8 5 u' ++ +' x g q v t t t t t t t t t 8 t t 8 t t t t t t t t t t t 5 2 2 N 4.4.t 5 8 ' ++ +'8 t t 8 t t 8 t t t 2 q t t t t t t t t q 2 t t t t a v t t 5 t t t q i x d' ++ +' u t t t 5 t t q 5 q t t q q t : t 5 u t t t t t t t t '' %X+X_ t t t t t q' ++ +' 5 5 q t t t 5 t t t t t t t t 5 8 t t q q t t 8 5 5 t t t t t t t t t q 5 ' ++ +'t t t t t t q q t t q t q 5 q t t t t t t t t t t t t t 8 5 q t t t t t t t' ++ +' t t t t t t t t t t t t t 5 q q t t p $.|.] t t t t t t t t l #.''.` 5 5 q' ++ +' t t g l p q 8 t t t t t 8 t t t 8 t t t t t 8 u t t t t t q r e e e e i a ' ++ +'t t t t 8 t u v t t t t t t t t t t t t t t 5 t t t t 8 t t t t t t t q t t' ++ +' q t t t t t 8 5 y v l 5 t t t t q 8 q 5 t t t v 4.t t t t t t t t t t t t ' ++ +'8 8 5 t t t t t t t t : t t t t t t t t t t t 8 5 k |.CXFXgX$.e e r e r r e' ++ +' e e e e t t t 5 8 q 5 t t t t q t t t t t q t t t t t t t t p x g u P x t ' ++ +'t t q q t t t t t t t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t' ++ +' 2 q 5 q t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t ' ++ +'t t t 8 5 8 8 t t t t 5 q x <.''.` a t t t t t t t t t 5 t t 5 5 8 t t 5 8 ' ++ +'t t 5 8 t 8 N 2 2 u t t t t 5 t t 5 t t 5 t t t t t t t t t t t t t q q t t' ++ +' 8 5 q t v u t t t t t q p u 5 t t t 8 t q q q 2 t t t q t t t u j v l u t ' ++ +'t t t q T *.%.x t t t t t t t t t 8 5 t 8 t t t t t t t t t t t t q q t t t' ++ +' t t t 8 5 t t t t t t q q t t t t t 8 q 2 t t q q 2 q q q t t t t t t t t ' ++ +'t t t t t 8 5 q t t t t 8 5 t t t t t t t t t t t t t t q q 2 t m R _ c t t' ++ +' t t t t t t v :.:.[ t q t t t t t t 5 t t t t t t t t t t t t t t t t t 2 ' ++ +'q t 8 5 q 2 q e r e ; m m t t t t 5 8 G t t q t t t t t t t t t t t t 8 t t' ++ +' t t 5 t t t t q 5 t t t t q 2 t t t t t t u p p 8 t t t t q q t t t t t u ' ++ +'t v t t t t 5 8 t 5 t t t t t t t t t t t t t t q 5 t t t t t t t t t t t 8' ++ +' w |.kXCX%X$.e e r e r r e e e e e m t t 8 5 8 q t t t t t t t t t t t 8 8 ' ++ +'5 q t t t t u j p q 2 t t t t q t t t t t t t 8 5 8 q t t t t t t t t t t t' ++ +' t t t t t 5 t t t t t t t q q q 2 t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"' ++ +'oXoXoXoXoXoXoX>.5 8 t : t t t t : t t 5 t t 5 m q t l O.O.l : t t t t : t t' ++ +' t t : t t 8 t t t : t t : t t t : 4.t q q 2 t : t t : t t 8 8 q q 2 t t : ' ++ +'t t t : t t : 8 5 q : t t t t 5 : ^ t t t t t : t t t : t 5 8 t : 5 : t t :' ++ +' t t 2 t t : u c ! v i t t : t 5 t t t q t 2 q t t t t : 8 5 8 t t t t : t ' ++ +'t : t : t t : t t 2 8 t t t : t t t t : t t : t t 2 t 2 q q : t t q t : t t' ++ +' : t t 2 t t t t t t : t t : t t t 2 q q : 8 5 8 8 8 q 2 t t : t t t : t 2 ' ++ +'q t : 5 : t t : t t t q 5 t : t t : t d ~ Q 4.t t 8 : t q 5 q t t t 8 q 2 t' ++ +' : t t : t t t : 8 5 8 t : t t t t : 8 2 q t 8 t : t t t t t t v t 5 q q 2 ' ++ +'t 8 t 5 : t t : t t t : 8 t 2 q q q : t 8 2 q q : 8 5 8 t t t t q 5 t 8 5 8' ++ +' 2 q : 8 u 2 q t p u 4.: 2 q t : t t v t t 8 t t t t : t t t t 5 8 t t t t ' ++ +'q t t t t t t t t t t : t t ) |.|.$.e e e r e e e r e e e r : t t t t : 8 5' ++ +' 8 : t 5 8 8 2 t t t t 2 q q t t : 5 8 t t 5 8 5 8 t p p u t : t t t t q : ' ++ +'t 5 t q q 2 t t : t t t : t t t 8 : t 8 t t t t t : t t t t t 5 : t t t >.o' ++ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: : : = ; = : : : = : : ; : l = : ' ++ +': : p i : : : : : = : : : : : = : : : : : = ; : : : : N : : : : : ; : : : :' ++ +' : = : : : = ; : : ; : : = : : : : : = : : : : : : ; : q T T t : : : : ; = ' ++ +': : : : : : : : : : : : : : : : : = = : : p g = : : : : : ; : : = : ; ; : :' ++ +' : : : : : : u p t : : : : : : : : : : ; : : = : : : : : : : : : : : : : : ' ++ +': : : : : = : : : : : : : : = : : : l : : ; = = : : : : ; : : : : : : = : =' ++ +' : ; : = : : ; : : : : ; : : : : : : : : : : : : : : : : : : : : t > N : = ' ++ +'= : : : : : : : : = ; : : : : : = : : : = : : : : : = : : : : : ; : = : = :' ++ +' : : : : = ; l : : : ; : = : : : : : : : : : : : = = : : : : : : : : : : : ' ++ +': : : : : : : = : : : : : ; : = : = = : = a p N : ; : : : : : : l l l = : :' ++ +' : : : = : : : : : : : : = : : : : = m : : : : = : : : t p w e w e e e w w ' ++ +'w w e w : = : l : = : : = = : : : ; : : = : : = : : : ; : : : : : : ; : : :' ++ +' : t i t : : : : : : = : : : : ; : : ; = = : : : : : : = = : = : : = ; = : ' ++ +': : : = ; ; : : : 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X' ++ +' X X X X X X t t t X X X X X X % X X X # * X X X X X X X X X X # * X X X X ' ++ +'X X . X X X X X X X X X X X X X X X * X X X X X X X X X X X * X X X X X X X' ++ +' X X : j j : % X X X X X * X X X # X X X X X X X X X X X * # X X * - : - X ' ++ +'X X X X X X X X X X X X X X X X X X # : q : % X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X ' ++ +'X X X X X X X X X X X X * X X X X X X X X X X X % % X X X X X X X X X X X X' ++ +' X X X X X X X X X X * * X X X X X X X X X X % % X X X X X X * X X X # X X ' ++ +'X X X X X X X X X * * X X % X X X X X X X # X X X X X # X X X X X X X X X *' ++ +' X * # : t : # X X X X X X X X X X X X X X X X X X % X X X X X X * % = * X ' ++ ,'* * X X X X X X X X X X X X * X X # X X * * = - X X X X y d 5 % X X X X X X' ++ +' * X X X & & & & & & & & & & & & X X t X * X X X * X X X X X X X X X * X X ' ++ +'X X X # X X X X X X X X X X * - X X X X X X X X X X X a y = * X X X X # X X' ++ +' X * X X X X X * X X X X X X X X X # X X X ; q >.oXoXoXoXoXoXoXoX>.",'#10'"' ++ +'oXoXoXoXoXoXoX>.: X X X X X X X X m t : X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X * t q = % % X X X X X X & & & X X X X X X X X' ++ +' X X X X X X X * = - % X X X X X X X X X X X X X X X X X X X X * : % % X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' ++ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X # X X t L ) R q X X X X X X X * X X X X X X X X X X' ++ +' X X X X X * X X < # X X X % X X X X X X X X X X X X : X X % X X X = = * % ' ++ +'X X = z J d @ % X X X X X X X X X % % & & & & & & & & & X X X t X X X X X #' ++ +' X X X X X X X * X X # X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X = f H y X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : q >.o' ++ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X & & & X X X < X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 2 % % X X X X ' ++ +'X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X * X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X X < X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X % j O.:._ j X X X X X ' ++ +'X * - % * X X * = * X % X X X X X % = = % < X X % % % X X X X X X X X X X X' ++ +' X X : : 5 X X X # * X X X X * d z y * X X X X X X X X X X % % X X & & & & ' ++ +'- X X X X X X X X X X X X X X X X X X X X = ; % # X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X = d f 5 # X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X * X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X < X X X X X ' ++ +'X X X X X X X X @ % % X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X * : % % X X X X X & & & & & X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X < X X X X X X X X X * # X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X % j _ #._ p X X X X X % = - * X X * 8 : = X - = X X X X X - = * X X X X ' ++ +'; : = X X X X X X X X X X X X * X X : : X X X X X X X X @ 5 ; * % X X X X X' ++ +' X X X X X @ X X X X X X X X X X X X X X X X X X X X X X X X X X X ; : = * ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X = = * # X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' ++ +'oXoXoXoXoXoXoX>.: X : : : X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' & & < < & X X X X X X X X X X X X X X * t u = X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X : X X X X X X X & & & & & X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X * ; % * X X X X X X X % % X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X % - X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ; ; % X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X ' ++ +'X X X X X X X X X X X X X X X ; x R l ; X X X X X - ; = X * X X - : : * : q' ++ +' = X X X X X X X X X X X - - % # X X X X X X X X X X X X X X * X X X X X X ' ++ +'X X X % X @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X * X X X # X X * = % X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : >.o' ++ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X 8 X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X t ! ! j X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : X X X X X ' ++ +'X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X = : = # # X X X X X - : % # X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ; ; = X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ ,'X X X X * % q : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X * : * X X X X X X X X X X X X X X X X X X X X X # X - X X X X X X X ' ++ +'- 8 % X X X % # y z d : t - X X X X X < X X X X X X * % * X X X X X X X X X' ++ +' X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X # u c x q X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X * X X X X X X X # X = % X X X X X X X X X X X * X X X X X X X ' ++ +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X' ++ +' X X X X X X % X X X = i y m X X X X X X X X X X < X & & & X X X X X X X X ' ++ +'X X X X X X X p [ ] c X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * * X' ++ +' X X X X X X ; : = X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X * ; : - * X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X < X X X X X X X X * - = X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X * * X % X X * * f ^ f = * X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X 2 q m X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X 8 X X X X X X X X X X q ! @.O.L - X X X X X ' ++ +'X X X X X X X X X X X X X X X X X * - * # X X X X X X # 8 K x i X X X X X X' ++ +' X X X ; = * X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' ++ +'oXoXoXoXoXoXoX>.: X X X X X X X X X X X X @ j [ @.$._ c m X X X X < < X X X' ++ +' X X X X X X X X X X X X X X X X X X X m l c i # X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X * X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X * - * X X X X X X X X X X X X X X X X' ++ +' X X X X X t X X X X X X X X X X X X X X * * # X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X % t g x d 5 X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' ++ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X' ++ +' X h '' ,.<.! : X X X X X X X X X X X X X X X X X X X X X X - ; = X X X X X' ++ +' X X % x +.+.P - X X X X X X X * 2 : = X X X X X X X X X X X X X X X : : >.' ++ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX>.: * X X X X X X X X % % % l $.<.,' ++ +'.<.Q.:.^ m X X X < X X X X X & & & X X X X X X X X X & & & X X X X X * X X ' ++ +'X X X X X * > * # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X % = : : X X X X X X X X X X X X X X X * ; : ' ++ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X' ++ +' X X X X X X X X X X X X X X X X X % 5 X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = ' ++ +': * X X X X X X X X X X X X X X X X # = - * X X X X X X X X X X X X X X X X' ++ +' X X X % X ; c ) T u = X X X X X X < X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X % % % X % # X X X X X X X X % X % @ X X X X X X X X' ++ +' X X : X X X X X X X X X X X t [ ;.@.T - X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X = - X X X # # # # * x +.+.P - X X X X X X X X > = X X X X X X X' ++ +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoXXX",'#10'"oXoXoXoXoXoXoX&.: X X X ' ++ +'X X X X X X X % i _ ,.,.,.,.,.,.:.Z < X X X X X X X & & & & & X X X X X X X' ++ +' & & & & & X X X X X X X X X X X X * u : @ X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : t : % X X X X X' ++ +' X X X X X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # : X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X * : : > X X X X X X X X X X X X X X X X * : t = X X X ' ++ +'X X X X X X X X X X X X X X X X % % : L O.! x : * X X X X < X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X ; p i & & & 5 m 5 X X X ' ++ +'X % % % % @ % X X X X X X X * : X X X X X X X X X * * % i L c q X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X * + # # # u P P q X X X X X ' ++ +'X X X X # * - X X X X X X X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX,.",'#10 ++ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X l :.,.,.,.,.,.,.,.^ * X X X X X X ' ++ +'X & & & & & X X X X o X X & & & & & X X X X X X X X X X X X = : : X X X X X' ++ +' X X X X X X X X X X X X X X X X X * % % 2 X X X X X X X X X X X X X X X X ' ++ +'X X * - 8 t - * X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X' ++ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X = = % X X' ++ +' X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X % ; = * X X X X X X X X X X X' ++ +' X X X X X * : 5 = # X X X X X X X X X X X X X X X X X X X X * p x j u t * ' ++ +'X X X X = * % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X *' ++ +' c _ W c & & & % X m X X X @ = m m : - X - = % X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & &' ++ +' & & * * m ; * X X X X X X X X X # = q 5 = * X X X X X X X X X X X X : t >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X c <.,.,.<' ++ +'.,.<.,.,.[ m % X X X X X X & & & & & X X X X X X X & & & & & X X X X X X X ' ++ +'X X X X X X * % * # X X X X X X X X X X X X X X X X X X X X X % % 8 X X X X' ++ +' X * X X X X X X X X X X X X % : h 8 X X X X X X X X X X X X X X X X X X # ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X u Q v t X X X X X X X X X X X X X X X X X X X X X X X M @ X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ ' ++ +'X X X * : X X X X X X X X X X X X X X X * # X X X X X X X X X X X X X X X X' ++ +' X X X X * ; - % % = * X X X X : p i % X X X X = d d 5 X X X X X X X X X X ' ++ +'X X X X X X X X X X X X = R :.$.R w & & & * X X X X = 5 m 5 : * * = : * X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X & & & & & & & X % @ X X X X X X X X X X X - q t = @ X X X' ++ +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X l :.<.,.,.<.,.<.,.R m % X X X X X X X & & & X X X X X X X X' ++ +' X & & & X X X X X X X X X X X X X X - ; * # X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X : X X * ; ; % X X X X X X X X X X X X X - 8 ; X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X x ] ` i X X X X X X X X X X X X X X ' ++ +'X X X X X X X d o.=.X./ = X X X X X X X * * X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X = & & & X X X X X < q b j = X X X * y J' ++ +' J d X X X X X X X X X X X X X X X X X X X X X X X l [ _ R w & & & X X X X ' ++ +'X 5 y 5 = = X X * - X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X & & & & & & & & & X X X X X X X X ' ++ +'X X X X X # * = * X X X X X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X i @.<.,.,.<.,.<.:.c % % X X X X & ' ++ +'& & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - % * X X X' ++ +' X X X X X X X * X X X X X X X X X X X * : X X * : t * X X X X X X X X X X ' ++ +'X X X X * & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X p T Q t % X' ++ +' X X X X X X X X X X X X X X X X X X d -.,.,.,.>.o.* X X X X X * : : * X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X : % X % = * X X X X' ++ +' X X * * * X X X X X X X X X X X X X X X X X X X X X X X X * & 8 8 w & X X ' ++ +'X X X - q q X X X X X 5 G J y X X X X X X X X X X X X X X X X X X X X X X X' ++ +' * e e w w & & & X X X X X % % m m X X X X X X X X : X % ; : X X X X X X X ' ++ +'X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X & & & & & &' ++ +' & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : 5 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % % c :.<.:' ++ +'.<.,.Q.R t X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X * * * # X X X X X X X X X X X X =' ++ +' - X X X X X X X X X X X X X X X & ; w & & X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t j' ++ +' t X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X 5 : X X X X X X X X X X X X X X X X X X X X X ( ,.,.,.>.,.,' ++ +'.z X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X t X X y z f = X X X X X % : = X X X X X X X X X X X X X X X X X X X X' ++ +' X = g v a & w w & & % X X X X X X X X X X X * * 5 u > X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X & & & & m & & X X X X X X % X X X X X X X X X X t' ++ +' X X - g j q % # X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X ' ++ +'X X X X X X X & & & & & w w & & & & X X X X X X X X X X X X X @ X X X X X X' ++ +' X X X o X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X % ; c _ :.:.@.T i * X X X X X & & & & & X X X X X X X X X X' ++ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & q w w & X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X = p T t X X X X X X X X X X X X X X X X X : X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' ++ +'X X X X X = X.,.,.,.,.,.<.J X X X X X X * X X X X X X X X X X X : - X X X X' ++ +' X X X X X X X X X X X X X X X X X * d J z : X X X X X = = * X X X X X X X ' ++ +'X X X X X X X X X X * # X X p ~ '' L w ; & & & % X < < X X X X X X X * ; 8 ' ++ +'% X X X X X X X X X X X X X X X X X X X X X X X X & & & & & & & % X X X X X' ++ +' X % % X X X X X X : X t t X X ; g x : X X X X X $ $ $ $ $ $ $ $ 9 0 $ $ $ ' ++ +'$ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X & & & & m k j & & & & X X X X X X X' ++ +' X X X * w k e @ X X X X X X X X X X X X X X = 8 >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X % X % m p j i * X X X X X X X & & ' ++ +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X * # X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X & q q w & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X * * X X X X X X X X t i ; X X X X X X X X X X X ' ++ +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X % X o X X' ++ +' X X X X X X X X X X X X X X X X X * X.<.,.>.,.,.,.H X X X X X X X X X X X ' ++ +'X X X X X X t c j = X X X X X X X X X X X X X X X X X X X X X 5 z d * X X X' ++ +' X X # X X X X X X X X X X X X X X X X X X q x g % # u ^ ] v = & & & % # X ' ++ +'< X X X X X X X X X - ; * * X X X X X X X X X X X X X X X X X X X X X X X &' ++ +' & & & & @ @ X X X X X X X X X X X X X X X X t t : X X X : : * X X X X $ $ ' ++ +'$ $ $ $ $ $ 7 K P 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X & & & & & k' ++ +' j & & e w X X X X X X X X X X w [ @.W w X X X X X X X X X X X X X X : : <.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % X % X % X' ++ +' X X X X X X X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X' ++ +' X X X X X X X X X X X X X X X % % & & & X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X - : * # X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X # 5 X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X H ,.,.,.,.,.-' ++ +'.y X X X X X X X X X X X X X X X X X d ^ v : X X X X X X X % X X X X X X X ' ++ +'X X X X X X X = @ # X X X X X X X X X X X X X X X X X X X X X X X = x _ R u' ++ +' * X a l 5 X X X X X * X X X X X X X X X X X * % * X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X & & & & & @ % % X X X X X X X X X X X X X X X t t :' ++ +' : X X * % * X X X X $ $ $ $ $ $ $ $ 7 x L 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ' ++ +'X X X X X X & & & & & & w & & i T k = X X X X X X X X X e ] &.] c X X X X X' ++ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXOXoXoXoX>.= # X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X * u = X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X ; : * X X % = - X X X X X X X X X X X X X X X X X X X X X # : * X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'* @ % X X X = ( ,.,.,.-.V X X X X X X X X X X X * - X X X X X : j u % X X X' ++ +' X X X X X * * % X X X X X X % = % X X X X X X X X X X X X X * X X X X X X ' ++ +'X X X X X X X X - L _ ) u X X * X X X X X X X < X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X ' ++ +'X X X X X X X X X X t X X X : * X X X X X X $ $ $ $ $ $ $ $ $ $ 9 9 7 $ $ $' ++ +' $ $ $ $ $ $ $ $ $ $ $ $ $ * % - X & & & & & & & & & & w T j = X X X X X X ' ++ +'X X X q A [ R w @ % X X X X X X X X X X X X : q <.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.: * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X * * * 5 X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X % * X X X * : : * X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X t l i % X X X X = d H H y X X X X X X X X X X X % = ' ++ +'m - X X X X X X X X X X X X X X X = 5 ; % % X X X X X y t : X X X X X X X X' ++ +' X X X X - t = X X X X X X X X X X X X X % t x g = X X X X X X X X X X < X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X & : & X X X X X X X X X X $ $ $ ' ++ +'$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ % h j u k E j & & & & &' ++ ,' & & & m ; X X X X X X X X X X X w k w % X * X X X X X X X X X X X X ; 2 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * % X t X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = = X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X * j ! b : X X X X X X X X X X' ++ +' X X X X X X X X X X X * = % X X X X X X X X X X X X X X X - m 5 % X X X X ' ++ +'X X i i m * X X X X X X X X X X = l ^ p # X X X X X X X : e y * X % % X X #' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' ++ +' X X X X X : : X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ 0 h h $ $ $ $ ' ++ +'$ : g I x ! @.T & & & & & & & # X X X X X X X X X X X < X & & & < X X X X X' ++ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X # * - X m X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X % X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q ' ++ +'j i % X X X X X X X X X X X X X X X X X X X X X % # X X X X X X X X X X X X' ++ +' X X X X X y G f m % X X X t % = - X X X X X X X X X X X : v ~ l * X X X X ' ++ +'X X X j _ R p % X % * # X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X & & & & & X X X X X X * t : $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $' ++ +' 9 $ $ $ 7 K O.I 9 $ $ $ $ X 8 u 8 c R k & X X X X X X # X X X X X X X X X ' ++ +'X < < & & & & & < X X X X X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X % X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X = G o.J f & & & X : * X X % X X X X X X X' ++ +' X X X X t j q X X X X X X X % c _ _ j % % - : - X X X X X X X X X < X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X 5 $ $ $ ' ++ +'$ 7 $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ h I K 7 $ $ 7 7 # X X X ; m % X X X X X' ++ +' * = X X X X X X X X X X X X * & & & & & % * o X X X X X X X X X X X : : >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X - = * X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X * : X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : % % X X X' ++ +' X X X X X X X X X X X X X X X X X * = - X X X X X X X X X * z ( X._ k & & ' ++ +'& X X X X X X X X X X X X X X X X * % X X X X X X X X X q c k m % = : ; * X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' ++ +' X X X X X X X X # $ $ $ 7 9 7 $ $ $ $ $ $ $ $ & ; & $ $ $ $ 7 0 7 $ $ $ 7 ' ++ +'Y K 9 X X X X % % X X X = g j : X X X X X X X X X X X # & & & & & ; - M X X' ++ +' X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X - ; - X X X X X X X X X X X X * - X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X - * X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 5 # X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X = p b t X X X X X X X X X X X X X X X X X X X X X = t = X X X X X' ++ +' X X X X X 5 ( 1.:.[ e & & X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X & @ % @ : : = X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X * X X X X X t X X X X X X * * * X X X X * $ $ $ a y $ $ $ 0 h 0 $ $ & w <' ++ +'.,.,.$ $ $ $ $ $ $ $ $ K Y ) x * X X X X X X X X t v R p X X X X X X X X < ' ++ +'X X # X & & & 8 g u < < X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X @ % % X X X X X X X X X X X * : : * ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : = *' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X # : v ^ p X X X X X X X X X X X X X X X X ' ++ +'X X X X X X = * X X X X X X X X X X X k @.<.] j & & X X X X * * X X X X X X' ++ +' X X X X X X X X X X X X X X = - @ % % % : : % X X X X X X X X < X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X % = : - X X X X m X X X X X * ; t : % X X X X $ $ $ ' ++ +'$ $ t t 7 P ) x $ $ & k ,.,.,.$ $ $ $ $ $ $ $ $ K +.+.k % @ % X X X X X X *' ++ +' i p : X X X X X X X X X X X X X % % * 8 h q * X X X X X X X X X X X : t >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X % ; ; * X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X * 8 u ; * X X X X X X X X X X 5 X' ++ +' X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X % 2 X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X u p : % X X X' ++ +' X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X * u ! ] R e & ' ++ +'X X X X * = : = t t @ % X X X X X X X X X X X X X @ u l p * X X X # * X X X' ++ +' X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X % - : - X X X t : X X X X X' ++ +' * t c k : X X X X $ $ $ $ $ $ $ 7 h P 0 $ $ & w ,.,.,.$ $ $ $ $ $ $ $ $ 0 ' ++ +'I c 8 > : * X X X X X X X X X % X X X X X X < X X X X X X X X X % : - X X <' ++ +' X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X % @ X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * p x 8 ' ++ +'X X X X X X X X X X X 8 X X % X # X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X % % * X % X X X X X * X % X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X t g t @ @ m X X X X % ; t Q T m @ X X X X X X X X X X X X X ' ++ +'X p ^ l - X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'* - * X X X X X X X X X X X q P L t X X X X $ $ $ $ $ $ $ $ $ 7 $ $ $ $ & &' ++ +' & $ $ $ 7 9 7 $ $ $ $ $ $ * X = = > X X X X X X X X X X X X X X = M < X X ' ++ +'X X X X X X @ X % % % X X < X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X 8 t ; X X X X X X X X X X X : X X ; g x t % X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X % = : * X X X X X X X X d z f = % X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X m X X X X * X t Q v 5 X X' ++ +' X X X X X X X X X X X X X : p u X X X X X X X X X X X X @ < X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X % - * X X X X X X X X X X - t u - * X X X $ $ $ ' ++ +'$ $ $ $ $ $ $ : 2 $ $ 7 $ $ $ $ $ u P 0 $ $ $ $ $ $ # % * * X X X X X X X X' ++ +' X X X X X # y R R l * X @ % X X X X X X X % X X X X X X X X X X X X ; : >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X * X * : - * X X X X X X X X * :' ++ +' X g _ _ L ; X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X' ++ ,' X X X X X a J o.( f X X X X X X X X X X X * - X X X X X X X X X X X X X m ' ++ +'X X X X X X # * t t % X X X X X X X X X X X X X X X X X X O O O O O O O O O' ++ +' O O X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X * - - X X X X X X X X X' ++ +' X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ 7 t d 0 w & & $ $ 9 0 0 $ $ $ $ $ ' ++ +'$ % % X X X X X X X X X X X X X X X = A *.:.` i X X = ; X X X X - : : X X X' ++ +' X X < X X X X # * = t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' ++ +'8 : % * X X X X X X X X X X g _ O.L ; X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X @ X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X ; : : X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X * X X X X X X * X X X X X X X X y ( !.o.z X X X X X X X X X X % = = % X' ++ +' X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X ' ++ +'X X X O O O O O O O O O O 4 d 3 X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X * X X X X X & & & X X X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 9 k q' ++ +' & & & $ $ $ $ $ $ $ $ $ 7 g g - X X X X X X X X X X X X X % : { >.,.] p % ' ++ +'m c l : X X X = t q * X X X X < X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X = % X X X X X X X X X X X # : x P i - = X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' ++ +' X X % @ ; & * X X X X X X X X X X X X X X X X X X X X X X X X X X X : t : ' ++ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X * a q X X X X X X X X X X X * 5 H ( ( y X X ' ++ +'X X X X X X X X % @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X O O O O O O O O O , s / o.( B X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X t X X & & & & & X X X X * * # X X X $ $ $ ' ++ +'$ $ $ $ $ $ $ $ $ $ 7 g w & & & $ $ $ $ $ $ $ $ $ K _ ) i X X X X X X X X X' ++ +' X X X X X X b ] 2.! m % u T Q 8 X X X - : ; X X X X X X X X X X X X ; 2 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X * - X = - * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X j T _ R k = X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X * = * X X X X X % : X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X y Q b m X X X X X X' ++ +' X X X X X X 5 d a * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X % X X X X X X X X X X O O O O O O O O O 4 J' ++ +' -.<.=./ : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X a * X & & & & & X' ++ +' X X X = = # X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 7 i w & & t y $ $ $ $ $ $ $ $ ' ++ +'K ) R i * X X X X X X X X X X X X X X - p j m @ X ; i u * X X X * % % X X X' ++ +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X & c 1.:.:._ i X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X t X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X t v l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X X ' ++ +'X X O O O O O O O O O 4 / ,.,.,.( t X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X # : > X X X X X X X X X X X X ' ++ +'X X X p d 5 % & & & & & X X X X * = X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 &' ++ +' & & $ a a $ $ $ $ $ $ $ 7 g i = # X X X X X X X X X X X < X X X X X % * = ' ++ +'X X X X X X X * - % X X X X X X X < < X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : * X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X : % # X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ ,' X X X d _ 1.:.[ d % X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X * : : X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X 5 X X X X X X X X X X X X X X' ++ +' X X @ % X X X X X X X X X X O O O O O O O O O O H o.N...V * X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X j ^ x' ++ +' : X X X X X X X X X X X X X X d G d = X & & & X X X X X X # X X X X $ $ $ ' ++ +'$ $ $ 9 9 7 $ $ $ $ $ $ $ $ $ $ $ $ : 5 $ $ $ $ $ $ X X # X X X X X X X X X' ++ +' X X X X X X X X X * = = * X X X X X X * = - X X X X X X X X X X X X : t <.' ++ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX,.: X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X * > X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' 5 % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X ' ++ +'X X X X X X X X X X * a u * % X % q v E k ; % X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X % X X X X X X X' ++ +' X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X X X X : X ' ++ +'X X X X X X X X X X X X X 5 f G 5 X X X X X X X X X X O O O O O O 4 4 4 O 4' ++ +' G J Z 2 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X * = ^ *.~ a X X X X X X X X X X X X X X : 5 5 % X X X X X X' ++ +' X X X X X X X X X $ $ $ $ $ 7 h K 9 $ $ 7 7 $ $ $ $ $ $ $ $ $ $ : $ $ $ $ ' ++ +'$ X X X X X X X X X X X X X < X X X X X X X X = * X X X X X X X X % % X X X' ++ +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X = p j t X X X X X X X X X X X X * 5 v v 5 % X % X X ; % @ X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X % X X X X X X X X X : l l : * X X X X X X X X X' ++ +' X * X % X X X X X X m X X X X X X X X X X X X X * b ( o.H = % % X X X X X ' ++ +'X X O O O O O 4 3 y 5 O O O O O O X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X * b ~ v : X X X X X X X X X X X ' ++ +'X X X X @ @ % X X X X X X X X X X X X X X X $ $ $ $ $ $ u h 9 7 0 Y Y 7 $ $' ++ +' $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X < < X X X X X X X % X X ' ++ +'X X X X X X X * X X X X X X X X X X X X < X = 5 >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXOX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X q T ! p X X X X X X X X X X X X X : l l' ++ +' m X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X @ % X * X X X X X X X 5 ' ++ +'c b : X * X X X X X X X X - ; * @ X X X X X X m X X X X X X X X X X X X X @' ++ +' z o.X.J 2 % % # X X X X X X O O O O O O 4 4 4 O O O O O O X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X X = u 8' ++ +' X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X $ $ ' ++ +'$ $ $ 7 7 7 0 Y `.Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X < X : 8 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - j c t % X X ' ++ +'X X X X X X X X X % X = = X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * *' ++ +' X X = - * X X X X X X # t t * : 8 = X X X X X X % * ; * X X X X X X X X X ' ++ +'X X X X X X X X X X X X X y H J d * X X X X X X X X X O O O O O O O O O O O' ++ +' O O O O X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X X X ' ++ +'X X X X X X X X X * X X # X X X X X X X X X X X X X t X X X X X X X X X X X' ++ +' X X X X X # X X X X $ $ $ $ $ $ 7 $ 9 Y Y Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ : ' ++ +': * X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X = = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X % X * X X X X X X X X X X X X t t 5 : X X X X t t : t : t t t : X X' ++ +' X X : 8 : : X X X X X # X X X X X * X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X * = ; * X - - * X X X X X X X * X * 5 8 = X X % X X * X' ++ +' X @ X % X X X X X X m i : X X X X X X X X X X X X X = m % X X X X X X X X ' ++ +'* O O O O O O O O O O O O O O O O X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'t : X X X X X X X X X X X X X X X = = X X X X X $ $ $ $ $ $ $ $ 0 0 K 7 $ $' ++ +' $ $ $ $ $ $ $ $ $ $ $ X X : * X X X & & & & & < X X X X X X X X X X * - - ' ++ +'X X X X X X X X X X X X X X X X X X X X X X N : ,.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X m i = X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X m m 5 m X X X t j l u X X X X : t : t X X X X X X % X X ' ++ +'X X X X X X t X X X X X X X X X X * X X X X : : 5 : X X X X : : : : * X : m' ++ +' : t t X X X X X X X X X X X X X X X X X X X X % = * X X % X X X X X X X X ' ++ +'X X # = = # X X X ; l T c m % X X X X X X X * b ~ j > X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X % + O O O O O O O O O O O O O O X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X * X' ++ +' X X X X X X X X X X X X : X X X X * > # X X X X X X X X * : : * X X X X X ' ++ +'$ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X # # X X X & & & & & X X' ++ +' X X X X X X X X X * - = X X X X X X X X X X X X X X X X X X X X X X : 4.<.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' ++ +' : v ! l = m = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - ' ++ +'= X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X m m 5 m X X X X X X X X X X : c Q u X X X X X' ++ +' X X X X X X * X X X X X X X X X X X : X X X X X X X X X X X X X X X * X X ' ++ +'X X X X X X * X X X X X X X X X X X X : t t : X X X X X X X X X X X X X # #' ++ +' X X X X X X X X X X X X X X X X X X X X X j ] :.] j X X X X X X X X = v ] ' ++ +'T ; X X X X X X X X X X X X X X X X X X X X X X X % - 4 O O O O O O O O O O' ++ +' O * % O X X X @ * X X X X X X X X X X X X X X X X X X X X o & & & X X X X ' ++ +'X X X X X X X X X X q g g = X X X X X X X X X X t X X X X * * = * X X X X X' ++ +' X X X * : = # X X X X X X X $ $ $ $ $ $ 7 7 $ $ $ $ $ $ $ $ $ $ $ X X X X ' ++ +'X * = = X X & & & & & X X X X X X X X X X X X * * X X X X X X X % X X X X X' ++ +' X X X X X X X # * = t >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX|.y X X X ' ++ +'X X X X X X X X X X X X X 8 ^ ] v m 5 : X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X * - % X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X % % q 2 X X X X : : t t X X X X X X X X X X X X X X ' ++ +'X X X X = g l q X X X X X X X X X : l x 5 X X X X X X X X X X t X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X # : : 2 q % X X X : % % X X X X X X X X X X X X X X X X X X X X X b @.<.@' ++ +'.l X X X X X X X X q i c w & & % % X X X X X X X X X X X X X X X X X X X X ' ++ +'X * * O O O O O O O O O O O X O X X X X % = * X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X ; c +.[ j X X X X X X X X X X X ' ++ +'X X X X X * * # * # X X X X X X X X X X X X X X X X X X X * % = X X X X X X' ++ +' X X X X X X X X X X X X X * = % * X : & M < o X X X X X X X X X X X X X X ' ++ +'X X X X * > * X X X X X X X X X X X X X X X : t b.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoXn.d X X X X X X X X X X X X X X X X * g x i = = = X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X : : X X X : q : X X X X X * X X X X X' ++ +' X X X X X X X X X X X X X X X X X = ; # X X X X X X X X X u ^ ` g X X X X ' ++ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X % % X X X X : t : X 5 8 t X X X X X X X ' ++ +'X X X X X X X X X i [ ] ! t X X X X X X X t % & & & & & X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X O O O O O O O O O O O X X X X X = a : * X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : R @.O' ++ +'.g X X X X X X X X X X X X X X X X X X u h 8 * X X X X X X X X X X X X X X ' ++ +'X X X X X = : * X X X X X X X X X X X X X X X X X X X X X X X X 8 X X X X X' ++ ,' X X X X X X X X X X X X X X X X = : > X X X X X X X X X X X X X X X : q <.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX,.5 X X X X X X X X X X X X X X X X' ++ +' X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X t X X X X X X X X X X X % % X X X X X X X X X X X X X X : * * X X X * ' ++ +'X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X t v V u X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * > * X * X' ++ +' X X X X X : X X X X X * X * * - > X X X X # m y t X X X X X X X X t X & & ' ++ +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X - q : * X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X g P P t X X X X X X X X X X X X X X X X X * g P h * X X' ++ +' X X X X X X X X X X X X X X X * : : * * % X % X X X X X X X X X X X X X X ' ++ +'X X X X X X X * : X X X X X X X X X X X X X X X X X X X X * = % X X X X X X' ++ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X % : X X X X X X X X X # % % % X X X X X X t : 8' ++ +' 5 X X X X X X X X X X X X X X X X X X * ; = * X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X % : : * X X X X X X X X * X X X X : : : 8 - : - X X X X X X X X' ++ +' X X X X X X X X t X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X * % : : X X X X X X X X X t X X ' ++ +'X X X X X X X u h q X X X X X X X X X X X X X X X X X X = u : * X * X @ * *' ++ +' X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X X X ' ++ +'X X X X % X X X X X X X X X X X X X X X X X ; 2 >.oXoXoXoXoXoXoXoX<.",'#10 ++ +'"oXoXoXoXoXoXoX>.: : > X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X ' ++ +'X X X % 8 : X X X X X X X X X X X X X X X X X X X X X X X X X X = q : % * X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X = : * X X X X X X X X X X X X X X X ' ++ +'X X % * * X : 5 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X * : X X X X X X X X X X * * X X X X X X X X X X X X X X X ' ++ +'X X X * : : X X X X * : * X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * # X : 2 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXOXb.8.v v u X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X * ; % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X % % X X X X X X X X X X : 2 X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X % = = * X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X ; = X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % % % X X X' ++ +' X X X X X X X X X X X X X X X X X X % % 5 : X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X # X X X X X X * > = * X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X * 8 8 * : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v.'' ` l' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X % X X t : t : X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X - : ; * ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # X X X X X ' ++ +'X X : t t t X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ ,'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ X X ' ++ +'X X X X X X X X X X X X X X X X < X X X X X X X % X % 2 : X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X 8 h g ; ; t >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.` ` ^ F X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X : 2 X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X : X * - * X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X : m X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * m ' ++ +': X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X * X X X X X X X X < X X X X X X X % %' ++ +' % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - h u - : 8 >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t u t * % X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # * X X X X' ++ +' q : * : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X : l l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X % : X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X : 2 X ' ++ +'X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X p R v t X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q h : X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X * % = % : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' ++ +'X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ; : * X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X 5 : X X X X X X X X t X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X : l l : X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X # X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X * : * X % % X X X X : m X X X X X X X X X = : ; * X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X c 2.` g X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X - h K 8 X X X X < < X X X X X X X X X X X X X X X X X : X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X # X # % : 5 >.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.: + o X X X X < X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X # = - X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X : : 8 X X X X X X X % X t X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X X X' ++ +' X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' ++ +' X X X X X X X X X X X X X X X X X : u : # * X X X X X X X X * X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X X : X X % % X X X X X t m m X X X X X X' ++ +' X > : : X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X i T ' ++ +'T t X X X X X X X X X X X X X X X # * X X X X X X X X X X * # X X X X X X X' ++ +' X X X # % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' ++ +'X X X X X X X X X X X X X X X X X X : u : # X X X X X X X X X X X X X X X X' ++ +' X # X X X X * : : # X X * X X X X X X X X X X X X X X X X X X X % % : : >.' ++ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t N : = = ; : : = > N : : = - : =' ++ +' : : ; = : : : = : = : = : : - = : : : : : : : : : : : ; = : : = : : ; : : ' ++ +': = : : ; = = : - : - : : = : : : : = - : : : : = l = : : : : : : : : : : =' ++ +' : : : : : : = ; : ; = : : : : : = : : = = : : ; = : : : : : : = : - : : ; ' ++ +': = : : : : : : : : = ; : : : - : : = : - : : : : : : : = ; : ; = : : ; : :' ++ +' ; : = ; : ; : = : : : : : = - : : : : : = : : : : = : - : - : = : : : : : ' ++ +'; = : : : : - = : : : : : : = : = : : - = : : : ; : : = : = T O.! 8 : = : :' ++ ,' : : : : v '' ^ : : : : = : : ; = : : = ; : : : = : : : ; = : : : : : : ; :' ++ +' : = : ; m 2 y m : ; : l = : : : : : : : = = : - : : : ; = : : : : : : : = ' ++ +': : : - : ; : : : = : : j p : : : ; ; = ; = : ; ; : : = : : : = = : : - : :' ++ +' = : : : = = : ; = : - = : : : : : ; l = ; : : : - = : : : : : : : = = : : ' ++ +'- : : : : = ; : = = : ; : = : : : : : = : = : - : : : : : = : : : : : - : :' ++ +' : ; : : : = ; - = : : : : : : = : : - : = : l = : : : : : : = : = ; : : : ' ++ +': : = - : : : : : ; 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t' ++ +' : t t t 8 t t t 8 5 q q : t t t q q q t t t t 8 8 q q 5 q q q t t t t t : ' ++ +'t t t q q t t : t t t t 5 q q t t t t t t t t 2 q t t t t t t q q q 5 v L ^' ++ +' : q t t t t 8 t 5 : t 8 5 t t t t t t 8 5 : t t t 8 t t t t t t t : t t t ' ++ +'q q t t t t t 8 : t t t t t t t t t q 2 : t t t q q t t t t 8 5 : t t e e e' ++ +' q : t t t t : t t t t t u 2 t q q q : t t t t t 5 t t t : q : 5 8 5 t t t ' ++ +'t t t t t 2 q t t q q t t 8 5 q q : t t t t t 5 t t t q q : t t t q q t t t' ++ +' t t t t t T O.! 8 t t 8 ^ ` v 5 t %.OX&.l 5 t t t t t t t t t t t u ` '' l' ++ +' q q : t t t 5 8 t t 5 q q 2 t t t p X.!.X.y t q 2 T T v a q 8 t t t 8 5 q ' ++ +'q : t t t q q t t 8 5 q q : t t t 5 q q q t t t t m 5 q 5 t t t t t t t t 2' ++ +' t t t t t t 5 t t t t : q q t 8 5 q 8 t t t t 8 q t t 5 8 5 2 v t t 5 : t ' ++ +'t t q t 5 t q 2 q q 8 8 t t t t t t t t q q : t t 8 q q t t t t t 8 8 5 8 t' ++ +' t t t t 8 5 q q 8 t t 4.q 2 q 5 t t t t 8 q t t q q 8 5 5 8 t t t t t t V ' ++ +'T q t t q u t q 5 8 t t t 5 t t t t t : t t t q t <.oXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoX>.t t t t 4.4.t t q 2 t t t 4.8 2 8 t t t 2 8 t t 5 t t 5 2 ' ++ +'q t 8 2 8 5 8 5 t t t t t t t q 2 t t t t t q : t q 2 t t t t t t t t q q t' ++ +' t t t t t t q 2 8 8 5 q 2 q 2 t t t t t 8 8 5 t t q 2 t t t 8 5 8 t t t t ' ++ +'5 t t t t t t t 8 t t t q 2 t t t t t 5 t t t t t t t t t t q u t t t t 2 8' ++ +' t t 5 t t 8 t t e e r r e q t t t t t t t t 5 x ` ^ t 5 q 2 t t t t t t 8 ' ++ +'t t t q q v u 8 t t : t t t t t t q q t t 2 8 t t 5 q q 2 t t t t t t 8 t :' ++ +' t t 2 8 t t t q 2 t t t t t : t t t p t 5 t t u %..X'' t t ^ '' ~ t 8 t : ' ++ +'t t t t t t t t q b &.,.~ t 2 t t t t t t t t 8 q q 5 t t t H (.iX^.J t q q' ++ +' 5 : t 8 5 5 8 t t 5 q q 2 t t t t 2 8 t t 5 8 q 2 8 5 5 8 t t 2 q t t t t ' ++ +'5 m t q t t t t t t t t q q t t 5 8 t 8 t t t : 8 2 t t 5 q 8 5 t t t t 2 q' ++ +' t t 8 : 8 ^ t t t 8 t t t t 5 q 8 t q q q 2 2 q t t t t t t t t t 2 t t t ' ++ +'t q 2 t t t t t 5 5 8 t t t t t t t t t 2 t t t t 5 q q q t t t t 2 q t t q' ++ +' 2 5 8 t t t t t t t t q G v t u ` | v 5 8 t t t t 8 t t t t t t t t t q 2 ' ++ +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX.X>.>.>.>.>.>.>.<.n.>.>.>.>.>.n.>' ++ +'.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.' ++ +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.,.,.XX,.>.>.>.>.>.<.<.>.>.>.>.>.<.>.>.>.>.>.>' ++ +'.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' ++ +'>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.<.>.>.<.<.<.<.<.<.<.>.>.>.>.>.>.>.>.>.>.X' ++ +'XoX.X,.>.>.>.>.>.<.>.>.>.>.>.>.>.<.<.n.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' ++ +'<.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>' ++ +'.XXXXXX>.>.<.>.<.>.>.>.>.>.>.>.>.>.>.>.>.,.XX.X.X<.<.>.>.>.>.>.>.>.>.>.>.>.' ++ +'>.>.>.<.<.,.+XOX+X,.>.>.>.>.>.>.>.>.<.>.,.,.,.XX>.>.>.>.>.>.>.>.>.<.>.>.>.>' ++ +'.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.' ++ +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<' ++ +'.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.' ++ +'>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<..XoXXX>.>.>.>.>.>' ++ +'.>.>.>.>.>.>.>.>.>.>.>.>..XoXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX>.",'#10 ++ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX'' ",'#10 ++ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoX.X^ ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX,.p ",'#10'".XoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXX^ q ",'#10 ++ +'"~ XXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' ++ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' ++ +'oXoXoXoXoX,.~ u 2 "'#10'};'#10#7'Stretch'#9#0#0#6'TLabel'#6'Label1'#4'Left' ++ +#3')'#1#6'Height'#2' '#3'Top'#2'l'#5'Width'#3#144#0#9'Alignment'#7#14'taRigh' ++ +'tJustify'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#10'Sky Charts'#10 ++ +'Font.Color'#7#7'clWhite'#11'Font.Height'#2#230#10'Font.Style'#11#6'fsBold'#0 ++ +#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'H' ++ +'eight'#2#25#3'Top'#3#151#0#5'Width'#2'_'#7'Caption'#6#10'Version 3 '#10'Fon' ++ +'t.Color'#7#7'clWhite'#11'Font.Height'#2#236#10'Font.Style'#11#6'fsBold'#0#11 ++ +'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Heig' ++ +'ht'#2#14#3'Top'#3#240#0#5'Width'#3#208#1#7'Anchors'#11#6'akLeft'#7'akRight' ++ +#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6#14'Copyright (C) '#10'Font.Color'#7 ++ +#7'clWhite'#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label4'#4'Lef' ++ +'t'#2#16#6'Height'#2'*'#3'Top'#3#190#0#5'Width'#3#204#1#7'Anchors'#11#6'akLe' ++ +'ft'#7'akRight'#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6'yThis program is fr' ++ +'ee software; you can redistribute it and/or modify it under the terms of th' ++ +'e GNU General Public License'#10'Font.Color'#7#7'clWhite'#11'ParentColor'#8 ++ +#10'ParentFont'#8#8'WordWrap'#9#0#0#6'TLabel'#9'LabelDate'#4'Left'#3#128#0#6 ++ +'Height'#2#19#3'Top'#3#157#0#5'Width'#2' '#7'Caption'#6#4'Date'#10'Font.Colo' ++ +'r'#7#7'clWhite'#11'Font.Height'#2#241#11'ParentColor'#8#10'ParentFont'#8#7 ++ +'Visible'#8#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#3#184#11#7'On' ++ +'Timer'#7#11'Timer1Timer'#4'left'#2#8#3'top'#2#16#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/skychart/pu_splash.pas skychart_3.2_up/skychart/pu_splash.pas +--- skychart_3.2/skychart/pu_splash.pas 2010-09-07 13:29:16.000000000 +0200 ++++ skychart_3.2_up/skychart/pu_splash.pas 2011-03-09 15:18:23.206265473 +0100 +@@ -1,113 +1,113 @@ +-unit pu_splash; +- +-{$MODE Delphi}{$H+} +- +-{ +-Copyright (C) 2002 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +-{ +- startup splash screen +-} +- +-interface +- +-uses u_translation, u_constant, u_util, +- LCLIntf, Classes, Graphics, Forms, Controls, StdCtrls, +- ExtCtrls, LResources, Buttons; +- +-type +- +- { Tf_splash } +- +- Tf_splash = class(TForm) +- Image1: TImage; +- Label1: TLabel; +- Label2: TLabel; +- Label3: TLabel; +- Label4: TLabel; +- LabelDate: TLabel; +- Panel1: TPanel; +- Timer1: TTimer; +- procedure FormCreate(Sender: TObject); +- procedure FormMouseUp(Sender: TOBject; Button: TMouseButton; +- Shift: TShiftState; X, Y: Integer); +- procedure Timer1Timer(Sender: TObject); +- procedure FormShow(Sender: TObject); +- procedure logoDblClick(Sender: TObject); +- private +- { Private declarations } +- public +- { Public declarations } +- procedure SetLang; +- end; +- +-var +- f_splash: Tf_splash; +- +-implementation +- +-procedure Tf_splash.SetLang; +-begin +-Caption:=rsAbout; +-if rsSkyCharts='Cartes du Ciel' then Label1.caption:='' +- else Label1.caption:=rsSkyCharts; +-Label3.caption:=cdccpy; +-Label4.caption:=rsThisProgramI; +-end; +- +-procedure Tf_splash.FormCreate(Sender: TObject); +-begin +-label2.caption:=cdcversion; +-if pos('svn',cdcversion)>0 then begin +- LabelDate.caption:=compile_time; +- LabelDate.Left:=label2.Left+label2.Canvas.TextWidth(cdcversion)+8; +- LabelDate.Visible:=true; +-end else +- LabelDate.Visible:=false; +-SetLang; +-end; +- +-procedure Tf_splash.FormShow(Sender: TObject); +-begin +- Timer1.Enabled:=true; +-end; +- +-procedure Tf_splash.Timer1Timer(Sender: TObject); +-begin +-Timer1.Enabled:=false; +-Close; +-end; +- +-procedure Tf_splash.logoDblClick(Sender: TObject); +-begin +-Timer1Timer(Sender); +-end; +- +-procedure Tf_splash.FormMouseUp(Sender: TOBject; Button: TMouseButton; +- Shift: TShiftState; X, Y: Integer); +-begin +-logoDblClick(Sender); +-end; +- +-initialization +- {$i pu_splash.lrs} +- +-end. +- ++unit pu_splash; ++ ++{$MODE Delphi}{$H+} ++ ++{ ++Copyright (C) 2002 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++{ ++ startup splash screen ++} ++ ++interface ++ ++uses u_translation, u_constant, u_util, ++ LCLIntf, Classes, Graphics, Forms, Controls, StdCtrls, ++ ExtCtrls, LResources, Buttons; ++ ++type ++ ++ { Tf_splash } ++ ++ Tf_splash = class(TForm) ++ Image1: TImage; ++ Label1: TLabel; ++ Label2: TLabel; ++ Label3: TLabel; ++ Label4: TLabel; ++ LabelDate: TLabel; ++ Panel1: TPanel; ++ Timer1: TTimer; ++ procedure FormCreate(Sender: TObject); ++ procedure FormMouseUp(Sender: TOBject; Button: TMouseButton; ++ Shift: TShiftState; X, Y: Integer); ++ procedure Timer1Timer(Sender: TObject); ++ procedure FormShow(Sender: TObject); ++ procedure logoDblClick(Sender: TObject); ++ private ++ { Private declarations } ++ public ++ { Public declarations } ++ procedure SetLang; ++ end; ++ ++var ++ f_splash: Tf_splash; ++ ++implementation ++ ++procedure Tf_splash.SetLang; ++begin ++Caption:=rsAbout; ++if rsSkyCharts='Cartes du Ciel' then Label1.caption:='' ++ else Label1.caption:=rsSkyCharts; ++Label3.caption:=cdccpy; ++Label4.caption:=rsThisProgramI; ++end; ++ ++procedure Tf_splash.FormCreate(Sender: TObject); ++begin ++label2.caption:=cdcversion; ++if pos('svn',cdcversion)>0 then begin ++ LabelDate.caption:=compile_time; ++ LabelDate.Left:=label2.Left+label2.Canvas.TextWidth(cdcversion)+8; ++ LabelDate.Visible:=true; ++end else ++ LabelDate.Visible:=false; ++SetLang; ++end; ++ ++procedure Tf_splash.FormShow(Sender: TObject); ++begin ++ Timer1.Enabled:=true; ++end; ++ ++procedure Tf_splash.Timer1Timer(Sender: TObject); ++begin ++Timer1.Enabled:=false; ++Close; ++end; ++ ++procedure Tf_splash.logoDblClick(Sender: TObject); ++begin ++Timer1Timer(Sender); ++end; ++ ++procedure Tf_splash.FormMouseUp(Sender: TOBject; Button: TMouseButton; ++ Shift: TShiftState; X, Y: Integer); ++begin ++logoDblClick(Sender); ++end; ++ ++initialization ++ {$i pu_splash.lrs} ++ ++end. ++ +diff -ur skychart_3.2/varobs/aavsob1.lfm skychart_3.2_up/varobs/aavsob1.lfm +--- skychart_3.2/varobs/aavsob1.lfm 2009-01-11 10:36:02.000000000 +0100 ++++ skychart_3.2_up/varobs/aavsob1.lfm 2011-03-09 15:18:23.213264612 +0100 +@@ -1,120 +1,120 @@ +-object Form1: TForm1 +- Left = 161 +- Height = 406 +- Top = 161 +- Width = 420 +- ActiveControl = Button1 +- Caption = 'AAVSO Bulletin' +- ClientHeight = 406 +- ClientWidth = 420 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- OnCreate = FormCreate +- OnShow = FormShow +- Position = poDefaultPosOnly +- LCLVersion = '0.9.27' +- object Label2: TLabel +- Left = 32 +- Height = 14 +- Top = 224 +- Width = 276 +- Caption = 'AAVSO LPV Bulletin Single file, Plain Text - By designation' +- ParentColor = False +- end +- object Label3: TLabel +- Left = 144 +- Height = 14 +- Top = 376 +- Width = 1 +- Alignment = taCenter +- ParentColor = False +- end +- object Label4: TLabel +- Left = 32 +- Height = 14 +- Top = 288 +- Width = 185 +- Caption = 'Varobs GCVS by constellation directory' +- ParentColor = False +- end +- object Label6: TLabel +- Left = 32 +- Height = 89 +- Top = 16 +- Width = 344 +- AutoSize = False +- Caption = 'Use this form to refresh the Long Period Variables maxima epoch using the AAVSO Bulletin for the current year.'#10'This produce the file aavsoYYYY.dat that can be use in input to VarObs.' +- ParentColor = False +- WordWrap = True +- end +- object Label7: TLabel +- Cursor = crHandPoint +- Left = 32 +- Height = 14 +- Top = 144 +- Width = 210 +- Caption = 'http://www.aavso.org/publications/bulletin/' +- Color = clBtnFace +- Font.Color = clBlue +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- ParentColor = False +- ParentFont = False +- Transparent = False +- OnClick = Label7Click +- end +- object Label8: TLabel +- Left = 32 +- Height = 14 +- Top = 120 +- Width = 247 +- Caption = 'Get the AAVSO Validation file and LPV Bulletin from:' +- ParentColor = False +- end +- object Label1: TLabel +- Left = 32 +- Height = 14 +- Top = 184 +- Width = 23 +- Caption = 'Year' +- ParentColor = False +- end +- object Button1: TButton +- Left = 144 +- Height = 25 +- Top = 344 +- Width = 75 +- Caption = 'GO!' +- OnClick = Button1Click +- TabOrder = 0 +- end +- object FileNameEdit1: TFileNameEdit +- Left = 32 +- Height = 23 +- Top = 248 +- Width = 304 +- ButtonWidth = 23 +- NumGlyphs = 1 +- TabOrder = 1 +- end +- object SpinEdit1: TSpinEdit +- Left = 88 +- Height = 23 +- Top = 181 +- Width = 80 +- MaxValue = 3000 +- MinValue = 2000 +- OnChange = SpinEdit1Change +- TabOrder = 2 +- Value = 2008 +- end +- object DirectoryEdit1: TDirectoryEdit +- Left = 32 +- Height = 23 +- Top = 312 +- Width = 304 +- ButtonWidth = 23 +- NumGlyphs = 1 +- TabOrder = 3 +- end +-end ++object Form1: TForm1 ++ Left = 161 ++ Height = 406 ++ Top = 161 ++ Width = 420 ++ ActiveControl = Button1 ++ Caption = 'AAVSO Bulletin' ++ ClientHeight = 406 ++ ClientWidth = 420 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ OnCreate = FormCreate ++ OnShow = FormShow ++ Position = poDefaultPosOnly ++ LCLVersion = '0.9.27' ++ object Label2: TLabel ++ Left = 32 ++ Height = 14 ++ Top = 224 ++ Width = 276 ++ Caption = 'AAVSO LPV Bulletin Single file, Plain Text - By designation' ++ ParentColor = False ++ end ++ object Label3: TLabel ++ Left = 144 ++ Height = 14 ++ Top = 376 ++ Width = 1 ++ Alignment = taCenter ++ ParentColor = False ++ end ++ object Label4: TLabel ++ Left = 32 ++ Height = 14 ++ Top = 288 ++ Width = 185 ++ Caption = 'Varobs GCVS by constellation directory' ++ ParentColor = False ++ end ++ object Label6: TLabel ++ Left = 32 ++ Height = 89 ++ Top = 16 ++ Width = 344 ++ AutoSize = False ++ Caption = 'Use this form to refresh the Long Period Variables maxima epoch using the AAVSO Bulletin for the current year.'#10'This produce the file aavsoYYYY.dat that can be use in input to VarObs.' ++ ParentColor = False ++ WordWrap = True ++ end ++ object Label7: TLabel ++ Cursor = crHandPoint ++ Left = 32 ++ Height = 14 ++ Top = 144 ++ Width = 210 ++ Caption = 'http://www.aavso.org/publications/bulletin/' ++ Color = clBtnFace ++ Font.Color = clBlue ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ ParentColor = False ++ ParentFont = False ++ Transparent = False ++ OnClick = Label7Click ++ end ++ object Label8: TLabel ++ Left = 32 ++ Height = 14 ++ Top = 120 ++ Width = 247 ++ Caption = 'Get the AAVSO Validation file and LPV Bulletin from:' ++ ParentColor = False ++ end ++ object Label1: TLabel ++ Left = 32 ++ Height = 14 ++ Top = 184 ++ Width = 23 ++ Caption = 'Year' ++ ParentColor = False ++ end ++ object Button1: TButton ++ Left = 144 ++ Height = 25 ++ Top = 344 ++ Width = 75 ++ Caption = 'GO!' ++ OnClick = Button1Click ++ TabOrder = 0 ++ end ++ object FileNameEdit1: TFileNameEdit ++ Left = 32 ++ Height = 23 ++ Top = 248 ++ Width = 304 ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ TabOrder = 1 ++ end ++ object SpinEdit1: TSpinEdit ++ Left = 88 ++ Height = 23 ++ Top = 181 ++ Width = 80 ++ MaxValue = 3000 ++ MinValue = 2000 ++ OnChange = SpinEdit1Change ++ TabOrder = 2 ++ Value = 2008 ++ end ++ object DirectoryEdit1: TDirectoryEdit ++ Left = 32 ++ Height = 23 ++ Top = 312 ++ Width = 304 ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ TabOrder = 3 ++ end ++end +diff -ur skychart_3.2/varobs/aavsob1.lrs skychart_3.2_up/varobs/aavsob1.lrs +--- skychart_3.2/varobs/aavsob1.lrs 2009-01-11 10:36:02.000000000 +0100 ++++ skychart_3.2_up/varobs/aavsob1.lrs 2011-03-09 15:18:23.213264612 +0100 +@@ -1,37 +1,37 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('TForm1','FORMDATA',[ +- 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#161#0#6'Height'#3#150#1#3'Top'#3#161#0#5 +- +'Width'#3#164#1#13'ActiveControl'#7#7'Button1'#7'Caption'#6#14'AAVSO Bulleti' +- +'n'#12'ClientHeight'#3#150#1#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9 +- +'Font.Name'#6#13'MS Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'F' +- +'ormShow'#8'Position'#7#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.27'#0#6 +- +'TLabel'#6'Label2'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#20#1 +- +#7'Caption'#6';AAVSO LPV Bulletin Single file, Plain Text - By designation' +- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#144#0#6'Height'#2#14#3 +- +'Top'#3'x'#1#5'Width'#2#1#9'Alignment'#7#8'taCenter'#11'ParentColor'#8#0#0#6 +- +'TLabel'#6'Label4'#4'Left'#2' '#6'Height'#2#14#3'Top'#3' '#1#5'Width'#3#185#0 +- +#7'Caption'#6'&Varobs GCVS by constellation directory'#11'ParentColor'#8#0#0 +- +#6'TLabel'#6'Label6'#4'Left'#2' '#6'Height'#2'Y'#3'Top'#2#16#5'Width'#3'X'#1 +- +#8'AutoSize'#8#7'Caption'#6#182'Use this form to refresh the Long Period Var' +- +'iables maxima epoch using the AAVSO Bulletin for the current year.'#10'This' +- +' produce the file aavsoYYYY.dat that can be use in input to VarObs.'#11'Par' +- +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label7'#6'Cursor'#7#11'crHandPoin' +- +'t'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#210#0#7'Caption'#6 +- +'+http://www.aavso.org/publications/bulletin/'#5'Color'#7#9'clBtnFace'#10'Fo' +- +'nt.Color'#7#6'clBlue'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif' +- +#11'ParentColor'#8#10'ParentFont'#8#11'Transparent'#8#7'OnClick'#7#11'Label7' +- +'Click'#0#0#6'TLabel'#6'Label8'#4'Left'#2' '#6'Height'#2#14#3'Top'#2'x'#5'Wi' +- +'dth'#3#247#0#7'Caption'#6'4Get the AAVSO Validation file and LPV Bulletin f' +- +'rom:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2' '#6'Height'#2#14 +- +#3'Top'#3#184#0#5'Width'#2#23#7'Caption'#6#4'Year'#11'ParentColor'#8#0#0#7'T' +- +'Button'#7'Button1'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3'X'#1#5'Width'#2 +- +'K'#7'Caption'#6#3'GO!'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#13 +- +'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3#248#0 +- +#5'Width'#3'0'#1#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#1#0#0#9 +- +'TSpinEdit'#9'SpinEdit1'#4'Left'#2'X'#6'Height'#2#23#3'Top'#3#181#0#5'Width' +- +#2'P'#8'MaxValue'#3#184#11#8'MinValue'#3#208#7#8'OnChange'#7#15'SpinEdit1Cha' +- +'nge'#8'TabOrder'#2#2#5'Value'#3#216#7#0#0#14'TDirectoryEdit'#14'DirectoryEd' +- +'it1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3'8'#1#5'Width'#3'0'#1#11'ButtonWid' +- +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#0#0#0 +-]); ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('TForm1','FORMDATA',[ ++ 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#161#0#6'Height'#3#150#1#3'Top'#3#161#0#5 ++ +'Width'#3#164#1#13'ActiveControl'#7#7'Button1'#7'Caption'#6#14'AAVSO Bulleti' ++ +'n'#12'ClientHeight'#3#150#1#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9 ++ +'Font.Name'#6#13'MS Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'F' ++ +'ormShow'#8'Position'#7#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.27'#0#6 ++ +'TLabel'#6'Label2'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#20#1 ++ +#7'Caption'#6';AAVSO LPV Bulletin Single file, Plain Text - By designation' ++ +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#144#0#6'Height'#2#14#3 ++ +'Top'#3'x'#1#5'Width'#2#1#9'Alignment'#7#8'taCenter'#11'ParentColor'#8#0#0#6 ++ +'TLabel'#6'Label4'#4'Left'#2' '#6'Height'#2#14#3'Top'#3' '#1#5'Width'#3#185#0 ++ +#7'Caption'#6'&Varobs GCVS by constellation directory'#11'ParentColor'#8#0#0 ++ +#6'TLabel'#6'Label6'#4'Left'#2' '#6'Height'#2'Y'#3'Top'#2#16#5'Width'#3'X'#1 ++ +#8'AutoSize'#8#7'Caption'#6#182'Use this form to refresh the Long Period Var' ++ +'iables maxima epoch using the AAVSO Bulletin for the current year.'#10'This' ++ +' produce the file aavsoYYYY.dat that can be use in input to VarObs.'#11'Par' ++ +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label7'#6'Cursor'#7#11'crHandPoin' ++ +'t'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#210#0#7'Caption'#6 ++ +'+http://www.aavso.org/publications/bulletin/'#5'Color'#7#9'clBtnFace'#10'Fo' ++ +'nt.Color'#7#6'clBlue'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif' ++ +#11'ParentColor'#8#10'ParentFont'#8#11'Transparent'#8#7'OnClick'#7#11'Label7' ++ +'Click'#0#0#6'TLabel'#6'Label8'#4'Left'#2' '#6'Height'#2#14#3'Top'#2'x'#5'Wi' ++ +'dth'#3#247#0#7'Caption'#6'4Get the AAVSO Validation file and LPV Bulletin f' ++ +'rom:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2' '#6'Height'#2#14 ++ +#3'Top'#3#184#0#5'Width'#2#23#7'Caption'#6#4'Year'#11'ParentColor'#8#0#0#7'T' ++ +'Button'#7'Button1'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3'X'#1#5'Width'#2 ++ +'K'#7'Caption'#6#3'GO!'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#13 ++ +'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3#248#0 ++ +#5'Width'#3'0'#1#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#1#0#0#9 ++ +'TSpinEdit'#9'SpinEdit1'#4'Left'#2'X'#6'Height'#2#23#3'Top'#3#181#0#5'Width' ++ +#2'P'#8'MaxValue'#3#184#11#8'MinValue'#3#208#7#8'OnChange'#7#15'SpinEdit1Cha' ++ +'nge'#8'TabOrder'#2#2#5'Value'#3#216#7#0#0#14'TDirectoryEdit'#14'DirectoryEd' ++ +'it1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3'8'#1#5'Width'#3'0'#1#11'ButtonWid' ++ +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#0#0#0 ++]); +diff -ur skychart_3.2/varobs/aavsob1.pas skychart_3.2_up/varobs/aavsob1.pas +--- skychart_3.2/varobs/aavsob1.pas 2009-01-11 10:36:02.000000000 +0100 ++++ skychart_3.2_up/varobs/aavsob1.pas 2011-03-09 15:18:23.213264612 +0100 +@@ -1,330 +1,330 @@ +-unit aavsob1; +- +-{$MODE Delphi} +- +-{ +-Copyright (C) 2005 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +-interface +- +-uses +-//Shellapi, +-{$ifdef mswindows} +- Windows, +-{$endif} +- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, +- StdCtrls, ComCtrls, LResources, EditBtn, Fileutil, u_param, u_util2, Spin; +- +-type +- +- { TForm1 } +- +- TForm1 = class(TForm) +- Button1: TButton; +- DirectoryEdit1: TDirectoryEdit; +- FileNameEdit1: TFileNameEdit; +- Label1: TLabel; +- Label2: TLabel; +- Label3: TLabel; +- Label4: TLabel; +- Label6: TLabel; +- Label7: TLabel; +- Label8: TLabel; +- SpinEdit1: TSpinEdit; +- procedure Button1Click(Sender: TObject); +- procedure FormShow(Sender: TObject); +- procedure FormCreate(Sender: TObject); +- procedure Label7Click(Sender: TObject); +- procedure SpinEdit1Change(Sender: TObject); +- private +- Procedure ConvAAVSOb; +- Procedure GetAppDir; +- public +- end; +- +-var +- Form1: TForm1; +- lpvlst,pulslst : array[1..1000] of string; +- nLPV,curvar : integer; +- +-implementation +- +-Procedure TForm1.GetAppDir; +-var buf: string; +-{$ifdef darwin} +- i: integer; +-{$endif} +-{$ifdef mswindows} +- PIDL : PItemIDList; +- Folder : array[0..MAX_PATH] of Char; +-const CSIDL_PERSONAL = $0005; // My Documents +- CSIDL_APPDATA = $001a; // <user name>\Application Data +- CSIDL_LOCAL_APPDATA = $001c; // <user name>\Local Settings\Applicaiton Data (non roaming) +-{$endif} +-begin +-{$ifdef darwin} +-appdir:=getcurrentdir; +-if not DirectoryExists(slash(appdir)+slash('data')+slash('varobs')) then begin +- appdir:=ExtractFilePath(ParamStr(0)); +- i:=pos('.app/',appdir); +- if i>0 then begin +- appdir:=ExtractFilePath(copy(appdir,1,i)); +- end; +-end; +-{$else} +-appdir:=getcurrentdir; +-GetDir(0,appdir); +-{$endif} +-privatedir:=DefaultPrivateDir; +-configfile:=Defaultconfigfile; +-{$ifdef unix} +-appdir:=expandfilename(appdir); +-privatedir:=expandfilename(PrivateDir); +-configfile:=expandfilename(configfile); +-{$endif} +-{$ifdef mswindows} +-SHGetSpecialFolderLocation(0, CSIDL_LOCAL_APPDATA, PIDL); +-SHGetPathFromIDList(PIDL, Folder); +-buf:=trim(Folder); +-if buf='' then begin // old windows version +- SHGetSpecialFolderLocation(0, CSIDL_APPDATA, PIDL); +- SHGetPathFromIDList(PIDL, Folder); +- buf:=trim(Folder); +-end; +-privatedir:=slash(buf)+privatedir; +-configfile:=slash(privatedir)+configfile; +-{$endif} +-skychart:=slash(appdir)+DefaultSkychart; +-if not FileExists(skychart) then skychart:=DefaultSkychart; +-if not directoryexists(privatedir) then CreateDir(privatedir); +-if not directoryexists(privatedir) then forcedirectory(privatedir); +-if not directoryexists(privatedir) then begin +- MessageDlg('Unable to create '+privatedir, +- mtError, [mbAbort], 0); +- Halt; +-end; +-if not directoryexists(slash(privatedir)+'quicklook') then CreateDir(slash(privatedir)+'quicklook'); +-if not directoryexists(slash(privatedir)+'afoevdata') then CreateDir(slash(privatedir)+'afoevdata'); +- +-if (not directoryexists(slash(appdir)+slash('data')+'varobs')) then begin +- // try under the current directory +- buf:=GetCurrentDir; +- if (directoryexists(slash(buf)+slash('data')+'varobs')) then +- appdir:=buf +- else begin +- // try under the program directory +- buf:=ExtractFilePath(ParamStr(0)); +- if (directoryexists(slash(buf)+slash('data')+'varobs')) then +- appdir:=buf +- else begin +- // try share directory under current location +- buf:=ExpandFileName(slash(GetCurrentDir)+SharedDir); +- if (directoryexists(slash(buf)+slash('data')+'varobs')) then +- appdir:=buf +- else begin +- // try share directory at the same location as the program +- buf:=ExpandFileName(slash(ExtractFilePath(ParamStr(0)))+SharedDir); +- if (directoryexists(slash(buf)+slash('data')+'varobs')) then +- appdir:=buf +- else begin +- MessageDlg('Could not found the application data directory.'+crlf +- +'Please check the program installation.', +- mtError, [mbAbort], 0); +- Halt; +- end; +- end; +- end; +- end; +-end; +- +-ConstDir:=slash(appdir)+slash('data')+slash('varobs'); +-end; +- +- +-Function CleanMag(mag:string):string; +-var i:integer; +- c:char; +-begin +-mag:=trim(mag); +-result:=''; +-for i:=1 to length(mag) do begin +- c:=mag[i]; +- if ((c>='0')and(c<='9'))or(c='.')or((i=1)and(c='-')) then result:=result+c; +-end; +-while length(result)<5 do result:=' '+result; +-end; +- +-Function CleanDat(dat:string):string; +-begin +-result:=stringreplace(dat,'|','',[rfReplaceAll]); +-result:=stringreplace(result,'+','',[rfReplaceAll]); +-result:=stringreplace(result,'-','',[rfReplaceAll]); +-result:=stringreplace(result,' ','',[rfReplaceAll]); +-end; +- +-Procedure GetGCVSInfo(nom : string; var vartype,per,slope,jdt : string); +-var f : textfile; +- buf,id1,id2,constel : string; +- p : integer; +-begin +-vartype:=' '; +-per:=' '; +-slope:=' '; +-jdt:=' '; +-buf:=trim(nom); +-p:=pos(' ',buf); +-id1:=uppercase(copy(buf,1,p-1)); +-constel:=copy(buf,p+1,99); +-if constel='*' then exit; +-constel:=stringreplace(constel,'?','',[]); +-buf:=slash(form1.DirectoryEdit1.Directory)+constel+'.dat'; +-if not fileexists(buf) then exit; +-assignfile(f,buf); +-reset(f); +-repeat +- readln(f,buf); +- id2:=trim(uppercase(copy(buf,1,5))); +- if (copy(id2,1,1)='V')and(length(id2)=5) then begin +- id2:='V'+inttostr(strtoint(copy(id2,2,4))); +- end; +- if id1=id2 then begin +- vartype:=copy(buf,12,10); +- per:=copy(buf,52,15); +- slope:=copy(buf,69,3); +- jdt:=copy(buf,37,13); +- break; +- end; +-until eof(f); +-closefile(f); +-end; +- +-Procedure Tform1.ConvAAVSOb; +-var fb,f : textfile; +- buf,design,nom,mag,dat,mag1,mag2,datm,vartype,jdt,per,slope,puls,v1,p1,j1 : string; +- i,n,p,year1,year,mois,jour : integer; +- jdm : double; +-begin +-i:=0; +-n:=1; +-year1:=SpinEdit1.Value; +-buf:=FileNameEdit1.FileName; +-assignfile(fb,buf); +-reset(fb); +-buf:=slash(privatedir)+'aavso'+inttostr(year1)+'.dat'; +-assignfile(f,buf); +-rewrite(f); +-try +-repeat +- inc(i); +- label3.caption:='Progress: '+inttostr(i); +- application.processmessages; +- readln(fb,buf); +- design:=copy(buf,7,8); +- if (trim(design)='')or(design='DESIGN. ')or(design='--------') then continue; +- nom:=copy(buf,16,9); +- mag:=copy(buf,28,11); +- dat:=copy(buf,40,999); +- p:=pos('-',mag); +- mag1:=cleanmag(copy(mag,1,p-1)); +- mag2:=cleanmag(copy(mag,p+1,99)); +- p:=pos('M',dat); +- if p<=0 then continue; +- p:=p-2; +- datm:=cleandat(copy(dat,p,2)); +- jour:=strtoint(datm); +- if length(datm)=1 then p:=p+1; +- mois:=1+( (p-2) div 6 ); +- year:=year1; +- if mois>12 then begin +- mois:=mois-12; +- year:=year+1; +- end; +- jdm:=jd(year,mois,jour,12); +- str(jdm:10:1,jdt); +- GetGCVSinfo(nom,vartype,per,slope,j1); +- puls:=nom+', '+vartype+', '+mag1+', '+mag2+', '+jdt+', '+per+', '+slope+', '+design; +- writeln(f,puls); +- lpvlst[n]:=trim(design); +- pulslst[n]:=puls; +- inc(n); +-until eof(fb); +-nLPV:=n-1; +-closefile(f); +-closefile(fb); +-label3.caption:='Finished'; +-except +-showmessage('Error for line :'+buf); +-raise; +-end; +-end; +- +-Function IsLPV(design : string):boolean; +-var i : integer; +-begin +-result:=false; +-design:=trim(design); +-for i:=1 to nLPV do begin +- if design=lpvlst[i] then begin +- curvar:=i; +- result:=true; +- break; +- end; +-end; +-end; +- +-procedure TForm1.Button1Click(Sender: TObject); +-begin +-screen.cursor:=crhourglass; +-try +-convaavsob; +-finally +-screen.cursor:=crdefault; +-end; +-end; +- +-procedure TForm1.FormShow(Sender: TObject); +-begin +-GetAppDir; +-OpenFileCmd:=DefaultOpenFileCMD; +-DirectoryEdit1.Directory:=slash(appdir)+slash('data')+slash('varobs'); +-SpinEdit1.Text:=formatdatetime('yyyy',now); +-FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+formatdatetime('yy',now)+'.TXT'; +-end; +- +-procedure TForm1.FormCreate(Sender: TObject); +-begin +-decimalseparator:='.'; +-end; +- +-procedure TForm1.Label7Click(Sender: TObject); +-begin +-Executefile(label7.Caption); +-end; +- +-procedure TForm1.SpinEdit1Change(Sender: TObject); +-begin +-FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+copy(SpinEdit1.text,3,2)+'.TXT'; +-end; +- +-initialization +- {$i aavsob1.lrs} +- +-end. ++unit aavsob1; ++ ++{$MODE Delphi} ++ ++{ ++Copyright (C) 2005 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++interface ++ ++uses ++//Shellapi, ++{$ifdef mswindows} ++ Windows, ++{$endif} ++ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ++ StdCtrls, ComCtrls, LResources, EditBtn, Fileutil, u_param, u_util2, Spin; ++ ++type ++ ++ { TForm1 } ++ ++ TForm1 = class(TForm) ++ Button1: TButton; ++ DirectoryEdit1: TDirectoryEdit; ++ FileNameEdit1: TFileNameEdit; ++ Label1: TLabel; ++ Label2: TLabel; ++ Label3: TLabel; ++ Label4: TLabel; ++ Label6: TLabel; ++ Label7: TLabel; ++ Label8: TLabel; ++ SpinEdit1: TSpinEdit; ++ procedure Button1Click(Sender: TObject); ++ procedure FormShow(Sender: TObject); ++ procedure FormCreate(Sender: TObject); ++ procedure Label7Click(Sender: TObject); ++ procedure SpinEdit1Change(Sender: TObject); ++ private ++ Procedure ConvAAVSOb; ++ Procedure GetAppDir; ++ public ++ end; ++ ++var ++ Form1: TForm1; ++ lpvlst,pulslst : array[1..1000] of string; ++ nLPV,curvar : integer; ++ ++implementation ++ ++Procedure TForm1.GetAppDir; ++var buf: string; ++{$ifdef darwin} ++ i: integer; ++{$endif} ++{$ifdef mswindows} ++ PIDL : PItemIDList; ++ Folder : array[0..MAX_PATH] of Char; ++const CSIDL_PERSONAL = $0005; // My Documents ++ CSIDL_APPDATA = $001a; // <user name>\Application Data ++ CSIDL_LOCAL_APPDATA = $001c; // <user name>\Local Settings\Applicaiton Data (non roaming) ++{$endif} ++begin ++{$ifdef darwin} ++appdir:=getcurrentdir; ++if not DirectoryExists(slash(appdir)+slash('data')+slash('varobs')) then begin ++ appdir:=ExtractFilePath(ParamStr(0)); ++ i:=pos('.app/',appdir); ++ if i>0 then begin ++ appdir:=ExtractFilePath(copy(appdir,1,i)); ++ end; ++end; ++{$else} ++appdir:=getcurrentdir; ++GetDir(0,appdir); ++{$endif} ++privatedir:=DefaultPrivateDir; ++configfile:=Defaultconfigfile; ++{$ifdef unix} ++appdir:=expandfilename(appdir); ++privatedir:=expandfilename(PrivateDir); ++configfile:=expandfilename(configfile); ++{$endif} ++{$ifdef mswindows} ++SHGetSpecialFolderLocation(0, CSIDL_LOCAL_APPDATA, PIDL); ++SHGetPathFromIDList(PIDL, Folder); ++buf:=trim(Folder); ++if buf='' then begin // old windows version ++ SHGetSpecialFolderLocation(0, CSIDL_APPDATA, PIDL); ++ SHGetPathFromIDList(PIDL, Folder); ++ buf:=trim(Folder); ++end; ++privatedir:=slash(buf)+privatedir; ++configfile:=slash(privatedir)+configfile; ++{$endif} ++skychart:=slash(appdir)+DefaultSkychart; ++if not FileExists(skychart) then skychart:=DefaultSkychart; ++if not directoryexists(privatedir) then CreateDir(privatedir); ++if not directoryexists(privatedir) then forcedirectory(privatedir); ++if not directoryexists(privatedir) then begin ++ MessageDlg('Unable to create '+privatedir, ++ mtError, [mbAbort], 0); ++ Halt; ++end; ++if not directoryexists(slash(privatedir)+'quicklook') then CreateDir(slash(privatedir)+'quicklook'); ++if not directoryexists(slash(privatedir)+'afoevdata') then CreateDir(slash(privatedir)+'afoevdata'); ++ ++if (not directoryexists(slash(appdir)+slash('data')+'varobs')) then begin ++ // try under the current directory ++ buf:=GetCurrentDir; ++ if (directoryexists(slash(buf)+slash('data')+'varobs')) then ++ appdir:=buf ++ else begin ++ // try under the program directory ++ buf:=ExtractFilePath(ParamStr(0)); ++ if (directoryexists(slash(buf)+slash('data')+'varobs')) then ++ appdir:=buf ++ else begin ++ // try share directory under current location ++ buf:=ExpandFileName(slash(GetCurrentDir)+SharedDir); ++ if (directoryexists(slash(buf)+slash('data')+'varobs')) then ++ appdir:=buf ++ else begin ++ // try share directory at the same location as the program ++ buf:=ExpandFileName(slash(ExtractFilePath(ParamStr(0)))+SharedDir); ++ if (directoryexists(slash(buf)+slash('data')+'varobs')) then ++ appdir:=buf ++ else begin ++ MessageDlg('Could not found the application data directory.'+crlf ++ +'Please check the program installation.', ++ mtError, [mbAbort], 0); ++ Halt; ++ end; ++ end; ++ end; ++ end; ++end; ++ ++ConstDir:=slash(appdir)+slash('data')+slash('varobs'); ++end; ++ ++ ++Function CleanMag(mag:string):string; ++var i:integer; ++ c:char; ++begin ++mag:=trim(mag); ++result:=''; ++for i:=1 to length(mag) do begin ++ c:=mag[i]; ++ if ((c>='0')and(c<='9'))or(c='.')or((i=1)and(c='-')) then result:=result+c; ++end; ++while length(result)<5 do result:=' '+result; ++end; ++ ++Function CleanDat(dat:string):string; ++begin ++result:=stringreplace(dat,'|','',[rfReplaceAll]); ++result:=stringreplace(result,'+','',[rfReplaceAll]); ++result:=stringreplace(result,'-','',[rfReplaceAll]); ++result:=stringreplace(result,' ','',[rfReplaceAll]); ++end; ++ ++Procedure GetGCVSInfo(nom : string; var vartype,per,slope,jdt : string); ++var f : textfile; ++ buf,id1,id2,constel : string; ++ p : integer; ++begin ++vartype:=' '; ++per:=' '; ++slope:=' '; ++jdt:=' '; ++buf:=trim(nom); ++p:=pos(' ',buf); ++id1:=uppercase(copy(buf,1,p-1)); ++constel:=copy(buf,p+1,99); ++if constel='*' then exit; ++constel:=stringreplace(constel,'?','',[]); ++buf:=slash(form1.DirectoryEdit1.Directory)+constel+'.dat'; ++if not fileexists(buf) then exit; ++assignfile(f,buf); ++reset(f); ++repeat ++ readln(f,buf); ++ id2:=trim(uppercase(copy(buf,1,5))); ++ if (copy(id2,1,1)='V')and(length(id2)=5) then begin ++ id2:='V'+inttostr(strtoint(copy(id2,2,4))); ++ end; ++ if id1=id2 then begin ++ vartype:=copy(buf,12,10); ++ per:=copy(buf,52,15); ++ slope:=copy(buf,69,3); ++ jdt:=copy(buf,37,13); ++ break; ++ end; ++until eof(f); ++closefile(f); ++end; ++ ++Procedure Tform1.ConvAAVSOb; ++var fb,f : textfile; ++ buf,design,nom,mag,dat,mag1,mag2,datm,vartype,jdt,per,slope,puls,v1,p1,j1 : string; ++ i,n,p,year1,year,mois,jour : integer; ++ jdm : double; ++begin ++i:=0; ++n:=1; ++year1:=SpinEdit1.Value; ++buf:=FileNameEdit1.FileName; ++assignfile(fb,buf); ++reset(fb); ++buf:=slash(privatedir)+'aavso'+inttostr(year1)+'.dat'; ++assignfile(f,buf); ++rewrite(f); ++try ++repeat ++ inc(i); ++ label3.caption:='Progress: '+inttostr(i); ++ application.processmessages; ++ readln(fb,buf); ++ design:=copy(buf,7,8); ++ if (trim(design)='')or(design='DESIGN. ')or(design='--------') then continue; ++ nom:=copy(buf,16,9); ++ mag:=copy(buf,28,11); ++ dat:=copy(buf,40,999); ++ p:=pos('-',mag); ++ mag1:=cleanmag(copy(mag,1,p-1)); ++ mag2:=cleanmag(copy(mag,p+1,99)); ++ p:=pos('M',dat); ++ if p<=0 then continue; ++ p:=p-2; ++ datm:=cleandat(copy(dat,p,2)); ++ jour:=strtoint(datm); ++ if length(datm)=1 then p:=p+1; ++ mois:=1+( (p-2) div 6 ); ++ year:=year1; ++ if mois>12 then begin ++ mois:=mois-12; ++ year:=year+1; ++ end; ++ jdm:=jd(year,mois,jour,12); ++ str(jdm:10:1,jdt); ++ GetGCVSinfo(nom,vartype,per,slope,j1); ++ puls:=nom+', '+vartype+', '+mag1+', '+mag2+', '+jdt+', '+per+', '+slope+', '+design; ++ writeln(f,puls); ++ lpvlst[n]:=trim(design); ++ pulslst[n]:=puls; ++ inc(n); ++until eof(fb); ++nLPV:=n-1; ++closefile(f); ++closefile(fb); ++label3.caption:='Finished'; ++except ++showmessage('Error for line :'+buf); ++raise; ++end; ++end; ++ ++Function IsLPV(design : string):boolean; ++var i : integer; ++begin ++result:=false; ++design:=trim(design); ++for i:=1 to nLPV do begin ++ if design=lpvlst[i] then begin ++ curvar:=i; ++ result:=true; ++ break; ++ end; ++end; ++end; ++ ++procedure TForm1.Button1Click(Sender: TObject); ++begin ++screen.cursor:=crhourglass; ++try ++convaavsob; ++finally ++screen.cursor:=crdefault; ++end; ++end; ++ ++procedure TForm1.FormShow(Sender: TObject); ++begin ++GetAppDir; ++OpenFileCmd:=DefaultOpenFileCMD; ++DirectoryEdit1.Directory:=slash(appdir)+slash('data')+slash('varobs'); ++SpinEdit1.Text:=formatdatetime('yyyy',now); ++FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+formatdatetime('yy',now)+'.TXT'; ++end; ++ ++procedure TForm1.FormCreate(Sender: TObject); ++begin ++decimalseparator:='.'; ++end; ++ ++procedure TForm1.Label7Click(Sender: TObject); ++begin ++Executefile(label7.Caption); ++end; ++ ++procedure TForm1.SpinEdit1Change(Sender: TObject); ++begin ++FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+copy(SpinEdit1.text,3,2)+'.TXT'; ++end; ++ ++initialization ++ {$i aavsob1.lrs} ++ ++end. +diff -ur skychart_3.2/varobs/aavsochart.lfm skychart_3.2_up/varobs/aavsochart.lfm +--- skychart_3.2/varobs/aavsochart.lfm 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/aavsochart.lfm 2011-03-09 15:18:23.214264489 +0100 +@@ -1,204 +1,204 @@ +-object chartform: Tchartform +- Left = 308 +- Height = 295 +- Top = 147 +- Width = 247 +- HorzScrollBar.Page = 246 +- VertScrollBar.Page = 294 +- ActiveControl = OnlinePanel +- Caption = 'AAVSO Chart List' +- ClientHeight = 295 +- ClientWidth = 247 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- OnShow = FormShow +- LCLVersion = '0.9.29' +- object CdromPanel: TPanel +- Left = 0 +- Height = 256 +- Top = 0 +- Width = 242 +- ClientHeight = 256 +- ClientWidth = 242 +- TabOrder = 0 +- object Label1: TLabel +- Left = 8 +- Height = 25 +- Top = 6 +- Width = 225 +- AutoSize = False +- Caption = 'Label1' +- ParentColor = False +- WordWrap = True +- end +- object ListBox1: TListBox +- Left = 8 +- Height = 209 +- Top = 32 +- Width = 225 +- ItemHeight = 0 +- OnClick = ListBox1Click +- TabOrder = 0 +- TopIndex = -1 +- end +- end +- object Button1: TButton +- Left = 80 +- Height = 25 +- Top = 264 +- Width = 75 +- Cancel = True +- Caption = 'Close' +- ModalResult = 1 +- TabOrder = 1 +- end +- object OnlinePanel: TPanel +- Left = 0 +- Height = 272 +- Top = -16 +- Width = 242 +- ClientHeight = 272 +- ClientWidth = 242 +- TabOrder = 2 +- object Label2: TLabel +- Left = 8 +- Height = 19 +- Top = 24 +- Width = 130 +- Caption = 'Online AAVSO chart for ' +- ParentColor = False +- end +- object StarLabel: TLabel +- Left = 136 +- Height = 15 +- Top = 24 +- Width = 56 +- Caption = 'StarLabel' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label3: TLabel +- Left = 88 +- Height = 19 +- Top = 59 +- Width = 37 +- Caption = 'Scale :' +- ParentColor = False +- end +- object Label4: TLabel +- Left = 96 +- Height = 19 +- Top = 92 +- Width = 27 +- Caption = 'FOV:' +- ParentColor = False +- end +- object Labelfov: TLabel +- Left = 136 +- Height = 15 +- Top = 92 +- Width = 49 +- Caption = 'Labelfov' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label5: TLabel +- Left = 66 +- Height = 19 +- Top = 118 +- Width = 54 +- Caption = 'Magnitude:' +- ParentColor = False +- end +- object LabelMag: TLabel +- Left = 136 +- Height = 15 +- Top = 118 +- Width = 56 +- Caption = 'LabelMag' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label6: TLabel +- Left = 89 +- Height = 19 +- Top = 144 +- Width = 31 +- Caption = 'North:' +- ParentColor = False +- end +- object LabelNorth: TLabel +- Left = 136 +- Height = 15 +- Top = 144 +- Width = 63 +- Caption = 'LabelNorth' +- Font.Style = [fsBold] +- ParentColor = False +- ParentFont = False +- end +- object Label7: TLabel +- Left = 95 +- Height = 19 +- Top = 168 +- Width = 25 +- Caption = 'East:' +- ParentColor = False +- end +- object ComboBox1: TComboBox +- Left = 136 +- Height = 24 +- Top = 56 +- Width = 60 +- ItemHeight = 0 +- ItemIndex = 4 +- Items.Strings = ( +- 'A' +- 'AR' +- 'B' +- 'BR' +- 'C' +- 'CR' +- 'D' +- 'DR' +- 'E' +- 'ER' +- 'F' +- 'FR' +- 'G' +- 'GR' +- ) +- OnChange = ComboBox1Change +- Style = csDropDownList +- TabOrder = 0 +- Text = 'C' +- end +- object ComboBox2: TComboBox +- Left = 136 +- Height = 24 +- Top = 166 +- Width = 75 +- ItemHeight = 0 +- ItemIndex = 0 +- Items.Strings = ( +- 'Right' +- 'Left' +- ) +- Style = csDropDownList +- TabOrder = 1 +- Text = 'Right' +- end +- object Button2: TButton +- Left = 136 +- Height = 25 +- Top = 208 +- Width = 75 +- Caption = 'Get Chart' +- OnClick = Button2Click +- TabOrder = 2 +- end +- end ++object chartform: Tchartform ++ Left = 308 ++ Height = 295 ++ Top = 147 ++ Width = 247 ++ HorzScrollBar.Page = 246 ++ VertScrollBar.Page = 294 ++ ActiveControl = OnlinePanel ++ Caption = 'AAVSO Chart List' ++ ClientHeight = 295 ++ ClientWidth = 247 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ OnShow = FormShow ++ LCLVersion = '0.9.29' ++ object CdromPanel: TPanel ++ Left = 0 ++ Height = 256 ++ Top = 0 ++ Width = 242 ++ ClientHeight = 256 ++ ClientWidth = 242 ++ TabOrder = 0 ++ object Label1: TLabel ++ Left = 8 ++ Height = 25 ++ Top = 6 ++ Width = 225 ++ AutoSize = False ++ Caption = 'Label1' ++ ParentColor = False ++ WordWrap = True ++ end ++ object ListBox1: TListBox ++ Left = 8 ++ Height = 209 ++ Top = 32 ++ Width = 225 ++ ItemHeight = 0 ++ OnClick = ListBox1Click ++ TabOrder = 0 ++ TopIndex = -1 ++ end ++ end ++ object Button1: TButton ++ Left = 80 ++ Height = 25 ++ Top = 264 ++ Width = 75 ++ Cancel = True ++ Caption = 'Close' ++ ModalResult = 1 ++ TabOrder = 1 ++ end ++ object OnlinePanel: TPanel ++ Left = 0 ++ Height = 272 ++ Top = -16 ++ Width = 242 ++ ClientHeight = 272 ++ ClientWidth = 242 ++ TabOrder = 2 ++ object Label2: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 24 ++ Width = 130 ++ Caption = 'Online AAVSO chart for ' ++ ParentColor = False ++ end ++ object StarLabel: TLabel ++ Left = 136 ++ Height = 15 ++ Top = 24 ++ Width = 56 ++ Caption = 'StarLabel' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label3: TLabel ++ Left = 88 ++ Height = 19 ++ Top = 59 ++ Width = 37 ++ Caption = 'Scale :' ++ ParentColor = False ++ end ++ object Label4: TLabel ++ Left = 96 ++ Height = 19 ++ Top = 92 ++ Width = 27 ++ Caption = 'FOV:' ++ ParentColor = False ++ end ++ object Labelfov: TLabel ++ Left = 136 ++ Height = 15 ++ Top = 92 ++ Width = 49 ++ Caption = 'Labelfov' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label5: TLabel ++ Left = 66 ++ Height = 19 ++ Top = 118 ++ Width = 54 ++ Caption = 'Magnitude:' ++ ParentColor = False ++ end ++ object LabelMag: TLabel ++ Left = 136 ++ Height = 15 ++ Top = 118 ++ Width = 56 ++ Caption = 'LabelMag' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label6: TLabel ++ Left = 89 ++ Height = 19 ++ Top = 144 ++ Width = 31 ++ Caption = 'North:' ++ ParentColor = False ++ end ++ object LabelNorth: TLabel ++ Left = 136 ++ Height = 15 ++ Top = 144 ++ Width = 63 ++ Caption = 'LabelNorth' ++ Font.Style = [fsBold] ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label7: TLabel ++ Left = 95 ++ Height = 19 ++ Top = 168 ++ Width = 25 ++ Caption = 'East:' ++ ParentColor = False ++ end ++ object ComboBox1: TComboBox ++ Left = 136 ++ Height = 24 ++ Top = 56 ++ Width = 60 ++ ItemHeight = 0 ++ ItemIndex = 4 ++ Items.Strings = ( ++ 'A' ++ 'AR' ++ 'B' ++ 'BR' ++ 'C' ++ 'CR' ++ 'D' ++ 'DR' ++ 'E' ++ 'ER' ++ 'F' ++ 'FR' ++ 'G' ++ 'GR' ++ ) ++ OnChange = ComboBox1Change ++ Style = csDropDownList ++ TabOrder = 0 ++ Text = 'C' ++ end ++ object ComboBox2: TComboBox ++ Left = 136 ++ Height = 24 ++ Top = 166 ++ Width = 75 ++ ItemHeight = 0 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'Right' ++ 'Left' ++ ) ++ Style = csDropDownList ++ TabOrder = 1 ++ Text = 'Right' ++ end ++ object Button2: TButton ++ Left = 136 ++ Height = 25 ++ Top = 208 ++ Width = 75 ++ Caption = 'Get Chart' ++ OnClick = Button2Click ++ TabOrder = 2 ++ end ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/aavsochart.lrs skychart_3.2_up/varobs/aavsochart.lrs +--- skychart_3.2/varobs/aavsochart.lrs 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/aavsochart.lrs 2011-03-09 15:18:23.214264489 +0100 +@@ -1,49 +1,49 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tchartform','FORMDATA',[ +- 'TPF0'#10'Tchartform'#9'chartform'#4'Left'#3'4'#1#6'Height'#3''''#1#3'Top'#3 +- +#147#0#5'Width'#3#247#0#18'HorzScrollBar.Page'#3#246#0#18'VertScrollBar.Page' +- +#3'&'#1#13'ActiveControl'#7#11'OnlinePanel'#7'Caption'#6#16'AAVSO Chart List' +- +#12'ClientHeight'#3''''#1#11'ClientWidth'#3#247#0#11'Font.Height'#2#245#9'Fo' +- +'nt.Name'#6#13'MS Sans Serif'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9' +- +'.29'#0#6'TPanel'#10'CdromPanel'#4'Left'#2#0#6'Height'#3#0#1#3'Top'#2#0#5'Wi' +- +'dth'#3#242#0#12'ClientHeight'#3#0#1#11'ClientWidth'#3#242#0#8'TabOrder'#2#0 +- +#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#6#5'Width'#3#225#0 +- +#8'AutoSize'#8#7'Caption'#6#6'Label1'#11'ParentColor'#8#8'WordWrap'#9#0#0#8 +- +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#2' '#5'Width'#3 +- +#225#0#10'ItemHeight'#2#0#7'OnClick'#7#13'ListBox1Click'#8'TabOrder'#2#0#8'T' +- +'opIndex'#2#255#0#0#0#7'TButton'#7'Button1'#4'Left'#2'P'#6'Height'#2#25#3'To' +- +'p'#3#8#1#5'Width'#2'K'#6'Cancel'#9#7'Caption'#6#5'Close'#11'ModalResult'#2#1 +- +#8'TabOrder'#2#1#0#0#6'TPanel'#11'OnlinePanel'#4'Left'#2#0#6'Height'#3#16#1#3 +- +'Top'#2#240#5'Width'#3#242#0#12'ClientHeight'#3#16#1#11'ClientWidth'#3#242#0 +- +#8'TabOrder'#2#2#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2#24 +- +#5'Width'#3#130#0#7'Caption'#6#23'Online AAVSO chart for '#11'ParentColor'#8 +- +#0#0#6'TLabel'#9'StarLabel'#4'Left'#3#136#0#6'Height'#2#15#3'Top'#2#24#5'Wid' +- +'th'#2'8'#7'Caption'#6#9'StarLabel'#10'Font.Style'#11#6'fsBold'#0#11'ParentC' +- +'olor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'X'#6'Height'#2#19 +- +#3'Top'#2';'#5'Width'#2'%'#7'Caption'#6#7'Scale :'#11'ParentColor'#8#0#0#6'T' +- +'Label'#6'Label4'#4'Left'#2'`'#6'Height'#2#19#3'Top'#2'\'#5'Width'#2#27#7'Ca' +- +'ption'#6#4'FOV:'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelfov'#4'Left'#3#136#0 +- +#6'Height'#2#15#3'Top'#2'\'#5'Width'#2'1'#7'Caption'#6#8'Labelfov'#10'Font.S' +- +'tyle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Lab' +- +'el5'#4'Left'#2'B'#6'Height'#2#19#3'Top'#2'v'#5'Width'#2'6'#7'Caption'#6#10 +- +'Magnitude:'#11'ParentColor'#8#0#0#6'TLabel'#8'LabelMag'#4'Left'#3#136#0#6'H' +- +'eight'#2#15#3'Top'#2'v'#5'Width'#2'8'#7'Caption'#6#8'LabelMag'#10'Font.Styl' +- +'e'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label6' +- +#4'Left'#2'Y'#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2#31#7'Caption'#6#6'Nor' +- +'th:'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelNorth'#4'Left'#3#136#0#6'Heigh' +- +'t'#2#15#3'Top'#3#144#0#5'Width'#2'?'#7'Caption'#6#10'LabelNorth'#10'Font.St' +- +'yle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Labe' +- +'l7'#4'Left'#2'_'#6'Height'#2#19#3'Top'#3#168#0#5'Width'#2#25#7'Caption'#6#5 +- +'East:'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#136#0#6'He' +- +'ight'#2#24#3'Top'#2'8'#5'Width'#2'<'#10'ItemHeight'#2#0#9'ItemIndex'#2#4#13 +- +'Items.Strings'#1#6#1'A'#6#2'AR'#6#1'B'#6#2'BR'#6#1'C'#6#2'CR'#6#1'D'#6#2'DR' +- +#6#1'E'#6#2'ER'#6#1'F'#6#2'FR'#6#1'G'#6#2'GR'#0#8'OnChange'#7#15'ComboBox1Ch' +- +'ange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#4'Text'#6#1'C'#0#0#9'TC' +- +'omboBox'#9'ComboBox2'#4'Left'#3#136#0#6'Height'#2#24#3'Top'#3#166#0#5'Width' +- +#2'K'#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#5'Right'#6#4 +- +'Left'#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#5'Right'#0#0 +- +#7'TButton'#7'Button2'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3#208#0#5'Width' +- +#2'K'#7'Caption'#6#9'Get Chart'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#2 +- +#0#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tchartform','FORMDATA',[ ++ 'TPF0'#10'Tchartform'#9'chartform'#4'Left'#3'4'#1#6'Height'#3''''#1#3'Top'#3 ++ +#147#0#5'Width'#3#247#0#18'HorzScrollBar.Page'#3#246#0#18'VertScrollBar.Page' ++ +#3'&'#1#13'ActiveControl'#7#11'OnlinePanel'#7'Caption'#6#16'AAVSO Chart List' ++ +#12'ClientHeight'#3''''#1#11'ClientWidth'#3#247#0#11'Font.Height'#2#245#9'Fo' ++ +'nt.Name'#6#13'MS Sans Serif'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9' ++ +'.29'#0#6'TPanel'#10'CdromPanel'#4'Left'#2#0#6'Height'#3#0#1#3'Top'#2#0#5'Wi' ++ +'dth'#3#242#0#12'ClientHeight'#3#0#1#11'ClientWidth'#3#242#0#8'TabOrder'#2#0 ++ +#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#6#5'Width'#3#225#0 ++ +#8'AutoSize'#8#7'Caption'#6#6'Label1'#11'ParentColor'#8#8'WordWrap'#9#0#0#8 ++ +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#2' '#5'Width'#3 ++ +#225#0#10'ItemHeight'#2#0#7'OnClick'#7#13'ListBox1Click'#8'TabOrder'#2#0#8'T' ++ +'opIndex'#2#255#0#0#0#7'TButton'#7'Button1'#4'Left'#2'P'#6'Height'#2#25#3'To' ++ +'p'#3#8#1#5'Width'#2'K'#6'Cancel'#9#7'Caption'#6#5'Close'#11'ModalResult'#2#1 ++ +#8'TabOrder'#2#1#0#0#6'TPanel'#11'OnlinePanel'#4'Left'#2#0#6'Height'#3#16#1#3 ++ +'Top'#2#240#5'Width'#3#242#0#12'ClientHeight'#3#16#1#11'ClientWidth'#3#242#0 ++ +#8'TabOrder'#2#2#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2#24 ++ +#5'Width'#3#130#0#7'Caption'#6#23'Online AAVSO chart for '#11'ParentColor'#8 ++ +#0#0#6'TLabel'#9'StarLabel'#4'Left'#3#136#0#6'Height'#2#15#3'Top'#2#24#5'Wid' ++ +'th'#2'8'#7'Caption'#6#9'StarLabel'#10'Font.Style'#11#6'fsBold'#0#11'ParentC' ++ +'olor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'X'#6'Height'#2#19 ++ +#3'Top'#2';'#5'Width'#2'%'#7'Caption'#6#7'Scale :'#11'ParentColor'#8#0#0#6'T' ++ +'Label'#6'Label4'#4'Left'#2'`'#6'Height'#2#19#3'Top'#2'\'#5'Width'#2#27#7'Ca' ++ +'ption'#6#4'FOV:'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelfov'#4'Left'#3#136#0 ++ +#6'Height'#2#15#3'Top'#2'\'#5'Width'#2'1'#7'Caption'#6#8'Labelfov'#10'Font.S' ++ +'tyle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Lab' ++ +'el5'#4'Left'#2'B'#6'Height'#2#19#3'Top'#2'v'#5'Width'#2'6'#7'Caption'#6#10 ++ +'Magnitude:'#11'ParentColor'#8#0#0#6'TLabel'#8'LabelMag'#4'Left'#3#136#0#6'H' ++ +'eight'#2#15#3'Top'#2'v'#5'Width'#2'8'#7'Caption'#6#8'LabelMag'#10'Font.Styl' ++ +'e'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label6' ++ +#4'Left'#2'Y'#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2#31#7'Caption'#6#6'Nor' ++ +'th:'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelNorth'#4'Left'#3#136#0#6'Heigh' ++ +'t'#2#15#3'Top'#3#144#0#5'Width'#2'?'#7'Caption'#6#10'LabelNorth'#10'Font.St' ++ +'yle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Labe' ++ +'l7'#4'Left'#2'_'#6'Height'#2#19#3'Top'#3#168#0#5'Width'#2#25#7'Caption'#6#5 ++ +'East:'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#136#0#6'He' ++ +'ight'#2#24#3'Top'#2'8'#5'Width'#2'<'#10'ItemHeight'#2#0#9'ItemIndex'#2#4#13 ++ +'Items.Strings'#1#6#1'A'#6#2'AR'#6#1'B'#6#2'BR'#6#1'C'#6#2'CR'#6#1'D'#6#2'DR' ++ +#6#1'E'#6#2'ER'#6#1'F'#6#2'FR'#6#1'G'#6#2'GR'#0#8'OnChange'#7#15'ComboBox1Ch' ++ +'ange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#4'Text'#6#1'C'#0#0#9'TC' ++ +'omboBox'#9'ComboBox2'#4'Left'#3#136#0#6'Height'#2#24#3'Top'#3#166#0#5'Width' ++ +#2'K'#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#5'Right'#6#4 ++ +'Left'#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#5'Right'#0#0 ++ +#7'TButton'#7'Button2'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3#208#0#5'Width' ++ +#2'K'#7'Caption'#6#9'Get Chart'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#2 ++ +#0#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/detail1.lfm skychart_3.2_up/varobs/detail1.lfm +--- skychart_3.2/varobs/detail1.lfm 2008-06-15 13:45:38.000000000 +0200 ++++ skychart_3.2_up/varobs/detail1.lfm 2011-03-09 15:18:23.215264366 +0100 +@@ -1,544 +1,544 @@ +-object DetailForm: TDetailForm +- Left = 457 +- Height = 483 +- Top = 149 +- Width = 728 +- HorzScrollBar.Page = 727 +- VertScrollBar.Page = 463 +- ActiveControl = BitBtn1 +- Caption = 'DetailForm' +- ClientHeight = 464 +- ClientWidth = 728 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- Menu = MainMenu1 +- OnResize = FormResize +- OnShow = FormShow +- ShowHint = True +- object Image1: TImage +- Height = 336 +- Width = 728 +- Align = alClient +- OnMouseDown = Image1MouseDown +- OnMouseMove = Image1MouseMove +- OnMouseUp = Image1MouseUp +- Transparent = False +- end +- object Panel2: TPanel +- Height = 90 +- Top = 374 +- Width = 728 +- Align = alBottom +- ClientHeight = 90 +- ClientWidth = 728 +- TabOrder = 0 +- object Label7: TLabel +- Left = 8 +- Height = 20 +- Top = 36 +- Width = 31 +- Caption = 'Date:' +- ParentColor = False +- end +- object Label8: TLabel +- Left = 136 +- Height = 20 +- Top = 36 +- Width = 28 +- Caption = 'Mag:' +- ParentColor = False +- end +- object Label1: TLabel +- Left = 228 +- Height = 20 +- Top = 10 +- Width = 60 +- Caption = 'Mag. max:' +- ParentColor = False +- end +- object Label2: TLabel +- Left = 333 +- Height = 20 +- Top = 10 +- Width = 53 +- Caption = 'Mag min:' +- ParentColor = False +- end +- object Label3: TLabel +- Left = 429 +- Height = 20 +- Top = 10 +- Width = 41 +- Caption = 'Period:' +- ParentColor = False +- end +- object Label4: TLabel +- Left = 541 +- Height = 20 +- Top = 10 +- Width = 58 +- Caption = 'Rise time:' +- ParentColor = False +- end +- object Label5: TLabel +- Left = 136 +- Height = 20 +- Top = 10 +- Width = 30 +- Caption = 'Type:' +- ParentColor = False +- end +- object Label6: TLabel +- Left = 8 +- Height = 20 +- Top = 10 +- Width = 29 +- Caption = 'Star:' +- ParentColor = False +- end +- object BitBtn1: TBitBtn +- Left = 651 +- Height = 25 +- Top = 5 +- Width = 67 +- Cancel = True +- Caption = 'Close' +- ModalResult = 2 +- NumGlyphs = 2 +- TabOrder = 0 +- end +- object Edit12: TEdit +- Left = 36 +- Height = 21 +- Top = 32 +- Width = 97 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 1 +- Text = 'Edit12' +- end +- object Edit13: TEdit +- Left = 166 +- Height = 21 +- Top = 32 +- Width = 41 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 2 +- Text = 'Edit13' +- end +- object CheckBox1: TCheckBox +- Left = 256 +- Height = 21 +- Hint = 'Cursor follow light curve on graph' +- Top = 56 +- Width = 121 +- Caption = 'Follow light curve' +- Checked = True +- OnClick = CheckBox1Click +- State = cbChecked +- TabOrder = 3 +- end +- object CheckBox2: TCheckBox +- Left = 399 +- Height = 21 +- Hint = 'Plot observation data from file defined on setting' +- Top = 56 +- Width = 148 +- Caption = 'Plot observation data ' +- Checked = True +- OnClick = CheckBox2Click +- State = cbChecked +- TabOrder = 4 +- end +- object BitBtn2: TBitBtn +- Left = 224 +- Height = 25 +- Hint = 'Backward one period' +- Top = 30 +- Width = 25 +- Glyph.Data = { +- F6000000424DF600000000000000760000002800000010000000100000000100 +- 04000000000080000000120B0000120B00001000000010000000000000000000 +- 8000008000000080800080000000800080008080000080808000C0C0C0000000 +- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADAD0DADA +- DADAADADAD00ADADADADDADAD0D0DADADADAADAD0DA0ADADADADDAD0DAD00000 +- 000AAD0DADADADADAD0DD0DADADADADADA0A0DADADADADADAD0DD0DADADADADA +- DA0AAD0DADADADADAD0DDAD0DAD00000000AADAD0DA0ADADADADDADAD0D0DADA +- DADAADADAD00ADADADADDADADAD0DADADADAADADADADADADADAD +- } +- NumGlyphs = 0 +- OnClick = BitBtn2Click +- TabOrder = 5 +- end +- object BitBtn3: TBitBtn +- Left = 288 +- Height = 25 +- Hint = 'Forward one period' +- Top = 30 +- Width = 25 +- Glyph.Data = { +- F6000000424DF600000000000000760000002800000010000000100000000100 +- 04000000000080000000130B0000130B00001000000000000000000000000000 +- 8000008000000080800080000000800080008080000080808000C0C0C0000000 +- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA +- DADAADADADAD0DADADADDADADADA00DADADAADADADAD0D0DADADDADADADA0AD0 +- DADAA00000000DAD0DADD0DADADADADAD0DAA0ADADADADADAD0DD0DADADADADA +- DAD0A0ADADADADADAD0DD0DADADADADAD0DAA00000000DAD0DADDADADADA0AD0 +- DADAADADADAD0D0DADADDADADADA00DADADAADADADAD0DADADAD +- } +- NumGlyphs = 0 +- OnClick = BitBtn3Click +- TabOrder = 6 +- end +- object BitBtn4: TBitBtn +- Left = 256 +- Height = 25 +- Hint = 'Current period' +- Top = 30 +- Width = 25 +- Glyph.Data = { +- F6000000424DF600000000000000760000002800000010000000100000000100 +- 04000000000080000000120B0000120B00001000000010000000000000000000 +- 8000008000000080800080000000800080008080000080808000C0C0C0000000 +- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA +- DADAADADADA0ADADADADDADADA0A0ADADADAADADA0ADA0ADADADDADA0ADADA0A +- DADAADA0ADADADA0ADADDA0ADADADADA0ADAA0ADADADADADA0AD0ADADADADADA +- DA0AA0ADADADADADA0ADDA0ADADADADA0ADAADA0ADADADA0ADADDADA0ADADA0A +- DADAADADA0ADA0ADADADDADADA0A0ADADADAADADADA0ADADADAD +- } +- NumGlyphs = 0 +- OnClick = BitBtn4Click +- TabOrder = 7 +- end +- object Edit1: TEdit +- Left = 36 +- Height = 21 +- Top = 6 +- Width = 97 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 8 +- Text = 'Edit1' +- end +- object Edit2: TEdit +- Left = 166 +- Height = 21 +- Top = 6 +- Width = 57 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 9 +- Text = 'Edit2' +- end +- object Edit3: TEdit +- Left = 288 +- Height = 21 +- Top = 6 +- Width = 41 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 10 +- Text = 'Edit3' +- end +- object Edit4: TEdit +- Left = 383 +- Height = 21 +- Top = 6 +- Width = 41 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 11 +- Text = 'Edit4' +- end +- object Edit5: TEdit +- Left = 469 +- Height = 21 +- Top = 6 +- Width = 65 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 12 +- Text = 'Edit5' +- end +- object Edit6: TEdit +- Left = 597 +- Height = 21 +- Top = 6 +- Width = 41 +- Color = clBtnFace +- ReadOnly = True +- TabOrder = 13 +- Text = 'Edit6' +- end +- object CheckBox4: TCheckBox +- Left = 399 +- Height = 21 +- Top = 34 +- Width = 105 +- Caption = 'Plot QuickLook' +- OnClick = CheckBox4Click +- TabOrder = 14 +- end +- object BitBtn5: TBitBtn +- Left = 615 +- Height = 25 +- Top = 48 +- Width = 97 +- Caption = 'Get QuickLook' +- NumGlyphs = 0 +- OnClick = GetQuickLookClick +- TabOrder = 15 +- end +- object CheckBox5: TCheckBox +- Left = 8 +- Height = 21 +- Top = 56 +- Width = 228 +- Caption = 'Group observation to current phase' +- OnClick = CheckBox5Click +- TabOrder = 16 +- end +- end +- object Panel3: TPanel +- Height = 38 +- Hint = 'Click on the box to change color' +- Top = 336 +- Width = 728 +- Align = alBottom +- ClientHeight = 38 +- ClientWidth = 728 +- TabOrder = 1 +- object Shape1: TShape +- Left = 8 +- Height = 14 +- Top = 2 +- Width = 14 +- OnMouseUp = Shape1MouseUp +- end +- object Label9: TLabel +- Left = 25 +- Height = 20 +- Top = 5 +- Width = 68 +- Caption = 'Background' +- ParentColor = False +- end +- object Shape2: TShape +- Left = 136 +- Height = 14 +- Top = 2 +- Width = 14 +- Brush.Color = clBlack +- OnMouseUp = Shape2MouseUp +- end +- object Label10: TLabel +- Left = 158 +- Height = 20 +- Top = 5 +- Width = 24 +- Caption = 'Axis' +- ParentColor = False +- end +- object Shape5: TShape +- Left = 533 +- Height = 14 +- Top = 2 +- Width = 14 +- Brush.Color = clRed +- OnMouseUp = Shape5MouseUp +- end +- object Label13: TLabel +- Left = 558 +- Height = 20 +- Top = 5 +- Width = 73 +- Caption = 'Out of range' +- ParentColor = False +- end +- object Shape3: TShape +- Left = 288 +- Height = 14 +- Top = 2 +- Width = 14 +- Brush.Color = clRed +- OnMouseUp = Shape3MouseUp +- end +- object Label11: TLabel +- Left = 304 +- Height = 20 +- Top = 5 +- Width = 73 +- Caption = 'Current date' +- ParentColor = False +- end +- object Shape4: TShape +- Left = 383 +- Height = 14 +- Top = 2 +- Width = 14 +- Brush.Color = clBlue +- OnMouseUp = Shape4MouseUp +- end +- object Label12: TLabel +- Left = 408 +- Height = 20 +- Top = 5 +- Width = 121 +- Caption = 'Estimated light curve' +- ParentColor = False +- end +- object Shape6: TShape +- Left = 8 +- Height = 14 +- Top = 18 +- Width = 14 +- Brush.Color = clLime +- OnMouseUp = Shape6MouseUp +- end +- object Label14: TLabel +- Left = 25 +- Height = 20 +- Top = 21 +- Width = 102 +- Caption = 'Observation point' +- ParentColor = False +- end +- object Shape7: TShape +- Left = 136 +- Height = 14 +- Top = 18 +- Width = 14 +- Brush.Color = clFuchsia +- OnMouseUp = Shape7MouseUp +- end +- object Shape8: TShape +- Left = 288 +- Height = 14 +- Top = 18 +- Width = 14 +- Brush.Color = clBlue +- OnMouseUp = Shape8MouseUp +- end +- object Label16: TLabel +- Left = 304 +- Height = 20 +- Top = 21 +- Width = 68 +- Caption = 'Fainter than' +- ParentColor = False +- end +- object Shape9: TShape +- Left = 383 +- Height = 14 +- Top = 18 +- Width = 14 +- Brush.Color = clGreen +- OnMouseUp = Shape9MouseUp +- end +- object Label17: TLabel +- Left = 408 +- Height = 20 +- Top = 21 +- Width = 55 +- Caption = 'Uncertain' +- ParentColor = False +- end +- object Shape10: TShape +- Left = 533 +- Height = 14 +- Top = 18 +- Width = 14 +- Brush.Color = clTeal +- OnMouseUp = Shape10MouseUp +- end +- object Label18: TLabel +- Left = 558 +- Height = 20 +- Top = 21 +- Width = 131 +- Caption = 'Non visual observation' +- ParentColor = False +- end +- object CheckBox3: TCheckBox +- Left = 158 +- Height = 21 +- Hint = 'Show your own observation on another color' +- Top = 16 +- Width = 119 +- Caption = 'Own observation' +- Checked = True +- OnClick = CheckBox3Click +- State = cbChecked +- TabOrder = 0 +- end +- object BitBtn6: TBitBtn +- Left = 693 +- Height = 25 +- Hint = 'Zoom' +- Top = 5 +- Width = 25 +- Caption = '+/-' +- NumGlyphs = 0 +- OnClick = BitBtn6Click +- TabOrder = 1 +- end +- end +- object ColorDialog1: TColorDialog +- Title = 'Select color' +- left = 64 +- top = 16 +- end +- object MainMenu1: TMainMenu +- left = 16 +- top = 16 +- object File1: TMenuItem +- Caption = '&File' +- object SaveasBMP1: TMenuItem +- Caption = '&Save as BMP ...' +- OnClick = SaveasBMP1Click +- end +- object GetQuickLook: TMenuItem +- Caption = '&Get online AAVSO QuickLook data' +- OnClick = GetQuickLookClick +- end +- object Close1: TMenuItem +- Caption = '&Close' +- OnClick = Close1Click +- end +- end +- object MenuItem1: TMenuItem +- Caption = '&Online data' +- object MenuItem2: TMenuItem +- Caption = 'AAVSO Quick look' +- ShowAlwaysCheckable = True +- OnClick = MenuItem2Click +- end +- object MenuItem3: TMenuItem +- Caption = 'AFOEV FTP Archive' +- ShowAlwaysCheckable = True +- OnClick = MenuItem3Click +- end +- end +- end +- object SaveDialog1: TSaveDialog +- Title = 'Save file as' +- DefaultExt = '.bmp' +- Filter = 'Bitmap files|*.bmp' +- left = 112 +- top = 16 +- end +- object DownloadDialog1: TDownloadDialog +- FtpFwPassive = True +- ConfirmDownload = True +- left = 28 +- top = 75 +- end +- object RefreshTimer: TTimer +- Enabled = False +- Interval = 200 +- OnTimer = RefreshTimerTimer +- left = 88 +- top = 75 +- end +-end ++object DetailForm: TDetailForm ++ Left = 457 ++ Height = 483 ++ Top = 149 ++ Width = 728 ++ HorzScrollBar.Page = 727 ++ VertScrollBar.Page = 463 ++ ActiveControl = BitBtn1 ++ Caption = 'DetailForm' ++ ClientHeight = 464 ++ ClientWidth = 728 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ Menu = MainMenu1 ++ OnResize = FormResize ++ OnShow = FormShow ++ ShowHint = True ++ object Image1: TImage ++ Height = 336 ++ Width = 728 ++ Align = alClient ++ OnMouseDown = Image1MouseDown ++ OnMouseMove = Image1MouseMove ++ OnMouseUp = Image1MouseUp ++ Transparent = False ++ end ++ object Panel2: TPanel ++ Height = 90 ++ Top = 374 ++ Width = 728 ++ Align = alBottom ++ ClientHeight = 90 ++ ClientWidth = 728 ++ TabOrder = 0 ++ object Label7: TLabel ++ Left = 8 ++ Height = 20 ++ Top = 36 ++ Width = 31 ++ Caption = 'Date:' ++ ParentColor = False ++ end ++ object Label8: TLabel ++ Left = 136 ++ Height = 20 ++ Top = 36 ++ Width = 28 ++ Caption = 'Mag:' ++ ParentColor = False ++ end ++ object Label1: TLabel ++ Left = 228 ++ Height = 20 ++ Top = 10 ++ Width = 60 ++ Caption = 'Mag. max:' ++ ParentColor = False ++ end ++ object Label2: TLabel ++ Left = 333 ++ Height = 20 ++ Top = 10 ++ Width = 53 ++ Caption = 'Mag min:' ++ ParentColor = False ++ end ++ object Label3: TLabel ++ Left = 429 ++ Height = 20 ++ Top = 10 ++ Width = 41 ++ Caption = 'Period:' ++ ParentColor = False ++ end ++ object Label4: TLabel ++ Left = 541 ++ Height = 20 ++ Top = 10 ++ Width = 58 ++ Caption = 'Rise time:' ++ ParentColor = False ++ end ++ object Label5: TLabel ++ Left = 136 ++ Height = 20 ++ Top = 10 ++ Width = 30 ++ Caption = 'Type:' ++ ParentColor = False ++ end ++ object Label6: TLabel ++ Left = 8 ++ Height = 20 ++ Top = 10 ++ Width = 29 ++ Caption = 'Star:' ++ ParentColor = False ++ end ++ object BitBtn1: TBitBtn ++ Left = 651 ++ Height = 25 ++ Top = 5 ++ Width = 67 ++ Cancel = True ++ Caption = 'Close' ++ ModalResult = 2 ++ NumGlyphs = 2 ++ TabOrder = 0 ++ end ++ object Edit12: TEdit ++ Left = 36 ++ Height = 21 ++ Top = 32 ++ Width = 97 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 1 ++ Text = 'Edit12' ++ end ++ object Edit13: TEdit ++ Left = 166 ++ Height = 21 ++ Top = 32 ++ Width = 41 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 2 ++ Text = 'Edit13' ++ end ++ object CheckBox1: TCheckBox ++ Left = 256 ++ Height = 21 ++ Hint = 'Cursor follow light curve on graph' ++ Top = 56 ++ Width = 121 ++ Caption = 'Follow light curve' ++ Checked = True ++ OnClick = CheckBox1Click ++ State = cbChecked ++ TabOrder = 3 ++ end ++ object CheckBox2: TCheckBox ++ Left = 399 ++ Height = 21 ++ Hint = 'Plot observation data from file defined on setting' ++ Top = 56 ++ Width = 148 ++ Caption = 'Plot observation data ' ++ Checked = True ++ OnClick = CheckBox2Click ++ State = cbChecked ++ TabOrder = 4 ++ end ++ object BitBtn2: TBitBtn ++ Left = 224 ++ Height = 25 ++ Hint = 'Backward one period' ++ Top = 30 ++ Width = 25 ++ Glyph.Data = { ++ F6000000424DF600000000000000760000002800000010000000100000000100 ++ 04000000000080000000120B0000120B00001000000010000000000000000000 ++ 8000008000000080800080000000800080008080000080808000C0C0C0000000 ++ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADAD0DADA ++ DADAADADAD00ADADADADDADAD0D0DADADADAADAD0DA0ADADADADDAD0DAD00000 ++ 000AAD0DADADADADAD0DD0DADADADADADA0A0DADADADADADAD0DD0DADADADADA ++ DA0AAD0DADADADADAD0DDAD0DAD00000000AADAD0DA0ADADADADDADAD0D0DADA ++ DADAADADAD00ADADADADDADADAD0DADADADAADADADADADADADAD ++ } ++ NumGlyphs = 0 ++ OnClick = BitBtn2Click ++ TabOrder = 5 ++ end ++ object BitBtn3: TBitBtn ++ Left = 288 ++ Height = 25 ++ Hint = 'Forward one period' ++ Top = 30 ++ Width = 25 ++ Glyph.Data = { ++ F6000000424DF600000000000000760000002800000010000000100000000100 ++ 04000000000080000000130B0000130B00001000000000000000000000000000 ++ 8000008000000080800080000000800080008080000080808000C0C0C0000000 ++ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA ++ DADAADADADAD0DADADADDADADADA00DADADAADADADAD0D0DADADDADADADA0AD0 ++ DADAA00000000DAD0DADD0DADADADADAD0DAA0ADADADADADAD0DD0DADADADADA ++ DAD0A0ADADADADADAD0DD0DADADADADAD0DAA00000000DAD0DADDADADADA0AD0 ++ DADAADADADAD0D0DADADDADADADA00DADADAADADADAD0DADADAD ++ } ++ NumGlyphs = 0 ++ OnClick = BitBtn3Click ++ TabOrder = 6 ++ end ++ object BitBtn4: TBitBtn ++ Left = 256 ++ Height = 25 ++ Hint = 'Current period' ++ Top = 30 ++ Width = 25 ++ Glyph.Data = { ++ F6000000424DF600000000000000760000002800000010000000100000000100 ++ 04000000000080000000120B0000120B00001000000010000000000000000000 ++ 8000008000000080800080000000800080008080000080808000C0C0C0000000 ++ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA ++ DADAADADADA0ADADADADDADADA0A0ADADADAADADA0ADA0ADADADDADA0ADADA0A ++ DADAADA0ADADADA0ADADDA0ADADADADA0ADAA0ADADADADADA0AD0ADADADADADA ++ DA0AA0ADADADADADA0ADDA0ADADADADA0ADAADA0ADADADA0ADADDADA0ADADA0A ++ DADAADADA0ADA0ADADADDADADA0A0ADADADAADADADA0ADADADAD ++ } ++ NumGlyphs = 0 ++ OnClick = BitBtn4Click ++ TabOrder = 7 ++ end ++ object Edit1: TEdit ++ Left = 36 ++ Height = 21 ++ Top = 6 ++ Width = 97 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 8 ++ Text = 'Edit1' ++ end ++ object Edit2: TEdit ++ Left = 166 ++ Height = 21 ++ Top = 6 ++ Width = 57 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 9 ++ Text = 'Edit2' ++ end ++ object Edit3: TEdit ++ Left = 288 ++ Height = 21 ++ Top = 6 ++ Width = 41 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 10 ++ Text = 'Edit3' ++ end ++ object Edit4: TEdit ++ Left = 383 ++ Height = 21 ++ Top = 6 ++ Width = 41 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 11 ++ Text = 'Edit4' ++ end ++ object Edit5: TEdit ++ Left = 469 ++ Height = 21 ++ Top = 6 ++ Width = 65 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 12 ++ Text = 'Edit5' ++ end ++ object Edit6: TEdit ++ Left = 597 ++ Height = 21 ++ Top = 6 ++ Width = 41 ++ Color = clBtnFace ++ ReadOnly = True ++ TabOrder = 13 ++ Text = 'Edit6' ++ end ++ object CheckBox4: TCheckBox ++ Left = 399 ++ Height = 21 ++ Top = 34 ++ Width = 105 ++ Caption = 'Plot QuickLook' ++ OnClick = CheckBox4Click ++ TabOrder = 14 ++ end ++ object BitBtn5: TBitBtn ++ Left = 615 ++ Height = 25 ++ Top = 48 ++ Width = 97 ++ Caption = 'Get QuickLook' ++ NumGlyphs = 0 ++ OnClick = GetQuickLookClick ++ TabOrder = 15 ++ end ++ object CheckBox5: TCheckBox ++ Left = 8 ++ Height = 21 ++ Top = 56 ++ Width = 228 ++ Caption = 'Group observation to current phase' ++ OnClick = CheckBox5Click ++ TabOrder = 16 ++ end ++ end ++ object Panel3: TPanel ++ Height = 38 ++ Hint = 'Click on the box to change color' ++ Top = 336 ++ Width = 728 ++ Align = alBottom ++ ClientHeight = 38 ++ ClientWidth = 728 ++ TabOrder = 1 ++ object Shape1: TShape ++ Left = 8 ++ Height = 14 ++ Top = 2 ++ Width = 14 ++ OnMouseUp = Shape1MouseUp ++ end ++ object Label9: TLabel ++ Left = 25 ++ Height = 20 ++ Top = 5 ++ Width = 68 ++ Caption = 'Background' ++ ParentColor = False ++ end ++ object Shape2: TShape ++ Left = 136 ++ Height = 14 ++ Top = 2 ++ Width = 14 ++ Brush.Color = clBlack ++ OnMouseUp = Shape2MouseUp ++ end ++ object Label10: TLabel ++ Left = 158 ++ Height = 20 ++ Top = 5 ++ Width = 24 ++ Caption = 'Axis' ++ ParentColor = False ++ end ++ object Shape5: TShape ++ Left = 533 ++ Height = 14 ++ Top = 2 ++ Width = 14 ++ Brush.Color = clRed ++ OnMouseUp = Shape5MouseUp ++ end ++ object Label13: TLabel ++ Left = 558 ++ Height = 20 ++ Top = 5 ++ Width = 73 ++ Caption = 'Out of range' ++ ParentColor = False ++ end ++ object Shape3: TShape ++ Left = 288 ++ Height = 14 ++ Top = 2 ++ Width = 14 ++ Brush.Color = clRed ++ OnMouseUp = Shape3MouseUp ++ end ++ object Label11: TLabel ++ Left = 304 ++ Height = 20 ++ Top = 5 ++ Width = 73 ++ Caption = 'Current date' ++ ParentColor = False ++ end ++ object Shape4: TShape ++ Left = 383 ++ Height = 14 ++ Top = 2 ++ Width = 14 ++ Brush.Color = clBlue ++ OnMouseUp = Shape4MouseUp ++ end ++ object Label12: TLabel ++ Left = 408 ++ Height = 20 ++ Top = 5 ++ Width = 121 ++ Caption = 'Estimated light curve' ++ ParentColor = False ++ end ++ object Shape6: TShape ++ Left = 8 ++ Height = 14 ++ Top = 18 ++ Width = 14 ++ Brush.Color = clLime ++ OnMouseUp = Shape6MouseUp ++ end ++ object Label14: TLabel ++ Left = 25 ++ Height = 20 ++ Top = 21 ++ Width = 102 ++ Caption = 'Observation point' ++ ParentColor = False ++ end ++ object Shape7: TShape ++ Left = 136 ++ Height = 14 ++ Top = 18 ++ Width = 14 ++ Brush.Color = clFuchsia ++ OnMouseUp = Shape7MouseUp ++ end ++ object Shape8: TShape ++ Left = 288 ++ Height = 14 ++ Top = 18 ++ Width = 14 ++ Brush.Color = clBlue ++ OnMouseUp = Shape8MouseUp ++ end ++ object Label16: TLabel ++ Left = 304 ++ Height = 20 ++ Top = 21 ++ Width = 68 ++ Caption = 'Fainter than' ++ ParentColor = False ++ end ++ object Shape9: TShape ++ Left = 383 ++ Height = 14 ++ Top = 18 ++ Width = 14 ++ Brush.Color = clGreen ++ OnMouseUp = Shape9MouseUp ++ end ++ object Label17: TLabel ++ Left = 408 ++ Height = 20 ++ Top = 21 ++ Width = 55 ++ Caption = 'Uncertain' ++ ParentColor = False ++ end ++ object Shape10: TShape ++ Left = 533 ++ Height = 14 ++ Top = 18 ++ Width = 14 ++ Brush.Color = clTeal ++ OnMouseUp = Shape10MouseUp ++ end ++ object Label18: TLabel ++ Left = 558 ++ Height = 20 ++ Top = 21 ++ Width = 131 ++ Caption = 'Non visual observation' ++ ParentColor = False ++ end ++ object CheckBox3: TCheckBox ++ Left = 158 ++ Height = 21 ++ Hint = 'Show your own observation on another color' ++ Top = 16 ++ Width = 119 ++ Caption = 'Own observation' ++ Checked = True ++ OnClick = CheckBox3Click ++ State = cbChecked ++ TabOrder = 0 ++ end ++ object BitBtn6: TBitBtn ++ Left = 693 ++ Height = 25 ++ Hint = 'Zoom' ++ Top = 5 ++ Width = 25 ++ Caption = '+/-' ++ NumGlyphs = 0 ++ OnClick = BitBtn6Click ++ TabOrder = 1 ++ end ++ end ++ object ColorDialog1: TColorDialog ++ Title = 'Select color' ++ left = 64 ++ top = 16 ++ end ++ object MainMenu1: TMainMenu ++ left = 16 ++ top = 16 ++ object File1: TMenuItem ++ Caption = '&File' ++ object SaveasBMP1: TMenuItem ++ Caption = '&Save as BMP ...' ++ OnClick = SaveasBMP1Click ++ end ++ object GetQuickLook: TMenuItem ++ Caption = '&Get online AAVSO QuickLook data' ++ OnClick = GetQuickLookClick ++ end ++ object Close1: TMenuItem ++ Caption = '&Close' ++ OnClick = Close1Click ++ end ++ end ++ object MenuItem1: TMenuItem ++ Caption = '&Online data' ++ object MenuItem2: TMenuItem ++ Caption = 'AAVSO Quick look' ++ ShowAlwaysCheckable = True ++ OnClick = MenuItem2Click ++ end ++ object MenuItem3: TMenuItem ++ Caption = 'AFOEV FTP Archive' ++ ShowAlwaysCheckable = True ++ OnClick = MenuItem3Click ++ end ++ end ++ end ++ object SaveDialog1: TSaveDialog ++ Title = 'Save file as' ++ DefaultExt = '.bmp' ++ Filter = 'Bitmap files|*.bmp' ++ left = 112 ++ top = 16 ++ end ++ object DownloadDialog1: TDownloadDialog ++ FtpFwPassive = True ++ ConfirmDownload = True ++ left = 28 ++ top = 75 ++ end ++ object RefreshTimer: TTimer ++ Enabled = False ++ Interval = 200 ++ OnTimer = RefreshTimerTimer ++ left = 88 ++ top = 75 ++ end ++end +diff -ur skychart_3.2/varobs/detail1.lrs skychart_3.2_up/varobs/detail1.lrs +--- skychart_3.2/varobs/detail1.lrs 2008-06-15 13:45:38.000000000 +0200 ++++ skychart_3.2_up/varobs/detail1.lrs 2011-03-09 15:18:23.215264366 +0100 +@@ -1,4 +1,4 @@ +-{ This is an automatically generated lazarus resource file } ++{ This is an automatically generated lazarus resource file } + + LazarusResources.Add('TDetailForm','FORMDATA',[ + 'TPF0'#11'TDetailForm'#10'DetailForm'#4'Left'#3#201#1#6'Height'#3#227#1#3'Top' +diff -ur skychart_3.2/varobs/ObsUnit.lfm skychart_3.2_up/varobs/ObsUnit.lfm +--- skychart_3.2/varobs/ObsUnit.lfm 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/ObsUnit.lfm 2011-03-09 15:18:23.217264120 +0100 +@@ -1,375 +1,375 @@ +-object ObsForm: TObsForm +- Left = 680 +- Height = 391 +- Top = 90 +- Width = 638 +- HorzScrollBar.Page = 637 +- VertScrollBar.Page = 371 +- ActiveControl = TimePicker1 +- Caption = 'New visual observation' +- ClientHeight = 369 +- ClientWidth = 638 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- Menu = MainMenu1 +- OnCloseQuery = FormCloseQuery +- OnShow = FormShow +- LCLVersion = '0.9.29' +- object Label1: TLabel +- Left = 8 +- Height = 19 +- Top = 66 +- Width = 62 +- Caption = 'Star Name ' +- ParentColor = False +- end +- object Label2: TLabel +- Left = 422 +- Height = 19 +- Top = 17 +- Width = 59 +- Caption = 'UT decimal' +- ParentColor = False +- end +- object Label3: TLabel +- Left = 200 +- Height = 19 +- Top = 66 +- Width = 31 +- Caption = 'Magn.' +- ParentColor = False +- end +- object Label4: TLabel +- Left = 13 +- Height = 19 +- Top = 17 +- Width = 46 +- Caption = 'Observer' +- ParentColor = False +- end +- object Label5: TLabel +- Left = 392 +- Height = 19 +- Top = 66 +- Width = 48 +- Caption = 'Comment' +- ParentColor = False +- end +- object Label6: TLabel +- Left = 162 +- Height = 19 +- Top = 102 +- Width = 68 +- Caption = 'Comp Star 1' +- ParentColor = False +- end +- object Label7: TLabel +- Left = 136 +- Height = 23 +- Top = 16 +- Width = 28 +- Caption = 'Date' +- Font.Height = -13 +- Font.Name = 'MS Sans Serif' +- ParentColor = False +- ParentFont = False +- end +- object Label9: TLabel +- Left = 416 +- Height = 19 +- Top = 102 +- Width = 28 +- Caption = 'Chart' +- ParentColor = False +- end +- object Label10: TLabel +- Left = 8 +- Height = 19 +- Top = 140 +- Width = 44 +- Caption = 'Remarks' +- ParentColor = False +- end +- object Label11: TLabel +- Left = 288 +- Height = 19 +- Top = 102 +- Width = 68 +- Caption = 'Comp Star 2' +- ParentColor = False +- end +- object Edit1: TEdit +- Left = 72 +- Height = 26 +- Top = 64 +- Width = 113 +- CharCase = ecUppercase +- TabOrder = 10 +- end +- object Edit2: TEdit +- Left = 488 +- Height = 26 +- Top = 15 +- Width = 121 +- CharCase = ecUppercase +- OnExit = Edit2Change +- TabStop = False +- TabOrder = 9 +- end +- object Edit3: TEdit +- Left = 240 +- Height = 26 +- Top = 64 +- Width = 41 +- CharCase = ecUppercase +- TabOrder = 0 +- end +- object Edit4: TEdit +- Left = 72 +- Height = 26 +- Top = 15 +- Width = 47 +- CharCase = ecUppercase +- ReadOnly = True +- TabStop = False +- TabOrder = 4 +- end +- object Edit5: TEdit +- Left = 456 +- Height = 26 +- Top = 64 +- Width = 88 +- CharCase = ecUppercase +- TabOrder = 1 +- end +- object Edit6: TEdit +- Left = 240 +- Height = 26 +- Top = 100 +- Width = 41 +- CharCase = ecUppercase +- TabOrder = 2 +- end +- object Memo1: TMemo +- Left = 14 +- Height = 153 +- Top = 168 +- Width = 609 +- Font.Height = -11 +- Font.Name = 'Courier New' +- Font.Pitch = fpFixed +- ParentFont = False +- ScrollBars = ssBoth +- TabOrder = 12 +- TabStop = False +- end +- object BitBtn1: TBitBtn +- Left = 481 +- Height = 25 +- Top = 136 +- Width = 142 +- Caption = 'Add' +- NumGlyphs = 0 +- OnClick = AddClick +- TabOrder = 8 +- end +- object BitBtn2: TBitBtn +- Left = 422 +- Height = 25 +- Top = 334 +- Width = 87 +- Caption = 'Save to File' +- NumGlyphs = 0 +- OnClick = Button2Click +- TabOrder = 7 +- TabStop = False +- end +- object Edit7: TEdit +- Left = 456 +- Height = 26 +- Top = 100 +- Width = 88 +- CharCase = ecUppercase +- TabOrder = 5 +- end +- object Edit8: TEdit +- Left = 64 +- Height = 26 +- Top = 138 +- Width = 397 +- MaxLength = 100 +- TabOrder = 6 +- end +- object CheckBox2: TCheckBox +- Left = 296 +- Height = 22 +- Top = 64 +- Width = 84 +- Caption = 'Fainter than' +- TabOrder = 11 +- TabStop = False +- end +- object TimePicker1: TTimePicker +- Left = 288 +- Height = 23 +- Top = 14 +- Width = 101 +- Time = 0.39739583333333 +- OnChange = DateEdit1Change +- Enabled = True +- TabOrder = 14 +- end +- object DateEdit1: TDateEdit +- Left = 176 +- Height = 26 +- Top = 14 +- Width = 80 +- CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames] +- OKCaption = 'OK' +- CancelCaption = 'Cancel' +- DateOrder = doNone +- ButtonWidth = 23 +- CharCase = ecNormal +- Glyph.Data = { +- D6020000424DD60200000000000036000000280000000E0000000C0000000100 +- 200000000000A002000064000000640000000000000000000000000000000000 +- 000000000000808080FF808080FF808080FF808080FF808080FF808080FF8080 +- 80FF808080FF808080FF808080FF808080FF0000000000000000000000FF0000 +- 00FF800000FF000000FF800000FF800000FF000000FF800000FF000000FF0000 +- 00FF800000FF808080FF0000000000000000808080FF808080FF808080FF8080 +- 80FF808080FF808080FF808080FF808080FF808080FF808080FF800000FF8080 +- 80FF0000000000000000808080FF000000FF000000FF000000FF808080FF0000 +- 00FF000000FF000000FFC0C0C0FF808080FF800000FF808080FF000000000000 +- 0000808080FF808080FF000000FF808080FF808080FFC0C0C0FF808080FFC0C0 +- C0FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 +- 80FF000000FF808080FF808080FF808080FF808080FF808080FF000000FF8080 +- 80FF800000FF808080FF0000000000000000808080FF808080FF000000FF8080 +- 80FF808080FF000000FF000000FF000000FFC0C0C0FF808080FF800000FF8080 +- 80FF0000000000000000808080FF000000FF000000FF808080FF808080FF0000 +- 00FF808080FF808080FF808080FF808080FF800000FF808080FF000000000000 +- 0000808080FF808080FF000000FF808080FF808080FF000000FF000000FF0000 +- 00FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 +- 80FF808080FF808080FF808080FF808080FF808080FF808080FF808080FF8080 +- 80FF800000FF808080FF0000000000000000808080FFC0C0C0FFC0C0C0FFC0C0 +- C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FF808080FF800000FF8080 +- 80FF0000000000000000000000FF000000FF000000FF000000FF000000FF0000 +- 00FF000000FF000000FF000000FF000000FF0000000000000000 +- } +- NumGlyphs = 1 +- MaxLength = 0 +- OnExit = DateEdit1Change +- TabStop = False +- TabOrder = 13 +- end +- object Edit9: TEdit +- Left = 368 +- Height = 26 +- Top = 100 +- Width = 41 +- CharCase = ecUppercase +- TabOrder = 3 +- end +- object FileNameEdit1: TFileNameEdit +- Left = 14 +- Height = 26 +- Top = 335 +- Width = 378 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 15 +- TabStop = False +- end +- object Button1: TButton +- Left = 548 +- Height = 21 +- Top = 64 +- Width = 21 +- Caption = '...' +- OnClick = Button1Click +- TabOrder = 16 +- end +- object Editbtn: TButton +- Left = 527 +- Height = 25 +- Top = 334 +- Width = 96 +- Caption = 'Edit File' +- OnClick = EditbtnClick +- TabOrder = 17 +- end +- object MainMenu1: TMainMenu +- left = 16 +- top = 40 +- object MenuItem1: TMenuItem +- Caption = '&File' +- object MenuItem4: TMenuItem +- Caption = '&Save' +- OnClick = Button2Click +- end +- object MenuItem16: TMenuItem +- Caption = 'Edit file' +- OnClick = EditbtnClick +- end +- object MenuItem2: TMenuItem +- Caption = '&Reset input fields' +- OnClick = MenuItem2Click +- end +- object MenuItem3: TMenuItem +- Caption = '&Quit' +- OnClick = MenuItem3Click +- end +- end +- end +- object PopupMenu1: TPopupMenu +- left = 572 +- top = 95 +- object MenuItem5: TMenuItem +- Caption = 'B: Sky is bright, moon, twilight, light pollution, aurorae.' +- OnClick = CodeClick +- end +- object MenuItem6: TMenuItem +- Caption = 'U: Clouds, dust, smoke, haze, etc. ' +- OnClick = CodeClick +- end +- object MenuItem7: TMenuItem +- Caption = 'W: Poor seeing. ' +- OnClick = CodeClick +- end +- object MenuItem8: TMenuItem +- Caption = 'L: Low in the sky, near horizon, in trees, obstructed view.' +- OnClick = CodeClick +- end +- object MenuItem9: TMenuItem +- Caption = 'D: Unusual Activity (fading, flare, bizarre behavior, etc.) ' +- OnClick = CodeClick +- end +- object MenuItem10: TMenuItem +- Caption = 'Y: Outburst.' +- OnClick = CodeClick +- end +- object MenuItem11: TMenuItem +- Caption = 'K: Non-AAVSO chart. ' +- OnClick = CodeClick +- end +- object MenuItem12: TMenuItem +- Caption = 'S: Comparison sequence problem. ' +- OnClick = CodeClick +- end +- object MenuItem13: TMenuItem +- Caption = 'Z: Magnitude of star uncertain.' +- OnClick = CodeClick +- end +- object MenuItem14: TMenuItem +- Caption = 'I: Identification of star uncertain. ' +- OnClick = CodeClick +- end +- object MenuItem15: TMenuItem +- Caption = 'V: Faint star, near observing limit, only glimpsed. ' +- OnClick = CodeClick +- end +- end ++object ObsForm: TObsForm ++ Left = 680 ++ Height = 391 ++ Top = 90 ++ Width = 638 ++ HorzScrollBar.Page = 637 ++ VertScrollBar.Page = 371 ++ ActiveControl = TimePicker1 ++ Caption = 'New visual observation' ++ ClientHeight = 369 ++ ClientWidth = 638 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ Menu = MainMenu1 ++ OnCloseQuery = FormCloseQuery ++ OnShow = FormShow ++ LCLVersion = '0.9.29' ++ object Label1: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 66 ++ Width = 62 ++ Caption = 'Star Name ' ++ ParentColor = False ++ end ++ object Label2: TLabel ++ Left = 422 ++ Height = 19 ++ Top = 17 ++ Width = 59 ++ Caption = 'UT decimal' ++ ParentColor = False ++ end ++ object Label3: TLabel ++ Left = 200 ++ Height = 19 ++ Top = 66 ++ Width = 31 ++ Caption = 'Magn.' ++ ParentColor = False ++ end ++ object Label4: TLabel ++ Left = 13 ++ Height = 19 ++ Top = 17 ++ Width = 46 ++ Caption = 'Observer' ++ ParentColor = False ++ end ++ object Label5: TLabel ++ Left = 392 ++ Height = 19 ++ Top = 66 ++ Width = 48 ++ Caption = 'Comment' ++ ParentColor = False ++ end ++ object Label6: TLabel ++ Left = 162 ++ Height = 19 ++ Top = 102 ++ Width = 68 ++ Caption = 'Comp Star 1' ++ ParentColor = False ++ end ++ object Label7: TLabel ++ Left = 136 ++ Height = 23 ++ Top = 16 ++ Width = 28 ++ Caption = 'Date' ++ Font.Height = -13 ++ Font.Name = 'MS Sans Serif' ++ ParentColor = False ++ ParentFont = False ++ end ++ object Label9: TLabel ++ Left = 416 ++ Height = 19 ++ Top = 102 ++ Width = 28 ++ Caption = 'Chart' ++ ParentColor = False ++ end ++ object Label10: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 140 ++ Width = 44 ++ Caption = 'Remarks' ++ ParentColor = False ++ end ++ object Label11: TLabel ++ Left = 288 ++ Height = 19 ++ Top = 102 ++ Width = 68 ++ Caption = 'Comp Star 2' ++ ParentColor = False ++ end ++ object Edit1: TEdit ++ Left = 72 ++ Height = 26 ++ Top = 64 ++ Width = 113 ++ CharCase = ecUppercase ++ TabOrder = 10 ++ end ++ object Edit2: TEdit ++ Left = 488 ++ Height = 26 ++ Top = 15 ++ Width = 121 ++ CharCase = ecUppercase ++ OnExit = Edit2Change ++ TabStop = False ++ TabOrder = 9 ++ end ++ object Edit3: TEdit ++ Left = 240 ++ Height = 26 ++ Top = 64 ++ Width = 41 ++ CharCase = ecUppercase ++ TabOrder = 0 ++ end ++ object Edit4: TEdit ++ Left = 72 ++ Height = 26 ++ Top = 15 ++ Width = 47 ++ CharCase = ecUppercase ++ ReadOnly = True ++ TabStop = False ++ TabOrder = 4 ++ end ++ object Edit5: TEdit ++ Left = 456 ++ Height = 26 ++ Top = 64 ++ Width = 88 ++ CharCase = ecUppercase ++ TabOrder = 1 ++ end ++ object Edit6: TEdit ++ Left = 240 ++ Height = 26 ++ Top = 100 ++ Width = 41 ++ CharCase = ecUppercase ++ TabOrder = 2 ++ end ++ object Memo1: TMemo ++ Left = 14 ++ Height = 153 ++ Top = 168 ++ Width = 609 ++ Font.Height = -11 ++ Font.Name = 'Courier New' ++ Font.Pitch = fpFixed ++ ParentFont = False ++ ScrollBars = ssBoth ++ TabOrder = 12 ++ TabStop = False ++ end ++ object BitBtn1: TBitBtn ++ Left = 481 ++ Height = 25 ++ Top = 136 ++ Width = 142 ++ Caption = 'Add' ++ NumGlyphs = 0 ++ OnClick = AddClick ++ TabOrder = 8 ++ end ++ object BitBtn2: TBitBtn ++ Left = 422 ++ Height = 25 ++ Top = 334 ++ Width = 87 ++ Caption = 'Save to File' ++ NumGlyphs = 0 ++ OnClick = Button2Click ++ TabOrder = 7 ++ TabStop = False ++ end ++ object Edit7: TEdit ++ Left = 456 ++ Height = 26 ++ Top = 100 ++ Width = 88 ++ CharCase = ecUppercase ++ TabOrder = 5 ++ end ++ object Edit8: TEdit ++ Left = 64 ++ Height = 26 ++ Top = 138 ++ Width = 397 ++ MaxLength = 100 ++ TabOrder = 6 ++ end ++ object CheckBox2: TCheckBox ++ Left = 296 ++ Height = 22 ++ Top = 64 ++ Width = 84 ++ Caption = 'Fainter than' ++ TabOrder = 11 ++ TabStop = False ++ end ++ object TimePicker1: TTimePicker ++ Left = 288 ++ Height = 23 ++ Top = 14 ++ Width = 101 ++ Time = 0.39739583333333 ++ OnChange = DateEdit1Change ++ Enabled = True ++ TabOrder = 14 ++ end ++ object DateEdit1: TDateEdit ++ Left = 176 ++ Height = 26 ++ Top = 14 ++ Width = 80 ++ CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames] ++ OKCaption = 'OK' ++ CancelCaption = 'Cancel' ++ DateOrder = doNone ++ ButtonWidth = 23 ++ CharCase = ecNormal ++ Glyph.Data = { ++ D6020000424DD60200000000000036000000280000000E0000000C0000000100 ++ 200000000000A002000064000000640000000000000000000000000000000000 ++ 000000000000808080FF808080FF808080FF808080FF808080FF808080FF8080 ++ 80FF808080FF808080FF808080FF808080FF0000000000000000000000FF0000 ++ 00FF800000FF000000FF800000FF800000FF000000FF800000FF000000FF0000 ++ 00FF800000FF808080FF0000000000000000808080FF808080FF808080FF8080 ++ 80FF808080FF808080FF808080FF808080FF808080FF808080FF800000FF8080 ++ 80FF0000000000000000808080FF000000FF000000FF000000FF808080FF0000 ++ 00FF000000FF000000FFC0C0C0FF808080FF800000FF808080FF000000000000 ++ 0000808080FF808080FF000000FF808080FF808080FFC0C0C0FF808080FFC0C0 ++ C0FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 ++ 80FF000000FF808080FF808080FF808080FF808080FF808080FF000000FF8080 ++ 80FF800000FF808080FF0000000000000000808080FF808080FF000000FF8080 ++ 80FF808080FF000000FF000000FF000000FFC0C0C0FF808080FF800000FF8080 ++ 80FF0000000000000000808080FF000000FF000000FF808080FF808080FF0000 ++ 00FF808080FF808080FF808080FF808080FF800000FF808080FF000000000000 ++ 0000808080FF808080FF000000FF808080FF808080FF000000FF000000FF0000 ++ 00FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 ++ 80FF808080FF808080FF808080FF808080FF808080FF808080FF808080FF8080 ++ 80FF800000FF808080FF0000000000000000808080FFC0C0C0FFC0C0C0FFC0C0 ++ C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FF808080FF800000FF8080 ++ 80FF0000000000000000000000FF000000FF000000FF000000FF000000FF0000 ++ 00FF000000FF000000FF000000FF000000FF0000000000000000 ++ } ++ NumGlyphs = 1 ++ MaxLength = 0 ++ OnExit = DateEdit1Change ++ TabStop = False ++ TabOrder = 13 ++ end ++ object Edit9: TEdit ++ Left = 368 ++ Height = 26 ++ Top = 100 ++ Width = 41 ++ CharCase = ecUppercase ++ TabOrder = 3 ++ end ++ object FileNameEdit1: TFileNameEdit ++ Left = 14 ++ Height = 26 ++ Top = 335 ++ Width = 378 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 15 ++ TabStop = False ++ end ++ object Button1: TButton ++ Left = 548 ++ Height = 21 ++ Top = 64 ++ Width = 21 ++ Caption = '...' ++ OnClick = Button1Click ++ TabOrder = 16 ++ end ++ object Editbtn: TButton ++ Left = 527 ++ Height = 25 ++ Top = 334 ++ Width = 96 ++ Caption = 'Edit File' ++ OnClick = EditbtnClick ++ TabOrder = 17 ++ end ++ object MainMenu1: TMainMenu ++ left = 16 ++ top = 40 ++ object MenuItem1: TMenuItem ++ Caption = '&File' ++ object MenuItem4: TMenuItem ++ Caption = '&Save' ++ OnClick = Button2Click ++ end ++ object MenuItem16: TMenuItem ++ Caption = 'Edit file' ++ OnClick = EditbtnClick ++ end ++ object MenuItem2: TMenuItem ++ Caption = '&Reset input fields' ++ OnClick = MenuItem2Click ++ end ++ object MenuItem3: TMenuItem ++ Caption = '&Quit' ++ OnClick = MenuItem3Click ++ end ++ end ++ end ++ object PopupMenu1: TPopupMenu ++ left = 572 ++ top = 95 ++ object MenuItem5: TMenuItem ++ Caption = 'B: Sky is bright, moon, twilight, light pollution, aurorae.' ++ OnClick = CodeClick ++ end ++ object MenuItem6: TMenuItem ++ Caption = 'U: Clouds, dust, smoke, haze, etc. ' ++ OnClick = CodeClick ++ end ++ object MenuItem7: TMenuItem ++ Caption = 'W: Poor seeing. ' ++ OnClick = CodeClick ++ end ++ object MenuItem8: TMenuItem ++ Caption = 'L: Low in the sky, near horizon, in trees, obstructed view.' ++ OnClick = CodeClick ++ end ++ object MenuItem9: TMenuItem ++ Caption = 'D: Unusual Activity (fading, flare, bizarre behavior, etc.) ' ++ OnClick = CodeClick ++ end ++ object MenuItem10: TMenuItem ++ Caption = 'Y: Outburst.' ++ OnClick = CodeClick ++ end ++ object MenuItem11: TMenuItem ++ Caption = 'K: Non-AAVSO chart. ' ++ OnClick = CodeClick ++ end ++ object MenuItem12: TMenuItem ++ Caption = 'S: Comparison sequence problem. ' ++ OnClick = CodeClick ++ end ++ object MenuItem13: TMenuItem ++ Caption = 'Z: Magnitude of star uncertain.' ++ OnClick = CodeClick ++ end ++ object MenuItem14: TMenuItem ++ Caption = 'I: Identification of star uncertain. ' ++ OnClick = CodeClick ++ end ++ object MenuItem15: TMenuItem ++ Caption = 'V: Faint star, near observing limit, only glimpsed. ' ++ OnClick = CodeClick ++ end ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/ObsUnit.lrs skychart_3.2_up/varobs/ObsUnit.lrs +--- skychart_3.2/varobs/ObsUnit.lrs 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/ObsUnit.lrs 2011-03-09 15:18:23.217264120 +0100 +@@ -1,122 +1,122 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('TObsForm','FORMDATA',[ +- 'TPF0'#8'TObsForm'#7'ObsForm'#4'Left'#3#168#2#6'Height'#3#135#1#3'Top'#2'Z'#5 +- +'Width'#3'~'#2#18'HorzScrollBar.Page'#3'}'#2#18'VertScrollBar.Page'#3's'#1#13 +- +'ActiveControl'#7#11'TimePicker1'#7'Caption'#6#22'New visual observation'#12 +- +'ClientHeight'#3'q'#1#11'ClientWidth'#3'~'#2#11'Font.Height'#2#245#9'Font.Na' +- +'me'#6#13'MS Sans Serif'#4'Menu'#7#9'MainMenu1'#12'OnCloseQuery'#7#14'FormCl' +- +'oseQuery'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6 +- +'Label1'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'B'#5'Width'#2'>'#7'Caption'#6#10 +- +'Star Name '#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#166#1#6'Hei' +- +'ght'#2#19#3'Top'#2#17#5'Width'#2';'#7'Caption'#6#10'UT decimal'#11'ParentCo' +- +'lor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#200#0#6'Height'#2#19#3'Top'#2'B'#5 +- +'Width'#2#31#7'Caption'#6#5'Magn.'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' +- +#4'Left'#2#13#6'Height'#2#19#3'Top'#2#17#5'Width'#2'.'#7'Caption'#6#8'Observ' +- +'er'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#136#1#6'Height'#2#19 +- +#3'Top'#2'B'#5'Width'#2'0'#7'Caption'#6#7'Comment'#11'ParentColor'#8#0#0#6'T' +- +'Label'#6'Label6'#4'Left'#3#162#0#6'Height'#2#19#3'Top'#2'f'#5'Width'#2'D'#7 +- +'Caption'#6#11'Comp Star 1'#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left' +- +#3#136#0#6'Height'#2#23#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4'Date'#11'Fo' +- +'nt.Height'#2#243#9'Font.Name'#6#13'MS Sans Serif'#11'ParentColor'#8#10'Pare' +- +'ntFont'#8#0#0#6'TLabel'#6'Label9'#4'Left'#3#160#1#6'Height'#2#19#3'Top'#2'f' +- +#5'Width'#2#28#7'Caption'#6#5'Chart'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' +- +'10'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#140#0#5'Width'#2','#7'Caption'#6#7 +- +'Remarks'#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#3' '#1#6'Height' +- +#2#19#3'Top'#2'f'#5'Width'#2'D'#7'Caption'#6#11'Comp Star 2'#11'ParentColor' +- +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 +- +'q'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#10#0#0#5'TEdit'#5'Edit2'#4'L' +- +'eft'#3#232#1#6'Height'#2#26#3'Top'#2#15#5'Width'#2'y'#8'CharCase'#7#11'ecUp' +- +'percase'#6'OnExit'#7#11'Edit2Change'#7'TabStop'#8#8'TabOrder'#2#9#0#0#5'TEd' +- +'it'#5'Edit3'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'@'#5'Width'#2')'#8'Cha' +- +'rCase'#7#11'ecUppercase'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'H' +- +#6'Height'#2#26#3'Top'#2#15#5'Width'#2'/'#8'CharCase'#7#11'ecUppercase'#8'Re' +- +'adOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#5'Edit5'#4'Left'#3#200#1 +- +#6'Height'#2#26#3'Top'#2'@'#5'Width'#2'X'#8'CharCase'#7#11'ecUppercase'#8'Ta' +- +'bOrder'#2#1#0#0#5'TEdit'#5'Edit6'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'd' +- +#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#2#0#0#5'TMemo'#5 +- +'Memo1'#4'Left'#2#14#6'Height'#3#153#0#3'Top'#3#168#0#5'Width'#3'a'#2#11'Fon' +- +'t.Height'#2#245#9'Font.Name'#6#11'Courier New'#10'Font.Pitch'#7#7'fpFixed' +- +#10'ParentFont'#8#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#12#7'TabStop'#8#0 +- +#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#225#1#6'Height'#2#25#3'Top'#3#136#0#5'Wid' +- +'th'#3#142#0#7'Caption'#6#3'Add'#9'NumGlyphs'#2#0#7'OnClick'#7#8'AddClick'#8 +- +'TabOrder'#2#8#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#166#1#6'Height'#2#25#3'To' +- +'p'#3'N'#1#5'Width'#2'W'#7'Caption'#6#12'Save to File'#9'NumGlyphs'#2#0#7'On' +- +'Click'#7#12'Button2Click'#8'TabOrder'#2#7#7'TabStop'#8#0#0#5'TEdit'#5'Edit7' +- +#4'Left'#3#200#1#6'Height'#2#26#3'Top'#2'd'#5'Width'#2'X'#8'CharCase'#7#11'e' +- +'cUppercase'#8'TabOrder'#2#5#0#0#5'TEdit'#5'Edit8'#4'Left'#2'@'#6'Height'#2 +- +#26#3'Top'#3#138#0#5'Width'#3#141#1#9'MaxLength'#2'd'#8'TabOrder'#2#6#0#0#9 +- +'TCheckBox'#9'CheckBox2'#4'Left'#3'('#1#6'Height'#2#22#3'Top'#2'@'#5'Width'#2 +- +'T'#7'Caption'#6#12'Fainter than'#8'TabOrder'#2#11#7'TabStop'#8#0#0#11'TTime' +- +'Picker'#11'TimePicker1'#4'Left'#3' '#1#6'Height'#2#23#3'Top'#2#14#5'Width'#2 +- +'e'#4'Time'#5#0'xwwwww'#203#253'?'#8'OnChange'#7#15'DateEdit1Change'#7'Enabl' +- +'ed'#9#8'TabOrder'#2#14#0#0#9'TDateEdit'#9'DateEdit1'#4'Left'#3#176#0#6'Heig' +- +'ht'#2#26#3'Top'#2#14#5'Width'#2'P'#23'CalendarDisplaySettings'#11#14'dsShow' +- +'Headings'#14'dsShowDayNames'#0#9'OKCaption'#6#2'OK'#13'CancelCaption'#6#6'C' +- +'ancel'#9'DateOrder'#7#6'doNone'#11'ButtonWidth'#2#23#8'CharCase'#7#8'ecNorm' +- +'al'#10'Glyph.Data'#10#218#2#0#0#214#2#0#0'BM'#214#2#0#0#0#0#0#0'6'#0#0#0'(' +- +#0#0#0#14#0#0#0#12#0#0#0#1#0' '#0#0#0#0#0#160#2#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0 +- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128 +- +#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128 +- +#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0 +- +#0#255#0#0#0#255#128#0#0#255#0#0#0#255#128#0#0#255#128#0#0#255#0#0#0#255#128 +- +#0#0#255#0#0#0#255#0#0#0#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128 +- +#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 +- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 +- +#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0 +- +#0#0#255#0#0#0#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#192#192#192 +- ,#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 +- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#192#192#192 +- +#255#128#128#128#255#192#192#192#255#0#0#0#255#128#128#128#255#128#0#0#255 +- +#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#0#0#0#255 +- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 +- +#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0 +- +#128#128#128#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0 +- +#0#0#255#0#0#0#255#0#0#0#255#192#192#192#255#128#128#128#255#128#0#0#255#128 +- +#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0#0#0#255#128#128#128 +- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#128#128#128 +- +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 +- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0#0#0#255#0#0 +- +#0#255#0#0#0#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0 +- +#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 +- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 +- +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 +- +#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192 +- +#192#255#192#192#192#255#192#192#192#255#192#192#192#255#128#128#128#255#128 +- +#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0 +- +#0#0#9'NumGlyphs'#2#1#9'MaxLength'#2#0#6'OnExit'#7#15'DateEdit1Change'#7'Tab' +- +'Stop'#8#8'TabOrder'#2#13#0#0#5'TEdit'#5'Edit9'#4'Left'#3'p'#1#6'Height'#2#26 +- +#3'Top'#2'd'#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#3#0#0 +- +#13'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2#14#6'Height'#2#26#3'Top'#3'O' +- +#1#5'Width'#3'z'#1#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirecto' +- +'ries'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 +- +#15#7'TabStop'#8#0#0#7'TButton'#7'Button1'#4'Left'#3'$'#2#6'Height'#2#21#3'T' +- +'op'#2'@'#5'Width'#2#21#7'Caption'#6#3'...'#7'OnClick'#7#12'Button1Click'#8 +- +'TabOrder'#2#16#0#0#7'TButton'#7'Editbtn'#4'Left'#3#15#2#6'Height'#2#25#3'To' +- +'p'#3'N'#1#5'Width'#2'`'#7'Caption'#6#9'Edit File'#7'OnClick'#7#12'EditbtnCl' +- +'ick'#8'TabOrder'#2#17#0#0#9'TMainMenu'#9'MainMenu1'#4'left'#2#16#3'top'#2'(' +- +#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#5'&File'#0#9'TMenuItem'#9'MenuItem' +- +'4'#7'Caption'#6#5'&Save'#7'OnClick'#7#12'Button2Click'#0#0#9'TMenuItem'#10 +- +'MenuItem16'#7'Caption'#6#9'Edit file'#7'OnClick'#7#12'EditbtnClick'#0#0#9'T' +- +'MenuItem'#9'MenuItem2'#7'Caption'#6#19'&Reset input fields'#7'OnClick'#7#14 +- +'MenuItem2Click'#0#0#9'TMenuItem'#9'MenuItem3'#7'Caption'#6#5'&Quit'#7'OnCli' +- +'ck'#7#14'MenuItem3Click'#0#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#3'<' +- +#2#3'top'#2'_'#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6';B: Sky is bright, m' +- +'oon, twilight, light pollution, aurorae.'#7'OnClick'#7#9'CodeClick'#0#0#9'T' +- +'MenuItem'#9'MenuItem6'#7'Caption'#6'#U: Clouds, dust, smoke, haze, etc. '#7 +- +'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem7'#7'Caption'#6#16'W: Po' +- +'or seeing. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem8'#7'Capt' +- +'ion'#6';L: Low in the sky, near horizon, in trees, obstructed view.'#7'OnCl' +- +'ick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem9'#7'Caption'#6'<D: Unusual ' +- +'Activity (fading, flare, bizarre behavior, etc.) '#7'OnClick'#7#9'CodeClick' +- +#0#0#9'TMenuItem'#10'MenuItem10'#7'Caption'#6#12'Y: Outburst.'#7'OnClick'#7#9 +- +'CodeClick'#0#0#9'TMenuItem'#10'MenuItem11'#7'Caption'#6#20'K: Non-AAVSO cha' +- +'rt. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem12'#7'Caption'#6 +- +' S: Comparison sequence problem. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuIte' +- +'m'#10'MenuItem13'#7'Caption'#6#31'Z: Magnitude of star uncertain.'#7'OnClic' +- +'k'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem14'#7'Caption'#6'%I: Identifi' +- +'cation of star uncertain. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'M' +- +'enuItem15'#7'Caption'#6'4V: Faint star, near observing limit, only glimpsed' +- +'. '#7'OnClick'#7#9'CodeClick'#0#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('TObsForm','FORMDATA',[ ++ 'TPF0'#8'TObsForm'#7'ObsForm'#4'Left'#3#168#2#6'Height'#3#135#1#3'Top'#2'Z'#5 ++ +'Width'#3'~'#2#18'HorzScrollBar.Page'#3'}'#2#18'VertScrollBar.Page'#3's'#1#13 ++ +'ActiveControl'#7#11'TimePicker1'#7'Caption'#6#22'New visual observation'#12 ++ +'ClientHeight'#3'q'#1#11'ClientWidth'#3'~'#2#11'Font.Height'#2#245#9'Font.Na' ++ +'me'#6#13'MS Sans Serif'#4'Menu'#7#9'MainMenu1'#12'OnCloseQuery'#7#14'FormCl' ++ +'oseQuery'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6 ++ +'Label1'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'B'#5'Width'#2'>'#7'Caption'#6#10 ++ +'Star Name '#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#166#1#6'Hei' ++ +'ght'#2#19#3'Top'#2#17#5'Width'#2';'#7'Caption'#6#10'UT decimal'#11'ParentCo' ++ +'lor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#200#0#6'Height'#2#19#3'Top'#2'B'#5 ++ +'Width'#2#31#7'Caption'#6#5'Magn.'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' ++ +#4'Left'#2#13#6'Height'#2#19#3'Top'#2#17#5'Width'#2'.'#7'Caption'#6#8'Observ' ++ +'er'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#136#1#6'Height'#2#19 ++ +#3'Top'#2'B'#5'Width'#2'0'#7'Caption'#6#7'Comment'#11'ParentColor'#8#0#0#6'T' ++ +'Label'#6'Label6'#4'Left'#3#162#0#6'Height'#2#19#3'Top'#2'f'#5'Width'#2'D'#7 ++ +'Caption'#6#11'Comp Star 1'#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left' ++ +#3#136#0#6'Height'#2#23#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4'Date'#11'Fo' ++ +'nt.Height'#2#243#9'Font.Name'#6#13'MS Sans Serif'#11'ParentColor'#8#10'Pare' ++ +'ntFont'#8#0#0#6'TLabel'#6'Label9'#4'Left'#3#160#1#6'Height'#2#19#3'Top'#2'f' ++ +#5'Width'#2#28#7'Caption'#6#5'Chart'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' ++ +'10'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#140#0#5'Width'#2','#7'Caption'#6#7 ++ +'Remarks'#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#3' '#1#6'Height' ++ +#2#19#3'Top'#2'f'#5'Width'#2'D'#7'Caption'#6#11'Comp Star 2'#11'ParentColor' ++ +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 ++ +'q'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#10#0#0#5'TEdit'#5'Edit2'#4'L' ++ +'eft'#3#232#1#6'Height'#2#26#3'Top'#2#15#5'Width'#2'y'#8'CharCase'#7#11'ecUp' ++ +'percase'#6'OnExit'#7#11'Edit2Change'#7'TabStop'#8#8'TabOrder'#2#9#0#0#5'TEd' ++ +'it'#5'Edit3'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'@'#5'Width'#2')'#8'Cha' ++ +'rCase'#7#11'ecUppercase'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'H' ++ +#6'Height'#2#26#3'Top'#2#15#5'Width'#2'/'#8'CharCase'#7#11'ecUppercase'#8'Re' ++ +'adOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#5'Edit5'#4'Left'#3#200#1 ++ +#6'Height'#2#26#3'Top'#2'@'#5'Width'#2'X'#8'CharCase'#7#11'ecUppercase'#8'Ta' ++ +'bOrder'#2#1#0#0#5'TEdit'#5'Edit6'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'd' ++ +#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#2#0#0#5'TMemo'#5 ++ +'Memo1'#4'Left'#2#14#6'Height'#3#153#0#3'Top'#3#168#0#5'Width'#3'a'#2#11'Fon' ++ +'t.Height'#2#245#9'Font.Name'#6#11'Courier New'#10'Font.Pitch'#7#7'fpFixed' ++ +#10'ParentFont'#8#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#12#7'TabStop'#8#0 ++ +#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#225#1#6'Height'#2#25#3'Top'#3#136#0#5'Wid' ++ +'th'#3#142#0#7'Caption'#6#3'Add'#9'NumGlyphs'#2#0#7'OnClick'#7#8'AddClick'#8 ++ +'TabOrder'#2#8#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#166#1#6'Height'#2#25#3'To' ++ +'p'#3'N'#1#5'Width'#2'W'#7'Caption'#6#12'Save to File'#9'NumGlyphs'#2#0#7'On' ++ +'Click'#7#12'Button2Click'#8'TabOrder'#2#7#7'TabStop'#8#0#0#5'TEdit'#5'Edit7' ++ +#4'Left'#3#200#1#6'Height'#2#26#3'Top'#2'd'#5'Width'#2'X'#8'CharCase'#7#11'e' ++ +'cUppercase'#8'TabOrder'#2#5#0#0#5'TEdit'#5'Edit8'#4'Left'#2'@'#6'Height'#2 ++ +#26#3'Top'#3#138#0#5'Width'#3#141#1#9'MaxLength'#2'd'#8'TabOrder'#2#6#0#0#9 ++ +'TCheckBox'#9'CheckBox2'#4'Left'#3'('#1#6'Height'#2#22#3'Top'#2'@'#5'Width'#2 ++ +'T'#7'Caption'#6#12'Fainter than'#8'TabOrder'#2#11#7'TabStop'#8#0#0#11'TTime' ++ +'Picker'#11'TimePicker1'#4'Left'#3' '#1#6'Height'#2#23#3'Top'#2#14#5'Width'#2 ++ +'e'#4'Time'#5#0'xwwwww'#203#253'?'#8'OnChange'#7#15'DateEdit1Change'#7'Enabl' ++ +'ed'#9#8'TabOrder'#2#14#0#0#9'TDateEdit'#9'DateEdit1'#4'Left'#3#176#0#6'Heig' ++ +'ht'#2#26#3'Top'#2#14#5'Width'#2'P'#23'CalendarDisplaySettings'#11#14'dsShow' ++ +'Headings'#14'dsShowDayNames'#0#9'OKCaption'#6#2'OK'#13'CancelCaption'#6#6'C' ++ +'ancel'#9'DateOrder'#7#6'doNone'#11'ButtonWidth'#2#23#8'CharCase'#7#8'ecNorm' ++ +'al'#10'Glyph.Data'#10#218#2#0#0#214#2#0#0'BM'#214#2#0#0#0#0#0#0'6'#0#0#0'(' ++ +#0#0#0#14#0#0#0#12#0#0#0#1#0' '#0#0#0#0#0#160#2#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0 ++ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128 ++ +#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128 ++ +#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0 ++ +#0#255#0#0#0#255#128#0#0#255#0#0#0#255#128#0#0#255#128#0#0#255#0#0#0#255#128 ++ +#0#0#255#0#0#0#255#0#0#0#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128 ++ +#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 ++ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 ++ +#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0 ++ +#0#0#255#0#0#0#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#192#192#192 ++ ,#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 ++ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#192#192#192 ++ +#255#128#128#128#255#192#192#192#255#0#0#0#255#128#128#128#255#128#0#0#255 ++ +#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#0#0#0#255 ++ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 ++ +#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0 ++ +#128#128#128#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0 ++ +#0#0#255#0#0#0#255#0#0#0#255#192#192#192#255#128#128#128#255#128#0#0#255#128 ++ +#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0#0#0#255#128#128#128 ++ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#128#128#128 ++ +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 ++ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0#0#0#255#0#0 ++ +#0#255#0#0#0#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0 ++ +#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 ++ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 ++ +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 ++ +#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192 ++ +#192#255#192#192#192#255#192#192#192#255#192#192#192#255#128#128#128#255#128 ++ +#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 ++ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0 ++ +#0#0#9'NumGlyphs'#2#1#9'MaxLength'#2#0#6'OnExit'#7#15'DateEdit1Change'#7'Tab' ++ +'Stop'#8#8'TabOrder'#2#13#0#0#5'TEdit'#5'Edit9'#4'Left'#3'p'#1#6'Height'#2#26 ++ +#3'Top'#2'd'#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#3#0#0 ++ +#13'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2#14#6'Height'#2#26#3'Top'#3'O' ++ +#1#5'Width'#3'z'#1#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirecto' ++ +'ries'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 ++ +#15#7'TabStop'#8#0#0#7'TButton'#7'Button1'#4'Left'#3'$'#2#6'Height'#2#21#3'T' ++ +'op'#2'@'#5'Width'#2#21#7'Caption'#6#3'...'#7'OnClick'#7#12'Button1Click'#8 ++ +'TabOrder'#2#16#0#0#7'TButton'#7'Editbtn'#4'Left'#3#15#2#6'Height'#2#25#3'To' ++ +'p'#3'N'#1#5'Width'#2'`'#7'Caption'#6#9'Edit File'#7'OnClick'#7#12'EditbtnCl' ++ +'ick'#8'TabOrder'#2#17#0#0#9'TMainMenu'#9'MainMenu1'#4'left'#2#16#3'top'#2'(' ++ +#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#5'&File'#0#9'TMenuItem'#9'MenuItem' ++ +'4'#7'Caption'#6#5'&Save'#7'OnClick'#7#12'Button2Click'#0#0#9'TMenuItem'#10 ++ +'MenuItem16'#7'Caption'#6#9'Edit file'#7'OnClick'#7#12'EditbtnClick'#0#0#9'T' ++ +'MenuItem'#9'MenuItem2'#7'Caption'#6#19'&Reset input fields'#7'OnClick'#7#14 ++ +'MenuItem2Click'#0#0#9'TMenuItem'#9'MenuItem3'#7'Caption'#6#5'&Quit'#7'OnCli' ++ +'ck'#7#14'MenuItem3Click'#0#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#3'<' ++ +#2#3'top'#2'_'#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6';B: Sky is bright, m' ++ +'oon, twilight, light pollution, aurorae.'#7'OnClick'#7#9'CodeClick'#0#0#9'T' ++ +'MenuItem'#9'MenuItem6'#7'Caption'#6'#U: Clouds, dust, smoke, haze, etc. '#7 ++ +'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem7'#7'Caption'#6#16'W: Po' ++ +'or seeing. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem8'#7'Capt' ++ +'ion'#6';L: Low in the sky, near horizon, in trees, obstructed view.'#7'OnCl' ++ +'ick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem9'#7'Caption'#6'<D: Unusual ' ++ +'Activity (fading, flare, bizarre behavior, etc.) '#7'OnClick'#7#9'CodeClick' ++ +#0#0#9'TMenuItem'#10'MenuItem10'#7'Caption'#6#12'Y: Outburst.'#7'OnClick'#7#9 ++ +'CodeClick'#0#0#9'TMenuItem'#10'MenuItem11'#7'Caption'#6#20'K: Non-AAVSO cha' ++ +'rt. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem12'#7'Caption'#6 ++ +' S: Comparison sequence problem. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuIte' ++ +'m'#10'MenuItem13'#7'Caption'#6#31'Z: Magnitude of star uncertain.'#7'OnClic' ++ +'k'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem14'#7'Caption'#6'%I: Identifi' ++ +'cation of star uncertain. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'M' ++ +'enuItem15'#7'Caption'#6'4V: Faint star, near observing limit, only glimpsed' ++ +'. '#7'OnClick'#7#9'CodeClick'#0#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/param.pas skychart_3.2_up/varobs/param.pas +--- skychart_3.2/varobs/param.pas 2008-06-10 17:47:11.000000000 +0200 ++++ skychart_3.2_up/varobs/param.pas 2011-03-09 15:18:23.217264120 +0100 +@@ -1,27 +1,27 @@ +-unit param; +- +-{$mode objfpc}{$H+} +- +-interface +- +-uses +- Classes, SysUtils; +- +-var +- datim,datact,qlurl,qlmethode,qlinfo,vsurl,vsmethode,vsinfo,afoevurl,afoevmethode,afoevinfo,pcobscaption : string; +- lockdate : boolean; +- lockselect : boolean; +- started : boolean; +- AppDir,planname : string; +- maxvar : integer; +- jdact : double; +- CurrentRow: integer; +- param : Tstringlist; +- StartedByVarobs : boolean; +- NoChart : boolean; +- CielHnd : Thandle; +- +-implementation +- +-end. +- ++unit param; ++ ++{$mode objfpc}{$H+} ++ ++interface ++ ++uses ++ Classes, SysUtils; ++ ++var ++ datim,datact,qlurl,qlmethode,qlinfo,vsurl,vsmethode,vsinfo,afoevurl,afoevmethode,afoevinfo,pcobscaption : string; ++ lockdate : boolean; ++ lockselect : boolean; ++ started : boolean; ++ AppDir,planname : string; ++ maxvar : integer; ++ jdact : double; ++ CurrentRow: integer; ++ param : Tstringlist; ++ StartedByVarobs : boolean; ++ NoChart : boolean; ++ CielHnd : Thandle; ++ ++implementation ++ ++end. ++ +diff -ur skychart_3.2/varobs/SettingUnit.lfm skychart_3.2_up/varobs/SettingUnit.lfm +--- skychart_3.2/varobs/SettingUnit.lfm 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/SettingUnit.lfm 2011-03-09 15:18:23.218263997 +0100 +@@ -1,803 +1,803 @@ +-object OptForm: TOptForm +- Left = 990 +- Height = 366 +- Top = 38 +- Width = 447 +- HorzScrollBar.Page = 430 +- VertScrollBar.Page = 313 +- ActiveControl = PageControl1 +- Caption = 'Options' +- ClientHeight = 366 +- ClientWidth = 447 +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- OnCreate = FormCreate +- OnShow = FormShow +- LCLVersion = '0.9.29' +- object BitBtn1: TBitBtn +- Left = 176 +- Height = 25 +- Top = 320 +- Width = 75 +- Caption = 'OK' +- Default = True +- ModalResult = 1 +- NumGlyphs = 2 +- TabOrder = 0 +- end +- object PageControl1: TPageControl +- Left = 0 +- Height = 312 +- Top = 0 +- Width = 432 +- ActivePage = TabSheet1 +- TabIndex = 0 +- TabOrder = 1 +- object TabSheet1: TTabSheet +- Caption = 'Observation entry' +- ClientHeight = 284 +- ClientWidth = 428 +- object GroupBox5: TGroupBox +- Left = 20 +- Height = 232 +- Top = 10 +- Width = 385 +- Caption = 'Observation Entry' +- ClientHeight = 212 +- ClientWidth = 381 +- TabOrder = 0 +- object Label16: TLabel +- Left = 6 +- Height = 42 +- Top = 112 +- Width = 46 +- Caption = 'Observer'#13#10'Initials :' +- ParentColor = False +- end +- object Label8: TLabel +- Left = 6 +- Height = 19 +- Top = 152 +- Width = 56 +- Caption = 'Time Zone' +- ParentColor = False +- end +- object Label17: TLabel +- Left = 6 +- Height = 42 +- Top = 168 +- Width = 77 +- Caption = 'negative West '#13#10'of Greenwich' +- ParentColor = False +- end +- object Panel2: TPanel +- Left = 150 +- Height = 180 +- Top = 6 +- Width = 227 +- ClientHeight = 180 +- ClientWidth = 227 +- TabOrder = 2 +- object Label22: TLabel +- Left = 16 +- Height = 19 +- Top = 82 +- Width = 135 +- Caption = 'PCObs program location :' +- ParentColor = False +- end +- object Label23: TLabel +- Left = 8 +- Height = 65 +- Top = 18 +- Width = 214 +- Caption = 'Launch AAVSO PCObs for data entry'#13#10'This option is recommended if you want '#13#10'to submit your data to the AAVSO' +- ParentColor = False +- end +- object FileNameEdit8: TFileNameEdit +- Left = 16 +- Height = 26 +- Top = 109 +- Width = 169 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- end +- object Panel1: TPanel +- Left = 150 +- Height = 178 +- Top = 8 +- Width = 227 +- ClientHeight = 178 +- ClientWidth = 227 +- TabOrder = 1 +- object Label15: TLabel +- Left = 6 +- Height = 19 +- Top = 58 +- Width = 87 +- Caption = 'Observation file :' +- ParentColor = False +- end +- object RadioGroup7: TRadioGroup +- Left = 6 +- Height = 76 +- Top = 96 +- Width = 204 +- AutoFill = True +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 72 +- ClientWidth = 200 +- ItemIndex = 1 +- Items.Strings = ( +- 'Append data to unique file' +- 'Add date/time suffix to file' +- ) +- TabOrder = 2 +- end +- object RadioGroup4: TRadioGroup +- Left = 6 +- Height = 56 +- Top = 0 +- Width = 204 +- AutoFill = True +- Caption = 'Format' +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 2 +- ClientHeight = 36 +- ClientWidth = 200 +- Columns = 2 +- ItemIndex = 0 +- Items.Strings = ( +- 'AAVSO Visual' +- 'VSNET' +- ) +- TabOrder = 0 +- end +- object FileNameEdit3: TFileNameEdit +- Left = 6 +- Height = 26 +- Top = 73 +- Width = 176 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 1 +- end +- end +- object RadioGroup5: TRadioGroup +- Left = 8 +- Height = 99 +- Top = 6 +- Width = 134 +- AutoFill = True +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 95 +- ClientWidth = 130 +- ItemIndex = 0 +- Items.Strings = ( +- 'Internal facility' +- 'AAVSO PCObs' +- 'AAVSO WebObs' +- ) +- OnClick = RadioGroup5Click +- TabOrder = 0 +- end +- object Edit4: TEdit +- Left = 89 +- Height = 26 +- Top = 112 +- Width = 53 +- TabOrder = 3 +- end +- object tz: TSpinEdit +- Left = 90 +- Height = 26 +- Top = 152 +- Width = 52 +- MaxValue = 12 +- MinValue = -12 +- TabOrder = 4 +- end +- end +- end +- object TabSheet2: TTabSheet +- Caption = 'Plot observation' +- ClientHeight = 284 +- ClientWidth = 428 +- object GroupBox2: TGroupBox +- Left = 150 +- Height = 208 +- Top = 10 +- Width = 249 +- Caption = 'VSNET format' +- ClientHeight = 188 +- ClientWidth = 245 +- TabOrder = 0 +- Visible = False +- object Label9: TLabel +- Left = 8 +- Height = 117 +- Top = 20 +- Width = 225 +- AutoSize = False +- Caption = 'Free format. Fields are separated by at least one blank space and appear in this order'#13#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt'#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'Comment' +- ParentColor = False +- WordWrap = True +- end +- object Label10: TLabel +- Left = 8 +- Height = 19 +- Top = 144 +- Width = 51 +- Caption = 'File name' +- ParentColor = False +- end +- object FileNameEdit2: TFileNameEdit +- Left = 8 +- Height = 26 +- Top = 161 +- Width = 208 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- end +- object GroupBox3: TGroupBox +- Left = 150 +- Height = 209 +- Top = 11 +- Width = 249 +- Caption = 'AFOEV base folder' +- ClientHeight = 189 +- ClientWidth = 245 +- TabOrder = 1 +- Visible = False +- object Label4: TLabel +- Left = 8 +- Height = 101 +- Top = 28 +- Width = 225 +- AutoSize = False +- Caption = 'Indicate the path to the constellation folder.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' r'#13#10' s' +- ParentColor = False +- WordWrap = True +- end +- object DirectoryEdit3: TDirectoryEdit +- Left = 8 +- Height = 26 +- Top = 159 +- Width = 204 +- ShowHidden = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- end +- object GroupBox4: TGroupBox +- Left = 150 +- Height = 207 +- Top = 11 +- Width = 249 +- Caption = 'Other format fields description' +- ClientHeight = 187 +- ClientWidth = 245 +- TabOrder = 2 +- Visible = False +- object Label1: TLabel +- Left = 8 +- Height = 19 +- Top = 46 +- Width = 54 +- Caption = 'Star name' +- ParentColor = False +- end +- object Label2: TLabel +- Left = 8 +- Height = 19 +- Top = 68 +- Width = 25 +- Caption = 'Time' +- ParentColor = False +- end +- object Label3: TLabel +- Left = 8 +- Height = 19 +- Top = 90 +- Width = 51 +- Caption = 'Magnitude' +- ParentColor = False +- end +- object Label11: TLabel +- Left = 8 +- Height = 19 +- Top = 143 +- Width = 51 +- Caption = 'File name' +- ParentColor = False +- end +- object Label12: TLabel +- Left = 144 +- Height = 19 +- Top = 46 +- Width = 44 +- Caption = 'Field No' +- ParentColor = False +- end +- object Label13: TLabel +- Left = 144 +- Height = 19 +- Top = 68 +- Width = 44 +- Caption = 'Field No' +- ParentColor = False +- end +- object Label14: TLabel +- Left = 144 +- Height = 19 +- Top = 90 +- Width = 44 +- Caption = 'Field No' +- ParentColor = False +- end +- object RadioGroup2: TRadioGroup +- Left = 8 +- Height = 30 +- Top = 106 +- Width = 225 +- AutoFill = True +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 2 +- ClientHeight = 26 +- ClientWidth = 221 +- Columns = 2 +- ItemIndex = 1 +- Items.Strings = ( +- 'Julian date' +- 'Decimal UT' +- ) +- TabOrder = 0 +- end +- object Edit1: TEdit +- Left = 72 +- Height = 26 +- Top = 42 +- Width = 65 +- TabOrder = 1 +- Text = '1' +- end +- object Edit2: TEdit +- Left = 72 +- Height = 26 +- Top = 64 +- Width = 65 +- TabOrder = 2 +- Text = '2' +- end +- object Edit3: TEdit +- Left = 72 +- Height = 26 +- Top = 86 +- Width = 65 +- TabOrder = 3 +- Text = '3' +- end +- object RadioGroup3: TRadioGroup +- Left = 12 +- Height = 37 +- Top = -1 +- Width = 225 +- AutoFill = True +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 2 +- ClientHeight = 33 +- ClientWidth = 221 +- Columns = 2 +- ItemIndex = 0 +- Items.Strings = ( +- 'Variable format' +- 'Fixed format' +- ) +- OnClick = RadioGroup3Click +- TabOrder = 4 +- end +- object FileNameEdit4: TFileNameEdit +- Left = 8 +- Height = 26 +- Top = 161 +- Width = 204 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 5 +- end +- end +- object GroupBox1: TGroupBox +- Left = 150 +- Height = 209 +- Top = 10 +- Width = 249 +- Caption = 'AAVSO SUM format' +- ClientHeight = 189 +- ClientWidth = 245 +- TabOrder = 3 +- Visible = False +- object Label19: TLabel +- Left = 8 +- Height = 19 +- Top = 144 +- Width = 51 +- Caption = 'File name' +- ParentColor = False +- end +- object Label18: TLabel +- Left = 8 +- Height = 117 +- Top = 20 +- Width = 225 +- AutoSize = False +- Caption = 'Col 1-8 Designation from Validation File'#13#10'Col 9-18 Star name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magnitude'#13#10' < in column 31 for fainter-than'#13#10' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10'Col 63-67 Observer Initials' +- ParentColor = False +- end +- object FileNameEdit1: TFileNameEdit +- Left = 8 +- Height = 26 +- Top = 161 +- Width = 204 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- end +- object GroupBox0: TGroupBox +- Left = 150 +- Height = 209 +- Top = 11 +- Width = 249 +- Caption = 'AAVSO Visual' +- ClientHeight = 189 +- ClientWidth = 245 +- TabOrder = 5 +- Visible = False +- object Label20: TLabel +- Left = 8 +- Height = 117 +- Top = 12 +- Width = 225 +- AutoSize = False +- Caption = 'AAVSO Visual format'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' +- ParentColor = False +- end +- object Label21: TLabel +- Left = 8 +- Height = 19 +- Top = 144 +- Width = 51 +- Caption = 'File name' +- ParentColor = False +- end +- object FileNameEdit0: TFileNameEdit +- Left = 20 +- Height = 26 +- Top = 160 +- Width = 184 +- DialogOptions = [] +- FilterIndex = 0 +- HideDirectories = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- end +- object RadioGroup1: TRadioGroup +- Left = 14 +- Height = 209 +- Top = 10 +- Width = 137 +- AutoFill = True +- Caption = 'Light curve data' +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 189 +- ClientWidth = 133 +- ItemIndex = 0 +- Items.Strings = ( +- 'AAVSO Visual' +- 'Old AAVSO SUM' +- 'VSNET' +- 'AFOEV' +- 'Other format' +- ) +- OnClick = RadioGroup1Click +- TabOrder = 4 +- end +- end +- object TabSheet3: TTabSheet +- Caption = 'Plot Online Data' +- ClientHeight = 284 +- ClientWidth = 428 +- object RadioGroup6: TRadioGroup +- Left = 20 +- Height = 128 +- Top = 18 +- Width = 289 +- AutoFill = True +- Caption = 'Plot additional data from :' +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 1 +- ClientHeight = 108 +- ClientWidth = 285 +- ItemIndex = 0 +- Items.Strings = ( +- 'AAVSO Quick Look' +- 'AFOEV FTP Archive' +- ) +- TabOrder = 0 +- end +- end +- object TabSheet4: TTabSheet +- Caption = 'Charts' +- ClientHeight = 284 +- ClientWidth = 428 +- object GroupBox6: TGroupBox +- Left = 12 +- Height = 112 +- Top = 122 +- Width = 385 +- Caption = 'Cartes du Ciel / Sky Charts interface' +- ClientHeight = 92 +- ClientWidth = 381 +- TabOrder = 0 +- object Label5: TLabel +- Left = 14 +- Height = 19 +- Top = 72 +- Width = 353 +- Caption = 'Be sure the GCVS catalog is installed and activated whitin Skychart!' +- ParentColor = False +- end +- object Label6: TLabel +- Left = 174 +- Height = 19 +- Top = 37 +- Width = 40 +- Caption = 'degrees' +- ParentColor = False +- end +- object CheckBox1: TCheckBox +- Left = 14 +- Height = 22 +- Top = 8 +- Width = 216 +- Caption = 'Switch chart to equatorial coordinates' +- TabOrder = 0 +- end +- object CheckBox2: TCheckBox +- Left = 14 +- Height = 22 +- Top = 35 +- Width = 86 +- Caption = 'Set zoom to' +- TabOrder = 1 +- end +- object SpinEdit1: TSpinEdit +- Left = 110 +- Height = 26 +- Top = 34 +- Width = 50 +- MaxValue = 180 +- MinValue = 1 +- TabOrder = 2 +- Value = 15 +- end +- end +- object GroupBox9: TGroupBox +- Left = 12 +- Height = 106 +- Top = 10 +- Width = 385 +- Caption = 'AAVSO Chart' +- ClientHeight = 86 +- ClientWidth = 381 +- TabOrder = 1 +- object DirectoryEdit2: TDirectoryEdit +- Left = 12 +- Height = 26 +- Top = 56 +- Width = 328 +- ShowHidden = False +- ButtonWidth = 23 +- NumGlyphs = 1 +- MaxLength = 0 +- TabOrder = 0 +- end +- object RadioGroup8: TRadioGroup +- Left = 12 +- Height = 48 +- Top = 0 +- Width = 348 +- AutoFill = True +- ChildSizing.LeftRightSpacing = 6 +- ChildSizing.TopBottomSpacing = 6 +- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize +- ChildSizing.EnlargeVertical = crsHomogenousChildResize +- ChildSizing.ShrinkHorizontal = crsScaleChilds +- ChildSizing.ShrinkVertical = crsScaleChilds +- ChildSizing.Layout = cclLeftToRightThenTopToBottom +- ChildSizing.ControlsPerLine = 2 +- ClientHeight = 44 +- ClientWidth = 344 +- Columns = 2 +- Items.Strings = ( +- 'Online charts' +- 'Chart CDrom' +- ) +- OnClick = RadioGroup8Click +- TabOrder = 1 +- end +- end +- end +- object TabSheet5: TTabSheet +- Caption = 'URL' +- ClientHeight = 284 +- ClientWidth = 428 +- object Label7: TLabel +- Left = 12 +- Height = 19 +- Top = 250 +- Width = 271 +- Caption = 'Do NOT change any of this without a good reason!' +- ParentColor = False +- end +- object qlurl: TLabeledEdit +- Left = 12 +- Height = 26 +- Top = 26 +- Width = 392 +- EditLabel.AnchorSideLeft.Control = qlurl +- EditLabel.AnchorSideBottom.Control = qlurl +- EditLabel.Left = 12 +- EditLabel.Height = 19 +- EditLabel.Top = 4 +- EditLabel.Width = 100 +- EditLabel.Caption = 'AAVSO Quick Look' +- EditLabel.ParentColor = False +- TabOrder = 0 +- end +- object afoevurl: TLabeledEdit +- Left = 12 +- Height = 26 +- Top = 74 +- Width = 392 +- EditLabel.AnchorSideLeft.Control = afoevurl +- EditLabel.AnchorSideBottom.Control = afoevurl +- EditLabel.Left = 12 +- EditLabel.Height = 19 +- EditLabel.Top = 52 +- EditLabel.Width = 101 +- EditLabel.Caption = 'AFOEF FTP server' +- EditLabel.ParentColor = False +- TabOrder = 1 +- end +- object charturl: TLabeledEdit +- Left = 12 +- Height = 26 +- Top = 126 +- Width = 392 +- EditLabel.AnchorSideLeft.Control = charturl +- EditLabel.AnchorSideBottom.Control = charturl +- EditLabel.Left = 12 +- EditLabel.Height = 19 +- EditLabel.Top = 104 +- EditLabel.Width = 75 +- EditLabel.Caption = 'AAVSO Charts' +- EditLabel.ParentColor = False +- TabOrder = 2 +- end +- object webobsurl: TLabeledEdit +- Left = 12 +- Height = 26 +- Top = 176 +- Width = 392 +- EditLabel.AnchorSideLeft.Control = webobsurl +- EditLabel.AnchorSideBottom.Control = webobsurl +- EditLabel.Left = 12 +- EditLabel.Height = 19 +- EditLabel.Top = 154 +- EditLabel.Width = 85 +- EditLabel.Caption = 'AAVSO WebObs' +- EditLabel.ParentColor = False +- TabOrder = 3 +- end +- object Button1: TButton +- Left = 300 +- Height = 25 +- Top = 246 +- Width = 107 +- Caption = 'Reset to default' +- OnClick = Button1Click +- TabOrder = 4 +- end +- object Label24: TLabel +- Left = 12 +- Height = 19 +- Top = 217 +- Width = 127 +- Caption = 'Command to open a file' +- ParentColor = False +- end +- object opencmd: TEdit +- Left = 158 +- Height = 26 +- Top = 214 +- Width = 246 +- TabOrder = 5 +- end +- end +- end ++object OptForm: TOptForm ++ Left = 990 ++ Height = 366 ++ Top = 38 ++ Width = 447 ++ HorzScrollBar.Page = 430 ++ VertScrollBar.Page = 313 ++ ActiveControl = PageControl1 ++ Caption = 'Options' ++ ClientHeight = 366 ++ ClientWidth = 447 ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ OnCreate = FormCreate ++ OnShow = FormShow ++ LCLVersion = '0.9.29' ++ object BitBtn1: TBitBtn ++ Left = 176 ++ Height = 25 ++ Top = 320 ++ Width = 75 ++ Caption = 'OK' ++ Default = True ++ ModalResult = 1 ++ NumGlyphs = 2 ++ TabOrder = 0 ++ end ++ object PageControl1: TPageControl ++ Left = 0 ++ Height = 312 ++ Top = 0 ++ Width = 432 ++ ActivePage = TabSheet1 ++ TabIndex = 0 ++ TabOrder = 1 ++ object TabSheet1: TTabSheet ++ Caption = 'Observation entry' ++ ClientHeight = 284 ++ ClientWidth = 428 ++ object GroupBox5: TGroupBox ++ Left = 20 ++ Height = 232 ++ Top = 10 ++ Width = 385 ++ Caption = 'Observation Entry' ++ ClientHeight = 212 ++ ClientWidth = 381 ++ TabOrder = 0 ++ object Label16: TLabel ++ Left = 6 ++ Height = 42 ++ Top = 112 ++ Width = 46 ++ Caption = 'Observer'#13#10'Initials :' ++ ParentColor = False ++ end ++ object Label8: TLabel ++ Left = 6 ++ Height = 19 ++ Top = 152 ++ Width = 56 ++ Caption = 'Time Zone' ++ ParentColor = False ++ end ++ object Label17: TLabel ++ Left = 6 ++ Height = 42 ++ Top = 168 ++ Width = 77 ++ Caption = 'negative West '#13#10'of Greenwich' ++ ParentColor = False ++ end ++ object Panel2: TPanel ++ Left = 150 ++ Height = 180 ++ Top = 6 ++ Width = 227 ++ ClientHeight = 180 ++ ClientWidth = 227 ++ TabOrder = 2 ++ object Label22: TLabel ++ Left = 16 ++ Height = 19 ++ Top = 82 ++ Width = 135 ++ Caption = 'PCObs program location :' ++ ParentColor = False ++ end ++ object Label23: TLabel ++ Left = 8 ++ Height = 65 ++ Top = 18 ++ Width = 214 ++ Caption = 'Launch AAVSO PCObs for data entry'#13#10'This option is recommended if you want '#13#10'to submit your data to the AAVSO' ++ ParentColor = False ++ end ++ object FileNameEdit8: TFileNameEdit ++ Left = 16 ++ Height = 26 ++ Top = 109 ++ Width = 169 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ end ++ object Panel1: TPanel ++ Left = 150 ++ Height = 178 ++ Top = 8 ++ Width = 227 ++ ClientHeight = 178 ++ ClientWidth = 227 ++ TabOrder = 1 ++ object Label15: TLabel ++ Left = 6 ++ Height = 19 ++ Top = 58 ++ Width = 87 ++ Caption = 'Observation file :' ++ ParentColor = False ++ end ++ object RadioGroup7: TRadioGroup ++ Left = 6 ++ Height = 76 ++ Top = 96 ++ Width = 204 ++ AutoFill = True ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 72 ++ ClientWidth = 200 ++ ItemIndex = 1 ++ Items.Strings = ( ++ 'Append data to unique file' ++ 'Add date/time suffix to file' ++ ) ++ TabOrder = 2 ++ end ++ object RadioGroup4: TRadioGroup ++ Left = 6 ++ Height = 56 ++ Top = 0 ++ Width = 204 ++ AutoFill = True ++ Caption = 'Format' ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 2 ++ ClientHeight = 36 ++ ClientWidth = 200 ++ Columns = 2 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'AAVSO Visual' ++ 'VSNET' ++ ) ++ TabOrder = 0 ++ end ++ object FileNameEdit3: TFileNameEdit ++ Left = 6 ++ Height = 26 ++ Top = 73 ++ Width = 176 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 1 ++ end ++ end ++ object RadioGroup5: TRadioGroup ++ Left = 8 ++ Height = 99 ++ Top = 6 ++ Width = 134 ++ AutoFill = True ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 95 ++ ClientWidth = 130 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'Internal facility' ++ 'AAVSO PCObs' ++ 'AAVSO WebObs' ++ ) ++ OnClick = RadioGroup5Click ++ TabOrder = 0 ++ end ++ object Edit4: TEdit ++ Left = 89 ++ Height = 26 ++ Top = 112 ++ Width = 53 ++ TabOrder = 3 ++ end ++ object tz: TSpinEdit ++ Left = 90 ++ Height = 26 ++ Top = 152 ++ Width = 52 ++ MaxValue = 12 ++ MinValue = -12 ++ TabOrder = 4 ++ end ++ end ++ end ++ object TabSheet2: TTabSheet ++ Caption = 'Plot observation' ++ ClientHeight = 284 ++ ClientWidth = 428 ++ object GroupBox2: TGroupBox ++ Left = 150 ++ Height = 208 ++ Top = 10 ++ Width = 249 ++ Caption = 'VSNET format' ++ ClientHeight = 188 ++ ClientWidth = 245 ++ TabOrder = 0 ++ Visible = False ++ object Label9: TLabel ++ Left = 8 ++ Height = 117 ++ Top = 20 ++ Width = 225 ++ AutoSize = False ++ Caption = 'Free format. Fields are separated by at least one blank space and appear in this order'#13#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt'#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'Comment' ++ ParentColor = False ++ WordWrap = True ++ end ++ object Label10: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 144 ++ Width = 51 ++ Caption = 'File name' ++ ParentColor = False ++ end ++ object FileNameEdit2: TFileNameEdit ++ Left = 8 ++ Height = 26 ++ Top = 161 ++ Width = 208 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ end ++ object GroupBox3: TGroupBox ++ Left = 150 ++ Height = 209 ++ Top = 11 ++ Width = 249 ++ Caption = 'AFOEV base folder' ++ ClientHeight = 189 ++ ClientWidth = 245 ++ TabOrder = 1 ++ Visible = False ++ object Label4: TLabel ++ Left = 8 ++ Height = 101 ++ Top = 28 ++ Width = 225 ++ AutoSize = False ++ Caption = 'Indicate the path to the constellation folder.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' r'#13#10' s' ++ ParentColor = False ++ WordWrap = True ++ end ++ object DirectoryEdit3: TDirectoryEdit ++ Left = 8 ++ Height = 26 ++ Top = 159 ++ Width = 204 ++ ShowHidden = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ end ++ object GroupBox4: TGroupBox ++ Left = 150 ++ Height = 207 ++ Top = 11 ++ Width = 249 ++ Caption = 'Other format fields description' ++ ClientHeight = 187 ++ ClientWidth = 245 ++ TabOrder = 2 ++ Visible = False ++ object Label1: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 46 ++ Width = 54 ++ Caption = 'Star name' ++ ParentColor = False ++ end ++ object Label2: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 68 ++ Width = 25 ++ Caption = 'Time' ++ ParentColor = False ++ end ++ object Label3: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 90 ++ Width = 51 ++ Caption = 'Magnitude' ++ ParentColor = False ++ end ++ object Label11: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 143 ++ Width = 51 ++ Caption = 'File name' ++ ParentColor = False ++ end ++ object Label12: TLabel ++ Left = 144 ++ Height = 19 ++ Top = 46 ++ Width = 44 ++ Caption = 'Field No' ++ ParentColor = False ++ end ++ object Label13: TLabel ++ Left = 144 ++ Height = 19 ++ Top = 68 ++ Width = 44 ++ Caption = 'Field No' ++ ParentColor = False ++ end ++ object Label14: TLabel ++ Left = 144 ++ Height = 19 ++ Top = 90 ++ Width = 44 ++ Caption = 'Field No' ++ ParentColor = False ++ end ++ object RadioGroup2: TRadioGroup ++ Left = 8 ++ Height = 30 ++ Top = 106 ++ Width = 225 ++ AutoFill = True ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 2 ++ ClientHeight = 26 ++ ClientWidth = 221 ++ Columns = 2 ++ ItemIndex = 1 ++ Items.Strings = ( ++ 'Julian date' ++ 'Decimal UT' ++ ) ++ TabOrder = 0 ++ end ++ object Edit1: TEdit ++ Left = 72 ++ Height = 26 ++ Top = 42 ++ Width = 65 ++ TabOrder = 1 ++ Text = '1' ++ end ++ object Edit2: TEdit ++ Left = 72 ++ Height = 26 ++ Top = 64 ++ Width = 65 ++ TabOrder = 2 ++ Text = '2' ++ end ++ object Edit3: TEdit ++ Left = 72 ++ Height = 26 ++ Top = 86 ++ Width = 65 ++ TabOrder = 3 ++ Text = '3' ++ end ++ object RadioGroup3: TRadioGroup ++ Left = 12 ++ Height = 37 ++ Top = -1 ++ Width = 225 ++ AutoFill = True ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 2 ++ ClientHeight = 33 ++ ClientWidth = 221 ++ Columns = 2 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'Variable format' ++ 'Fixed format' ++ ) ++ OnClick = RadioGroup3Click ++ TabOrder = 4 ++ end ++ object FileNameEdit4: TFileNameEdit ++ Left = 8 ++ Height = 26 ++ Top = 161 ++ Width = 204 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 5 ++ end ++ end ++ object GroupBox1: TGroupBox ++ Left = 150 ++ Height = 209 ++ Top = 10 ++ Width = 249 ++ Caption = 'AAVSO SUM format' ++ ClientHeight = 189 ++ ClientWidth = 245 ++ TabOrder = 3 ++ Visible = False ++ object Label19: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 144 ++ Width = 51 ++ Caption = 'File name' ++ ParentColor = False ++ end ++ object Label18: TLabel ++ Left = 8 ++ Height = 117 ++ Top = 20 ++ Width = 225 ++ AutoSize = False ++ Caption = 'Col 1-8 Designation from Validation File'#13#10'Col 9-18 Star name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magnitude'#13#10' < in column 31 for fainter-than'#13#10' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10'Col 63-67 Observer Initials' ++ ParentColor = False ++ end ++ object FileNameEdit1: TFileNameEdit ++ Left = 8 ++ Height = 26 ++ Top = 161 ++ Width = 204 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ end ++ object GroupBox0: TGroupBox ++ Left = 150 ++ Height = 209 ++ Top = 11 ++ Width = 249 ++ Caption = 'AAVSO Visual' ++ ClientHeight = 189 ++ ClientWidth = 245 ++ TabOrder = 5 ++ Visible = False ++ object Label20: TLabel ++ Left = 8 ++ Height = 117 ++ Top = 12 ++ Width = 225 ++ AutoSize = False ++ Caption = 'AAVSO Visual format'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' ++ ParentColor = False ++ end ++ object Label21: TLabel ++ Left = 8 ++ Height = 19 ++ Top = 144 ++ Width = 51 ++ Caption = 'File name' ++ ParentColor = False ++ end ++ object FileNameEdit0: TFileNameEdit ++ Left = 20 ++ Height = 26 ++ Top = 160 ++ Width = 184 ++ DialogOptions = [] ++ FilterIndex = 0 ++ HideDirectories = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ end ++ object RadioGroup1: TRadioGroup ++ Left = 14 ++ Height = 209 ++ Top = 10 ++ Width = 137 ++ AutoFill = True ++ Caption = 'Light curve data' ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 189 ++ ClientWidth = 133 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'AAVSO Visual' ++ 'Old AAVSO SUM' ++ 'VSNET' ++ 'AFOEV' ++ 'Other format' ++ ) ++ OnClick = RadioGroup1Click ++ TabOrder = 4 ++ end ++ end ++ object TabSheet3: TTabSheet ++ Caption = 'Plot Online Data' ++ ClientHeight = 284 ++ ClientWidth = 428 ++ object RadioGroup6: TRadioGroup ++ Left = 20 ++ Height = 128 ++ Top = 18 ++ Width = 289 ++ AutoFill = True ++ Caption = 'Plot additional data from :' ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 1 ++ ClientHeight = 108 ++ ClientWidth = 285 ++ ItemIndex = 0 ++ Items.Strings = ( ++ 'AAVSO Quick Look' ++ 'AFOEV FTP Archive' ++ ) ++ TabOrder = 0 ++ end ++ end ++ object TabSheet4: TTabSheet ++ Caption = 'Charts' ++ ClientHeight = 284 ++ ClientWidth = 428 ++ object GroupBox6: TGroupBox ++ Left = 12 ++ Height = 112 ++ Top = 122 ++ Width = 385 ++ Caption = 'Cartes du Ciel / Sky Charts interface' ++ ClientHeight = 92 ++ ClientWidth = 381 ++ TabOrder = 0 ++ object Label5: TLabel ++ Left = 14 ++ Height = 19 ++ Top = 72 ++ Width = 353 ++ Caption = 'Be sure the GCVS catalog is installed and activated whitin Skychart!' ++ ParentColor = False ++ end ++ object Label6: TLabel ++ Left = 174 ++ Height = 19 ++ Top = 37 ++ Width = 40 ++ Caption = 'degrees' ++ ParentColor = False ++ end ++ object CheckBox1: TCheckBox ++ Left = 14 ++ Height = 22 ++ Top = 8 ++ Width = 216 ++ Caption = 'Switch chart to equatorial coordinates' ++ TabOrder = 0 ++ end ++ object CheckBox2: TCheckBox ++ Left = 14 ++ Height = 22 ++ Top = 35 ++ Width = 86 ++ Caption = 'Set zoom to' ++ TabOrder = 1 ++ end ++ object SpinEdit1: TSpinEdit ++ Left = 110 ++ Height = 26 ++ Top = 34 ++ Width = 50 ++ MaxValue = 180 ++ MinValue = 1 ++ TabOrder = 2 ++ Value = 15 ++ end ++ end ++ object GroupBox9: TGroupBox ++ Left = 12 ++ Height = 106 ++ Top = 10 ++ Width = 385 ++ Caption = 'AAVSO Chart' ++ ClientHeight = 86 ++ ClientWidth = 381 ++ TabOrder = 1 ++ object DirectoryEdit2: TDirectoryEdit ++ Left = 12 ++ Height = 26 ++ Top = 56 ++ Width = 328 ++ ShowHidden = False ++ ButtonWidth = 23 ++ NumGlyphs = 1 ++ MaxLength = 0 ++ TabOrder = 0 ++ end ++ object RadioGroup8: TRadioGroup ++ Left = 12 ++ Height = 48 ++ Top = 0 ++ Width = 348 ++ AutoFill = True ++ ChildSizing.LeftRightSpacing = 6 ++ ChildSizing.TopBottomSpacing = 6 ++ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize ++ ChildSizing.EnlargeVertical = crsHomogenousChildResize ++ ChildSizing.ShrinkHorizontal = crsScaleChilds ++ ChildSizing.ShrinkVertical = crsScaleChilds ++ ChildSizing.Layout = cclLeftToRightThenTopToBottom ++ ChildSizing.ControlsPerLine = 2 ++ ClientHeight = 44 ++ ClientWidth = 344 ++ Columns = 2 ++ Items.Strings = ( ++ 'Online charts' ++ 'Chart CDrom' ++ ) ++ OnClick = RadioGroup8Click ++ TabOrder = 1 ++ end ++ end ++ end ++ object TabSheet5: TTabSheet ++ Caption = 'URL' ++ ClientHeight = 284 ++ ClientWidth = 428 ++ object Label7: TLabel ++ Left = 12 ++ Height = 19 ++ Top = 250 ++ Width = 271 ++ Caption = 'Do NOT change any of this without a good reason!' ++ ParentColor = False ++ end ++ object qlurl: TLabeledEdit ++ Left = 12 ++ Height = 26 ++ Top = 26 ++ Width = 392 ++ EditLabel.AnchorSideLeft.Control = qlurl ++ EditLabel.AnchorSideBottom.Control = qlurl ++ EditLabel.Left = 12 ++ EditLabel.Height = 19 ++ EditLabel.Top = 4 ++ EditLabel.Width = 100 ++ EditLabel.Caption = 'AAVSO Quick Look' ++ EditLabel.ParentColor = False ++ TabOrder = 0 ++ end ++ object afoevurl: TLabeledEdit ++ Left = 12 ++ Height = 26 ++ Top = 74 ++ Width = 392 ++ EditLabel.AnchorSideLeft.Control = afoevurl ++ EditLabel.AnchorSideBottom.Control = afoevurl ++ EditLabel.Left = 12 ++ EditLabel.Height = 19 ++ EditLabel.Top = 52 ++ EditLabel.Width = 101 ++ EditLabel.Caption = 'AFOEF FTP server' ++ EditLabel.ParentColor = False ++ TabOrder = 1 ++ end ++ object charturl: TLabeledEdit ++ Left = 12 ++ Height = 26 ++ Top = 126 ++ Width = 392 ++ EditLabel.AnchorSideLeft.Control = charturl ++ EditLabel.AnchorSideBottom.Control = charturl ++ EditLabel.Left = 12 ++ EditLabel.Height = 19 ++ EditLabel.Top = 104 ++ EditLabel.Width = 75 ++ EditLabel.Caption = 'AAVSO Charts' ++ EditLabel.ParentColor = False ++ TabOrder = 2 ++ end ++ object webobsurl: TLabeledEdit ++ Left = 12 ++ Height = 26 ++ Top = 176 ++ Width = 392 ++ EditLabel.AnchorSideLeft.Control = webobsurl ++ EditLabel.AnchorSideBottom.Control = webobsurl ++ EditLabel.Left = 12 ++ EditLabel.Height = 19 ++ EditLabel.Top = 154 ++ EditLabel.Width = 85 ++ EditLabel.Caption = 'AAVSO WebObs' ++ EditLabel.ParentColor = False ++ TabOrder = 3 ++ end ++ object Button1: TButton ++ Left = 300 ++ Height = 25 ++ Top = 246 ++ Width = 107 ++ Caption = 'Reset to default' ++ OnClick = Button1Click ++ TabOrder = 4 ++ end ++ object Label24: TLabel ++ Left = 12 ++ Height = 19 ++ Top = 217 ++ Width = 127 ++ Caption = 'Command to open a file' ++ ParentColor = False ++ end ++ object opencmd: TEdit ++ Left = 158 ++ Height = 26 ++ Top = 214 ++ Width = 246 ++ TabOrder = 5 ++ end ++ end ++ end + end +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/SettingUnit.lrs skychart_3.2_up/varobs/SettingUnit.lrs +--- skychart_3.2/varobs/SettingUnit.lrs 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/SettingUnit.lrs 2011-03-09 15:18:23.218263997 +0100 +@@ -1,235 +1,235 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('TOptForm','FORMDATA',[ +- 'TPF0'#8'TOptForm'#7'OptForm'#4'Left'#3#222#3#6'Height'#3'n'#1#3'Top'#2'&'#5 +- +'Width'#3#191#1#18'HorzScrollBar.Page'#3#174#1#18'VertScrollBar.Page'#3'9'#1 +- +#13'ActiveControl'#7#12'PageControl1'#7'Caption'#6#7'Options'#12'ClientHeigh' +- +'t'#3'n'#1#11'ClientWidth'#3#191#1#11'Font.Height'#2#245#9'Font.Name'#6#13'M' +- +'S Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVe' +- +'rsion'#6#6'0.9.29'#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#176#0#6'Height'#2#25#3 +- +'Top'#3'@'#1#5'Width'#2'K'#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2 +- +#1#9'NumGlyphs'#2#2#8'TabOrder'#2#0#0#0#12'TPageControl'#12'PageControl1'#4 +- +'Left'#2#0#6'Height'#3'8'#1#3'Top'#2#0#5'Width'#3#176#1#10'ActivePage'#7#9'T' +- +'abSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Cap' +- +'tion'#6#17'Observation entry'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172 +- +#1#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#20#6'Height'#3#232#0#3'Top'#2#10#5 +- +'Width'#3#129#1#7'Caption'#6#17'Observation Entry'#12'ClientHeight'#3#212#0 +- +#11'ClientWidth'#3'}'#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label16'#4'Left'#2#6#6 +- +'Height'#2'*'#3'Top'#2'p'#5'Width'#2'.'#7'Caption'#6#20'Observer'#13#10'Init' +- +'ials :'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2#6#6'Height'#2#19 +- +#3'Top'#3#152#0#5'Width'#2'8'#7'Caption'#6#9'Time Zone'#11'ParentColor'#8#0#0 +- +#6'TLabel'#7'Label17'#4'Left'#2#6#6'Height'#2'*'#3'Top'#3#168#0#5'Width'#2'M' +- +#7'Caption'#6#28'negative West '#13#10'of Greenwich'#11'ParentColor'#8#0#0#6 +- +'TPanel'#6'Panel2'#4'Left'#3#150#0#6'Height'#3#180#0#3'Top'#2#6#5'Width'#3 +- +#227#0#12'ClientHeight'#3#180#0#11'ClientWidth'#3#227#0#8'TabOrder'#2#2#0#6 +- +'TLabel'#7'Label22'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'R'#5'Width'#3#135#0 +- +#7'Caption'#6#24'PCObs program location :'#11'ParentColor'#8#0#0#6'TLabel'#7 +- +'Label23'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#18#5'Width'#3#214#0#7'Caption' +- +#6'lLaunch AAVSO PCObs for data entry'#13#10'This option is recommended if y' +- +'ou want '#13#10'to submit your data to the AAVSO'#11'ParentColor'#8#0#0#13 +- +'TFileNameEdit'#13'FileNameEdit8'#4'Left'#2#16#6'Height'#2#26#3'Top'#2'm'#5 +- +'Width'#3#169#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' +- +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 +- +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#3#150#0#6'Height'#3#178#0#3'Top'#2#8#5'Wi' +- +'dth'#3#227#0#12'ClientHeight'#3#178#0#11'ClientWidth'#3#227#0#8'TabOrder'#2 +- +#1#0#6'TLabel'#7'Label15'#4'Left'#2#6#6'Height'#2#19#3'Top'#2':'#5'Width'#2 +- +'W'#7'Caption'#6#18'Observation file :'#11'ParentColor'#8#0#0#11'TRadioGroup' +- +#11'RadioGroup7'#4'Left'#2#6#6'Height'#2'L'#3'Top'#2'`'#5'Width'#3#204#0#8'A' +- +'utoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' +- +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' +- +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' +- +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 +- +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' +- +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'H'#11'ClientWidth' +- +#3#200#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#26'Append data to unique fil' +- +'e'#6#28'Add date/time suffix to file'#0#8'TabOrder'#2#2#0#0#11'TRadioGroup' +- +#11'RadioGroup4'#4'Left'#2#6#6'Height'#2'8'#3'Top'#2#0#5'Width'#3#204#0#8'Au' +- +'toFill'#9#7'Caption'#6#6'Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'Ch' +- +'ildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsH' +- +'omogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChi' +- +'ldResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSiz' +- +'ing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLef' +- +'tToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeigh' +- +'t'#2'$'#11'ClientWidth'#3#200#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.St' +- +'rings'#1#6#12'AAVSO Visual'#6#5'VSNET'#0#8'TabOrder'#2#0#0#0#13'TFileNameEd' +- +'it'#13'FileNameEdit3'#4'Left'#2#6#6'Height'#2#26#3'Top'#2'I'#5'Width'#3#176 +- +#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'Butto' +- +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#0#0#0#11'TRa' +- +'dioGroup'#11'RadioGroup5'#4'Left'#2#8#6'Height'#2'c'#3'Top'#2#6#5'Width'#3 +- +#134#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' +- +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' +- +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 +- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' +- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' +- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'_'#11'Cl' +- +'ientWidth'#3#130#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#17'Internal facil' +- +'ity'#6#11'AAVSO PCObs'#6#12'AAVSO WebObs'#0#7'OnClick'#7#16'RadioGroup5Clic' +- +'k'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'Y'#6'Height'#2#26#3'Top' +- ,#2'p'#5'Width'#2'5'#8'TabOrder'#2#3#0#0#9'TSpinEdit'#2'tz'#4'Left'#2'Z'#6'He' +- +'ight'#2#26#3'Top'#3#152#0#5'Width'#2'4'#8'MaxValue'#2#12#8'MinValue'#2#244#8 +- +'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Caption'#6#16'Plot observ' +- +'ation'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'Gro' +- +'upBox2'#4'Left'#3#150#0#6'Height'#3#208#0#3'Top'#2#10#5'Width'#3#249#0#7'Ca' +- +'ption'#6#12'VSNET format'#12'ClientHeight'#3#188#0#11'ClientWidth'#3#245#0#8 +- +'TabOrder'#2#0#7'Visible'#8#0#6'TLabel'#6'Label9'#4'Left'#2#8#6'Height'#2'u' +- +#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6#213'Free format. Fi' +- +'elds are separated by at least one blank space and appear in this order'#13 +- +#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt' +- +#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'C' +- +'omment'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label10'#4'Left'#2#8 +- +#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'Pa' +- +'rentColor'#8#0#0#13'TFileNameEdit'#13'FileNameEdit2'#4'Left'#2#8#6'Height'#2 +- +#26#3'Top'#3#161#0#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterIndex'#2 +- +#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 +- +#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#3#150#0#6'Height' +- +#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7'Caption'#6#17'AFOEV base folder'#12 +- +'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#1#7'Visible'#8#0 +- +#6'TLabel'#6'Label4'#4'Left'#2#8#6'Height'#2'e'#3'Top'#2#28#5'Width'#3#225#0 +- +#8'AutoSize'#8#7'Caption'#6#143'Indicate the path to the constellation folde' +- +'r.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' ' +- +' r'#13#10' s'#11'ParentColor'#8#8 +- +'WordWrap'#9#0#0#14'TDirectoryEdit'#14'DirectoryEdit3'#4'Left'#2#8#6'Height' +- +#2#26#3'Top'#3#159#0#5'Width'#3#204#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9 +- +'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupB' +- +'ox4'#4'Left'#3#150#0#6'Height'#3#207#0#3'Top'#2#11#5'Width'#3#249#0#7'Capti' +- +'on'#6#31'Other format fields description'#12'ClientHeight'#3#187#0#11'Clien' +- +'tWidth'#3#245#0#8'TabOrder'#2#2#7'Visible'#8#0#6'TLabel'#6'Label1'#4'Left'#2 +- +#8#6'Height'#2#19#3'Top'#2'.'#5'Width'#2'6'#7'Caption'#6#9'Star name'#11'Par' +- +'entColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'D'#5 +- +'Width'#2#25#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4 +- +'Left'#2#8#6'Height'#2#19#3'Top'#2'Z'#5'Width'#2'3'#7'Caption'#6#9'Magnitude' +- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Height'#2#19#3'Top' +- +#3#143#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLa' +- +'bel'#7'Label12'#4'Left'#3#144#0#6'Height'#2#19#3'Top'#2'.'#5'Width'#2','#7 +- +'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#3 +- +#144#0#6'Height'#2#19#3'Top'#2'D'#5'Width'#2','#7'Caption'#6#8'Field No'#11 +- +'ParentColor'#8#0#0#6'TLabel'#7'Label14'#4'Left'#3#144#0#6'Height'#2#19#3'To' +- +'p'#2'Z'#5'Width'#2','#7'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#11'TRa' +- +'dioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2#30#3'Top'#2'j'#5'Width'#3 +- +#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' +- +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' +- +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 +- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' +- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' +- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2#26#11'Cl' +- +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11 +- +'Julian date'#6#10'Decimal UT'#0#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit1'#4'Lef' +- +'t'#2'H'#6'Height'#2#26#3'Top'#2'*'#5'Width'#2'A'#8'TabOrder'#2#1#4'Text'#6#1 +- +'1'#0#0#5'TEdit'#5'Edit2'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 +- +'A'#8'TabOrder'#2#2#4'Text'#6#1'2'#0#0#5'TEdit'#5'Edit3'#4'Left'#2'H'#6'Heig' +- +'ht'#2#26#3'Top'#2'V'#5'Width'#2'A'#8'TabOrder'#2#3#4'Text'#6#1'3'#0#0#11'TR' +- +'adioGroup'#11'RadioGroup3'#4'Left'#2#12#6'Height'#2'%'#3'Top'#2#255#5'Width' +- +#3#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.T' +- +'opBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousCh' +- +'ildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 +- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' +- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' +- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'Cl' +- +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#15 +- +'Variable format'#6#12'Fixed format'#0#7'OnClick'#7#16'RadioGroup3Click'#8'T' +- +'abOrder'#2#4#0#0#13'TFileNameEdit'#13'FileNameEdit4'#4'Left'#2#8#6'Height'#2 +- +#26#3'Top'#3#161#0#5'Width'#3#204#0#13'DialogOptions'#11#0#11'FilterIndex'#2 +- ,#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 +- +#0#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#3#150#0#6'Height' +- +#3#209#0#3'Top'#2#10#5'Width'#3#249#0#7'Caption'#6#16'AAVSO SUM format'#12'C' +- +'lientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#3#7'Visible'#8#0 +- +#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3' +- +#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left' +- +#2#8#6'Height'#2'u'#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#12 +- +#22#1#0#0'Col 1-8 Designation from Validation File'#13#10'Col 9-18 S' +- +'tar name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magn' +- +'itude'#13#10' < in column 31 for fainter-than'#13#10' ' +- +' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10 +- +'Col 63-67 Observer Initials'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'Fil' +- +'eNameEdit1'#4'Left'#2#8#6'Height'#2#26#3'Top'#3#161#0#5'Width'#3#204#0#13'D' +- +'ialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth' +- +#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9 +- +'GroupBox0'#4'Left'#3#150#0#6'Height'#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7 +- +'Caption'#6#12'AAVSO Visual'#12'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0 +- +#8'TabOrder'#2#5#7'Visible'#8#0#6'TLabel'#7'Label20'#4'Left'#2#8#6'Height'#2 +- +'u'#3'Top'#2#12#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6'JAAVSO Visual fo' +- +'rmat'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' +- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label21'#4'Left'#2#8#6'Height'#2#19#3'Top' +- +#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#13'TF' +- +'ileNameEdit'#13'FileNameEdit0'#4'Left'#2#20#6'Height'#2#26#3'Top'#3#160#0#5 +- +'Width'#3#184#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' +- +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 +- +#0#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#14#6'Height'#3#209#0#3'Top' +- +#2#10#5'Width'#3#137#0#8'AutoFill'#9#7'Caption'#6#16'Light curve data'#28'Ch' +- +'ildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chi' +- +'ldSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.E' +- +'nlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizon' +- +'tal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChild' +- +'s'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizin' +- +'g.ControlsPerLine'#2#1#12'ClientHeight'#3#189#0#11'ClientWidth'#3#133#0#9'I' +- +'temIndex'#2#0#13'Items.Strings'#1#6#12'AAVSO Visual'#6#13'Old AAVSO SUM'#6#5 +- +'VSNET'#6#5'AFOEV'#6#12'Other format'#0#7'OnClick'#7#16'RadioGroup1Click'#8 +- +'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#16'Plot Online D' +- +'ata'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#11'TRadioGroup'#11'R' +- +'adioGroup6'#4'Left'#2#20#6'Height'#3#128#0#3'Top'#2#18#5'Width'#3'!'#1#8'Au' +- +'toFill'#9#7'Caption'#6#27'Plot additional data from :'#28'ChildSizing.LeftR' +- +'ightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlarg' +- +'eHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' +- +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' +- +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' +- +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' +- +'e'#2#1#12'ClientHeight'#2'l'#11'ClientWidth'#3#29#1#9'ItemIndex'#2#0#13'Ite' +- +'ms.Strings'#1#6#16'AAVSO Quick Look'#6#17'AFOEV FTP Archive'#0#8'TabOrder'#2 +- +#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#6'Charts'#12'ClientHeight'#3 +- +#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#12#6'Hei' +- +'ght'#2'p'#3'Top'#2'z'#5'Width'#3#129#1#7'Caption'#6'%Cartes du Ciel / Sky C' +- +'harts interface'#12'ClientHeight'#2'\'#11'ClientWidth'#3'}'#1#8'TabOrder'#2 +- +#0#0#6'TLabel'#6'Label5'#4'Left'#2#14#6'Height'#2#19#3'Top'#2'H'#5'Width'#3 +- +'a'#1#7'Caption'#6'DBe sure the GCVS catalog is installed and activated whit' +- +'in Skychart!'#11'ParentColor'#8#0#0#6'TLabel'#6'Label6'#4'Left'#3#174#0#6'H' +- +'eight'#2#19#3'Top'#2'%'#5'Width'#2'('#7'Caption'#6#7'degrees'#11'ParentColo' +- +'r'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#14#6'Height'#2#22#3'Top'#2#8#5 +- +'Width'#3#216#0#7'Caption'#6'&Switch chart to equatorial coordinates'#8'TabO' +- +'rder'#2#0#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#14#6'Height'#2#22#3'Top'#2 +- +'#'#5'Width'#2'V'#7'Caption'#6#11'Set zoom to'#8'TabOrder'#2#1#0#0#9'TSpinEd' +- +'it'#9'SpinEdit1'#4'Left'#2'n'#6'Height'#2#26#3'Top'#2'"'#5'Width'#2'2'#8'Ma' +- +'xValue'#3#180#0#8'MinValue'#2#1#8'TabOrder'#2#2#5'Value'#2#15#0#0#0#9'TGrou' +- +'pBox'#9'GroupBox9'#4'Left'#2#12#6'Height'#2'j'#3'Top'#2#10#5'Width'#3#129#1 +- +#7'Caption'#6#11'AAVSO Chart'#12'ClientHeight'#2'V'#11'ClientWidth'#3'}'#1#8 +- +'TabOrder'#2#1#0#14'TDirectoryEdit'#14'DirectoryEdit2'#4'Left'#2#12#6'Height' +- +#2#26#3'Top'#2'8'#5'Width'#3'H'#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Nu' +- ,'mGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioG' +- +'roup8'#4'Left'#2#12#6'Height'#2'0'#3'Top'#2#0#5'Width'#3'\'#1#8'AutoFill'#9 +- +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 +- +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' +- +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' +- +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' +- +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' +- +'zing.ControlsPerLine'#2#2#12'ClientHeight'#2','#11'ClientWidth'#3'X'#1#7'Co' +- +'lumns'#2#2#13'Items.Strings'#1#6#13'Online charts'#6#11'Chart CDrom'#0#7'On' +- +'Click'#7#16'RadioGroup8Click'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#9'TabShe' +- +'et5'#7'Caption'#6#3'URL'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#6 +- +'TLabel'#6'Label7'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#250#0#5'Width'#3#15#1 +- +#7'Caption'#6'0Do NOT change any of this without a good reason!'#11'ParentCo' +- +'lor'#8#0#0#12'TLabeledEdit'#5'qlurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2#26 +- +#5'Width'#3#136#1' EditLabel.AnchorSideLeft.Control'#7#5'qlurl"EditLabel.Anc' +- +'horSideBottom.Control'#7#5'qlurl'#14'EditLabel.Left'#2#12#16'EditLabel.Heig' +- +'ht'#2#19#13'EditLabel.Top'#2#4#15'EditLabel.Width'#2'd'#17'EditLabel.Captio' +- +'n'#6#16'AAVSO Quick Look'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#0#0#0#12 +- +'TLabeledEdit'#8'afoevurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'J'#5'Width'#3 +- +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'afoevurl"EditLabel.AnchorSideB' +- +'ottom.Control'#7#8'afoevurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 +- +#19#13'EditLabel.Top'#2'4'#15'EditLabel.Width'#2'e'#17'EditLabel.Caption'#6 +- +#16'AFOEF FTP server'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#1#0#0#12'TLa' +- +'beledEdit'#8'charturl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'~'#5'Width'#3 +- +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'charturl"EditLabel.AnchorSideB' +- +'ottom.Control'#7#8'charturl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 +- +#19#13'EditLabel.Top'#2'h'#15'EditLabel.Width'#2'K'#17'EditLabel.Caption'#6 +- +#12'AAVSO Charts'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#2#0#0#12'TLabele' +- +'dEdit'#9'webobsurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#3#176#0#5'Width'#3 +- +#136#1' EditLabel.AnchorSideLeft.Control'#7#9'webobsurl"EditLabel.AnchorSide' +- +'Bottom.Control'#7#9'webobsurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height' +- +#2#19#13'EditLabel.Top'#3#154#0#15'EditLabel.Width'#2'U'#17'EditLabel.Captio' +- +'n'#6#12'AAVSO WebObs'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#3#0#0#7'TBu' +- +'tton'#7'Button1'#4'Left'#3','#1#6'Height'#2#25#3'Top'#3#246#0#5'Width'#2'k' +- +#7'Caption'#6#16'Reset to default'#7'OnClick'#7#12'Button1Click'#8'TabOrder' +- +#2#4#0#0#6'TLabel'#7'Label24'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#217#0#5'W' +- +'idth'#2#127#7'Caption'#6#22'Command to open a file'#11'ParentColor'#8#0#0#5 +- +'TEdit'#7'opencmd'#4'Left'#3#158#0#6'Height'#2#26#3'Top'#3#214#0#5'Width'#3 +- +#246#0#8'TabOrder'#2#5#0#0#0#0#0 ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('TOptForm','FORMDATA',[ ++ 'TPF0'#8'TOptForm'#7'OptForm'#4'Left'#3#222#3#6'Height'#3'n'#1#3'Top'#2'&'#5 ++ +'Width'#3#191#1#18'HorzScrollBar.Page'#3#174#1#18'VertScrollBar.Page'#3'9'#1 ++ +#13'ActiveControl'#7#12'PageControl1'#7'Caption'#6#7'Options'#12'ClientHeigh' ++ +'t'#3'n'#1#11'ClientWidth'#3#191#1#11'Font.Height'#2#245#9'Font.Name'#6#13'M' ++ +'S Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVe' ++ +'rsion'#6#6'0.9.29'#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#176#0#6'Height'#2#25#3 ++ +'Top'#3'@'#1#5'Width'#2'K'#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2 ++ +#1#9'NumGlyphs'#2#2#8'TabOrder'#2#0#0#0#12'TPageControl'#12'PageControl1'#4 ++ +'Left'#2#0#6'Height'#3'8'#1#3'Top'#2#0#5'Width'#3#176#1#10'ActivePage'#7#9'T' ++ +'abSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Cap' ++ +'tion'#6#17'Observation entry'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172 ++ +#1#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#20#6'Height'#3#232#0#3'Top'#2#10#5 ++ +'Width'#3#129#1#7'Caption'#6#17'Observation Entry'#12'ClientHeight'#3#212#0 ++ +#11'ClientWidth'#3'}'#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label16'#4'Left'#2#6#6 ++ +'Height'#2'*'#3'Top'#2'p'#5'Width'#2'.'#7'Caption'#6#20'Observer'#13#10'Init' ++ +'ials :'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2#6#6'Height'#2#19 ++ +#3'Top'#3#152#0#5'Width'#2'8'#7'Caption'#6#9'Time Zone'#11'ParentColor'#8#0#0 ++ +#6'TLabel'#7'Label17'#4'Left'#2#6#6'Height'#2'*'#3'Top'#3#168#0#5'Width'#2'M' ++ +#7'Caption'#6#28'negative West '#13#10'of Greenwich'#11'ParentColor'#8#0#0#6 ++ +'TPanel'#6'Panel2'#4'Left'#3#150#0#6'Height'#3#180#0#3'Top'#2#6#5'Width'#3 ++ +#227#0#12'ClientHeight'#3#180#0#11'ClientWidth'#3#227#0#8'TabOrder'#2#2#0#6 ++ +'TLabel'#7'Label22'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'R'#5'Width'#3#135#0 ++ +#7'Caption'#6#24'PCObs program location :'#11'ParentColor'#8#0#0#6'TLabel'#7 ++ +'Label23'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#18#5'Width'#3#214#0#7'Caption' ++ +#6'lLaunch AAVSO PCObs for data entry'#13#10'This option is recommended if y' ++ +'ou want '#13#10'to submit your data to the AAVSO'#11'ParentColor'#8#0#0#13 ++ +'TFileNameEdit'#13'FileNameEdit8'#4'Left'#2#16#6'Height'#2#26#3'Top'#2'm'#5 ++ +'Width'#3#169#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' ++ +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 ++ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#3#150#0#6'Height'#3#178#0#3'Top'#2#8#5'Wi' ++ +'dth'#3#227#0#12'ClientHeight'#3#178#0#11'ClientWidth'#3#227#0#8'TabOrder'#2 ++ +#1#0#6'TLabel'#7'Label15'#4'Left'#2#6#6'Height'#2#19#3'Top'#2':'#5'Width'#2 ++ +'W'#7'Caption'#6#18'Observation file :'#11'ParentColor'#8#0#0#11'TRadioGroup' ++ +#11'RadioGroup7'#4'Left'#2#6#6'Height'#2'L'#3'Top'#2'`'#5'Width'#3#204#0#8'A' ++ +'utoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' ++ +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' ++ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' ++ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 ++ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' ++ +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'H'#11'ClientWidth' ++ +#3#200#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#26'Append data to unique fil' ++ +'e'#6#28'Add date/time suffix to file'#0#8'TabOrder'#2#2#0#0#11'TRadioGroup' ++ +#11'RadioGroup4'#4'Left'#2#6#6'Height'#2'8'#3'Top'#2#0#5'Width'#3#204#0#8'Au' ++ +'toFill'#9#7'Caption'#6#6'Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'Ch' ++ +'ildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsH' ++ +'omogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChi' ++ +'ldResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSiz' ++ +'ing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLef' ++ +'tToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeigh' ++ +'t'#2'$'#11'ClientWidth'#3#200#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.St' ++ +'rings'#1#6#12'AAVSO Visual'#6#5'VSNET'#0#8'TabOrder'#2#0#0#0#13'TFileNameEd' ++ +'it'#13'FileNameEdit3'#4'Left'#2#6#6'Height'#2#26#3'Top'#2'I'#5'Width'#3#176 ++ +#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'Butto' ++ +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#0#0#0#11'TRa' ++ +'dioGroup'#11'RadioGroup5'#4'Left'#2#8#6'Height'#2'c'#3'Top'#2#6#5'Width'#3 ++ +#134#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' ++ +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' ++ +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 ++ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' ++ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' ++ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'_'#11'Cl' ++ +'ientWidth'#3#130#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#17'Internal facil' ++ +'ity'#6#11'AAVSO PCObs'#6#12'AAVSO WebObs'#0#7'OnClick'#7#16'RadioGroup5Clic' ++ +'k'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'Y'#6'Height'#2#26#3'Top' ++ ,#2'p'#5'Width'#2'5'#8'TabOrder'#2#3#0#0#9'TSpinEdit'#2'tz'#4'Left'#2'Z'#6'He' ++ +'ight'#2#26#3'Top'#3#152#0#5'Width'#2'4'#8'MaxValue'#2#12#8'MinValue'#2#244#8 ++ +'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Caption'#6#16'Plot observ' ++ +'ation'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'Gro' ++ +'upBox2'#4'Left'#3#150#0#6'Height'#3#208#0#3'Top'#2#10#5'Width'#3#249#0#7'Ca' ++ +'ption'#6#12'VSNET format'#12'ClientHeight'#3#188#0#11'ClientWidth'#3#245#0#8 ++ +'TabOrder'#2#0#7'Visible'#8#0#6'TLabel'#6'Label9'#4'Left'#2#8#6'Height'#2'u' ++ +#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6#213'Free format. Fi' ++ +'elds are separated by at least one blank space and appear in this order'#13 ++ +#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt' ++ +#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'C' ++ +'omment'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label10'#4'Left'#2#8 ++ +#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'Pa' ++ +'rentColor'#8#0#0#13'TFileNameEdit'#13'FileNameEdit2'#4'Left'#2#8#6'Height'#2 ++ +#26#3'Top'#3#161#0#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterIndex'#2 ++ +#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 ++ +#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#3#150#0#6'Height' ++ +#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7'Caption'#6#17'AFOEV base folder'#12 ++ +'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#1#7'Visible'#8#0 ++ +#6'TLabel'#6'Label4'#4'Left'#2#8#6'Height'#2'e'#3'Top'#2#28#5'Width'#3#225#0 ++ +#8'AutoSize'#8#7'Caption'#6#143'Indicate the path to the constellation folde' ++ +'r.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' ' ++ +' r'#13#10' s'#11'ParentColor'#8#8 ++ +'WordWrap'#9#0#0#14'TDirectoryEdit'#14'DirectoryEdit3'#4'Left'#2#8#6'Height' ++ +#2#26#3'Top'#3#159#0#5'Width'#3#204#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9 ++ +'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupB' ++ +'ox4'#4'Left'#3#150#0#6'Height'#3#207#0#3'Top'#2#11#5'Width'#3#249#0#7'Capti' ++ +'on'#6#31'Other format fields description'#12'ClientHeight'#3#187#0#11'Clien' ++ +'tWidth'#3#245#0#8'TabOrder'#2#2#7'Visible'#8#0#6'TLabel'#6'Label1'#4'Left'#2 ++ +#8#6'Height'#2#19#3'Top'#2'.'#5'Width'#2'6'#7'Caption'#6#9'Star name'#11'Par' ++ +'entColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'D'#5 ++ +'Width'#2#25#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4 ++ +'Left'#2#8#6'Height'#2#19#3'Top'#2'Z'#5'Width'#2'3'#7'Caption'#6#9'Magnitude' ++ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Height'#2#19#3'Top' ++ +#3#143#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLa' ++ +'bel'#7'Label12'#4'Left'#3#144#0#6'Height'#2#19#3'Top'#2'.'#5'Width'#2','#7 ++ +'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#3 ++ +#144#0#6'Height'#2#19#3'Top'#2'D'#5'Width'#2','#7'Caption'#6#8'Field No'#11 ++ +'ParentColor'#8#0#0#6'TLabel'#7'Label14'#4'Left'#3#144#0#6'Height'#2#19#3'To' ++ +'p'#2'Z'#5'Width'#2','#7'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#11'TRa' ++ +'dioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2#30#3'Top'#2'j'#5'Width'#3 ++ +#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' ++ +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' ++ +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 ++ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' ++ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' ++ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2#26#11'Cl' ++ +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11 ++ +'Julian date'#6#10'Decimal UT'#0#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit1'#4'Lef' ++ +'t'#2'H'#6'Height'#2#26#3'Top'#2'*'#5'Width'#2'A'#8'TabOrder'#2#1#4'Text'#6#1 ++ +'1'#0#0#5'TEdit'#5'Edit2'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 ++ +'A'#8'TabOrder'#2#2#4'Text'#6#1'2'#0#0#5'TEdit'#5'Edit3'#4'Left'#2'H'#6'Heig' ++ +'ht'#2#26#3'Top'#2'V'#5'Width'#2'A'#8'TabOrder'#2#3#4'Text'#6#1'3'#0#0#11'TR' ++ +'adioGroup'#11'RadioGroup3'#4'Left'#2#12#6'Height'#2'%'#3'Top'#2#255#5'Width' ++ +#3#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.T' ++ +'opBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousCh' ++ +'ildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 ++ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' ++ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' ++ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'Cl' ++ +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#15 ++ +'Variable format'#6#12'Fixed format'#0#7'OnClick'#7#16'RadioGroup3Click'#8'T' ++ +'abOrder'#2#4#0#0#13'TFileNameEdit'#13'FileNameEdit4'#4'Left'#2#8#6'Height'#2 ++ +#26#3'Top'#3#161#0#5'Width'#3#204#0#13'DialogOptions'#11#0#11'FilterIndex'#2 ++ ,#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 ++ +#0#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#3#150#0#6'Height' ++ +#3#209#0#3'Top'#2#10#5'Width'#3#249#0#7'Caption'#6#16'AAVSO SUM format'#12'C' ++ +'lientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#3#7'Visible'#8#0 ++ +#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3' ++ +#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left' ++ +#2#8#6'Height'#2'u'#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#12 ++ +#22#1#0#0'Col 1-8 Designation from Validation File'#13#10'Col 9-18 S' ++ +'tar name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magn' ++ +'itude'#13#10' < in column 31 for fainter-than'#13#10' ' ++ +' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10 ++ +'Col 63-67 Observer Initials'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'Fil' ++ +'eNameEdit1'#4'Left'#2#8#6'Height'#2#26#3'Top'#3#161#0#5'Width'#3#204#0#13'D' ++ +'ialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth' ++ +#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9 ++ +'GroupBox0'#4'Left'#3#150#0#6'Height'#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7 ++ +'Caption'#6#12'AAVSO Visual'#12'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0 ++ +#8'TabOrder'#2#5#7'Visible'#8#0#6'TLabel'#7'Label20'#4'Left'#2#8#6'Height'#2 ++ +'u'#3'Top'#2#12#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6'JAAVSO Visual fo' ++ +'rmat'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' ++ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label21'#4'Left'#2#8#6'Height'#2#19#3'Top' ++ +#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#13'TF' ++ +'ileNameEdit'#13'FileNameEdit0'#4'Left'#2#20#6'Height'#2#26#3'Top'#3#160#0#5 ++ +'Width'#3#184#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' ++ +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 ++ +#0#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#14#6'Height'#3#209#0#3'Top' ++ +#2#10#5'Width'#3#137#0#8'AutoFill'#9#7'Caption'#6#16'Light curve data'#28'Ch' ++ +'ildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chi' ++ +'ldSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.E' ++ +'nlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizon' ++ +'tal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChild' ++ +'s'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizin' ++ +'g.ControlsPerLine'#2#1#12'ClientHeight'#3#189#0#11'ClientWidth'#3#133#0#9'I' ++ +'temIndex'#2#0#13'Items.Strings'#1#6#12'AAVSO Visual'#6#13'Old AAVSO SUM'#6#5 ++ +'VSNET'#6#5'AFOEV'#6#12'Other format'#0#7'OnClick'#7#16'RadioGroup1Click'#8 ++ +'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#16'Plot Online D' ++ +'ata'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#11'TRadioGroup'#11'R' ++ +'adioGroup6'#4'Left'#2#20#6'Height'#3#128#0#3'Top'#2#18#5'Width'#3'!'#1#8'Au' ++ +'toFill'#9#7'Caption'#6#27'Plot additional data from :'#28'ChildSizing.LeftR' ++ +'ightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlarg' ++ +'eHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' ++ +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' ++ +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' ++ +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' ++ +'e'#2#1#12'ClientHeight'#2'l'#11'ClientWidth'#3#29#1#9'ItemIndex'#2#0#13'Ite' ++ +'ms.Strings'#1#6#16'AAVSO Quick Look'#6#17'AFOEV FTP Archive'#0#8'TabOrder'#2 ++ +#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#6'Charts'#12'ClientHeight'#3 ++ +#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#12#6'Hei' ++ +'ght'#2'p'#3'Top'#2'z'#5'Width'#3#129#1#7'Caption'#6'%Cartes du Ciel / Sky C' ++ +'harts interface'#12'ClientHeight'#2'\'#11'ClientWidth'#3'}'#1#8'TabOrder'#2 ++ +#0#0#6'TLabel'#6'Label5'#4'Left'#2#14#6'Height'#2#19#3'Top'#2'H'#5'Width'#3 ++ +'a'#1#7'Caption'#6'DBe sure the GCVS catalog is installed and activated whit' ++ +'in Skychart!'#11'ParentColor'#8#0#0#6'TLabel'#6'Label6'#4'Left'#3#174#0#6'H' ++ +'eight'#2#19#3'Top'#2'%'#5'Width'#2'('#7'Caption'#6#7'degrees'#11'ParentColo' ++ +'r'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#14#6'Height'#2#22#3'Top'#2#8#5 ++ +'Width'#3#216#0#7'Caption'#6'&Switch chart to equatorial coordinates'#8'TabO' ++ +'rder'#2#0#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#14#6'Height'#2#22#3'Top'#2 ++ +'#'#5'Width'#2'V'#7'Caption'#6#11'Set zoom to'#8'TabOrder'#2#1#0#0#9'TSpinEd' ++ +'it'#9'SpinEdit1'#4'Left'#2'n'#6'Height'#2#26#3'Top'#2'"'#5'Width'#2'2'#8'Ma' ++ +'xValue'#3#180#0#8'MinValue'#2#1#8'TabOrder'#2#2#5'Value'#2#15#0#0#0#9'TGrou' ++ +'pBox'#9'GroupBox9'#4'Left'#2#12#6'Height'#2'j'#3'Top'#2#10#5'Width'#3#129#1 ++ +#7'Caption'#6#11'AAVSO Chart'#12'ClientHeight'#2'V'#11'ClientWidth'#3'}'#1#8 ++ +'TabOrder'#2#1#0#14'TDirectoryEdit'#14'DirectoryEdit2'#4'Left'#2#12#6'Height' ++ +#2#26#3'Top'#2'8'#5'Width'#3'H'#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Nu' ++ ,'mGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioG' ++ +'roup8'#4'Left'#2#12#6'Height'#2'0'#3'Top'#2#0#5'Width'#3'\'#1#8'AutoFill'#9 ++ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 ++ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' ++ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' ++ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' ++ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' ++ +'zing.ControlsPerLine'#2#2#12'ClientHeight'#2','#11'ClientWidth'#3'X'#1#7'Co' ++ +'lumns'#2#2#13'Items.Strings'#1#6#13'Online charts'#6#11'Chart CDrom'#0#7'On' ++ +'Click'#7#16'RadioGroup8Click'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#9'TabShe' ++ +'et5'#7'Caption'#6#3'URL'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#6 ++ +'TLabel'#6'Label7'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#250#0#5'Width'#3#15#1 ++ +#7'Caption'#6'0Do NOT change any of this without a good reason!'#11'ParentCo' ++ +'lor'#8#0#0#12'TLabeledEdit'#5'qlurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2#26 ++ +#5'Width'#3#136#1' EditLabel.AnchorSideLeft.Control'#7#5'qlurl"EditLabel.Anc' ++ +'horSideBottom.Control'#7#5'qlurl'#14'EditLabel.Left'#2#12#16'EditLabel.Heig' ++ +'ht'#2#19#13'EditLabel.Top'#2#4#15'EditLabel.Width'#2'd'#17'EditLabel.Captio' ++ +'n'#6#16'AAVSO Quick Look'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#0#0#0#12 ++ +'TLabeledEdit'#8'afoevurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'J'#5'Width'#3 ++ +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'afoevurl"EditLabel.AnchorSideB' ++ +'ottom.Control'#7#8'afoevurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 ++ +#19#13'EditLabel.Top'#2'4'#15'EditLabel.Width'#2'e'#17'EditLabel.Caption'#6 ++ +#16'AFOEF FTP server'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#1#0#0#12'TLa' ++ +'beledEdit'#8'charturl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'~'#5'Width'#3 ++ +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'charturl"EditLabel.AnchorSideB' ++ +'ottom.Control'#7#8'charturl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 ++ +#19#13'EditLabel.Top'#2'h'#15'EditLabel.Width'#2'K'#17'EditLabel.Caption'#6 ++ +#12'AAVSO Charts'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#2#0#0#12'TLabele' ++ +'dEdit'#9'webobsurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#3#176#0#5'Width'#3 ++ +#136#1' EditLabel.AnchorSideLeft.Control'#7#9'webobsurl"EditLabel.AnchorSide' ++ +'Bottom.Control'#7#9'webobsurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height' ++ +#2#19#13'EditLabel.Top'#3#154#0#15'EditLabel.Width'#2'U'#17'EditLabel.Captio' ++ +'n'#6#12'AAVSO WebObs'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#3#0#0#7'TBu' ++ +'tton'#7'Button1'#4'Left'#3','#1#6'Height'#2#25#3'Top'#3#246#0#5'Width'#2'k' ++ +#7'Caption'#6#16'Reset to default'#7'OnClick'#7#12'Button1Click'#8'TabOrder' ++ +#2#4#0#0#6'TLabel'#7'Label24'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#217#0#5'W' ++ +'idth'#2#127#7'Caption'#6#22'Command to open a file'#11'ParentColor'#8#0#0#5 ++ +'TEdit'#7'opencmd'#4'Left'#3#158#0#6'Height'#2#26#3'Top'#3#214#0#5'Width'#3 ++ +#246#0#8'TabOrder'#2#5#0#0#0#0#0 + ]); +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/SettingUnit.pas skychart_3.2_up/varobs/SettingUnit.pas +--- skychart_3.2/varobs/SettingUnit.pas 2010-09-08 13:41:37.000000000 +0200 ++++ skychart_3.2_up/varobs/SettingUnit.pas 2011-03-09 15:18:23.219263874 +0100 +@@ -1,246 +1,246 @@ +-unit SettingUnit; +- +-{$MODE Delphi} +- +-{ +-Copyright (C) 2008 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +-interface +- +-uses +- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, +- StdCtrls, ExtCtrls, Buttons, LResources, u_param, ComCtrls, EditBtn, Spin; +- +-type +- +- { TOptForm } +- +- TOptForm = class(TForm) +- Button1: TButton; +- CheckBox1: TCheckBox; +- CheckBox2: TCheckBox; +- DirectoryEdit3: TDirectoryEdit; +- DirectoryEdit2: TDirectoryEdit; +- Edit1: TEdit; +- Edit2: TEdit; +- Edit3: TEdit; +- Edit4: TEdit; +- opencmd: TEdit; +- FileNameEdit0: TFileNameEdit; +- FileNameEdit1: TFileNameEdit; +- FileNameEdit2: TFileNameEdit; +- FileNameEdit3: TFileNameEdit; +- FileNameEdit4: TFileNameEdit; +- FileNameEdit8: TFileNameEdit; +- GroupBox0: TGroupBox; +- GroupBox2: TGroupBox; +- GroupBox3: TGroupBox; +- GroupBox4: TGroupBox; +- GroupBox5: TGroupBox; +- GroupBox6: TGroupBox; +- GroupBox1: TGroupBox; +- GroupBox9: TGroupBox; +- Label1: TLabel; +- Label10: TLabel; +- Label11: TLabel; +- Label12: TLabel; +- Label13: TLabel; +- Label14: TLabel; +- Label15: TLabel; +- Label16: TLabel; +- Label17: TLabel; +- Label18: TLabel; +- Label19: TLabel; +- Label2: TLabel; +- Label20: TLabel; +- Label21: TLabel; +- Label22: TLabel; +- Label23: TLabel; +- Label24: TLabel; +- Label3: TLabel; +- Label4: TLabel; +- Label5: TLabel; +- Label6: TLabel; +- Label7: TLabel; +- Label8: TLabel; +- Label9: TLabel; +- qlurl: TLabeledEdit; +- afoevurl: TLabeledEdit; +- charturl: TLabeledEdit; +- tz: TSpinEdit; +- webobsurl: TLabeledEdit; +- PageControl1: TPageControl; +- Panel1: TPanel; +- Panel2: TPanel; +- BitBtn1: TBitBtn; +- RadioGroup1: TRadioGroup; +- RadioGroup2: TRadioGroup; +- RadioGroup3: TRadioGroup; +- RadioGroup4: TRadioGroup; +- RadioGroup5: TRadioGroup; +- RadioGroup6: TRadioGroup; +- RadioGroup7: TRadioGroup; +- RadioGroup8: TRadioGroup; +- SpinEdit1: TSpinEdit; +- TabSheet1: TTabSheet; +- TabSheet2: TTabSheet; +- TabSheet3: TTabSheet; +- TabSheet4: TTabSheet; +- TabSheet5: TTabSheet; +- procedure Button1Click(Sender: TObject); +- procedure FormCreate(Sender: TObject); +- procedure RadioGroup1Click(Sender: TObject); +- procedure RadioGroup3Click(Sender: TObject); +- procedure FormShow(Sender: TObject); +- procedure RadioGroup5Click(Sender: TObject); +- procedure RadioGroup8Click(Sender: TObject); +- private +- { Private declarations } +- public +- { Public declarations } +- end; +- +-var +- OptForm: TOptForm; +- +-implementation +- +- +-Uses variables1; +- +-procedure TOptForm.RadioGroup1Click(Sender: TObject); +-begin +-case radiogroup1.itemindex of +-0 : begin +- GroupBox0.visible:=true; +- GroupBox1.visible:=false; +- GroupBox2.visible:=false; +- GroupBox3.visible:=false; +- GroupBox4.visible:=false; +- end; +-1 : begin +- GroupBox0.visible:=false; +- GroupBox1.visible:=true; +- GroupBox2.visible:=false; +- GroupBox3.visible:=false; +- GroupBox4.visible:=false; +- end; +-2 : begin +- GroupBox0.visible:=false; +- GroupBox1.visible:=false; +- GroupBox2.visible:=true; +- GroupBox3.visible:=false; +- GroupBox4.visible:=false; +- end; +-3 : begin +- GroupBox0.visible:=false; +- GroupBox1.visible:=false; +- GroupBox2.visible:=false; +- GroupBox3.visible:=true; +- GroupBox4.visible:=false; +- end; +-4 : begin +- GroupBox0.visible:=false; +- GroupBox1.visible:=false; +- GroupBox2.visible:=false; +- GroupBox3.visible:=false; +- GroupBox4.visible:=true; +- end; +-end; +-end; +- +-procedure TOptForm.FormCreate(Sender: TObject); +-begin +-FileNameEdit0.InitialDir:=privatedir; +-FileNameEdit1.InitialDir:=privatedir; +-FileNameEdit2.InitialDir:=privatedir; +-FileNameEdit3.InitialDir:=privatedir; +-FileNameEdit4.InitialDir:=privatedir; +-FileNameEdit8.InitialDir:=privatedir; +-end; +- +-procedure TOptForm.Button1Click(Sender: TObject); +-begin +-qlurl.Text:=defqlurl; +-afoevurl.Text:=defafoevurl; +-charturl.Text:=defaavsocharturl; +-webobsurl.Text:=defwebobsurl; +-opencmd.Text:=DefaultOpenFileCMD; +-end; +- +-procedure TOptForm.RadioGroup3Click(Sender: TObject); +-begin +-case Radiogroup3.itemindex of +-0 : begin +- Label12.caption:='Field No'; +- Label13.caption:='Field No'; +- Label14.caption:='Field No'; +- end; +-1 : begin +- Label12.caption:='Start.End col'; +- Label13.caption:='Start.End col'; +- Label14.caption:='Start.End col'; +- end; +-end; +-end; +- +-procedure TOptForm.FormShow(Sender: TObject); +-begin +-radiogroup1click(sender); +-RadioGroup5Click(Sender); +-RadioGroup8Click(Sender); +-end; +- +-procedure TOptForm.RadioGroup5Click(Sender: TObject); +-begin +-case radiogroup5.itemindex of +-0 : begin +- Panel1.visible:=true; +- Panel2.visible:=False; +- end; +-1 : begin +- Panel1.visible:=False; +- Panel2.visible:=true; +- end; +-2 : begin +- Panel1.visible:=False; +- Panel2.visible:=False; +- end; +-end; +-end; +- +- +-procedure TOptForm.RadioGroup8Click(Sender: TObject); +-begin +-case radiogroup8.ItemIndex of +- 0 : begin // online +- DirectoryEdit2.visible:=false; +- end; +- 1 : begin // cdrom +- DirectoryEdit2.visible:=true; +- end; +-end; +-end; +- +-initialization +- {$i SettingUnit.lrs} +- ++unit SettingUnit; ++ ++{$MODE Delphi} ++ ++{ ++Copyright (C) 2008 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++interface ++ ++uses ++ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ++ StdCtrls, ExtCtrls, Buttons, LResources, u_param, ComCtrls, EditBtn, Spin; ++ ++type ++ ++ { TOptForm } ++ ++ TOptForm = class(TForm) ++ Button1: TButton; ++ CheckBox1: TCheckBox; ++ CheckBox2: TCheckBox; ++ DirectoryEdit3: TDirectoryEdit; ++ DirectoryEdit2: TDirectoryEdit; ++ Edit1: TEdit; ++ Edit2: TEdit; ++ Edit3: TEdit; ++ Edit4: TEdit; ++ opencmd: TEdit; ++ FileNameEdit0: TFileNameEdit; ++ FileNameEdit1: TFileNameEdit; ++ FileNameEdit2: TFileNameEdit; ++ FileNameEdit3: TFileNameEdit; ++ FileNameEdit4: TFileNameEdit; ++ FileNameEdit8: TFileNameEdit; ++ GroupBox0: TGroupBox; ++ GroupBox2: TGroupBox; ++ GroupBox3: TGroupBox; ++ GroupBox4: TGroupBox; ++ GroupBox5: TGroupBox; ++ GroupBox6: TGroupBox; ++ GroupBox1: TGroupBox; ++ GroupBox9: TGroupBox; ++ Label1: TLabel; ++ Label10: TLabel; ++ Label11: TLabel; ++ Label12: TLabel; ++ Label13: TLabel; ++ Label14: TLabel; ++ Label15: TLabel; ++ Label16: TLabel; ++ Label17: TLabel; ++ Label18: TLabel; ++ Label19: TLabel; ++ Label2: TLabel; ++ Label20: TLabel; ++ Label21: TLabel; ++ Label22: TLabel; ++ Label23: TLabel; ++ Label24: TLabel; ++ Label3: TLabel; ++ Label4: TLabel; ++ Label5: TLabel; ++ Label6: TLabel; ++ Label7: TLabel; ++ Label8: TLabel; ++ Label9: TLabel; ++ qlurl: TLabeledEdit; ++ afoevurl: TLabeledEdit; ++ charturl: TLabeledEdit; ++ tz: TSpinEdit; ++ webobsurl: TLabeledEdit; ++ PageControl1: TPageControl; ++ Panel1: TPanel; ++ Panel2: TPanel; ++ BitBtn1: TBitBtn; ++ RadioGroup1: TRadioGroup; ++ RadioGroup2: TRadioGroup; ++ RadioGroup3: TRadioGroup; ++ RadioGroup4: TRadioGroup; ++ RadioGroup5: TRadioGroup; ++ RadioGroup6: TRadioGroup; ++ RadioGroup7: TRadioGroup; ++ RadioGroup8: TRadioGroup; ++ SpinEdit1: TSpinEdit; ++ TabSheet1: TTabSheet; ++ TabSheet2: TTabSheet; ++ TabSheet3: TTabSheet; ++ TabSheet4: TTabSheet; ++ TabSheet5: TTabSheet; ++ procedure Button1Click(Sender: TObject); ++ procedure FormCreate(Sender: TObject); ++ procedure RadioGroup1Click(Sender: TObject); ++ procedure RadioGroup3Click(Sender: TObject); ++ procedure FormShow(Sender: TObject); ++ procedure RadioGroup5Click(Sender: TObject); ++ procedure RadioGroup8Click(Sender: TObject); ++ private ++ { Private declarations } ++ public ++ { Public declarations } ++ end; ++ ++var ++ OptForm: TOptForm; ++ ++implementation ++ ++ ++Uses variables1; ++ ++procedure TOptForm.RadioGroup1Click(Sender: TObject); ++begin ++case radiogroup1.itemindex of ++0 : begin ++ GroupBox0.visible:=true; ++ GroupBox1.visible:=false; ++ GroupBox2.visible:=false; ++ GroupBox3.visible:=false; ++ GroupBox4.visible:=false; ++ end; ++1 : begin ++ GroupBox0.visible:=false; ++ GroupBox1.visible:=true; ++ GroupBox2.visible:=false; ++ GroupBox3.visible:=false; ++ GroupBox4.visible:=false; ++ end; ++2 : begin ++ GroupBox0.visible:=false; ++ GroupBox1.visible:=false; ++ GroupBox2.visible:=true; ++ GroupBox3.visible:=false; ++ GroupBox4.visible:=false; ++ end; ++3 : begin ++ GroupBox0.visible:=false; ++ GroupBox1.visible:=false; ++ GroupBox2.visible:=false; ++ GroupBox3.visible:=true; ++ GroupBox4.visible:=false; ++ end; ++4 : begin ++ GroupBox0.visible:=false; ++ GroupBox1.visible:=false; ++ GroupBox2.visible:=false; ++ GroupBox3.visible:=false; ++ GroupBox4.visible:=true; ++ end; ++end; ++end; ++ ++procedure TOptForm.FormCreate(Sender: TObject); ++begin ++FileNameEdit0.InitialDir:=privatedir; ++FileNameEdit1.InitialDir:=privatedir; ++FileNameEdit2.InitialDir:=privatedir; ++FileNameEdit3.InitialDir:=privatedir; ++FileNameEdit4.InitialDir:=privatedir; ++FileNameEdit8.InitialDir:=privatedir; ++end; ++ ++procedure TOptForm.Button1Click(Sender: TObject); ++begin ++qlurl.Text:=defqlurl; ++afoevurl.Text:=defafoevurl; ++charturl.Text:=defaavsocharturl; ++webobsurl.Text:=defwebobsurl; ++opencmd.Text:=DefaultOpenFileCMD; ++end; ++ ++procedure TOptForm.RadioGroup3Click(Sender: TObject); ++begin ++case Radiogroup3.itemindex of ++0 : begin ++ Label12.caption:='Field No'; ++ Label13.caption:='Field No'; ++ Label14.caption:='Field No'; ++ end; ++1 : begin ++ Label12.caption:='Start.End col'; ++ Label13.caption:='Start.End col'; ++ Label14.caption:='Start.End col'; ++ end; ++end; ++end; ++ ++procedure TOptForm.FormShow(Sender: TObject); ++begin ++radiogroup1click(sender); ++RadioGroup5Click(Sender); ++RadioGroup8Click(Sender); ++end; ++ ++procedure TOptForm.RadioGroup5Click(Sender: TObject); ++begin ++case radiogroup5.itemindex of ++0 : begin ++ Panel1.visible:=true; ++ Panel2.visible:=False; ++ end; ++1 : begin ++ Panel1.visible:=False; ++ Panel2.visible:=true; ++ end; ++2 : begin ++ Panel1.visible:=False; ++ Panel2.visible:=False; ++ end; ++end; ++end; ++ ++ ++procedure TOptForm.RadioGroup8Click(Sender: TObject); ++begin ++case radiogroup8.ItemIndex of ++ 0 : begin // online ++ DirectoryEdit2.visible:=false; ++ end; ++ 1 : begin // cdrom ++ DirectoryEdit2.visible:=true; ++ end; ++end; ++end; ++ ++initialization ++ {$i SettingUnit.lrs} ++ + end. +\ No hay ningún carácter de nueva línea al final del fichero +diff -ur skychart_3.2/varobs/splashunit.lfm skychart_3.2_up/varobs/splashunit.lfm +--- skychart_3.2/varobs/splashunit.lfm 2008-06-12 16:22:26.000000000 +0200 ++++ skychart_3.2_up/varobs/splashunit.lfm 2011-03-09 15:18:23.219263874 +0100 +@@ -1,213 +1,213 @@ +-object splash: Tsplash +- Left = 390 +- Height = 294 +- Top = 143 +- Width = 361 +- HorzScrollBar.Page = 360 +- VertScrollBar.Page = 293 +- ActiveControl = BitBtn1 +- AutoSize = True +- BorderStyle = bsNone +- Caption = 'splash' +- ClientHeight = 294 +- ClientWidth = 361 +- Color = clBlack +- Font.Height = -11 +- Font.Name = 'MS Sans Serif' +- FormStyle = fsStayOnTop +- OnClick = Image1Click +- OnShow = FormShow +- Position = poScreenCenter +- object BitBtn1: TBitBtn +- Height = 1 +- Width = 1 +- Cancel = True +- Default = True +- ModalResult = 2 +- NumGlyphs = 2 +- TabOrder = 0 +- end +- object Panel1: TPanel +- Height = 294 +- Width = 361 +- Align = alClient +- AutoSize = True +- BevelOuter = bvNone +- Caption = 'Panel1' +- ClientHeight = 294 +- ClientWidth = 361 +- TabOrder = 1 +- OnClick = Image1Click +- object Image1: TImage +- Left = 32 +- Height = 150 +- Width = 300 +- AutoSize = True +- Center = True +- OnClick = Image1Click +- Picture.Data = { +- 1754506F727461626C654E6574776F726B477261706869637A0F000089504E47 +- 0D0A1A0A0000000D494844520000012C000000960802000000EB39228500000F +- 414944415478DAED9D0B92E32A0C4559BA96969DF9CD6BC70E1F21C41FECABEA +- AAE9493B0604078100610C040281402010080402814020100804028140201008 +- 040281FC842CB93F611F83AE20902EF2F97C6C088993F319E80A021901E1F9DF +- FBC3CF9FD876120281B41F8EDE061096100281402010080402814020BE1C07F3 +- A39B70967F377366CB27D4232D592DC99F7F591D36BF3ED31A9F87353573BE5F +- 50C8EA7E8F30D3C578F453F1480265F2956D6E307BC3F250A999E9F9591448AF +- 18C55FECDAF2064358DCE577D54601003DB251A999457A847E8D555A9A57AAB5 +- D8120EE6A1777F965B676183689B438D1262E3B1899AE9A7166561C7E8E427F6 +- A29FBD0C9884B00CA711A5FACBF8F8396101845D8706594DB9B6DDA79EAEEF9E +- A64CA3EC6C741D58FA96500961015123CCE0DFF87DCAD4AB0CC2E26F35372625 +- 5FF15C1C4DCB380042BD26FB8EA14894B6508D3283E42534CB413A11C2B2AE27 +- 57576F805061E61B41E8FDAEDF1DAAAFE92966F0CCD23063B8088435FD4E96AE +- E8DCE7783E247258391C6D5565837D04CBB949A798C1AE138C1E73C21E106669 +- 3BEBBB0E8422872B3B66EC85C175B1643DA859744D33835786C674818B78472B +- A9D67F9DBCB15ABC21AFB372A35FA2588B49EFD88407A1DF771AE6C72F9BE9F0 +- 133845BF1F7EFF1AA8B8431E2A57C35AE5AAF29DD559A2869AE9D65A4AF2301F +- C270EAA8348663CC2071B341BB375B7C49FAACE98953D3224BC86891380B52DF +- 37756935C61988CE72AA977B50BD07846A1B331B34B13C5C6D62C0CC70914D92 +- 832014BC77419172E784237DDA0B66A090D2186983B6C8C43330D2186AAA6D40 +- D5CE8730F0EB2FB58D61807F6B96A9E4B53CC5293A6B37A0F2E583372877F18E +- FE756D94B42675459E6E8B7632866775849537C50C4EF4BC29EBAC77173B629D +- 3009A138060184BD20B4EB3E84704133D85CB3192E0D1A3A3B6DBC63E69E666F +- 08614D97B40184A1319C3C1B8CB4897EC630ABCEBA5670DFBDA34A08E33A9FC5 +- 40D646D0FDE684B18AEC7F6E9032EAE91C4475737CD5EC0B1930286D768A420F +- A1E1B7D4CF62A07897E54E101A33FA34649E9AAE25A14EFAADDC31D3DB43C32E +- 87B0EE780D8146BF7E9D0961A7150265688F6C852C08E1C802E499C1FEC67091 +- B302C99657E5ACB2EBBA543353FC672B9EA9DF1EC2A241CEE5CB69AFE8B2828F +- A9EF96DB06F2215C2AFA8E3EE2CE66272DA6CC099B077DAB04A0E085C3C2CFC9 +- ED2F63CB8EFB2835ED02106DAD99251C996A6D0D40EAF446D0F9AB21ACAF51B4 +- 896A8D1174FE7608A7630C08A7541C6409085BF1030E8B744554376982CE0121 +- 38AC87F074611074FE5208BD2AFCF7EB5177EC196D42ADA27FFFFCCF1E55BB0F +- A1F3A74168FFFC3EFE3614E7190C902A744EC63FD24D0DEB11B20D84B19A0BEC +- E1B7CFBE213C5210A241A46671D756A34B990408012145CD20832838ACD43931 +- CAA486B509D903426F2642BF2E39DD1C006195DA2D555B3AA7262F876C08A1CB +- 9E1242CD0C061C0A3AE727DECDC6BA908D20CCA1CE73CF6080D47AC448FD9380 +- AC04615155F9EE19D22504D1E99CA6562E640684B56F50438806310542A81D10 +- 82C35C25D0D8E42053214CD690EDF924D1114A8A1D36E898C743080EB787908C +- BF9045E2938406B11E849890AF0B61B3331326EF729D3773E844738ABA9769D9 +- BA0684EB427864A2F866087F6A1B0821385C11C2B6557272F8F7E3B42D81CC17 +- 3608B5CE698B4A0784CB42789E88F33E649AD50B1B042004841D0D11FD36409E +- E7E2CC7D2C20C6E10B3DA5D32104870B41D8A326EC9127196627EACB39CC2929 +- 2D9313484F08DBBFD3C28C82D9606C72080801E11B21EC5F07FF12F87C3E3F4B +- 183398EF69139965A4C5F20308B784D03B2AEE10C88E4B01E14808C1E14C08C7 +- A89EAEE58A0BC56F009510CB377098AF735A356380702BBDD38FBD5F14A377AE +- 580042403847E91684E7F0545AAE78709B283CAEB974F600E13E109235093C82 +- 150B40B80284067BBB1F0C61303F4C43F8480EB780101C0E8270A2AE6F7B680F +- 4A4D04C827B589D2B2D026F90484FB8C3A2E021D07A9899F030684FB6415106E +- A2627257089343D36734889AEB9500E1C320F42E2E6665C465E2E4AC1C3EDF49 +- 43D79E85FC4BCE69B75E0310A6DFC254BFDBFAEDB6D2BD4487F97C3EFED0F461 +- 6DE22FF39AEBE31782101C768590AC0671D93EA7AABB9BC1C01E7E37971EEB1A +- C3AAC4D98ECF5C2BA66E5D8409D1AC093220EC0721D326ACA62F9BC164CFCD8E +- B8F826E80D8CDD2922F3AD20BDB2B4A2068712964A7838D15CC35E2FDEDA9306 +- B36BA594940E1096F56D0269FAEA8C897ED0F57B15B94BF9B184823C95A4650A +- 73AE798C48D7EB95E681CD7FA74A2998BE02C2BC0146D26214FB6C92784721B4 +- 46A47C42419F5C9296020061381AD3DBA93A1E42CE16DD6798BDAFC81D07ABF3 +- 869512D379B47480B06688CFF2963BAAD1D7B79C9C07A1D4FDBBA51800A1A70A +- 0DA86C6E6F50F5464693E7B695C2BFE4E210D218C21039A519CC9A37E60D112F +- 0E130971F63C3972AB198ECACF487139227FB0CDA0C0A13ECFAD2A255E3ACC0B +- 5B4128CE253466501E95E54E2A84EE594AC86AF563E6847A2747817751333F97 +- BFDBB052522E1C0284544520E7FCB66B4239F54FBA0A8E8829D3F4F4DA840208 +- 3386BE75C3D1E4C03236162D988B267DAA3D2A455B3A40586F06EFE15FD6E4A4 +- C0BE65F5F41909C521ECE1984962190CADC91B366B9646B2F2D3A95212A57BFD +- DD21544E60FCBB7A0FB8B2F5C868695A4618FF2236DE6B6209C3E19CF00CEB27 +- 8C42681296A7784ED8A952D2A57BF9E4B01384C985ECDC6543799029CCD35C2F +- 910361CC43D364F92BF40D0ACF6817BE2310B6F28E76AA9474E9006173028DD1 +- 6E9ED0ECAB50562DFB249F1049CB86C5BB7358C06A76CC304365CE0D96B5815B +- 633F9B574A71E9006115846B9759178AA6AE809A6FE7A5D054E7B4645B7C2987 +- 2510EEAE2C32898DDD0B96B1757ED685F0957769BD1BC25D8AF906085F6B0C1B +- 404899D7E8AE50E6D343438A92024270B81C84CCEEE0ED20FCBA49BF114BD76F +- 101DB2416B374A40F80205D1F7E0EFF7B251E3C6C2A08600B4E8A25E08E1CB6E +- 95A4376BE7670B2975D9681DEEE5ADBE8FCE69F98A7911872F8770C40D87CAF9 +- 272004845ABD782E9963ABD9A00C61599B48BEA17240DAA72DD20E4DF33DB7BB +- 52B9526837974C9213CA5F39ECAA816E0D9136699DAFE0500BE1620BA9E176AD +- DA891B59869D221DCD780D744BEE2ED0EAB15EDE71CB32EDA58BE46ECCC27D78 +- BFB0270184C724087B2677BF7783437D807029088BCFEF68203CBFCD4068DBC6 +- 941E5A2A29F7066C2A817083684B8F378619102E2005A113334E455C714FFC83 +- 0E47349478FDE9246D00D5D649CB102E1723F4D91C9272B77FB84F6D9E1914B2 +- CC3EA31DBE2A43A1A40E1CE6A61B81909421A1CA9216205C31462820649CA233 +- 562694B317FDF977E1F4ED7507F78F4C52C44434D1089F8E3D8D9FFD3721E765 +- C111D351982310664740058723206457261E0DE1F7B251FA155619D02DFEFE1F +- 84AA23EAF110F7F94947A6CDF94A9E8FC053392C8170F684B018C2DC215C6C5D +- 26371899FE90FE19EBA120CA606ED24908551150E1291D01E14A7D4F27089581 +- 2DDA9220D045E24D2FAD92A6D4A47AD1D8848F34861B4158EF98D1B852C5F098 +- DF9B6582306107AB487D584E930CC152311CE583C1A4EA1C1CAE016124B6EFC4 +- 2D4F65B73BE9E757CC6B7D088983506593DDEC51D2CA351C0E303716E68CF886 +- 5DF09A01E19338DC0BC2B2C57AA525641C80E44248DC0B832B719403E3ACD2D5 +- 7B47FD3070A286D31150610C47402810B80C87B9D3ADAA392107A1D2D3A3C52C +- 75EF67C3A4CBE6840BB5FC2771980DE1B1C4F125FD06EECA0B657F0472218395 +- DB563461398DBB405F50969AA4CB26A8F094F68790F9F041C79794B3507338F1 +- F3E550A5D5D7D0D77CBF6CEFE8EECDF7B9103EF8E860AE7E2E3F40F981C325C7 +- 57CF81F0011C664078BC11C2EC06D1E76E0F40D845E7EB4288FB53C777CCC375 +- 4E0FD3F9DED1A801E10A1C02C2370F4A295C120284FA867C348ACE365CE14FAB +- E0BD6F28622184281B320910D2CA0DE88175FC1008636690E095F95FBEF12F32 +- B83AAC005247148719ADE79995B929870C84FA2EFF7596CFDD6A4242683672AF +- 5F6321A42B38378DEFED1E0BE18E1CA6210481FA392103A16120FC3E06080121 +- 0BA1DEFDB098F2C76F7464D6F1D9BF877FF606AA34A70331E0703908B71D8BCA +- DB29FBD17846493C03B449DBD9C2B12859C69000E1EB397420DC53E1C9934DFD +- 2CE1B571FC2B3C83C2D6F2793A278562C1E158086B2E3C59C30CE6D685E6A040 +- F2D482E6270C91F853BDFB2721EE20FB79CDA911529FC9D898C3ED21A43DCE4C +- 148C39B30E373580D0446237FDFD166BF4314BAEB1F09AC139299EC4A0742084 +- F2DAE06E2E99BB40C9C3E9B188D7C596D639834F4E77EC876FBA6FBE485942A1 +- 53C83D7D1F9EAC5F3AC0E17B38A4FDF7A9C9818962734561F0A989A29B88C2C4 +- B96A9C2C0566500E0913EB71F4107AEF24F14938696640F82C9D7B586AA08AFD +- 356BB4664318FA696E6378426833EFF11FEB29D8006A3D86A3801010B61FA90E +- 86F0B784E86688F5D6D8C1F6CFD70AA64C8E579FCCB317F2F0F910F6B3ECFFC8 +- F97C3E675F7BFF4281BC014239EF0254E1F7283384BE0CE1F9EBCF305F75C2CD +- 60C9A84374272EAB09E77E14A465F9DD62D3E0A741D88FC3533C083F7F9205E1 +- FDFC8E7236C158119C0B5E982501FE61F6796566CE9F8F25E767770E437ED80C +- C87F62398CE55953647ABA7487F09F1443E8DB826D079C056148EBBDA392E1BD +- 7C33DEA05493B158DE94C5D7C73B7DB87774C05C2E360A2DA49FF6DBA8AD594C +- CF5D82D75F45968690521D479CCFF0B5FAA0E3FA78A74F5E27DCAA215BEB81B4 +- 697F54B2813B77C78CE6F62ACDC3EE63DFDDA7C21B346B2AAC67351974F4E13B +- 66368390C38FF7EF41DAA8FCABD87B0BF87B7C8A90BC869271901CB2D8544598 +- A7787F8A79D73DD78330FD81C221105F6C5FF1FDFBF94BD213EE79F5BC0F8527 +- 2110886309938C856879FF5542787AE6211048F970341C791AEB94E9B4253808 +- 0402814020100804028140F69B8EC766E4F75A50386B4F4ED3ED7524D68136D2 +- 8B102E6AD98E72F6BB9E8F7E8AE7A3F2C386CDA372F150F8B053DB28DBA8AD6C +- E4DEE76D722C38A0EF3442650910DADBC13B41282C6A09A743BC0F853AEBDD38 +- 843C2B79B3F7DFB3FD5D8F3C7BCB86729E59E58FD7B366A9936D0942236FAEE7 +- 360752F4AFEA97E750DD615B2FC876DB41879C9F64338D75DBB547619AE6397C +- 3E66F47AB70D0D8442DB5802423DA8C9C7DAB68FB607C6C643A8DF809295E7AE +- 10D6E8939D0BC4E63E6D33ACEC3B644B68DC55D0F6104220100804028140203D +- E53FFC9162CC316D57000000000049454E44AE426082 +- } +- Stretch = True +- Transparent = False +- end +- object Label2: TLabel +- Height = 17 +- Top = 153 +- Width = 382 +- Alignment = taCenter +- Anchors = [akTop, akLeft, akRight] +- AutoSize = False +- Caption = 'Version 3.0 June 10 2008' +- Color = clBlack +- Font.Color = clYellow +- ParentColor = False +- Transparent = False +- OnClick = Image1Click +- end +- object Label3: TLabel +- Height = 66 +- Top = 182 +- Width = 381 +- Alignment = taCenter +- Anchors = [akTop, akLeft, akRight] +- Caption = 'Copyright 2008 Patrick Chevalley Tous droits reservé.'#10'http://www.astrosurf.com/astropc'#10'This program is free software; you can redistribute it '#10'and/or modify it under the terms of the '#10'GNU General Public License' +- Color = clBlack +- Font.Color = clYellow +- ParentColor = False +- Transparent = False +- OnClick = Image1Click +- end +- end +- object Timer1: TTimer +- Enabled = False +- Interval = 2000 +- OnTimer = Timer1Timer +- left = 8 +- top = 152 +- end +-end ++object splash: Tsplash ++ Left = 390 ++ Height = 294 ++ Top = 143 ++ Width = 361 ++ HorzScrollBar.Page = 360 ++ VertScrollBar.Page = 293 ++ ActiveControl = BitBtn1 ++ AutoSize = True ++ BorderStyle = bsNone ++ Caption = 'splash' ++ ClientHeight = 294 ++ ClientWidth = 361 ++ Color = clBlack ++ Font.Height = -11 ++ Font.Name = 'MS Sans Serif' ++ FormStyle = fsStayOnTop ++ OnClick = Image1Click ++ OnShow = FormShow ++ Position = poScreenCenter ++ object BitBtn1: TBitBtn ++ Height = 1 ++ Width = 1 ++ Cancel = True ++ Default = True ++ ModalResult = 2 ++ NumGlyphs = 2 ++ TabOrder = 0 ++ end ++ object Panel1: TPanel ++ Height = 294 ++ Width = 361 ++ Align = alClient ++ AutoSize = True ++ BevelOuter = bvNone ++ Caption = 'Panel1' ++ ClientHeight = 294 ++ ClientWidth = 361 ++ TabOrder = 1 ++ OnClick = Image1Click ++ object Image1: TImage ++ Left = 32 ++ Height = 150 ++ Width = 300 ++ AutoSize = True ++ Center = True ++ OnClick = Image1Click ++ Picture.Data = { ++ 1754506F727461626C654E6574776F726B477261706869637A0F000089504E47 ++ 0D0A1A0A0000000D494844520000012C000000960802000000EB39228500000F ++ 414944415478DAED9D0B92E32A0C4559BA96969DF9CD6BC70E1F21C41FECABEA ++ AAE9493B0604078100610C040281402010080402814020100804028140201008 ++ 040281FC842CB93F611F83AE20902EF2F97C6C088993F319E80A021901E1F9DF ++ FBC3CF9FD876120281B41F8EDE061096100281402010080402814020BE1C07F3 ++ A39B70967F377366CB27D4232D592DC99F7F591D36BF3ED31A9F87353573BE5F ++ 50C8EA7E8F30D3C578F453F1480265F2956D6E307BC3F250A999E9F9591448AF ++ 18C55FECDAF2064358DCE577D54601003DB251A999457A847E8D555A9A57AAB5 ++ D8120EE6A1777F965B676183689B438D1262E3B1899AE9A7166561C7E8E427F6 ++ A29FBD0C9884B00CA711A5FACBF8F8396101845D8706594DB9B6DDA79EAEEF9E ++ A64CA3EC6C741D58FA96500961015123CCE0DFF87DCAD4AB0CC2E26F35372625 ++ 5FF15C1C4DCB380042BD26FB8EA14894B6508D3283E42534CB413A11C2B2AE27 ++ 57576F805061E61B41E8FDAEDF1DAAAFE92966F0CCD23063B8088435FD4E96AE ++ E8DCE7783E247258391C6D5565837D04CBB949A798C1AE138C1E73C21E106669 ++ 3BEBBB0E8422872B3B66EC85C175B1643DA859744D33835786C674818B78472B ++ A9D67F9DBCB15ABC21AFB372A35FA2588B49EFD88407A1DF771AE6C72F9BE9F0 ++ 133845BF1F7EFF1AA8B8431E2A57C35AE5AAF29DD559A2869AE9D65A4AF2301F ++ C270EAA8348663CC2071B341BB375B7C49FAACE98953D3224BC86891380B52DF ++ 37756935C61988CE72AA977B50BD07846A1B331B34B13C5C6D62C0CC70914D92 ++ 832014BC77419172E784237DDA0B66A090D2186983B6C8C43330D2186AAA6D40 ++ D5CE8730F0EB2FB58D61807F6B96A9E4B53CC5293A6B37A0F2E583372877F18E ++ FE756D94B42675459E6E8B7632866775849537C50C4EF4BC29EBAC77173B629D ++ 3009A138060184BD20B4EB3E84704133D85CB3192E0D1A3A3B6DBC63E69E666F ++ 08614D97B40184A1319C3C1B8CB4897EC630ABCEBA5670DFBDA34A08E33A9FC5 ++ 40D646D0FDE684B18AEC7F6E9032EAE91C4475737CD5EC0B1930286D768A420F ++ A1E1B7D4CF62A07897E54E101A33FA34649E9AAE25A14EFAADDC31D3DB43C32E ++ 87B0EE780D8146BF7E9D0961A7150265688F6C852C08E1C802E499C1FEC67091 ++ B302C99657E5ACB2EBBA543353FC672B9EA9DF1EC2A241CEE5CB69AFE8B2828F ++ A9EF96DB06F2215C2AFA8E3EE2CE66272DA6CC099B077DAB04A0E085C3C2CFC9 ++ ED2F63CB8EFB2835ED02106DAD99251C996A6D0D40EAF446D0F9AB21ACAF51B4 ++ 896A8D1174FE7608A7630C08A7541C6409085BF1030E8B744554376982CE0121 ++ 38AC87F074611074FE5208BD2AFCF7EB5177EC196D42ADA27FFFFCCF1E55BB0F ++ A1F3A74168FFFC3EFE3614E7190C902A744EC63FD24D0DEB11B20D84B19A0BEC ++ E1B7CFBE213C5210A241A46671D756A34B990408012145CD20832838ACD43931 ++ CAA486B509D903426F2642BF2E39DD1C006195DA2D555B3AA7262F876C08A1CB ++ 9E1242CD0C061C0A3AE727DECDC6BA908D20CCA1CE73CF6080D47AC448FD9380 ++ AC04615155F9EE19D22504D1E99CA6562E640684B56F50438806310542A81D10 ++ 82C35C25D0D8E42053214CD690EDF924D1114A8A1D36E898C743080EB787908C ++ BF9045E2938406B11E849890AF0B61B3331326EF729D3773E844738ABA9769D9 ++ BA0684EB427864A2F866087F6A1B0821385C11C2B6557272F8F7E3B42D81CC17 ++ 3608B5CE698B4A0784CB42789E88F33E649AD50B1B042004841D0D11FD36409E ++ E7E2CC7D2C20C6E10B3DA5D32104870B41D8A326EC9127196627EACB39CC2929 ++ 2D9313484F08DBBFD3C28C82D9606C72080801E11B21EC5F07FF12F87C3E3F4B ++ 183398EF69139965A4C5F20308B784D03B2AEE10C88E4B01E14808C1E14C08C7 ++ A89EAEE58A0BC56F009510CB377098AF735A356380702BBDD38FBD5F14A377AE ++ 580042403847E91684E7F0545AAE78709B283CAEB974F600E13E109235093C82 ++ 150B40B80284067BBB1F0C61303F4C43F8480EB780101C0E8270A2AE6F7B680F ++ 4A4D04C827B589D2B2D026F90484FB8C3A2E021D07A9899F030684FB6415106E ++ A2627257089343D36734889AEB9500E1C320F42E2E6665C465E2E4AC1C3EDF49 ++ 43D79E85FC4BCE69B75E0310A6DFC254BFDBFAEDB6D2BD4487F97C3EFED0F461 ++ 6DE22FF39AEBE31782101C768590AC0671D93EA7AABB9BC1C01E7E37971EEB1A ++ C3AAC4D98ECF5C2BA66E5D8409D1AC093220EC0721D326ACA62F9BC164CFCD8E ++ B8F826E80D8CDD2922F3AD20BDB2B4A2068712964A7838D15CC35E2FDEDA9306 ++ B36BA594940E1096F56D0269FAEA8C897ED0F57B15B94BF9B184823C95A4650A ++ 73AE798C48D7EB95E681CD7FA74A2998BE02C2BC0146D26214FB6C92784721B4 ++ 46A47C42419F5C9296020061381AD3DBA93A1E42CE16DD6798BDAFC81D07ABF3 ++ 869512D379B47480B06688CFF2963BAAD1D7B79C9C07A1D4FDBBA51800A1A70A ++ 0DA86C6E6F50F5464693E7B695C2BFE4E210D218C21039A519CC9A37E60D112F ++ 0E130971F63C3972AB198ECACF487139227FB0CDA0C0A13ECFAD2A255E3ACC0B ++ 5B4128CE253466501E95E54E2A84EE594AC86AF563E6847A2747817751333F97 ++ BFDBB052522E1C0284544520E7FCB66B4239F54FBA0A8E8829D3F4F4DA840208 ++ 3386BE75C3D1E4C03236162D988B267DAA3D2A455B3A40586F06EFE15FD6E4A4 ++ C0BE65F5F41909C521ECE1984962190CADC91B366B9646B2F2D3A95212A57BFD ++ DD21544E60FCBB7A0FB8B2F5C868695A4618FF2236DE6B6209C3E19CF00CEB27 ++ 8C42681296A7784ED8A952D2A57BF9E4B01384C985ECDC6543799029CCD35C2F ++ 910361CC43D364F92BF40D0ACF6817BE2310B6F28E76AA9474E9006173028DD1 ++ 6E9ED0ECAB50562DFB249F1049CB86C5BB7358C06A76CC304365CE0D96B5815B ++ 633F9B574A71E9006115846B9759178AA6AE809A6FE7A5D054E7B4645B7C2987 ++ 2510EEAE2C32898DDD0B96B1757ED685F0957769BD1BC25D8AF906085F6B0C1B ++ 404899D7E8AE50E6D343438A92024270B81C84CCEEE0ED20FCBA49BF114BD76F ++ 101DB2416B374A40F80205D1F7E0EFF7B251E3C6C2A08600B4E8A25E08E1CB6E ++ 95A4376BE7670B2975D9681DEEE5ADBE8FCE69F98A7911872F8770C40D87CAF9 ++ 272004845ABD782E9963ABD9A00C61599B48BEA17240DAA72DD20E4DF33DB7BB ++ 52B9526837974C9213CA5F39ECAA816E0D9136699DAFE0500BE1620BA9E176AD ++ DA891B59869D221DCD780D744BEE2ED0EAB15EDE71CB32EDA58BE46ECCC27D78 ++ BFB0270184C724087B2677BF7783437D807029088BCFEF68203CBFCD4068DBC6 ++ 941E5A2A29F7066C2A817083684B8F378619102E2005A113334E455C714FFC83 ++ 0E47349478FDE9246D00D5D649CB102E1723F4D91C9272B77FB84F6D9E1914B2 ++ CC3EA31DBE2A43A1A40E1CE6A61B81909421A1CA9216205C31462820649CA233 ++ 562694B317FDF977E1F4ED7507F78F4C52C44434D1089F8E3D8D9FFD3721E765 ++ C111D351982310664740058723206457261E0DE1F7B251FA155619D02DFEFE1F ++ 84AA23EAF110F7F94947A6CDF94A9E8FC053392C8170F684B018C2DC215C6C5D ++ 26371899FE90FE19EBA120CA606ED24908551150E1291D01E14A7D4F27089581 ++ 2DDA9220D045E24D2FAD92A6D4A47AD1D8848F34861B4158EF98D1B852C5F098 ++ DF9B6582306107AB487D584E930CC152311CE583C1A4EA1C1CAE016124B6EFC4 ++ 2D4F65B73BE9E757CC6B7D088983506593DDEC51D2CA351C0E303716E68CF886 ++ 5DF09A01E19338DC0BC2B2C57AA525641C80E44248DC0B832B719403E3ACD2D5 ++ 7B47FD3070A286D31150610C47402810B80C87B9D3ADAA392107A1D2D3A3C52C ++ 75EF67C3A4CBE6840BB5FC2771980DE1B1C4F125FD06EECA0B657F0472218395 ++ DB563461398DBB405F50969AA4CB26A8F094F68790F9F041C79794B3507338F1 ++ F3E550A5D5D7D0D77CBF6CEFE8EECDF7B9103EF8E860AE7E2E3F40F981C325C7 ++ 57CF81F0011C664078BC11C2EC06D1E76E0F40D845E7EB4288FB53C777CCC375 ++ 4E0FD3F9DED1A801E10A1C02C2370F4A295C120284FA867C348ACE365CE14FAB ++ E0BD6F28622184281B320910D2CA0DE88175FC1008636690E095F95FBEF12F32 ++ B83AAC005247148719ADE79995B929870C84FA2EFF7596CFDD6A4242683672AF ++ 5F6321A42B38378DEFED1E0BE18E1CA6210481FA392103A16120FC3E06080121 ++ 0BA1DEFDB098F2C76F7464D6F1D9BF877FF606AA34A70331E0703908B71D8BCA ++ DB29FBD17846493C03B449DBD9C2B12859C69000E1EB397420DC53E1C9934DFD ++ 2CE1B571FC2B3C83C2D6F2793A278562C1E158086B2E3C59C30CE6D685E6A040 ++ F2D482E6270C91F853BDFB2721EE20FB79CDA911529FC9D898C3ED21A43DCE4C ++ 148C39B30E373580D0446237FDFD166BF4314BAEB1F09AC139299EC4A0742084 ++ F2DAE06E2E99BB40C9C3E9B188D7C596D639834F4E77EC876FBA6FBE485942A1 ++ 53C83D7D1F9EAC5F3AC0E17B38A4FDF7A9C9818962734561F0A989A29B88C2C4 ++ B96A9C2C0566500E0913EB71F4107AEF24F14938696640F82C9D7B586AA08AFD ++ 356BB4664318FA696E6378426833EFF11FEB29D8006A3D86A3801010B61FA90E ++ 86F0B784E86688F5D6D8C1F6CFD70AA64C8E579FCCB317F2F0F910F6B3ECFFC8 ++ F97C3E675F7BFF4281BC014239EF0254E1F7283384BE0CE1F9EBCF305F75C2CD ++ 60C9A84374272EAB09E77E14A465F9DD62D3E0A741D88FC3533C083F7F9205E1 ++ FDFC8E7236C158119C0B5E982501FE61F6796566CE9F8F25E767770E437ED80C ++ C87F62398CE55953647ABA7487F09F1443E8DB826D079C056148EBBDA392E1BD ++ 7C33DEA05493B158DE94C5D7C73B7DB87774C05C2E360A2DA49FF6DBA8AD594C ++ CF5D82D75F45968690521D479CCFF0B5FAA0E3FA78A74F5E27DCAA215BEB81B4 ++ 697F54B2813B77C78CE6F62ACDC3EE63DFDDA7C21B346B2AAC67351974F4E13B ++ 66368390C38FF7EF41DAA8FCABD87B0BF87B7C8A90BC869271901CB2D8544598 ++ A7787F8A79D73DD78330FD81C221105F6C5FF1FDFBF94BD213EE79F5BC0F8527 ++ 2110886309938C856879FF5542787AE6211048F970341C791AEB94E9B4253808 ++ 0402814020100804028140F69B8EC766E4F75A50386B4F4ED3ED7524D68136D2 ++ 8B102E6AD98E72F6BB9E8F7E8AE7A3F2C386CDA372F150F8B053DB28DBA8AD6C ++ E4DEE76D722C38A0EF3442650910DADBC13B41282C6A09A743BC0F853AEBDD38 ++ 843C2B79B3F7DFB3FD5D8F3C7BCB86729E59E58FD7B366A9936D0942236FAEE7 ++ 360752F4AFEA97E750DD615B2FC876DB41879C9F64338D75DBB547619AE6397C ++ 3E66F47AB70D0D8442DB5802423DA8C9C7DAB68FB607C6C643A8DF809295E7AE ++ 10D6E8939D0BC4E63E6D33ACEC3B644B68DC55D0F6104220100804028140203D ++ E53FFC9162CC316D57000000000049454E44AE426082 ++ } ++ Stretch = True ++ Transparent = False ++ end ++ object Label2: TLabel ++ Height = 17 ++ Top = 153 ++ Width = 382 ++ Alignment = taCenter ++ Anchors = [akTop, akLeft, akRight] ++ AutoSize = False ++ Caption = 'Version 3.0 June 10 2008' ++ Color = clBlack ++ Font.Color = clYellow ++ ParentColor = False ++ Transparent = False ++ OnClick = Image1Click ++ end ++ object Label3: TLabel ++ Height = 66 ++ Top = 182 ++ Width = 381 ++ Alignment = taCenter ++ Anchors = [akTop, akLeft, akRight] ++ Caption = 'Copyright 2008 Patrick Chevalley Tous droits reservé.'#10'http://www.astrosurf.com/astropc'#10'This program is free software; you can redistribute it '#10'and/or modify it under the terms of the '#10'GNU General Public License' ++ Color = clBlack ++ Font.Color = clYellow ++ ParentColor = False ++ Transparent = False ++ OnClick = Image1Click ++ end ++ end ++ object Timer1: TTimer ++ Enabled = False ++ Interval = 2000 ++ OnTimer = Timer1Timer ++ left = 8 ++ top = 152 ++ end ++end +diff -ur skychart_3.2/varobs/splashunit.lrs skychart_3.2_up/varobs/splashunit.lrs +--- skychart_3.2/varobs/splashunit.lrs 2008-06-12 16:22:26.000000000 +0200 ++++ skychart_3.2_up/varobs/splashunit.lrs 2011-03-09 15:18:23.219263874 +0100 +@@ -1,196 +1,196 @@ +-{ This is an automatically generated lazarus resource file } +- +-LazarusResources.Add('Tsplash','FORMDATA',[ +- 'TPF0'#7'Tsplash'#6'splash'#4'Left'#3#134#1#6'Height'#3'&'#1#3'Top'#3#143#0#5 +- +'Width'#3'i'#1#18'HorzScrollBar.Page'#3'h'#1#18'VertScrollBar.Page'#3'%'#1#13 +- +'ActiveControl'#7#7'BitBtn1'#8'AutoSize'#9#11'BorderStyle'#7#6'bsNone'#7'Cap' +- +'tion'#6#6'splash'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#5'Color'#7 +- +#7'clBlack'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif'#9'FormSty' +- +'le'#7#11'fsStayOnTop'#7'OnClick'#7#11'Image1Click'#6'OnShow'#7#8'FormShow'#8 +- +'Position'#7#14'poScreenCenter'#0#7'TBitBtn'#7'BitBtn1'#6'Height'#2#1#5'Widt' +- +'h'#2#1#6'Cancel'#9#7'Default'#9#11'ModalResult'#2#2#9'NumGlyphs'#2#2#8'TabO' +- +'rder'#2#0#0#0#6'TPanel'#6'Panel1'#6'Height'#3'&'#1#5'Width'#3'i'#1#5'Align' +- +#7#8'alClient'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#7'Caption'#6#6'Panel' +- +'1'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#7'OnClick' +- +#7#11'Image1Click'#0#6'TImage'#6'Image1'#4'Left'#2' '#6'Height'#3#150#0#5'Wi' +- +'dth'#3','#1#8'AutoSize'#9#6'Center'#9#7'OnClick'#7#11'Image1Click'#12'Pictu' +- +'re.Data'#10#150#15#0#0#23'TPortableNetworkGraphicz'#15#0#0#137'PNG'#13#10#26 +- +#10#0#0#0#13'IHDR'#0#0#1','#0#0#0#150#8#2#0#0#0#235'9"'#133#0#0#15'AIDATx' +- +#218#237#157#11#146#227'*'#12'EY'#186#150#150#157#249#205'k'#199#14#31'!'#196 +- +#31#236#171#234#170#233'I;'#6#4#7#129#0'a'#12#4#2#129'@ '#16#8#4#2#129'@ '#16 +- +#8#4#2#129'@ '#16#8#4#2#129#252#132','#185'?a'#31#131#174' '#144'.'#242#249 +- +'|l'#8#137#147#243#25#232#10#2#25#1#225#249#223#251#195#207#159#216'v'#18#2 +- +#129#180#31#142#222#6#16#150#16#2#129'@ '#16#8#4#2#129'@ '#190#28#7#243#163 +- +#155'p'#150'7sf'#203''''#212'#-Y-'#201#159'Y'#29'6'#191'>'#211#26#159#135 +- +'55s'#190'_P'#200#234'~'#143'0'#211#197'x'#244'S'#241'H'#2'e'#242#149'mn0{' +- +#195#242'P'#169#153#233#249'Y'#20'H'#175#24#197'_'#236#218#242#6'CX'#220#229 +- +'w'#213'F'#1#0'='#178'Q'#169#153'Ez'#132'~'#141'UZ'#154'W'#170#181#216#18#14 +- +#230#161'w'#150'[ga'#131'h'#155'C'#141#18'b'#227#177#137#154#233#167#22'ea' +- +#199#232#228''''#246#162#159#189#12#152#132#176#12#167#17#165#250#203#248#248 +- +'9a'#1#132']'#135#6'YM'#185#182#221#167#158#174#239#158#166'L'#163#236'lt'#29 +- +'X'#250#150'P'#9'a'#1'Q#'#204#224#223#248'}'#202#212#171#12#194#226'o57&%_' +- +#241'\'#28'M'#203'8'#0'B'#189'&'#251#142#161'H'#148#182'P'#141'2'#131#228'%4' +- +#203'A:'#17#194#178#174'''WWo'#128'Pa'#230#27'A'#232#253#174#223#29#170#175 +- +#233')f'#240#204#210'0c'#184#8#132'5'#253'N'#150#174#232#220#231'x>$rX9'#28 +- +'mUe'#131'}'#4#203#185'I'#167#152#193#174#19#140#30's'#194#30#16'fi;'#235#187 +- +#14#132'"'#135'+;f'#236#133#193'u'#177'd='#168'YtM3'#131'W'#134#198't'#129 +- +#139'xG+'#169#214''#157#188#177'Z'#188'!'#175#179'r'#163'_'#162'X'#139'I' +- +#239#216#132#7#161#223'w'#26#230#199'/'#155#233#240#19'8E'#191#31'~'#255#26 +- +#168#184'C'#30'*W'#195'Z'#229#170#242#157#213'Y'#162#134#154#233#214'ZJ'#242 +- +'0'#31#194'p'#234#168'4'#134'c'#204' q'#179'A'#187'7[|I'#250#172#233#137'S' +- +#211'"K'#200'h'#145'8'#11'R'#223'7ui5'#198#25#136#206'r'#170#151'{P'#189#7 +- +#132'j'#27'3'#27'4'#177'<\mb'#192#204'p'#145'M'#146#131' '#20#188'wA'#145'r' +- +#231#132'#}'#218#11'f'#160#144#210#24'i'#131#182#200#196'30'#210#24'j'#170'm' +- +'@'#213#206#135'0'#240#235'/'#181#141'a'#128'k'#150#169#228#181'<'#197'):k7' +- +#160#242#229#131'7(w'#241#142#254'um'#148#180'&uE'#158'n'#139'v2'#134'gu'#132 +- +#149'7'#197#12'N'#244#188')'#235#172'w'#23';b'#157'0'#9#161'8'#6#1#132#189' ' +- +#180#235'>'#132'pA3'#216'\'#179#25'.'#13#26':;m'#188'c'#230#158'fo'#8'aM'#151 +- +#180#1#132#161'1'#156'<'#27#140#180#137'~'#198'0'#171#206#186'Vp'#223#189#163 +- +'J'#8#227':'#159#197'@'#214'F'#208#253#230#132#177#138#236'n'#144'2'#234#233 +- +#28'Dus|'#213#236#11#25'0(mv'#138'B'#15#161#225#183#212#207'b'#160'x'#151#229 +- +'N'#16#26'3'#250'4d'#158#154#174'%'#161'N'#250#173#220'1'#211#219'C'#195'.' +- +#135#176#238'x'#13#129'F'#191'~'#157#9'a'#167#21#2'eh'#143'l'#133','#8#225 +- +#200#2#228#153#193#254#198'p'#145#179#2#201#150'W'#229#172#178#235#186'T3S' +- +#252'g+'#158#169#223#30#194#162'A'#206#229#203'i'#175#232#178#130#143#169#239 +- +#150#219#6#242'!\*'#250#142'>'#226#206'f''-'#166#204#9#155#7'}'#171#4#160#224 +- +#133#195#194#207#201#237'/c'#203#142#251'(5'#237#2#16'm'#173#153'%'#28#153'j' +- +'m'#13'@'#234#244'F'#208#249#171'!'#172#175'Q'#180#137'j'#141#17't'#254'v'#8 +- +#167'c'#12#8#167'T'#28'd'#9#8'['#241#3#14#139'tET7i'#130#206#1'!8'#172#135 +- +#240'ta'#16't'#254'R'#8#189'*'#252#247#235'Qw'#236#25'mB'#173#162''#255#252 +- +#207#30'U'#187#15#161#243#167'Ah'#255#252'>'#254'6'#20#231#25#12#144'*tN'#198 +- +'?'#210'M'#13#235#17#178#13#132#177#154#11#236#225#183#207#190'!<R'#16#162'A' +- +#164'fq'#215'V'#163'K'#153#4#8#1'!E'#205' '#131'(8'#172#212'91'#202#164#134 +- +#181#9#217#3'Bo&B'#191'.9'#221#28#0'a'#149#218'-U[:'#167'&/'#135'l'#8#161#203 +- +#158#18'B'#205#12#6#28#10':'#231''''#222#205#198#186#144#141' '#204#161#206 +- +'s'#207'`'#128#212'z'#196'H'#253#147#128#172#4'aQU'#249#238#25#210'%'#4#209 +- +#233#156#166'V.d'#6#132#181'oPC'#136#6'1'#5'B'#168#29#16#130#195'\%'#208#216 +- +#228' S!L'#214#144#237#249'$'#209#17'J'#138#29'6'#232#152#199'C'#8#14#183#135 +- ,#144#140#191#144'E'#226#147#132#6#177#30#132#152#144#175#11'a'#179'3'#19'&' +- +#239'r'#157'7s'#232'Ds'#138#186#151'i'#217#186#6#132#235'Bxd'#162#248'f'#8'' +- +'j'#27#8'!8\'#17#194#182'Urr'#248#247#227#180'-'#129#204#23'6'#8#181#206'i' +- +#139'J'#7#132#203'Bx'#158#136#243'>d'#154#213#11#27#4' '#4#132#29#13#17#253 +- +'6@'#158#231#226#204'}, '#198#225#11'='#165#211'!'#4#135#11'A'#216#163'&'#236 +- +#145''''#25'f'''#234#203'9'#204'))-'#147#19'HO'#8#219#191#211#194#140#130#217 +- +'`lr'#8#8#1#225#27'!'#236'_'#7#255#18#248'|>?K'#24'3'#152#239'i'#19#153'e' +- +#164#197#242#3#8#183#132#208';*'#238#16#200#142'K'#1#225'H'#8#193#225'L'#8 +- +#199#168#158#174#229#138#11#197'o'#0#149#16#203'7p'#152#175'sZ5c'#128'p+'#189 +- +#211#143#189'_'#20#163'w'#174'X'#0'B@8G'#233#22#132#231#240'TZ'#174'xp'#155 +- +'(<'#174#185't'#246#0#225'>'#16#146'5'#9'<'#130#21#11'@'#184#2#132#6'{'#187 +- +#31#12'a0?LC'#248'H'#14#183#128#16#28#14#130'p'#162#174'o{h'#15'JM'#4#200'''' +- +#181#137#210#178#208'&'#249#4#132#251#140':.'#2#29#7#169#137#159#3#6#132#251 +- +'d'#21#16'n'#162'brW'#8#147'C'#211'g4'#136#154#235#149#0#225#195' '#244'..fe' +- +#196'e'#226#228#172#28'>'#223'IC'#215#158#133#252'K'#206'i'#183'^'#3#16#166 +- +#223#194'T'#191#219#250#237#182#210#189'D'#135#249'|>'#254#208#244'am'#226'/' +- +#243#154#235#227#23#130#16#28'v'#133#144#172#6'q'#217'>'#167#170#187#155#193 +- +#192#30'~7'#151#30#235#26#195#170#196#217#142#207'\+'#166'n]'#132#9#209#172#9 +- +'2 '#236#7'!'#211'&'#172#166'/'#155#193'd'#207#205#142#184#248'&'#232#13#140 +- +#221')"'#243#173' '#189#178#180#162#6#135#18#150'Jx8'#209'\'#195'^/'#222#218 +- +#147#6#179'k'#165#148#148#14#16#150#245'm'#2'i'#250#234#140#137'~'#208#245'{' +- +#21#185'K'#249#177#132#130'<'#149#164'e'#10's'#174'y'#140'H'#215#235#149#230 +- +#129#205''#167'J)'#152#190#2#194#188#1'F'#210'b'#20#251'l'#146'xG!'#180'F' +- +#164'|BA'#159'\'#146#150#2#0'a8'#26#211#219#169':'#30'B'#206#22#221'g'#152 +- +#189#175#200#29#7#171#243#134#149#18#211'y'#180't'#128#176'f'#136#207#242#150 +- +';'#170#209#215#183#156#156#7#161#212#253#187#165#24#0#161#167#10#13#168'lno' +- +'P'#245'FF'#147#231#182#149#194#191#228#226#16#210#24#194#16'9'#165#25#204 +- +#154'7'#230#13#17'/'#14#19#9'q'#246'<9r'#171#25#142#202#207'Hq9"'#176#205 +- +#160#192#161'>'#207#173'*%^:'#204#11'[A('#206'%4fP'#30#149#229'N*'#132#238'Y' +- +'J'#200'j'#245'c'#230#132'z''G'#129'wQ3?'#151#191#219#176'RR.'#28#2#132'TE ' +- +#231#252#182'kB9'#245'O'#186#10#142#136')'#211#244#244#218#132#2#8'3'#134#190 +- +'u'#195#209#228#192'26'#22'-'#152#139'&}'#170'=*E[:@Xo'#6#239#225'_'#214#228 +- +#164#192#190'e'#245#244#25#9#197'!'#236#225#152'Ib'#25#12#173#201#27'6k'#150 +- +'F'#178#242#211#169'R'#18#165'{'#253#221'!TN`'#252#187'z'#15#184#178#245#200 +- +'hiZF'#24#255'"6'#222'kb'#9#195#225#156#240#12#235''''#140'Bh'#18#150#167'xN' +- +#216#169'R'#210#165'{'#249#228#176#19#132#201#133#236#220'eCy'#144')'#204#211 +- +'\/'#145#3'a'#204'C'#211'd'#249'+'#244#13#10#207'h'#23#190'#'#16#182#242#142 +- +'v'#170#148't'#233#0'as'#2#141#209'n'#158#208#236#171'PV-'#251'$'#159#16'I' +- +#203#134#197#187'sX'#192'jv'#204'0Ce'#206#13#150#181#129'[c?'#155'WJq'#233#0 +- +'a'#21#132'k'#151'Y'#23#138#166#174#128#154'o'#231#165#208'T'#231#180'd[|)' +- +#135'%'#16#238#174',2'#137#141#221#11#150#177'u~'#214#133#240#149'wi'#189#27 +- +#194']'#138#249#6#8'_k'#12#27'@H'#153#215#232#174'P'#230#211'CC'#138#146#2'B' +- +'p'#184#28#132#204#238#224#237' '#252#186'I'#191#17'K'#215'o'#16#29#178'Ak7J' +- +'@'#248#2#5#209#247#224#239#247#178'Q'#227#198#194#160#134#0#180#232#162'^'#8 +- +#225#203'n'#149#164'7k'#231'g'#11')u'#217'h'#29#238#229#173#190#143#206'i' +- +#249#138'y'#17#135'/'#135'p'#196#13#135#202#249''' '#4#132'Z'#189'x.'#153'c' +- +#171#217#160#12'aY'#155'H'#190#161'r@'#218#167'-'#210#14'M'#243'='#183#187'R' +- +#185'Rh7'#151'L'#146#19#202'_9'#236#170#129'n'#13#145'6i'#157#175#224'P'#11 +- +#225'b'#11#169#225'v'#173#218#137#27'Y'#134#157'"'#29#205'x'#13'tK'#238'.' +- +#208#234#177'^'#222'q'#203'2'#237#165#139#228'n'#204#194'}x'#191#176''''#1 +- +#132#199'$'#8'{&w'#191'w'#131'C}'#128'p)'#8#139#207#239'h <'#191#205'@h'#219 +- +#198#148#30'Z*)'#247#6'l*'#129'p'#131'hK'#143'7'#134#25#16'. '#5#161#19'3NE\' +- +'qO'#252#131#14'G4'#148'x'#253#233'$m'#0#213#214'I'#203#16'.'#23'#'#244#217 +- +#28#146'r'#183''#184'Om'#158#25#20#178#204'>'#163#29#190'*C'#161#164#14#28 +- +#230#166#27#129#144#148'!'#161#202#146#22' \1F( d'#156#162'3V&'#148#179#23 +- +#253#249'w'#225#244#237'u'#7#247#143'LR'#196'D4'#209#8#159#142'='#141#159#253 +- +'7!'#231'e'#193#17#211'Q'#152'#'#16'fG@'#5#135'# dW&'#30#13#225#247#178'Q' +- +#250#21'V'#25#208'-'#254#254#31#132#170'#'#234#241#16#247#249'IG'#166#205#249 +- +'J'#158#143#192'S9,'#129'p'#246#132#176#24#194#220'!\l]&7'#24#153#254#144#254 +- +#25#235#161' '#202'`n'#210'I'#8'U'#17'P'#225')'#29#1#225'J}O'''#8#149#129'-' +- +#218#146' '#208'E'#226'M/'#173#146#166#212#164'z'#209#216#132#143'4'#134#27 +- +'AX'#239#152#209#184'R'#197#240#152#223#155'e'#130'0a'#7#171'H}XN'#147#12#193 +- +'R1'#28#229#131#193#164#234#28#28#174#1'a$'#182#239#196'-Oe'#183';'#233#231 +- +'W'#204'k}'#8#137#131'Pe'#147#221#236'Q'#210#202'5'#28#14'07'#22#230#140#248 +- ,#134']'#240#154#1#225#147'8'#220#11#194#178#197'z'#165'%d'#28#128#228'BH'#220 +- +#11#131'+q'#148#3#227#172#210#213'{G'#253'0p'#162#134#211#17'Pa'#12'G@('#16 +- +#184#12#135#185#211#173#170'9!'#7#161#210#211#163#197',u'#239'g'#195#164#203 +- +#230#132#11#181#252'''q'#152#13#225#177#196#241'%'#253#6#238#202#11'e'#4'r!' +- +#131#149#219'V4a9'#141#187'@_P'#150#154#164#203'&'#168#240#148#246#135#144 +- +#249#240'A'#199#151#148#179'Ps8'#241#243#229'P'#165#213#215#208#215'|'#191'l' +- +#239#232#238#205#247#185#16'>'#248#232'`'#174'~.?@'#249#129#195'%'#199'W'#207 +- +#129#240#1#28'f@x'#188#17#194#236#6#209#231'n'#15'@'#216'E'#231#235'B'#136 +- +#251'S'#199'w'#204#195'uN'#15#211#249#222#209#168#1#225#10#28#2#194'7'#15'J)' +- +'\'#18#2#132#250#134'|4'#138#206'6\'#225'O'#171#224#189'o(b!'#132'('#27'2'#9 +- +#16#210#202#13#232#129'u'#252#16#8'cf'#144#224#149#249'_'#190#241'/2'#184':' +- +#172#0'RG'#20#135#25#173#231#153#149#185')'#135#12#132#250'.'#255'u'#150#207 +- +#221'jBBh6r'#175'_c!'#164'+87'#141#239#237#30#11#225#142#28#166'!'#4#129#250 +- +'9!'#3#161'a '#252'>'#6#8#1'!'#11#161#222#253#176#152#242#199'otd'#214#241 +- +#217#191#135''#246#6#170'4'#167#3'1'#224'p9'#8#183#29#139#202#219')'#251#209 +- +'xFI<'#3#180'I'#219#217#194#177'(Y'#198#144#0#225#235'9t '#220'S'#225#201#147 +- +'M'#253','#225#181'q'#252'+<'#131#194#214#242'y:'''#133'b'#193#225'X'#8'k.<Y' +- +#195#12#230#214#133#230#160'@'#242#212#130#230''''#12#145#248'S'#189#251'''!' +- +#238' '#251'y'#205#169#17'R'#159#201#216#152#195#237'!'#164'='#206'L'#20#140 +- +'9'#179#14'75'#128#208'Db7'#253#253#22'k'#244'1K'#174#177#240#154#193'9)'#158 +- +#196#160't '#132#242#218#224'n.'#153#187'@'#201#195#233#177#136#215#197#150 +- +#214'9'#131'ONw'#236#135'o'#186'o'#190'HYB'#161'S'#200'=}'#31#158#172'_:'#192 +- +#225'{8'#164#253#247#169#201#129#137'bsEa'#240#169#137#162#155#136#194#196 +- +#185'j'#156','#5'fP'#14#9#19#235'q'#244#16'z'#239'$'#241'I8if@'#248','#157'{' +- +'Xj'#160#138#253'5k'#180'fC'#24#250'incxBh3'#239#241#31#235')'#216#0'j='#134 +- +#163#128#16#16#182#31#169#14#134#240#183#132#232'f'#136#245#214#216#193#246 +- +#207#215#10#166'L'#142'W'#159#204#179#23#242#240#249#16#246#179#236#255#200 +- +#249'|>g_{'#255'B'#129#188#1'B9'#239#2'T'#225#247'(3'#132#190#12#225#249#235 +- +#207'0_u'#194#205'`'#201#168'Ct''.'#171#9#231'~'#20#164'e'#249#221'b'#211#224 +- +#167'A'#216#143#195'S<'#8'?'#146#5#225#253#252#142'r6'#193'X'#17#156#11'^' +- +#152'%'#1#254'a'#246'yef'#206#159#143'%'#231'gw'#14'C~'#216#12#200'b9'#140 +- +#229'YSdz'#186't'#135#240#159#20'C'#232#219#130'm'#7#156#5'aH'#235#189#163 +- +#146#225#189'|3'#222#160'T'#147#177'X'#222#148#197#215#199';}'#184'wt'#192'\' +- +'.6'#10'-'#164#159#246#219#168#173'YL'#207']'#130#215'_E'#150#134#144'R'#29 +- +'G'#156#207#240#181#250#160#227#250'x'#167'O^'''#220#170'!['#235#129#180'iT' +- +#178#129';w'#199#140#230#246'*'#205#195#238'c'#223#221#167#194#27'4k*'#172'g' +- +'5'#25't'#244#225';f6'#131#144#195#143#247#239'A'#218#168#252#171#216'{'#11 +- +#248'{|'#138#144#188#134#146'q'#144#28#178#216'TE'#152#167'x'#138'y'#215'=' +- +#215#131'0'#253#129#194'!'#16'_l_'#241#253#251#249'K'#210#19#238'y'#245#188 +- +#15#133'''!'#16#136'c'#9#147#140#133'hy'#255'UBxz'#230'!'#16'H'#249'p4'#28'y' +- +#26#235#148#233#180'%8'#8#4#2#129'@ '#16#8#4#2#129'@'#246#155#142#199'f'#228 +- +#247'ZP8kON'#211#237'u$'#214#129'6'#210#139#16'.j'#217#142'r'#246#187#158#143 +- +'~'#138#231#163#242#195#134#205#163'r'#241'P'#248#176'S'#219'('#219#168#173 +- +'l'#228#222#231'mr,8'#160#239'4Be'#9#16#218#219#193';A(,j'#9#167'C'#188#15 +- +#133':'#235#221'8'#132'<+y'#179#247#223#179#253']'#143'<{'#203#134'r'#158'Y' +- +#229#143#215#179'f'#169#147'm'#9'B#o'#174#231'6'#7'R'#244#175#234#151#231'P' +- +#221'a[/'#200'v'#219'A'#135#156#159'd3'#141'u'#219#181'Ga'#154#230'9|>f'#244 +- +'z'#183#13#13#132'B'#219'X'#2'B='#168#201#199#218#182#143#182#7#198#198'C' +- +#168#223#128#146#149#231#174#16#214#232#147#157#11#196#230'>m3'#172#236';dKh' +- +#220'U'#208#246#16'B '#16#8#4#2#129'@ ='#229'?'#252#145'b'#204'1mW'#0#0#0#0#0 +- +'IEND'#174'B`'#130#7'Stretch'#9#11'Transparent'#8#0#0#6'TLabel'#6'Label2'#6 +- +'Height'#2#17#3'Top'#3#153#0#5'Width'#3'~'#1#9'Alignment'#7#8'taCenter'#7'An' +- +'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#8#7'Caption'#6#25'Ver' +- +'sion 3.0 June 10 2008'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow' +- +#11'ParentColor'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#6'TLab' +- +'el'#6'Label3'#6'Height'#2'B'#3'Top'#3#182#0#5'Width'#3'}'#1#9'Alignment'#7#8 +- +'taCenter'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#213'Co' +- +'pyright 2008 Patrick Chevalley Tous droits reserv'#195#169'.'#10'http://w' +- +'ww.astrosurf.com/astropc'#10'This program is free software; you can redistr' +- +'ibute it '#10'and/or modify it under the terms of the '#10'GNU General Publ' +- +'ic License'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow'#11'ParentCol' +- +'or'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#0#6'TTimer'#6'Time' +- +'r1'#7'Enabled'#8#8'Interval'#3#208#7#7'OnTimer'#7#11'Timer1Timer'#4'left'#2 +- +#8#3'top'#3#152#0#0#0#0 +-]); ++{ This is an automatically generated lazarus resource file } ++ ++LazarusResources.Add('Tsplash','FORMDATA',[ ++ 'TPF0'#7'Tsplash'#6'splash'#4'Left'#3#134#1#6'Height'#3'&'#1#3'Top'#3#143#0#5 ++ +'Width'#3'i'#1#18'HorzScrollBar.Page'#3'h'#1#18'VertScrollBar.Page'#3'%'#1#13 ++ +'ActiveControl'#7#7'BitBtn1'#8'AutoSize'#9#11'BorderStyle'#7#6'bsNone'#7'Cap' ++ +'tion'#6#6'splash'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#5'Color'#7 ++ +#7'clBlack'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif'#9'FormSty' ++ +'le'#7#11'fsStayOnTop'#7'OnClick'#7#11'Image1Click'#6'OnShow'#7#8'FormShow'#8 ++ +'Position'#7#14'poScreenCenter'#0#7'TBitBtn'#7'BitBtn1'#6'Height'#2#1#5'Widt' ++ +'h'#2#1#6'Cancel'#9#7'Default'#9#11'ModalResult'#2#2#9'NumGlyphs'#2#2#8'TabO' ++ +'rder'#2#0#0#0#6'TPanel'#6'Panel1'#6'Height'#3'&'#1#5'Width'#3'i'#1#5'Align' ++ +#7#8'alClient'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#7'Caption'#6#6'Panel' ++ +'1'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#7'OnClick' ++ +#7#11'Image1Click'#0#6'TImage'#6'Image1'#4'Left'#2' '#6'Height'#3#150#0#5'Wi' ++ +'dth'#3','#1#8'AutoSize'#9#6'Center'#9#7'OnClick'#7#11'Image1Click'#12'Pictu' ++ +'re.Data'#10#150#15#0#0#23'TPortableNetworkGraphicz'#15#0#0#137'PNG'#13#10#26 ++ +#10#0#0#0#13'IHDR'#0#0#1','#0#0#0#150#8#2#0#0#0#235'9"'#133#0#0#15'AIDATx' ++ +#218#237#157#11#146#227'*'#12'EY'#186#150#150#157#249#205'k'#199#14#31'!'#196 ++ +#31#236#171#234#170#233'I;'#6#4#7#129#0'a'#12#4#2#129'@ '#16#8#4#2#129'@ '#16 ++ +#8#4#2#129'@ '#16#8#4#2#129#252#132','#185'?a'#31#131#174' '#144'.'#242#249 ++ +'|l'#8#137#147#243#25#232#10#2#25#1#225#249#223#251#195#207#159#216'v'#18#2 ++ +#129#180#31#142#222#6#16#150#16#2#129'@ '#16#8#4#2#129'@ '#190#28#7#243#163 ++ +#155'p'#150'7sf'#203''''#212'#-Y-'#201#159'Y'#29'6'#191'>'#211#26#159#135 ++ +'55s'#190'_P'#200#234'~'#143'0'#211#197'x'#244'S'#241'H'#2'e'#242#149'mn0{' ++ +#195#242'P'#169#153#233#249'Y'#20'H'#175#24#197'_'#236#218#242#6'CX'#220#229 ++ +'w'#213'F'#1#0'='#178'Q'#169#153'Ez'#132'~'#141'UZ'#154'W'#170#181#216#18#14 ++ +#230#161'w'#150'[ga'#131'h'#155'C'#141#18'b'#227#177#137#154#233#167#22'ea' ++ +#199#232#228''''#246#162#159#189#12#152#132#176#12#167#17#165#250#203#248#248 ++ +'9a'#1#132']'#135#6'YM'#185#182#221#167#158#174#239#158#166'L'#163#236'lt'#29 ++ +'X'#250#150'P'#9'a'#1'Q#'#204#224#223#248'}'#202#212#171#12#194#226'o57&%_' ++ +#241'\'#28'M'#203'8'#0'B'#189'&'#251#142#161'H'#148#182'P'#141'2'#131#228'%4' ++ +#203'A:'#17#194#178#174'''WWo'#128'Pa'#230#27'A'#232#253#174#223#29#170#175 ++ +#233')f'#240#204#210'0c'#184#8#132'5'#253'N'#150#174#232#220#231'x>$rX9'#28 ++ +'mUe'#131'}'#4#203#185'I'#167#152#193#174#19#140#30's'#194#30#16'fi;'#235#187 ++ +#14#132'"'#135'+;f'#236#133#193'u'#177'd='#168'YtM3'#131'W'#134#198't'#129 ++ +#139'xG+'#169#214''#157#188#177'Z'#188'!'#175#179'r'#163'_'#162'X'#139'I' ++ +#239#216#132#7#161#223'w'#26#230#199'/'#155#233#240#19'8E'#191#31'~'#255#26 ++ +#168#184'C'#30'*W'#195'Z'#229#170#242#157#213'Y'#162#134#154#233#214'ZJ'#242 ++ +'0'#31#194'p'#234#168'4'#134'c'#204' q'#179'A'#187'7[|I'#250#172#233#137'S' ++ +#211'"K'#200'h'#145'8'#11'R'#223'7ui5'#198#25#136#206'r'#170#151'{P'#189#7 ++ +#132'j'#27'3'#27'4'#177'<\mb'#192#204'p'#145'M'#146#131' '#20#188'wA'#145'r' ++ +#231#132'#}'#218#11'f'#160#144#210#24'i'#131#182#200#196'30'#210#24'j'#170'm' ++ +'@'#213#206#135'0'#240#235'/'#181#141'a'#128'k'#150#169#228#181'<'#197'):k7' ++ +#160#242#229#131'7(w'#241#142#254'um'#148#180'&uE'#158'n'#139'v2'#134'gu'#132 ++ +#149'7'#197#12'N'#244#188')'#235#172'w'#23';b'#157'0'#9#161'8'#6#1#132#189' ' ++ +#180#235'>'#132'pA3'#216'\'#179#25'.'#13#26':;m'#188'c'#230#158'fo'#8'aM'#151 ++ +#180#1#132#161'1'#156'<'#27#140#180#137'~'#198'0'#171#206#186'Vp'#223#189#163 ++ +'J'#8#227':'#159#197'@'#214'F'#208#253#230#132#177#138#236'n'#144'2'#234#233 ++ +#28'Dus|'#213#236#11#25'0(mv'#138'B'#15#161#225#183#212#207'b'#160'x'#151#229 ++ +'N'#16#26'3'#250'4d'#158#154#174'%'#161'N'#250#173#220'1'#211#219'C'#195'.' ++ +#135#176#238'x'#13#129'F'#191'~'#157#9'a'#167#21#2'eh'#143'l'#133','#8#225 ++ +#200#2#228#153#193#254#198'p'#145#179#2#201#150'W'#229#172#178#235#186'T3S' ++ +#252'g+'#158#169#223#30#194#162'A'#206#229#203'i'#175#232#178#130#143#169#239 ++ +#150#219#6#242'!\*'#250#142'>'#226#206'f''-'#166#204#9#155#7'}'#171#4#160#224 ++ +#133#195#194#207#201#237'/c'#203#142#251'(5'#237#2#16'm'#173#153'%'#28#153'j' ++ +'m'#13'@'#234#244'F'#208#249#171'!'#172#175'Q'#180#137'j'#141#17't'#254'v'#8 ++ +#167'c'#12#8#167'T'#28'd'#9#8'['#241#3#14#139'tET7i'#130#206#1'!8'#172#135 ++ +#240'ta'#16't'#254'R'#8#189'*'#252#247#235'Qw'#236#25'mB'#173#162''#255#252 ++ +#207#30'U'#187#15#161#243#167'Ah'#255#252'>'#254'6'#20#231#25#12#144'*tN'#198 ++ +'?'#210'M'#13#235#17#178#13#132#177#154#11#236#225#183#207#190'!<R'#16#162'A' ++ +#164'fq'#215'V'#163'K'#153#4#8#1'!E'#205' '#131'(8'#172#212'91'#202#164#134 ++ +#181#9#217#3'Bo&B'#191'.9'#221#28#0'a'#149#218'-U[:'#167'&/'#135'l'#8#161#203 ++ +#158#18'B'#205#12#6#28#10':'#231''''#222#205#198#186#144#141' '#204#161#206 ++ +'s'#207'`'#128#212'z'#196'H'#253#147#128#172#4'aQU'#249#238#25#210'%'#4#209 ++ +#233#156#166'V.d'#6#132#181'oPC'#136#6'1'#5'B'#168#29#16#130#195'\%'#208#216 ++ +#228' S!L'#214#144#237#249'$'#209#17'J'#138#29'6'#232#152#199'C'#8#14#183#135 ++ ,#144#140#191#144'E'#226#147#132#6#177#30#132#152#144#175#11'a'#179'3'#19'&' ++ +#239'r'#157'7s'#232'Ds'#138#186#151'i'#217#186#6#132#235'Bxd'#162#248'f'#8'' ++ +'j'#27#8'!8\'#17#194#182'Urr'#248#247#227#180'-'#129#204#23'6'#8#181#206'i' ++ +#139'J'#7#132#203'Bx'#158#136#243'>d'#154#213#11#27#4' '#4#132#29#13#17#253 ++ +'6@'#158#231#226#204'}, '#198#225#11'='#165#211'!'#4#135#11'A'#216#163'&'#236 ++ +#145''''#25'f'''#234#203'9'#204'))-'#147#19'HO'#8#219#191#211#194#140#130#217 ++ +'`lr'#8#8#1#225#27'!'#236'_'#7#255#18#248'|>?K'#24'3'#152#239'i'#19#153'e' ++ +#164#197#242#3#8#183#132#208';*'#238#16#200#142'K'#1#225'H'#8#193#225'L'#8 ++ +#199#168#158#174#229#138#11#197'o'#0#149#16#203'7p'#152#175'sZ5c'#128'p+'#189 ++ +#211#143#189'_'#20#163'w'#174'X'#0'B@8G'#233#22#132#231#240'TZ'#174'xp'#155 ++ +'(<'#174#185't'#246#0#225'>'#16#146'5'#9'<'#130#21#11'@'#184#2#132#6'{'#187 ++ +#31#12'a0?LC'#248'H'#14#183#128#16#28#14#130'p'#162#174'o{h'#15'JM'#4#200'''' ++ +#181#137#210#178#208'&'#249#4#132#251#140':.'#2#29#7#169#137#159#3#6#132#251 ++ +'d'#21#16'n'#162'brW'#8#147'C'#211'g4'#136#154#235#149#0#225#195' '#244'..fe' ++ +#196'e'#226#228#172#28'>'#223'IC'#215#158#133#252'K'#206'i'#183'^'#3#16#166 ++ +#223#194'T'#191#219#250#237#182#210#189'D'#135#249'|>'#254#208#244'am'#226'/' ++ +#243#154#235#227#23#130#16#28'v'#133#144#172#6'q'#217'>'#167#170#187#155#193 ++ +#192#30'~7'#151#30#235#26#195#170#196#217#142#207'\+'#166'n]'#132#9#209#172#9 ++ +'2 '#236#7'!'#211'&'#172#166'/'#155#193'd'#207#205#142#184#248'&'#232#13#140 ++ +#221')"'#243#173' '#189#178#180#162#6#135#18#150'Jx8'#209'\'#195'^/'#222#218 ++ +#147#6#179'k'#165#148#148#14#16#150#245'm'#2'i'#250#234#140#137'~'#208#245'{' ++ +#21#185'K'#249#177#132#130'<'#149#164'e'#10's'#174'y'#140'H'#215#235#149#230 ++ +#129#205''#167'J)'#152#190#2#194#188#1'F'#210'b'#20#251'l'#146'xG!'#180'F' ++ +#164'|BA'#159'\'#146#150#2#0'a8'#26#211#219#169':'#30'B'#206#22#221'g'#152 ++ +#189#175#200#29#7#171#243#134#149#18#211'y'#180't'#128#176'f'#136#207#242#150 ++ +';'#170#209#215#183#156#156#7#161#212#253#187#165#24#0#161#167#10#13#168'lno' ++ +'P'#245'FF'#147#231#182#149#194#191#228#226#16#210#24#194#16'9'#165#25#204 ++ +#154'7'#230#13#17'/'#14#19#9'q'#246'<9r'#171#25#142#202#207'Hq9"'#176#205 ++ +#160#192#161'>'#207#173'*%^:'#204#11'[A('#206'%4fP'#30#149#229'N*'#132#238'Y' ++ +'J'#200'j'#245'c'#230#132'z''G'#129'wQ3?'#151#191#219#176'RR.'#28#2#132'TE ' ++ +#231#252#182'kB9'#245'O'#186#10#142#136')'#211#244#244#218#132#2#8'3'#134#190 ++ +'u'#195#209#228#192'26'#22'-'#152#139'&}'#170'=*E[:@Xo'#6#239#225'_'#214#228 ++ +#164#192#190'e'#245#244#25#9#197'!'#236#225#152'Ib'#25#12#173#201#27'6k'#150 ++ +'F'#178#242#211#169'R'#18#165'{'#253#221'!TN`'#252#187'z'#15#184#178#245#200 ++ +'hiZF'#24#255'"6'#222'kb'#9#195#225#156#240#12#235''''#140'Bh'#18#150#167'xN' ++ +#216#169'R'#210#165'{'#249#228#176#19#132#201#133#236#220'eCy'#144')'#204#211 ++ +'\/'#145#3'a'#204'C'#211'd'#249'+'#244#13#10#207'h'#23#190'#'#16#182#242#142 ++ +'v'#170#148't'#233#0'as'#2#141#209'n'#158#208#236#171'PV-'#251'$'#159#16'I' ++ +#203#134#197#187'sX'#192'jv'#204'0Ce'#206#13#150#181#129'[c?'#155'WJq'#233#0 ++ +'a'#21#132'k'#151'Y'#23#138#166#174#128#154'o'#231#165#208'T'#231#180'd[|)' ++ +#135'%'#16#238#174',2'#137#141#221#11#150#177'u~'#214#133#240#149'wi'#189#27 ++ +#194']'#138#249#6#8'_k'#12#27'@H'#153#215#232#174'P'#230#211'CC'#138#146#2'B' ++ +'p'#184#28#132#204#238#224#237' '#252#186'I'#191#17'K'#215'o'#16#29#178'Ak7J' ++ +'@'#248#2#5#209#247#224#239#247#178'Q'#227#198#194#160#134#0#180#232#162'^'#8 ++ +#225#203'n'#149#164'7k'#231'g'#11')u'#217'h'#29#238#229#173#190#143#206'i' ++ +#249#138'y'#17#135'/'#135'p'#196#13#135#202#249''' '#4#132'Z'#189'x.'#153'c' ++ +#171#217#160#12'aY'#155'H'#190#161'r@'#218#167'-'#210#14'M'#243'='#183#187'R' ++ +#185'Rh7'#151'L'#146#19#202'_9'#236#170#129'n'#13#145'6i'#157#175#224'P'#11 ++ +#225'b'#11#169#225'v'#173#218#137#27'Y'#134#157'"'#29#205'x'#13'tK'#238'.' ++ +#208#234#177'^'#222'q'#203'2'#237#165#139#228'n'#204#194'}x'#191#176''''#1 ++ +#132#199'$'#8'{&w'#191'w'#131'C}'#128'p)'#8#139#207#239'h <'#191#205'@h'#219 ++ +#198#148#30'Z*)'#247#6'l*'#129'p'#131'hK'#143'7'#134#25#16'. '#5#161#19'3NE\' ++ +'qO'#252#131#14'G4'#148'x'#253#233'$m'#0#213#214'I'#203#16'.'#23'#'#244#217 ++ +#28#146'r'#183''#184'Om'#158#25#20#178#204'>'#163#29#190'*C'#161#164#14#28 ++ +#230#166#27#129#144#148'!'#161#202#146#22' \1F( d'#156#162'3V&'#148#179#23 ++ +#253#249'w'#225#244#237'u'#7#247#143'LR'#196'D4'#209#8#159#142'='#141#159#253 ++ +'7!'#231'e'#193#17#211'Q'#152'#'#16'fG@'#5#135'# dW&'#30#13#225#247#178'Q' ++ +#250#21'V'#25#208'-'#254#254#31#132#170'#'#234#241#16#247#249'IG'#166#205#249 ++ +'J'#158#143#192'S9,'#129'p'#246#132#176#24#194#220'!\l]&7'#24#153#254#144#254 ++ +#25#235#161' '#202'`n'#210'I'#8'U'#17'P'#225')'#29#1#225'J}O'''#8#149#129'-' ++ +#218#146' '#208'E'#226'M/'#173#146#166#212#164'z'#209#216#132#143'4'#134#27 ++ +'AX'#239#152#209#184'R'#197#240#152#223#155'e'#130'0a'#7#171'H}XN'#147#12#193 ++ +'R1'#28#229#131#193#164#234#28#28#174#1'a$'#182#239#196'-Oe'#183';'#233#231 ++ +'W'#204'k}'#8#137#131'Pe'#147#221#236'Q'#210#202'5'#28#14'07'#22#230#140#248 ++ ,#134']'#240#154#1#225#147'8'#220#11#194#178#197'z'#165'%d'#28#128#228'BH'#220 ++ +#11#131'+q'#148#3#227#172#210#213'{G'#253'0p'#162#134#211#17'Pa'#12'G@('#16 ++ +#184#12#135#185#211#173#170'9!'#7#161#210#211#163#197',u'#239'g'#195#164#203 ++ +#230#132#11#181#252'''q'#152#13#225#177#196#241'%'#253#6#238#202#11'e'#4'r!' ++ +#131#149#219'V4a9'#141#187'@_P'#150#154#164#203'&'#168#240#148#246#135#144 ++ +#249#240'A'#199#151#148#179'Ps8'#241#243#229'P'#165#213#215#208#215'|'#191'l' ++ +#239#232#238#205#247#185#16'>'#248#232'`'#174'~.?@'#249#129#195'%'#199'W'#207 ++ +#129#240#1#28'f@x'#188#17#194#236#6#209#231'n'#15'@'#216'E'#231#235'B'#136 ++ +#251'S'#199'w'#204#195'uN'#15#211#249#222#209#168#1#225#10#28#2#194'7'#15'J)' ++ +'\'#18#2#132#250#134'|4'#138#206'6\'#225'O'#171#224#189'o(b!'#132'('#27'2'#9 ++ +#16#210#202#13#232#129'u'#252#16#8'cf'#144#224#149#249'_'#190#241'/2'#184':' ++ +#172#0'RG'#20#135#25#173#231#153#149#185')'#135#12#132#250'.'#255'u'#150#207 ++ +#221'jBBh6r'#175'_c!'#164'+87'#141#239#237#30#11#225#142#28#166'!'#4#129#250 ++ +'9!'#3#161'a '#252'>'#6#8#1'!'#11#161#222#253#176#152#242#199'otd'#214#241 ++ +#217#191#135''#246#6#170'4'#167#3'1'#224'p9'#8#183#29#139#202#219')'#251#209 ++ +'xFI<'#3#180'I'#219#217#194#177'(Y'#198#144#0#225#235'9t '#220'S'#225#201#147 ++ +'M'#253','#225#181'q'#252'+<'#131#194#214#242'y:'''#133'b'#193#225'X'#8'k.<Y' ++ +#195#12#230#214#133#230#160'@'#242#212#130#230''''#12#145#248'S'#189#251'''!' ++ +#238' '#251'y'#205#169#17'R'#159#201#216#152#195#237'!'#164'='#206'L'#20#140 ++ +'9'#179#14'75'#128#208'Db7'#253#253#22'k'#244'1K'#174#177#240#154#193'9)'#158 ++ +#196#160't '#132#242#218#224'n.'#153#187'@'#201#195#233#177#136#215#197#150 ++ +#214'9'#131'ONw'#236#135'o'#186'o'#190'HYB'#161'S'#200'=}'#31#158#172'_:'#192 ++ +#225'{8'#164#253#247#169#201#129#137'bsEa'#240#169#137#162#155#136#194#196 ++ +#185'j'#156','#5'fP'#14#9#19#235'q'#244#16'z'#239'$'#241'I8if@'#248','#157'{' ++ +'Xj'#160#138#253'5k'#180'fC'#24#250'incxBh3'#239#241#31#235')'#216#0'j='#134 ++ +#163#128#16#16#182#31#169#14#134#240#183#132#232'f'#136#245#214#216#193#246 ++ +#207#215#10#166'L'#142'W'#159#204#179#23#242#240#249#16#246#179#236#255#200 ++ +#249'|>g_{'#255'B'#129#188#1'B9'#239#2'T'#225#247'(3'#132#190#12#225#249#235 ++ +#207'0_u'#194#205'`'#201#168'Ct''.'#171#9#231'~'#20#164'e'#249#221'b'#211#224 ++ +#167'A'#216#143#195'S<'#8'?'#146#5#225#253#252#142'r6'#193'X'#17#156#11'^' ++ +#152'%'#1#254'a'#246'yef'#206#159#143'%'#231'gw'#14'C~'#216#12#200'b9'#140 ++ +#229'YSdz'#186't'#135#240#159#20'C'#232#219#130'm'#7#156#5'aH'#235#189#163 ++ +#146#225#189'|3'#222#160'T'#147#177'X'#222#148#197#215#199';}'#184'wt'#192'\' ++ +'.6'#10'-'#164#159#246#219#168#173'YL'#207']'#130#215'_E'#150#134#144'R'#29 ++ +'G'#156#207#240#181#250#160#227#250'x'#167'O^'''#220#170'!['#235#129#180'iT' ++ +#178#129';w'#199#140#230#246'*'#205#195#238'c'#223#221#167#194#27'4k*'#172'g' ++ +'5'#25't'#244#225';f6'#131#144#195#143#247#239'A'#218#168#252#171#216'{'#11 ++ +#248'{|'#138#144#188#134#146'q'#144#28#178#216'TE'#152#167'x'#138'y'#215'=' ++ +#215#131'0'#253#129#194'!'#16'_l_'#241#253#251#249'K'#210#19#238'y'#245#188 ++ +#15#133'''!'#16#136'c'#9#147#140#133'hy'#255'UBxz'#230'!'#16'H'#249'p4'#28'y' ++ +#26#235#148#233#180'%8'#8#4#2#129'@ '#16#8#4#2#129'@'#246#155#142#199'f'#228 ++ +#247'ZP8kON'#211#237'u$'#214#129'6'#210#139#16'.j'#217#142'r'#246#187#158#143 ++ +'~'#138#231#163#242#195#134#205#163'r'#241'P'#248#176'S'#219'('#219#168#173 ++ +'l'#228#222#231'mr,8'#160#239'4Be'#9#16#218#219#193';A(,j'#9#167'C'#188#15 ++ +#133':'#235#221'8'#132'<+y'#179#247#223#179#253']'#143'<{'#203#134'r'#158'Y' ++ +#229#143#215#179'f'#169#147'm'#9'B#o'#174#231'6'#7'R'#244#175#234#151#231'P' ++ +#221'a[/'#200'v'#219'A'#135#156#159'd3'#141'u'#219#181'Ga'#154#230'9|>f'#244 ++ +'z'#183#13#13#132'B'#219'X'#2'B='#168#201#199#218#182#143#182#7#198#198'C' ++ +#168#223#128#146#149#231#174#16#214#232#147#157#11#196#230'>m3'#172#236';dKh' ++ +#220'U'#208#246#16'B '#16#8#4#2#129'@ ='#229'?'#252#145'b'#204'1mW'#0#0#0#0#0 ++ +'IEND'#174'B`'#130#7'Stretch'#9#11'Transparent'#8#0#0#6'TLabel'#6'Label2'#6 ++ +'Height'#2#17#3'Top'#3#153#0#5'Width'#3'~'#1#9'Alignment'#7#8'taCenter'#7'An' ++ +'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#8#7'Caption'#6#25'Ver' ++ +'sion 3.0 June 10 2008'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow' ++ +#11'ParentColor'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#6'TLab' ++ +'el'#6'Label3'#6'Height'#2'B'#3'Top'#3#182#0#5'Width'#3'}'#1#9'Alignment'#7#8 ++ +'taCenter'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#213'Co' ++ +'pyright 2008 Patrick Chevalley Tous droits reserv'#195#169'.'#10'http://w' ++ +'ww.astrosurf.com/astropc'#10'This program is free software; you can redistr' ++ +'ibute it '#10'and/or modify it under the terms of the '#10'GNU General Publ' ++ +'ic License'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow'#11'ParentCol' ++ +'or'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#0#6'TTimer'#6'Time' ++ +'r1'#7'Enabled'#8#8'Interval'#3#208#7#7'OnTimer'#7#11'Timer1Timer'#4'left'#2 ++ +#8#3'top'#3#152#0#0#0#0 ++]); +diff -ur skychart_3.2/varobs/splashunit.pas skychart_3.2_up/varobs/splashunit.pas +--- skychart_3.2/varobs/splashunit.pas 2008-06-12 16:22:26.000000000 +0200 ++++ skychart_3.2_up/varobs/splashunit.pas 2011-03-09 15:18:23.219263874 +0100 +@@ -1,79 +1,79 @@ +-unit splashunit; +- +-{$MODE Delphi} +- +-{ +-Copyright (C) 2008 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +-interface +- +-uses +- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, +- StdCtrls, ExtCtrls, Buttons, LResources, u_param; +- +-type +- +- { Tsplash } +- +- Tsplash = class(TForm) +- Image1: TImage; +- Label2: TLabel; +- Label3: TLabel; +- Panel1: TPanel; +- Timer1: TTimer; +- BitBtn1: TBitBtn; +- procedure Timer1Timer(Sender: TObject); +- procedure FormShow(Sender: TObject); +- procedure Image1Click(Sender: TObject); +- private +- { Dclarations prives } +- public +- { Dclarations publiques } +- SplashTimer: Boolean; +- end; +- +-var +- splash: Tsplash; +- +-implementation +- +- +-procedure Tsplash.Timer1Timer(Sender: TObject); +-begin +- Timer1.enabled:=false; +- splash.free; +-end; +- +-procedure Tsplash.FormShow(Sender: TObject); +-begin +- if SplashTimer then Timer1.enabled:=true; +-end; +- +- +-procedure Tsplash.Image1Click(Sender: TObject); +-begin +-modalresult:=mrCancel; +-end; +- +-initialization +- {$i splashunit.lrs} +- +-end. ++unit splashunit; ++ ++{$MODE Delphi} ++ ++{ ++Copyright (C) 2008 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++interface ++ ++uses ++ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ++ StdCtrls, ExtCtrls, Buttons, LResources, u_param; ++ ++type ++ ++ { Tsplash } ++ ++ Tsplash = class(TForm) ++ Image1: TImage; ++ Label2: TLabel; ++ Label3: TLabel; ++ Panel1: TPanel; ++ Timer1: TTimer; ++ BitBtn1: TBitBtn; ++ procedure Timer1Timer(Sender: TObject); ++ procedure FormShow(Sender: TObject); ++ procedure Image1Click(Sender: TObject); ++ private ++ { Dclarations prives } ++ public ++ { Dclarations publiques } ++ SplashTimer: Boolean; ++ end; ++ ++var ++ splash: Tsplash; ++ ++implementation ++ ++ ++procedure Tsplash.Timer1Timer(Sender: TObject); ++begin ++ Timer1.enabled:=false; ++ splash.free; ++end; ++ ++procedure Tsplash.FormShow(Sender: TObject); ++begin ++ if SplashTimer then Timer1.enabled:=true; ++end; ++ ++ ++procedure Tsplash.Image1Click(Sender: TObject); ++begin ++modalresult:=mrCancel; ++end; ++ ++initialization ++ {$i splashunit.lrs} ++ ++end. +diff -ur skychart_3.2/varobs/u_param.pas skychart_3.2_up/varobs/u_param.pas +--- skychart_3.2/varobs/u_param.pas 2009-01-11 10:36:02.000000000 +0100 ++++ skychart_3.2_up/varobs/u_param.pas 2011-03-09 15:18:23.220263750 +0100 +@@ -1,98 +1,98 @@ +-unit u_param; +-{ +-Copyright (C) 2008 Patrick Chevalley +- +-http://www.astrosurf.com/astropc +-pch@freesurf.ch +- +-This program is free software; you can redistribute it and/or +-modify it under the terms of the GNU General Public License +-as published by the Free Software Foundation; either version 2 +-of the License, or (at your option) any later version. +- +-This program is distributed in the hope that it will be useful, +-but WITHOUT ANY WARRANTY; without even the implied warranty of +-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-GNU General Public License for more details. +- +-You should have received a copy of the GNU General Public License +-along with this program; if not, write to the Free Software +-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-} +- +-{$mode objfpc}{$H+} +- +-interface +- +-uses +- Classes, SysUtils; +- +-const +-software_version='Skychart VarObs module 3.0 beta http://ap-i.net/skychart'; +-bl=' '; +-blank=' '; +-abrcons=' And Ant Aps Aqr Aql Ara Ari Aur Boo Cae Cam Cnc CVn CMa CMi Cap Car Cas Cen Cep Cet Cha Cir Col Com CrA CrB Crv Crt Cru' +- +' Cyg Del Dor Dra Equ Eri For Gem Gru Her Hor Hya Hyi Ind Lac Leo LMi Lep Lib Lup Lyn Lyr Men Mic Mon Mus Nor Oct Oph Ori' +- +' Pav Peg Per Phe Pic Psc PsA Pup Pyx Ret Sge Sgr Sco Scl Sct Ser Ser Sex Tau Tel Tri TrA Tuc UMa UMi Vel Vir Vol Vul '; +- +-greek : array[1..2,1..24]of string=(('alpha','beta','gamma','delta','epsilon','zeta','eta','theta','iota','kappa','lambda','mu','nu','zi','omicron','pi','rho','sigma','tau','upsilon','phi','chi','psi','omega'), +- ('alp','bet','gam','del','eps','zet','eta','the','iot','kap','lam','mu','nu','zi','omi','pi','rho','sig','tau','ups','phi','chi','psi','ome')); +- +-pulslist=' ACYG BCEP BCEPS BLBOO CEP CEP(B) CW CWA CWB DCEP DCEPS DSCT DSCTC L LB LC M PVTEL RR RR(B) RRAB RRC RV RVA RVB SR SRA SRB SRC SRD SXPHE ZZ ZZA ZZB ZZO '; +-rotlist=' ACV ACVO BY ELL FKCOM PSR SXARI '; +-ecllist=' E EA EB EW GS PN RS WD WR AR D DM DS DW K KE KW SD '; +- +-aavsochartscale: array[0..13] of string=('A','AR','B','BR','C','CR','D','DR','E','ER','F','FR','G','GR'); +-aavsochartfov: array[0..13] of string=('900','900','180','180','120','120','60','60','30','30','15','15','7.5','7.5'); +-aavsochartmag: array[0..13] of string=('9','9','11','11','12','12','14.5','14.5','16.5','16.5','18.5','18.5','20.5','20.5'); +-aavsochartnorth: array[0..13] of string=('down','up','down','up','down','up','down','up','down','up','down','up','down','up'); +-aavsocharteast: array[0..1] of string=('right','left'); +- +-skychartopt = '--unique'; +- +-{$ifdef linux} +- DefaultPrivateDir='~/.skychart/varobs'; +- Defaultconfigfile='~/.skychart/varobs.ini'; +- SharedDir='../share/skychart'; +- DefaultSkychart='skychart'; +- DefaultLpvb='varobs_lpv_bulletin'; +- DefaultOpenFileCMD='xdg-open'; +-{$endif} +-{$ifdef darwin} +- DefaultPrivateDir='~/.skychart/varobs'; +- Defaultconfigfile='~/.skychart/varobs.ini'; +- SharedDir='/usr/share/skychart'; +- DefaultSkychart='skychart'; +- DefaultLpvb='varobs_lpv_bulletin'; +- DefaultOpenFileCMD='open'; +-{$endif} +-{$ifdef mswindows} +- DefaultPrivateDir='Skychart\VarObs'; +- Defaultconfigfile='varobs.ini'; +- SharedDir='.\'; +- DefaultSkychart='skychart.exe'; +- DefaultLpvb='varobs_lpv_bulletin.exe'; +- DefaultOpenFileCMD=''; +-{$endif} +- +- CR = #$0d; +- LF = #$0a; +- CRLF = CR + LF; +- connectdelay=15E-5; // 13 sec. delay +- cmddelay=5E-5; // 4 sec. delay +- +- +-var +- datim,datact,defaavsocharturl,defqlurl,defafoevurl,defwebobsurl,aavsourl,varobsurl,pcobscaption : string; +- lockdate,locktime : boolean; +- lockselect : boolean; +- started : boolean; +- AppDir,PrivateDir,ConstDir,ConfigFile,planname,skychart,lpvb : string; +- jdact,TZ : double; +- CurrentRow: integer; +- param : Tstringlist; +- +-implementation +- +-end. +- ++unit u_param; ++{ ++Copyright (C) 2008 Patrick Chevalley ++ ++http://www.astrosurf.com/astropc ++pch@freesurf.ch ++ ++This program is free software; you can redistribute it and/or ++modify it under the terms of the GNU General Public License ++as published by the Free Software Foundation; either version 2 ++of the License, or (at your option) any later version. ++ ++This program is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with this program; if not, write to the Free Software ++Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++} ++ ++{$mode objfpc}{$H+} ++ ++interface ++ ++uses ++ Classes, SysUtils; ++ ++const ++software_version='Skychart VarObs module 3.0 beta http://ap-i.net/skychart'; ++bl=' '; ++blank=' '; ++abrcons=' And Ant Aps Aqr Aql Ara Ari Aur Boo Cae Cam Cnc CVn CMa CMi Cap Car Cas Cen Cep Cet Cha Cir Col Com CrA CrB Crv Crt Cru' ++ +' Cyg Del Dor Dra Equ Eri For Gem Gru Her Hor Hya Hyi Ind Lac Leo LMi Lep Lib Lup Lyn Lyr Men Mic Mon Mus Nor Oct Oph Ori' ++ +' Pav Peg Per Phe Pic Psc PsA Pup Pyx Ret Sge Sgr Sco Scl Sct Ser Ser Sex Tau Tel Tri TrA Tuc UMa UMi Vel Vir Vol Vul '; ++ ++greek : array[1..2,1..24]of string=(('alpha','beta','gamma','delta','epsilon','zeta','eta','theta','iota','kappa','lambda','mu','nu','zi','omicron','pi','rho','sigma','tau','upsilon','phi','chi','psi','omega'), ++ ('alp','bet','gam','del','eps','zet','eta','the','iot','kap','lam','mu','nu','zi','omi','pi','rho','sig','tau','ups','phi','chi','psi','ome')); ++ ++pulslist=' ACYG BCEP BCEPS BLBOO CEP CEP(B) CW CWA CWB DCEP DCEPS DSCT DSCTC L LB LC M PVTEL RR RR(B) RRAB RRC RV RVA RVB SR SRA SRB SRC SRD SXPHE ZZ ZZA ZZB ZZO '; ++rotlist=' ACV ACVO BY ELL FKCOM PSR SXARI '; ++ecllist=' E EA EB EW GS PN RS WD WR AR D DM DS DW K KE KW SD '; ++ ++aavsochartscale: array[0..13] of string=('A','AR','B','BR','C','CR','D','DR','E','ER','F','FR','G','GR'); ++aavsochartfov: array[0..13] of string=('900','900','180','180','120','120','60','60','30','30','15','15','7.5','7.5'); ++aavsochartmag: array[0..13] of string=('9','9','11','11','12','12','14.5','14.5','16.5','16.5','18.5','18.5','20.5','20.5'); ++aavsochartnorth: array[0..13] of string=('down','up','down','up','down','up','down','up','down','up','down','up','down','up'); ++aavsocharteast: array[0..1] of string=('right','left'); ++ ++skychartopt = '--unique'; ++ ++{$ifdef linux} ++ DefaultPrivateDir='~/.skychart/varobs'; ++ Defaultconfigfile='~/.skychart/varobs.ini'; ++ SharedDir='../share/skychart'; ++ DefaultSkychart='skychart'; ++ DefaultLpvb='varobs_lpv_bulletin'; ++ DefaultOpenFileCMD='xdg-open'; ++{$endif} ++{$ifdef darwin} ++ DefaultPrivateDir='~/.skychart/varobs'; ++ Defaultconfigfile='~/.skychart/varobs.ini'; ++ SharedDir='/usr/share/skychart'; ++ DefaultSkychart='skychart'; ++ DefaultLpvb='varobs_lpv_bulletin'; ++ DefaultOpenFileCMD='open'; ++{$endif} ++{$ifdef mswindows} ++ DefaultPrivateDir='Skychart\VarObs'; ++ Defaultconfigfile='varobs.ini'; ++ SharedDir='.\'; ++ DefaultSkychart='skychart.exe'; ++ DefaultLpvb='varobs_lpv_bulletin.exe'; ++ DefaultOpenFileCMD=''; ++{$endif} ++ ++ CR = #$0d; ++ LF = #$0a; ++ CRLF = CR + LF; ++ connectdelay=15E-5; // 13 sec. delay ++ cmddelay=5E-5; // 4 sec. delay ++ ++ ++var ++ datim,datact,defaavsocharturl,defqlurl,defafoevurl,defwebobsurl,aavsourl,varobsurl,pcobscaption : string; ++ lockdate,locktime : boolean; ++ lockselect : boolean; ++ started : boolean; ++ AppDir,PrivateDir,ConstDir,ConfigFile,planname,skychart,lpvb : string; ++ jdact,TZ : double; ++ CurrentRow: integer; ++ param : Tstringlist; ++ ++implementation ++ ++end. ++ +diff -ur skychart_3.2/varobs/varobs.lpi skychart_3.2_up/varobs/varobs.lpi +--- skychart_3.2/varobs/varobs.lpi 2010-09-17 20:18:07.000000000 +0200 ++++ skychart_3.2_up/varobs/varobs.lpi 2011-03-09 15:18:57.102097651 +0100 +@@ -1,20 +1,18 @@ + <?xml version="1.0"?> + <CONFIG> + <ProjectOptions> +- <Version Value="9"/> ++ <Version Value="7"/> + <General> + <Flags> + <LRSInOutputDirectory Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> ++ <TargetFileExt Value=""/> + <Title Value="varobs"/> +- <UseXPManifest Value="True"/> + <Icon Value="0"/> ++ <UseXPManifest Value="True"/> + </General> +- <VersionInfo> +- <StringTable ProductVersion=""/> +- </VersionInfo> + <PublishOptions> + <Version Value="2"/> + <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/> +@@ -112,14 +110,13 @@ + </Units> + </ProjectOptions> + <CompilerOptions> +- <Version Value="9"/> ++ <Version Value="8"/> + <SearchPaths> + <UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <CStyleOperator Value="False"/> +- <UseAnsiStrings Value="False"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> +diff -ur skychart_3.2/varobs/varobs_lpv_bulletin.rc skychart_3.2_up/varobs/varobs_lpv_bulletin.rc +--- skychart_3.2/varobs/varobs_lpv_bulletin.rc 2010-01-16 20:16:04.000000000 +0100 ++++ skychart_3.2_up/varobs/varobs_lpv_bulletin.rc 2011-03-09 15:18:23.223263381 +0100 +@@ -1,6 +1,6 @@ +-#define RT_MANIFEST 24 +-#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 +-#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 +-#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 +- ++#define RT_MANIFEST 24 ++#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 ++#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 ++#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 ++ + CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "varobs_lpv_bulletin.manifest" diff --git a/skychart.spec b/skychart.spec index d2476f2..d926dc2 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,11 +1,8 @@ Name: skychart Version: 3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer -# svn export -r1351 https://svn.origo.ethz.ch/skychart/trunk@1351 skychart-3.0.1.6 -# tar czf skychart-3.0.1.6.tar.gz skychart-3.0.1.6 - Group: Amusements/Graphics License: GPLv2+ URL: https://sourceforge.net/projects/skychart/ @@ -14,12 +11,15 @@ Source1: skychart.desktop Patch1: skychart-3.0.1.6-desktop.patch Patch2: skychart-3.0.1.6-strip.patch Patch3: skychart-wgetdoc.patch +# Upstream uses lazarus 0.9.29. +# This patch from Patrick Chevalley makes it work with lazarus 0.9.28 +Patch4: skychart-lazarus928.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 ExcludeArch: ppc64 -BuildRequires: lazarus >= 0.9.26 +BuildRequires: lazarus >= 0.9.28 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix @@ -44,10 +44,10 @@ atlas more complete than a conventional planetarium. %prep %setup -q -n %{name}_%{version} %patch1 -p1 -b .desktop -#%patch2 -p1 -b .strip +%patch2 -p1 -b .strip %patch3 -p1 find skychart -type f -print0 |xargs -0 chmod 644 - +%patch4 -p1 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -86,7 +86,7 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -#%doc skychart/gpl.txt +%doc skychart/gpl.txt #%doc %{_datadir}/skychart/doc %{_bindir}/* %{_libdir}/*.so @@ -106,10 +106,13 @@ rm -rf %{buildroot} %changelog -* Wed Feb 16 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2.1-2 +* Wed Mar 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-3 +- Patch from upstream to make skychart work with lazarus 0.9.28 + +* Wed Feb 16 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-2 - Missing patch added -* Sat Feb 12 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2.1-1 +* Sat Feb 12 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-1 - New upstream source * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-5.20100724svn From 686732fd2e53b84a5b1274d6471af05356b804da Mon Sep 17 00:00:00 2001 From: Sergio Pascual <sergiopr@fis.ucm.es> Date: Thu, 28 Apr 2011 12:10:34 +0200 Subject: [PATCH 027/162] Rebuilding with lazarus 0.9.30 --- skychart.spec | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/skychart.spec b/skychart.spec index d926dc2..64d1d76 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -11,15 +11,11 @@ Source1: skychart.desktop Patch1: skychart-3.0.1.6-desktop.patch Patch2: skychart-3.0.1.6-strip.patch Patch3: skychart-wgetdoc.patch -# Upstream uses lazarus 0.9.29. -# This patch from Patrick Chevalley makes it work with lazarus 0.9.28 -Patch4: skychart-lazarus928.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 ExcludeArch: ppc64 -BuildRequires: lazarus >= 0.9.28 +BuildRequires: lazarus >= 0.9.30 BuildRequires: ImageMagick BuildRequires: desktop-file-utils BuildRequires: dos2unix @@ -47,7 +43,7 @@ atlas more complete than a conventional planetarium. %patch2 -p1 -b .strip %patch3 -p1 find skychart -type f -print0 |xargs -0 chmod 644 -%patch4 -p1 +#%patch4 -p1 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -106,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Thu Apr 28 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-4 +- Rebuilding with lazarus 0.9.30 + * Wed Mar 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-3 - Patch from upstream to make skychart work with lazarus 0.9.28 From 365ce477906df3f63b86661d385237b8e2cc000a Mon Sep 17 00:00:00 2001 From: Pasrario <harenawer@zoho.com> Date: Thu, 28 Apr 2011 23:05:21 +0200 Subject: [PATCH 028/162] Rebuilding with lazarus 0.9.30 --- skychart-lazarus928.patch | 32605 ------------------------------------ skychart.spec | 1 - 2 files changed, 32606 deletions(-) delete mode 100644 skychart-lazarus928.patch diff --git a/skychart-lazarus928.patch b/skychart-lazarus928.patch deleted file mode 100644 index a499744..0000000 --- a/skychart-lazarus928.patch +++ /dev/null @@ -1,32605 +0,0 @@ -diff -ur skychart_3.2/skychart/cdc.lpi skychart_3.2_up/skychart/cdc.lpi ---- skychart_3.2/skychart/cdc.lpi 2010-10-03 14:48:13.000000000 +0200 -+++ skychart_3.2_up/skychart/cdc.lpi 2011-03-09 15:18:57.108096914 +0100 -@@ -1,7 +1,7 @@ - <?xml version="1.0"?> - <CONFIG> - <ProjectOptions> -- <Version Value="9"/> -+ <Version Value="7"/> - <General> - <Flags> - <SaveClosedFiles Value="False"/> -@@ -11,9 +11,10 @@ - </Flags> - <SessionStorage Value="InProjectDir"/> - <MainUnit Value="0"/> -+ <TargetFileExt Value=""/> - <Title Value="Cartes du Ciel"/> -- <UseXPManifest Value="True"/> - <Icon Value="0"/> -+ <UseXPManifest Value="True"/> - </General> - <PublishOptions> - <Version Value="2"/> -@@ -439,13 +440,15 @@ - <Unit48> - <Filename Value="pu_ascomclient.pas"/> - <IsPartOfProject Value="True"/> -+ <ComponentName Value="pop_scope"/> - <HasResources Value="True"/> -+ <ResourceBaseClass Value="Form"/> - <UnitName Value="pu_ascomclient"/> - </Unit48> - </Units> - </ProjectOptions> - <CompilerOptions> -- <Version Value="9"/> -+ <Version Value="8"/> - <Target> - <Filename Value="units/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)/skychart"/> - </Target> -@@ -456,7 +459,6 @@ - <Parsing> - <SyntaxOptions> - <CStyleOperator Value="False"/> -- <UseAnsiStrings Value="False"/> - </SyntaxOptions> - </Parsing> - <CodeGeneration> -@@ -485,14 +487,4 @@ - <CompilerPath Value="$(CompPath)"/> - </Other> - </CompilerOptions> -- <Debugging> -- <Exceptions Count="2"> -- <Item1> -- <Name Value="Exception"/> -- </Item1> -- <Item2> -- <Name Value="EInvalidArgument"/> -- </Item2> -- </Exceptions> -- </Debugging> - </CONFIG> -diff -ur skychart_3.2/skychart/cu_tz.pas skychart_3.2_up/skychart/cu_tz.pas ---- skychart_3.2/skychart/cu_tz.pas 2009-11-21 23:21:21.000000000 +0100 -+++ skychart_3.2_up/skychart/cu_tz.pas 2011-03-09 15:18:23.116276539 +0100 -@@ -1,615 +1,615 @@ --unit cu_tz; -- --{ Time Zone processing component. -- Based on FreePascal RTL rtl/unix/timezone.inc -- -- Copyright (C) 2007 Patrick Chevalley pch@freesurf.ch -- -- This library is free software; you can redistribute it and/or modify it -- under the terms of the GNU Library General Public License as published by -- the Free Software Foundation; either version 2 of the License, or (at your -- option) any later version with the following modification: -- -- As a special exception, the copyright holders of this library give you -- permission to link this library with independent modules to produce an -- executable, regardless of the license terms of these independent modules,and -- to copy and distribute the resulting executable under terms of your choice, -- provided that you also meet, for each linked independent module, the terms -- and conditions of the license of that module. An independent module is a -- module which is not derived from or based on this library. If you modify -- this library, you may extend this exception to your version of the library, -- but you are not obligated to do so. If you do not wish to do so, delete this -- exception statement from your version. -- -- 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 library; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- -- --{$mode objfpc}{$H+} -- --interface -- --uses -- {$ifdef mswindows} -- Windows, -- {$endif} -- {$ifdef unix} -- unixutil, -- {$endif} -- Classes, SysUtils, Math; -- --type -- ttzhead=packed record -- tzh_reserved : array[0..19] of byte; -- tzh_ttisgmtcnt, -- tzh_ttisstdcnt, -- tzh_leapcnt, -- tzh_timecnt, -- tzh_typecnt, -- tzh_charcnt : longint; -- end; -- -- pttinfo=^tttinfo; -- tttinfo=packed record -- offset : longint; -- isdst : boolean; -- idx : byte; -- isstd : byte; -- isgmt : byte; -- end; -- -- pleap=^tleap; -- tleap=record -- transition : longint; -- change : longint; -- end; -- -- TCdCTimeZone = class(TObject) -- private -- fTZDaylight:boolean; -- fTZSeconds:longint; -- fTZName: array[boolean] of pchar; -- fTimer:longint; -- fTimeZoneFile: string; -- fZoneTabCnty: TStringList; -- fZoneTabCoord: TStringList; -- fZoneTabZone: TStringList; -- fZoneTabComment: TStringList; -- num_transitions, -- num_leaps, -- num_types : longint; -- transitions : plongint; -- type_idxs : pbyte; -- types : pttinfo; -- zone_names : pchar; -- leaps : pleap; -- procedure GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); -- procedure GetLocalTimezone(timer:longint); -- function find_transition(timer:longint):pttinfo; -- procedure ReadTimezoneFile(fn:shortstring); -- function GetTZName: string; -- procedure SetDate(value: TDateTime); -- function GetDate:TDateTime ; -- procedure SetJD(value: double); -- function GetJD:double ; -- procedure SetTimeZoneFile(value: string); -- function GetTimeZoneFile:string ; -- function GetNowLocalTime: TDateTime; -- function GetNowUTC: TDateTime; -- public -- constructor Create; -- destructor Destroy; override; -- procedure Assign(Source: TCdCTimeZone); -- function LoadZoneTab(fn: string):boolean; -- function UTC2Local(t: TDateTime):TDateTime; -- function UTC2Local(t: double):double; // jd -- function Local2UTC(t: TDateTime):TDateTime; -- function Local2UTC(t: double):double; // jd -- property TimeZoneFile: string read GetTimeZoneFile write SetTimeZoneFile; -- property Date: TDateTime read GetDate write SetDate; -- property JD: double read GetJD write SetJD; -- property SecondsOffset :longint read fTZSeconds; -- property ZoneName : string read GetTZName; -- property Daylight:boolean read fTZDaylight; -- property ZoneTabCnty: TStringList read fZoneTabCnty; -- property ZoneTabCoord: TStringList read fZoneTabCoord; -- property ZoneTabZone: TStringList read fZoneTabZone; -- property ZoneTabComment: TStringList read fZoneTabComment; -- property NowLocalTime: TDateTime read GetNowLocalTime; -- property NowUTC: TDateTime read GetNowUTC; -- end; -- --const -- secday=24*3600; -- JDUnixDelta=2440587.5; // 1.1.1970 0h -- minJD=2415750;// 1.1.1902 risk of 32bit unixtime underflow -- minYear=1904; // next leap year after underflow -- maxJD=2465424;// 1.1.2038 risk of 32bit unixtime overflow -- maxYear=2036; // last leap year before overflow -- minDate=732; // 1.1.1902 risk of 32bit unixtime underflow -- maxDate=50406; // 1.1.2038 risk of 32bit unixtime overflow -- --implementation -- --function Cjd(annee,mois,jour :INTEGER; Heure:double):double; --var u,u0,u1,u2 : double; -- gregorian : boolean; --begin --if annee*10000+mois*100+jour >= 15821015 then gregorian:=true else gregorian:=false; --u:=annee; --if mois<3 then u:=u-1; --u0:=u+4712; --u1:=mois+1; --if u1<4 then u1:=u1+12; --result:=floor(u0*365.25)+floor(30.6*u1+0.000001)+jour+heure/24-63.5; --if gregorian then begin -- u2:=floor(abs(u)/100)-floor(abs(u)/400); -- if u<0 then u2:=-u2; -- result:=result-u2+2; -- if (u<0)and((u/100)=floor(u/100))and((u/400)<>floor(u/400)) then result:=result-1; --end; --end; -- --PROCEDURE Djd(jd:Double;VAR annee,mois,jour:INTEGER; VAR Heure:double); --var u0,u1,u2,u3,u4 : double; -- gregorian : boolean; --begin --u0:=jd+0.5; --if int(u0)>=2299161 then gregorian:=true else gregorian:=false; --u0:=jd+32082.5; --if gregorian then begin -- u1:=u0+floor(u0/36525)-floor(u0/146100)-38; -- if jd>=1830691.5 then u1:=u1+1; -- u0:=u0+floor(u1/36525)-floor(u1/146100)-38; --end; --u2:=floor(u0+123); --u3:=floor((u2-122.2)/365.25); --u4:=floor((u2-floor(365.25*u3))/30.6001); --mois:=round(u4-1); --if mois>12 then mois:=mois-12; --jour:=round(u2-floor(365.25*u3)-floor(30.6001*u4)); --annee:=round(u3+floor((u4-2)/12)-4800); --heure:=(jd-floor(jd+0.5)+0.5)*24; --end; -- --procedure SplitRec(buf,sep:string; var arg: TStringList); --var i,l:integer; --begin --arg.clear; --l:=length(sep); --while pos(sep,buf)<>0 do begin -- for i:=1 to length(buf) do begin -- if copy(buf,i,l) = sep then begin -- arg.add(copy(buf,1,i-1)); -- delete(buf,1,i-1+l); -- break; -- end; -- end; --end; --arg.add(buf); --end; -- --constructor TCdCTimeZone.Create; --begin -- inherited Create; -- fZoneTabCnty:=TStringList.Create; -- fZoneTabCoord:=TStringList.Create; -- fZoneTabZone:=TStringList.Create; -- fZoneTabComment:=TStringList.Create; -- fTimeZoneFile:=''; -- ReadTimezoneFile(GetTimezoneFile); -- GetLocalTimezone(round((now-UnixDateDelta)*24*3600)); --end; -- --destructor TCdCTimeZone.Destroy; --begin -- if assigned(transitions) then -- freemem(transitions); -- if assigned(type_idxs) then -- freemem(type_idxs); -- if assigned(types) then -- freemem(types); -- if assigned(zone_names) then -- freemem(zone_names); -- if assigned(leaps) then -- freemem(leaps); -- num_transitions:=0; -- num_leaps:=0; -- num_types:=0; -- fZoneTabCnty.Free; -- fZoneTabCoord.Free; -- fZoneTabZone.Free; -- fZoneTabComment.Free; -- inherited Destroy; --end; -- --procedure TCdCTimeZone.Assign(Source: TCdCTimeZone); --var i: integer; --begin --TimeZoneFile:=Source.TimeZoneFile; --JD:=Source.JD; --fZoneTabCnty.Clear; --for i:=0 to Source.ZoneTabCnty.Count-1 do -- fZoneTabCnty.Add(Source.ZoneTabCnty[i]); --fZoneTabCoord.Clear; --for i:=0 to Source.ZoneTabCoord.Count-1 do -- fZoneTabCoord.Add(Source.ZoneTabCoord[i]); --fZoneTabZone.Clear; --for i:=0 to Source.ZoneTabZone.Count-1 do -- fZoneTabZone.Add(Source.ZoneTabZone[i]); --fZoneTabComment.Clear; --for i:=0 to Source.ZoneTabComment.Count-1 do -- fZoneTabComment.Add(Source.ZoneTabComment[i]); --end; -- --function TCdCTimeZone.find_transition(timer:longint):pttinfo; --var -- i : longint; --begin -- if (num_transitions=0) or (timer<transitions[0]) then -- begin -- i:=0; -- while (i<num_types) and (types[i].isdst) do -- inc(i); -- if (i=num_types) then -- i:=0; -- end -- else -- begin -- for i:=1 to num_transitions do -- if (timer<transitions[i]) then -- break; -- i:=type_idxs[i-1]; -- end; -- find_transition:=@types[i]; --end; -- --procedure TCdCTimeZone.GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); --var -- info : pttinfo; -- i : longint; --begin --{ reset } -- fTZDaylight:=false; -- fTZSeconds:=0; -- fTZName[false]:=nil; -- fTZName[true]:=nil; -- leap_correct:=0; -- leap_hit:=0; -- fTimer:=timer; --{ get info } -- info:=find_transition(timer); -- if not assigned(info) then -- exit; -- fTZDaylight:=info^.isdst; -- fTZSeconds:=info^.offset; -- i:=0; -- while (i<num_types) do -- begin -- ftzname[types[i].isdst]:=@zone_names[types[i].idx]; -- inc(i); -- end; -- ftzname[info^.isdst]:=@zone_names[info^.idx]; -- i:=num_leaps; -- repeat -- if i=0 then -- exit; -- dec(i); -- until (timer>leaps[i].transition); -- leap_correct:=leaps[i].change; -- if (timer=leaps[i].transition) and -- (((i=0) and (leaps[i].change>0)) or -- (leaps[i].change>leaps[i-1].change)) then -- begin -- leap_hit:=1; -- while (i>0) and -- (leaps[i].transition=leaps[i-1].transition+1) and -- (leaps[i].change=leaps[i-1].change+1) do -- begin -- inc(leap_hit); -- dec(i); -- end; -- end; --end; -- --procedure TCdCTimeZone.GetLocalTimezone(timer:longint); --var -- lc,lh : longint; --begin -- GetLocalTimezone(timer,lc,lh); --end; -- --procedure TCdCTimeZone.ReadTimezoneFile(fn:shortstring); -- -- procedure decode(var l:longint); -- var -- k : longint; -- p : pbyte; -- begin -- p:=pbyte(@l); -- if (p[0] and (1 shl 7))<>0 then -- k:=not 0 -- else -- k:=0; -- k:=(k shl 8) or p[0]; -- k:=(k shl 8) or p[1]; -- k:=(k shl 8) or p[2]; -- k:=(k shl 8) or p[3]; -- l:=k; -- end; -- --const -- bufsize = 2048; --var -- buf : array[0..bufsize-1] of byte; -- bufptr : pbyte; -- f : file; -- count : longint; -- -- procedure readfilebuf; -- begin -- bufptr := @buf[0]; -- blockread(f, buf, bufsize, count); -- end; -- -- function readbufbyte: byte; -- begin -- if bufptr > @buf[bufsize-1] then -- readfilebuf; -- readbufbyte := bufptr^; -- inc(bufptr); -- end; -- -- function readbuf(var dest; count: integer): integer; -- var -- numbytes: integer; -- begin -- readbuf := 0; -- repeat -- numbytes := @buf[bufsize-1] - bufptr + 1; -- if numbytes > count then -- numbytes := count; -- if numbytes > 0 then -- begin -- move(bufptr^, dest, numbytes); -- inc(bufptr, numbytes); -- dec(count, numbytes); -- inc(readbuf, numbytes); -- end; -- if count > 0 then -- readfilebuf -- else -- break; -- until false; -- end; -- --var -- tzhead : ttzhead; -- i : longint; -- chars : longint; --begin --if fn='' then fn:='localtime'; --if FileExists(fn) and ((FileGetAttr(fn) and faDirectory)=0) then begin -- Filemode:=0; -- system.assign(f,fn); -- reset(f,1); -- bufptr := @buf[bufsize-1]+1; -- i:=readbuf(tzhead,sizeof(tzhead)); -- if i<>sizeof(tzhead) then -- exit; -- decode(tzhead.tzh_timecnt); -- decode(tzhead.tzh_typecnt); -- decode(tzhead.tzh_charcnt); -- decode(tzhead.tzh_leapcnt); -- decode(tzhead.tzh_ttisstdcnt); -- decode(tzhead.tzh_ttisgmtcnt); -- -- num_transitions:=tzhead.tzh_timecnt; -- num_types:=tzhead.tzh_typecnt; -- chars:=tzhead.tzh_charcnt; -- -- reallocmem(transitions,num_transitions*sizeof(longint)); -- reallocmem(type_idxs,num_transitions); -- reallocmem(types,num_types*sizeof(tttinfo)); -- reallocmem(zone_names,chars); -- reallocmem(leaps,num_leaps*sizeof(tleap)); -- -- readbuf(transitions^,num_transitions*4); -- readbuf(type_idxs^,num_transitions); -- -- for i:=0 to num_transitions-1 do -- decode(transitions[i]); -- -- for i:=0 to num_types-1 do -- begin -- readbuf(types[i].offset,4); -- readbuf(types[i].isdst,1); -- readbuf(types[i].idx,1); -- decode(types[i].offset); -- types[i].isstd:=0; -- types[i].isgmt:=0; -- end; -- -- readbuf(zone_names^,chars); -- -- for i:=0 to num_leaps-1 do -- begin -- readbuf(leaps[i].transition,4); -- readbuf(leaps[i].change,4); -- decode(leaps[i].transition); -- decode(leaps[i].change); -- end; -- -- for i:=0 to tzhead.tzh_ttisstdcnt-1 do -- types[i].isstd:=byte(readbufbyte<>0); -- -- for i:=0 to tzhead.tzh_ttisgmtcnt-1 do -- types[i].isgmt:=byte(readbufbyte<>0); -- -- closefile(f); --end; --end; -- --function TCdCTimeZone.GetTZName: string; --begin --result:=string(fTZName[fTZDaylight]); --end; -- --procedure TCdCTimeZone.SetDate(value: TDateTime); --var Year, Month, Day: word; -- timer:longint; --begin --if value<minDate then begin -- decodedate(value,Year, Month, Day); -- Year:=minYear; -- value:=encodedate(Year, Month, Day); --end; --if value>maxDate then begin -- decodedate(value,Year, Month, Day); -- Year:=maxYear; -- value:=encodedate(Year, Month, Day); --end; --timer:=round((value-UnixDateDelta)*secday); --if timer<>fTimer then -- GetLocalTimezone(timer); --end; -- --function TCdCTimeZone.GetDate:TDateTime ; --begin --result:=(fTimer/secday)+UnixDateDelta; --end; -- --procedure TCdCTimeZone.SetJD(value: double); --var Year, Month, Day: integer; -- Hour: double; -- timer:longint; --begin --if value<minJD then begin -- djd(value,Year, Month, Day, Hour); -- Year:=minYear; -- value:=cjd(Year, Month, Day, Hour); --end; --if value>maxJD then begin -- djd(value,Year, Month, Day, Hour); -- Year:=maxYear; -- value:=cjd(Year, Month, Day, Hour); --end; --timer:=round((value-JDUnixDelta)*secday); --if timer<>fTimer then -- GetLocalTimezone(timer); --end; -- --function TCdCTimeZone.GetJD:double ; --begin --result:=(fTimer/secday)+JDUnixDelta; --end; -- --procedure TCdCTimeZone.SetTimeZoneFile(value: string); --begin --if (value<>fTimeZoneFile) and fileexists(value) and ((FileGetAttr(value) and faDirectory)=0) then begin -- fTimeZoneFile:=value; -- ReadTimezoneFile(fTimezoneFile); -- GetLocalTimezone(fTimer); --end; --end; -- --function TCdCTimeZone.GetTimeZoneFile:string ; --begin --result:=fTimeZoneFile; --end; -- --function TCdCTimeZone.UTC2Local(t: TDateTime):TDateTime; --begin -- SetDate(t); -- result:=t+fTZSeconds/secday; --end; -- --function TCdCTimeZone.UTC2Local(t: double):double; --begin -- SetJD(t); -- result:=t+fTZSeconds/secday; --end; -- --function TCdCTimeZone.Local2UTC(t: TDateTime):TDateTime; --begin -- SetDate(t); -- result:=t-fTZSeconds/secday; --end; -- --function TCdCTimeZone.Local2UTC(t: double):double; --begin -- SetJD(t); -- result:=t-fTZSeconds/secday; --end; -- --function TCdCTimeZone.LoadZoneTab(fn: string):boolean; --var f: textfile; -- buf: string; -- rec: TStringList; -- i: integer; --const tzgmt: array[1..25] of string=('Etc/GMT-12','Etc/GMT-11','Etc/GMT-10','Etc/GMT-9','Etc/GMT-8','Etc/GMT-7','Etc/GMT-6','Etc/GMT-5','Etc/GMT-4','Etc/GMT-3','Etc/GMT-2','Etc/GMT-1','Etc/GMT','Etc/GMT+1','Etc/GMT+2','Etc/GMT+3','Etc/GMT+4','Etc/GMT+5','Etc/GMT+6','Etc/GMT+7','Etc/GMT+8','Etc/GMT+9','Etc/GMT+10','Etc/GMT+11','Etc/GMT+12'); --begin --if fileexists(fn) then begin -- fZoneTabCnty.Clear; -- fZoneTabCoord.Clear; -- fZoneTabZone.Clear; -- fZoneTabComment.Clear; -- rec:=TStringList.Create; -- Filemode:=0; -- system.assign(f,fn); -- reset(f); -- repeat -- readln(f,buf); -- buf:=trim(buf); -- if buf='' then continue; -- if buf[1]='#' then continue; -- SplitRec(buf,#9,rec); -- if rec.Count<3 then continue; -- fZoneTabCnty.Add(rec[0]); -- fZoneTabCoord.Add(rec[1]); -- fZoneTabZone.Add(rec[2]); -- if rec.Count>3 then fZoneTabComment.Add(rec[3]) -- else fZoneTabComment.Add(''); -- until eof(f); -- closefile(f); -- for i:=1 to 25 do begin -- fZoneTabCnty.Add('ZZ'); -- fZoneTabCoord.Add(''); -- fZoneTabZone.Add(tzgmt[i]); -- fZoneTabComment.Add(''); -- end; -- result:=fZoneTabCnty.Count>0; -- rec.Free; --end --else -- result:=false; --end; -- --function TCdCTimeZone.GetNowUTC: TDateTime; --var -- st : TSystemTime; --begin --{$ifdef mswindows} -- GetSystemTime(st); -- result:=SystemTimeToDateTime(st); --{$endif} --{$ifdef unix} -- GetLocalTime(st); -- result:=SystemTimeToDateTime(st)-(TzSeconds/secday); --{$endif} --end; -- --function TCdCTimeZone.GetNowLocalTime: TDateTime; --begin --result:=UTC2Local(GetNowUTC); --end; -- --end. -- -+unit cu_tz; -+ -+{ Time Zone processing component. -+ Based on FreePascal RTL rtl/unix/timezone.inc -+ -+ Copyright (C) 2007 Patrick Chevalley pch@freesurf.ch -+ -+ This library is free software; you can redistribute it and/or modify it -+ under the terms of the GNU Library General Public License as published by -+ the Free Software Foundation; either version 2 of the License, or (at your -+ option) any later version with the following modification: -+ -+ As a special exception, the copyright holders of this library give you -+ permission to link this library with independent modules to produce an -+ executable, regardless of the license terms of these independent modules,and -+ to copy and distribute the resulting executable under terms of your choice, -+ provided that you also meet, for each linked independent module, the terms -+ and conditions of the license of that module. An independent module is a -+ module which is not derived from or based on this library. If you modify -+ this library, you may extend this exception to your version of the library, -+ but you are not obligated to do so. If you do not wish to do so, delete this -+ exception statement from your version. -+ -+ 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 library; if not, write to the Free Software Foundation, -+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+ -+{$mode objfpc}{$H+} -+ -+interface -+ -+uses -+ {$ifdef mswindows} -+ Windows, -+ {$endif} -+ {$ifdef unix} -+ unixutil, -+ {$endif} -+ Classes, SysUtils, Math; -+ -+type -+ ttzhead=packed record -+ tzh_reserved : array[0..19] of byte; -+ tzh_ttisgmtcnt, -+ tzh_ttisstdcnt, -+ tzh_leapcnt, -+ tzh_timecnt, -+ tzh_typecnt, -+ tzh_charcnt : longint; -+ end; -+ -+ pttinfo=^tttinfo; -+ tttinfo=packed record -+ offset : longint; -+ isdst : boolean; -+ idx : byte; -+ isstd : byte; -+ isgmt : byte; -+ end; -+ -+ pleap=^tleap; -+ tleap=record -+ transition : longint; -+ change : longint; -+ end; -+ -+ TCdCTimeZone = class(TObject) -+ private -+ fTZDaylight:boolean; -+ fTZSeconds:longint; -+ fTZName: array[boolean] of pchar; -+ fTimer:longint; -+ fTimeZoneFile: string; -+ fZoneTabCnty: TStringList; -+ fZoneTabCoord: TStringList; -+ fZoneTabZone: TStringList; -+ fZoneTabComment: TStringList; -+ num_transitions, -+ num_leaps, -+ num_types : longint; -+ transitions : plongint; -+ type_idxs : pbyte; -+ types : pttinfo; -+ zone_names : pchar; -+ leaps : pleap; -+ procedure GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); -+ procedure GetLocalTimezone(timer:longint); -+ function find_transition(timer:longint):pttinfo; -+ procedure ReadTimezoneFile(fn:shortstring); -+ function GetTZName: string; -+ procedure SetDate(value: TDateTime); -+ function GetDate:TDateTime ; -+ procedure SetJD(value: double); -+ function GetJD:double ; -+ procedure SetTimeZoneFile(value: string); -+ function GetTimeZoneFile:string ; -+ function GetNowLocalTime: TDateTime; -+ function GetNowUTC: TDateTime; -+ public -+ constructor Create; -+ destructor Destroy; override; -+ procedure Assign(Source: TCdCTimeZone); -+ function LoadZoneTab(fn: string):boolean; -+ function UTC2Local(t: TDateTime):TDateTime; -+ function UTC2Local(t: double):double; // jd -+ function Local2UTC(t: TDateTime):TDateTime; -+ function Local2UTC(t: double):double; // jd -+ property TimeZoneFile: string read GetTimeZoneFile write SetTimeZoneFile; -+ property Date: TDateTime read GetDate write SetDate; -+ property JD: double read GetJD write SetJD; -+ property SecondsOffset :longint read fTZSeconds; -+ property ZoneName : string read GetTZName; -+ property Daylight:boolean read fTZDaylight; -+ property ZoneTabCnty: TStringList read fZoneTabCnty; -+ property ZoneTabCoord: TStringList read fZoneTabCoord; -+ property ZoneTabZone: TStringList read fZoneTabZone; -+ property ZoneTabComment: TStringList read fZoneTabComment; -+ property NowLocalTime: TDateTime read GetNowLocalTime; -+ property NowUTC: TDateTime read GetNowUTC; -+ end; -+ -+const -+ secday=24*3600; -+ JDUnixDelta=2440587.5; // 1.1.1970 0h -+ minJD=2415750;// 1.1.1902 risk of 32bit unixtime underflow -+ minYear=1904; // next leap year after underflow -+ maxJD=2465424;// 1.1.2038 risk of 32bit unixtime overflow -+ maxYear=2036; // last leap year before overflow -+ minDate=732; // 1.1.1902 risk of 32bit unixtime underflow -+ maxDate=50406; // 1.1.2038 risk of 32bit unixtime overflow -+ -+implementation -+ -+function Cjd(annee,mois,jour :INTEGER; Heure:double):double; -+var u,u0,u1,u2 : double; -+ gregorian : boolean; -+begin -+if annee*10000+mois*100+jour >= 15821015 then gregorian:=true else gregorian:=false; -+u:=annee; -+if mois<3 then u:=u-1; -+u0:=u+4712; -+u1:=mois+1; -+if u1<4 then u1:=u1+12; -+result:=floor(u0*365.25)+floor(30.6*u1+0.000001)+jour+heure/24-63.5; -+if gregorian then begin -+ u2:=floor(abs(u)/100)-floor(abs(u)/400); -+ if u<0 then u2:=-u2; -+ result:=result-u2+2; -+ if (u<0)and((u/100)=floor(u/100))and((u/400)<>floor(u/400)) then result:=result-1; -+end; -+end; -+ -+PROCEDURE Djd(jd:Double;VAR annee,mois,jour:INTEGER; VAR Heure:double); -+var u0,u1,u2,u3,u4 : double; -+ gregorian : boolean; -+begin -+u0:=jd+0.5; -+if int(u0)>=2299161 then gregorian:=true else gregorian:=false; -+u0:=jd+32082.5; -+if gregorian then begin -+ u1:=u0+floor(u0/36525)-floor(u0/146100)-38; -+ if jd>=1830691.5 then u1:=u1+1; -+ u0:=u0+floor(u1/36525)-floor(u1/146100)-38; -+end; -+u2:=floor(u0+123); -+u3:=floor((u2-122.2)/365.25); -+u4:=floor((u2-floor(365.25*u3))/30.6001); -+mois:=round(u4-1); -+if mois>12 then mois:=mois-12; -+jour:=round(u2-floor(365.25*u3)-floor(30.6001*u4)); -+annee:=round(u3+floor((u4-2)/12)-4800); -+heure:=(jd-floor(jd+0.5)+0.5)*24; -+end; -+ -+procedure SplitRec(buf,sep:string; var arg: TStringList); -+var i,l:integer; -+begin -+arg.clear; -+l:=length(sep); -+while pos(sep,buf)<>0 do begin -+ for i:=1 to length(buf) do begin -+ if copy(buf,i,l) = sep then begin -+ arg.add(copy(buf,1,i-1)); -+ delete(buf,1,i-1+l); -+ break; -+ end; -+ end; -+end; -+arg.add(buf); -+end; -+ -+constructor TCdCTimeZone.Create; -+begin -+ inherited Create; -+ fZoneTabCnty:=TStringList.Create; -+ fZoneTabCoord:=TStringList.Create; -+ fZoneTabZone:=TStringList.Create; -+ fZoneTabComment:=TStringList.Create; -+ fTimeZoneFile:=''; -+ ReadTimezoneFile(GetTimezoneFile); -+ GetLocalTimezone(round((now-UnixDateDelta)*24*3600)); -+end; -+ -+destructor TCdCTimeZone.Destroy; -+begin -+ if assigned(transitions) then -+ freemem(transitions); -+ if assigned(type_idxs) then -+ freemem(type_idxs); -+ if assigned(types) then -+ freemem(types); -+ if assigned(zone_names) then -+ freemem(zone_names); -+ if assigned(leaps) then -+ freemem(leaps); -+ num_transitions:=0; -+ num_leaps:=0; -+ num_types:=0; -+ fZoneTabCnty.Free; -+ fZoneTabCoord.Free; -+ fZoneTabZone.Free; -+ fZoneTabComment.Free; -+ inherited Destroy; -+end; -+ -+procedure TCdCTimeZone.Assign(Source: TCdCTimeZone); -+var i: integer; -+begin -+TimeZoneFile:=Source.TimeZoneFile; -+JD:=Source.JD; -+fZoneTabCnty.Clear; -+for i:=0 to Source.ZoneTabCnty.Count-1 do -+ fZoneTabCnty.Add(Source.ZoneTabCnty[i]); -+fZoneTabCoord.Clear; -+for i:=0 to Source.ZoneTabCoord.Count-1 do -+ fZoneTabCoord.Add(Source.ZoneTabCoord[i]); -+fZoneTabZone.Clear; -+for i:=0 to Source.ZoneTabZone.Count-1 do -+ fZoneTabZone.Add(Source.ZoneTabZone[i]); -+fZoneTabComment.Clear; -+for i:=0 to Source.ZoneTabComment.Count-1 do -+ fZoneTabComment.Add(Source.ZoneTabComment[i]); -+end; -+ -+function TCdCTimeZone.find_transition(timer:longint):pttinfo; -+var -+ i : longint; -+begin -+ if (num_transitions=0) or (timer<transitions[0]) then -+ begin -+ i:=0; -+ while (i<num_types) and (types[i].isdst) do -+ inc(i); -+ if (i=num_types) then -+ i:=0; -+ end -+ else -+ begin -+ for i:=1 to num_transitions do -+ if (timer<transitions[i]) then -+ break; -+ i:=type_idxs[i-1]; -+ end; -+ find_transition:=@types[i]; -+end; -+ -+procedure TCdCTimeZone.GetLocalTimezone(timer:longint;var leap_correct,leap_hit:longint); -+var -+ info : pttinfo; -+ i : longint; -+begin -+{ reset } -+ fTZDaylight:=false; -+ fTZSeconds:=0; -+ fTZName[false]:=nil; -+ fTZName[true]:=nil; -+ leap_correct:=0; -+ leap_hit:=0; -+ fTimer:=timer; -+{ get info } -+ info:=find_transition(timer); -+ if not assigned(info) then -+ exit; -+ fTZDaylight:=info^.isdst; -+ fTZSeconds:=info^.offset; -+ i:=0; -+ while (i<num_types) do -+ begin -+ ftzname[types[i].isdst]:=@zone_names[types[i].idx]; -+ inc(i); -+ end; -+ ftzname[info^.isdst]:=@zone_names[info^.idx]; -+ i:=num_leaps; -+ repeat -+ if i=0 then -+ exit; -+ dec(i); -+ until (timer>leaps[i].transition); -+ leap_correct:=leaps[i].change; -+ if (timer=leaps[i].transition) and -+ (((i=0) and (leaps[i].change>0)) or -+ (leaps[i].change>leaps[i-1].change)) then -+ begin -+ leap_hit:=1; -+ while (i>0) and -+ (leaps[i].transition=leaps[i-1].transition+1) and -+ (leaps[i].change=leaps[i-1].change+1) do -+ begin -+ inc(leap_hit); -+ dec(i); -+ end; -+ end; -+end; -+ -+procedure TCdCTimeZone.GetLocalTimezone(timer:longint); -+var -+ lc,lh : longint; -+begin -+ GetLocalTimezone(timer,lc,lh); -+end; -+ -+procedure TCdCTimeZone.ReadTimezoneFile(fn:shortstring); -+ -+ procedure decode(var l:longint); -+ var -+ k : longint; -+ p : pbyte; -+ begin -+ p:=pbyte(@l); -+ if (p[0] and (1 shl 7))<>0 then -+ k:=not 0 -+ else -+ k:=0; -+ k:=(k shl 8) or p[0]; -+ k:=(k shl 8) or p[1]; -+ k:=(k shl 8) or p[2]; -+ k:=(k shl 8) or p[3]; -+ l:=k; -+ end; -+ -+const -+ bufsize = 2048; -+var -+ buf : array[0..bufsize-1] of byte; -+ bufptr : pbyte; -+ f : file; -+ count : longint; -+ -+ procedure readfilebuf; -+ begin -+ bufptr := @buf[0]; -+ blockread(f, buf, bufsize, count); -+ end; -+ -+ function readbufbyte: byte; -+ begin -+ if bufptr > @buf[bufsize-1] then -+ readfilebuf; -+ readbufbyte := bufptr^; -+ inc(bufptr); -+ end; -+ -+ function readbuf(var dest; count: integer): integer; -+ var -+ numbytes: integer; -+ begin -+ readbuf := 0; -+ repeat -+ numbytes := @buf[bufsize-1] - bufptr + 1; -+ if numbytes > count then -+ numbytes := count; -+ if numbytes > 0 then -+ begin -+ move(bufptr^, dest, numbytes); -+ inc(bufptr, numbytes); -+ dec(count, numbytes); -+ inc(readbuf, numbytes); -+ end; -+ if count > 0 then -+ readfilebuf -+ else -+ break; -+ until false; -+ end; -+ -+var -+ tzhead : ttzhead; -+ i : longint; -+ chars : longint; -+begin -+if fn='' then fn:='localtime'; -+if FileExists(fn) and ((FileGetAttr(fn) and faDirectory)=0) then begin -+ Filemode:=0; -+ system.assign(f,fn); -+ reset(f,1); -+ bufptr := @buf[bufsize-1]+1; -+ i:=readbuf(tzhead,sizeof(tzhead)); -+ if i<>sizeof(tzhead) then -+ exit; -+ decode(tzhead.tzh_timecnt); -+ decode(tzhead.tzh_typecnt); -+ decode(tzhead.tzh_charcnt); -+ decode(tzhead.tzh_leapcnt); -+ decode(tzhead.tzh_ttisstdcnt); -+ decode(tzhead.tzh_ttisgmtcnt); -+ -+ num_transitions:=tzhead.tzh_timecnt; -+ num_types:=tzhead.tzh_typecnt; -+ chars:=tzhead.tzh_charcnt; -+ -+ reallocmem(transitions,num_transitions*sizeof(longint)); -+ reallocmem(type_idxs,num_transitions); -+ reallocmem(types,num_types*sizeof(tttinfo)); -+ reallocmem(zone_names,chars); -+ reallocmem(leaps,num_leaps*sizeof(tleap)); -+ -+ readbuf(transitions^,num_transitions*4); -+ readbuf(type_idxs^,num_transitions); -+ -+ for i:=0 to num_transitions-1 do -+ decode(transitions[i]); -+ -+ for i:=0 to num_types-1 do -+ begin -+ readbuf(types[i].offset,4); -+ readbuf(types[i].isdst,1); -+ readbuf(types[i].idx,1); -+ decode(types[i].offset); -+ types[i].isstd:=0; -+ types[i].isgmt:=0; -+ end; -+ -+ readbuf(zone_names^,chars); -+ -+ for i:=0 to num_leaps-1 do -+ begin -+ readbuf(leaps[i].transition,4); -+ readbuf(leaps[i].change,4); -+ decode(leaps[i].transition); -+ decode(leaps[i].change); -+ end; -+ -+ for i:=0 to tzhead.tzh_ttisstdcnt-1 do -+ types[i].isstd:=byte(readbufbyte<>0); -+ -+ for i:=0 to tzhead.tzh_ttisgmtcnt-1 do -+ types[i].isgmt:=byte(readbufbyte<>0); -+ -+ closefile(f); -+end; -+end; -+ -+function TCdCTimeZone.GetTZName: string; -+begin -+result:=string(fTZName[fTZDaylight]); -+end; -+ -+procedure TCdCTimeZone.SetDate(value: TDateTime); -+var Year, Month, Day: word; -+ timer:longint; -+begin -+if value<minDate then begin -+ decodedate(value,Year, Month, Day); -+ Year:=minYear; -+ value:=encodedate(Year, Month, Day); -+end; -+if value>maxDate then begin -+ decodedate(value,Year, Month, Day); -+ Year:=maxYear; -+ value:=encodedate(Year, Month, Day); -+end; -+timer:=round((value-UnixDateDelta)*secday); -+if timer<>fTimer then -+ GetLocalTimezone(timer); -+end; -+ -+function TCdCTimeZone.GetDate:TDateTime ; -+begin -+result:=(fTimer/secday)+UnixDateDelta; -+end; -+ -+procedure TCdCTimeZone.SetJD(value: double); -+var Year, Month, Day: integer; -+ Hour: double; -+ timer:longint; -+begin -+if value<minJD then begin -+ djd(value,Year, Month, Day, Hour); -+ Year:=minYear; -+ value:=cjd(Year, Month, Day, Hour); -+end; -+if value>maxJD then begin -+ djd(value,Year, Month, Day, Hour); -+ Year:=maxYear; -+ value:=cjd(Year, Month, Day, Hour); -+end; -+timer:=round((value-JDUnixDelta)*secday); -+if timer<>fTimer then -+ GetLocalTimezone(timer); -+end; -+ -+function TCdCTimeZone.GetJD:double ; -+begin -+result:=(fTimer/secday)+JDUnixDelta; -+end; -+ -+procedure TCdCTimeZone.SetTimeZoneFile(value: string); -+begin -+if (value<>fTimeZoneFile) and fileexists(value) and ((FileGetAttr(value) and faDirectory)=0) then begin -+ fTimeZoneFile:=value; -+ ReadTimezoneFile(fTimezoneFile); -+ GetLocalTimezone(fTimer); -+end; -+end; -+ -+function TCdCTimeZone.GetTimeZoneFile:string ; -+begin -+result:=fTimeZoneFile; -+end; -+ -+function TCdCTimeZone.UTC2Local(t: TDateTime):TDateTime; -+begin -+ SetDate(t); -+ result:=t+fTZSeconds/secday; -+end; -+ -+function TCdCTimeZone.UTC2Local(t: double):double; -+begin -+ SetJD(t); -+ result:=t+fTZSeconds/secday; -+end; -+ -+function TCdCTimeZone.Local2UTC(t: TDateTime):TDateTime; -+begin -+ SetDate(t); -+ result:=t-fTZSeconds/secday; -+end; -+ -+function TCdCTimeZone.Local2UTC(t: double):double; -+begin -+ SetJD(t); -+ result:=t-fTZSeconds/secday; -+end; -+ -+function TCdCTimeZone.LoadZoneTab(fn: string):boolean; -+var f: textfile; -+ buf: string; -+ rec: TStringList; -+ i: integer; -+const tzgmt: array[1..25] of string=('Etc/GMT-12','Etc/GMT-11','Etc/GMT-10','Etc/GMT-9','Etc/GMT-8','Etc/GMT-7','Etc/GMT-6','Etc/GMT-5','Etc/GMT-4','Etc/GMT-3','Etc/GMT-2','Etc/GMT-1','Etc/GMT','Etc/GMT+1','Etc/GMT+2','Etc/GMT+3','Etc/GMT+4','Etc/GMT+5','Etc/GMT+6','Etc/GMT+7','Etc/GMT+8','Etc/GMT+9','Etc/GMT+10','Etc/GMT+11','Etc/GMT+12'); -+begin -+if fileexists(fn) then begin -+ fZoneTabCnty.Clear; -+ fZoneTabCoord.Clear; -+ fZoneTabZone.Clear; -+ fZoneTabComment.Clear; -+ rec:=TStringList.Create; -+ Filemode:=0; -+ system.assign(f,fn); -+ reset(f); -+ repeat -+ readln(f,buf); -+ buf:=trim(buf); -+ if buf='' then continue; -+ if buf[1]='#' then continue; -+ SplitRec(buf,#9,rec); -+ if rec.Count<3 then continue; -+ fZoneTabCnty.Add(rec[0]); -+ fZoneTabCoord.Add(rec[1]); -+ fZoneTabZone.Add(rec[2]); -+ if rec.Count>3 then fZoneTabComment.Add(rec[3]) -+ else fZoneTabComment.Add(''); -+ until eof(f); -+ closefile(f); -+ for i:=1 to 25 do begin -+ fZoneTabCnty.Add('ZZ'); -+ fZoneTabCoord.Add(''); -+ fZoneTabZone.Add(tzgmt[i]); -+ fZoneTabComment.Add(''); -+ end; -+ result:=fZoneTabCnty.Count>0; -+ rec.Free; -+end -+else -+ result:=false; -+end; -+ -+function TCdCTimeZone.GetNowUTC: TDateTime; -+var -+ st : TSystemTime; -+begin -+{$ifdef mswindows} -+ GetSystemTime(st); -+ result:=SystemTimeToDateTime(st); -+{$endif} -+{$ifdef unix} -+ GetLocalTime(st); -+ result:=SystemTimeToDateTime(st)-(TzSeconds/secday); -+{$endif} -+end; -+ -+function TCdCTimeZone.GetNowLocalTime: TDateTime; -+begin -+result:=UTC2Local(GetNowUTC); -+end; -+ -+end. -+ -diff -ur skychart_3.2/skychart/makepo.cmd skychart_3.2_up/skychart/makepo.cmd ---- skychart_3.2/skychart/makepo.cmd 2008-10-09 19:29:16.000000000 +0200 -+++ skychart_3.2_up/skychart/makepo.cmd 2011-03-09 15:18:23.117276415 +0100 -@@ -1,13 +1,13 @@ --REM Run this script to update all the translations after modification of a --REM resource string in u_translation.pas and compilation of the program. -- --REM Update first the path to your Lazarus installation and run "make" in lazarus/tools -- -- --D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_translation.rst -o ..\tools\data\language\skychart.po --D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\skychart.po -- --D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_help.rst -o ..\tools\data\language\help.po --D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\help.po -- --pause -+REM Run this script to update all the translations after modification of a -+REM resource string in u_translation.pas and compilation of the program. -+ -+REM Update first the path to your Lazarus installation and run "make" in lazarus/tools -+ -+ -+D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_translation.rst -o ..\tools\data\language\skychart.po -+D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\skychart.po -+ -+D:\appli\lazarus\pp\bin\i386-win32\rstconv -i units\win32\u_help.rst -o ..\tools\data\language\help.po -+D:\appli\lazarus\tools\updatepofiles ..\tools\data\language\help.po -+ -+pause -diff -ur skychart_3.2/skychart/pu_addlabel.lrs skychart_3.2_up/skychart/pu_addlabel.lrs ---- skychart_3.2/skychart/pu_addlabel.lrs 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_addlabel.lrs 2011-03-09 15:18:23.123275677 +0100 -@@ -1,36 +1,36 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tf_addlabel','FORMDATA',[ -- 'TPF0'#11'Tf_addlabel'#10'f_addlabel'#4'Left'#3'@'#1#6'Height'#3#149#0#3'Top' -- +#3#208#0#5'Width'#3#8#1#13'ActiveControl'#7#5'Edit1'#11'BorderIcons'#11#12'b' -- +'iSystemMenu'#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#9'Add Label'#12'C' -- +'lientHeight'#3#149#0#11'ClientWidth'#3#8#1#11'Font.Height'#2#245#8'OnCreate' -- +#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLa' -- +'bel'#6'Label1'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#2#30#7'Capt' -- +'ion'#6#6'Label:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#12#6'H' -- +'eight'#2#14#3'Top'#2'-'#5'Width'#2#27#7'Caption'#6#5'Type:'#11'ParentColor' -- +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2#8#5'Width'#3 -- +#192#0#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#0#0#0#9'TComboBox'#9'Comb' -- +'oBox1'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'('#5'Width'#3#192#0#10'ItemHeig' -- +'ht'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Star'#6#13'Variable Star'#6 -- +#13'Multiple Star'#6#6'Nebula'#6#12'Solar System'#6#13'Constellation'#6#11'O' -- +'ther label'#6#17'Chart Information'#0#8'OnSelect'#7#15'ComboBox1Select'#8'T' -- +'abOrder'#2#1#4'Text'#6#4'Star'#0#0#7'TButton'#7'Button1'#4'Left'#2'c'#6'Hei' -- +'ght'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' -- +'tion'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#2#0#0#7'TButto' -- +'n'#7'Button2'#4'Left'#3#182#0#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'B' -- +'orderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalRe' -- +'sult'#2#2#8'TabOrder'#2#3#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#12#6 -- +'Height'#2','#3'Top'#2'@'#5'Width'#3#236#0#8'AutoFill'#9#7'Caption'#6#9'Alig' -- +'nment'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' -- +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' -- +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' -- +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' -- +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 -- +'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2#29#11'ClientWidth'#3#232 -- +#0#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Left'#6#6'Center' -- +#6#5'Right'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#4#0#0#7'TButto' -- +'n'#7'Button3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'Bord' -- +'erSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Clic' -- +'k'#8'TabOrder'#2#5#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tf_addlabel','FORMDATA',[ -+ 'TPF0'#11'Tf_addlabel'#10'f_addlabel'#4'Left'#3'@'#1#6'Height'#3#149#0#3'Top' -+ +#3#208#0#5'Width'#3#8#1#13'ActiveControl'#7#5'Edit1'#11'BorderIcons'#11#12'b' -+ +'iSystemMenu'#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#9'Add Label'#12'C' -+ +'lientHeight'#3#149#0#11'ClientWidth'#3#8#1#11'Font.Height'#2#245#8'OnCreate' -+ +#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLa' -+ +'bel'#6'Label1'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#2#30#7'Capt' -+ +'ion'#6#6'Label:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#12#6'H' -+ +'eight'#2#14#3'Top'#2'-'#5'Width'#2#27#7'Caption'#6#5'Type:'#11'ParentColor' -+ +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2#8#5'Width'#3 -+ +#192#0#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#0#0#0#9'TComboBox'#9'Comb' -+ +'oBox1'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'('#5'Width'#3#192#0#10'ItemHeig' -+ +'ht'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Star'#6#13'Variable Star'#6 -+ +#13'Multiple Star'#6#6'Nebula'#6#12'Solar System'#6#13'Constellation'#6#11'O' -+ +'ther label'#6#17'Chart Information'#0#8'OnSelect'#7#15'ComboBox1Select'#8'T' -+ +'abOrder'#2#1#4'Text'#6#4'Star'#0#0#7'TButton'#7'Button1'#4'Left'#2'c'#6'Hei' -+ +'ght'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' -+ +'tion'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#2#0#0#7'TButto' -+ +'n'#7'Button2'#4'Left'#3#182#0#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'B' -+ +'orderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalRe' -+ +'sult'#2#2#8'TabOrder'#2#3#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#12#6 -+ +'Height'#2','#3'Top'#2'@'#5'Width'#3#236#0#8'AutoFill'#9#7'Caption'#6#9'Alig' -+ +'nment'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' -+ +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' -+ +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' -+ +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' -+ +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 -+ +'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2#29#11'ClientWidth'#3#232 -+ +#0#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Left'#6#6'Center' -+ +#6#5'Right'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#4#0#0#7'TButto' -+ +'n'#7'Button3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'p'#5'Width'#2'A'#25'Bord' -+ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Clic' -+ +'k'#8'TabOrder'#2#5#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_ascomclient.lfm skychart_3.2_up/skychart/pu_ascomclient.lfm ---- skychart_3.2/skychart/pu_ascomclient.lfm 2010-09-01 12:44:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_ascomclient.lfm 2011-03-09 15:18:23.124275554 +0100 -@@ -1,351 +1,351 @@ --object pop_scope: Tpop_scope -- Left = 1081 -- Height = 419 -- Top = 223 -- Width = 277 -- HorzScrollBar.Visible = False -- VertScrollBar.Visible = False -- ActiveControl = Edit1 -- BorderStyle = bsToolWindow -- Caption = 'ASCOM Telescope Interface' -- ClientHeight = 419 -- ClientWidth = 277 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- OnCloseQuery = kill -- OnDestroy = FormDestroy -- Position = poDefault -- LCLVersion = '0.9.29' -- object GroupBox3: TGroupBox -- Left = 8 -- Height = 65 -- Top = 344 -- Width = 257 -- ClientHeight = 61 -- ClientWidth = 253 -- TabOrder = 0 -- object SpeedButton1: TSpeedButton -- Left = 8 -- Height = 22 -- Top = 11 -- Width = 65 -- Caption = 'Connect' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = setresClick -- end -- object SpeedButton2: TSpeedButton -- Left = 184 -- Height = 22 -- Top = 11 -- Width = 65 -- Caption = 'Hide' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton2Click -- end -- object SpeedButton5: TSpeedButton -- Left = 112 -- Height = 22 -- Top = 11 -- Width = 65 -- Caption = 'Disconnect' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton5Click -- end -- object led: TEdit -- Left = 80 -- Height = 20 -- Top = 12 -- Width = 25 -- AutoSize = False -- Color = clRed -- ReadOnly = True -- TabStop = False -- TabOrder = 0 -- end -- end -- object GroupBox5: TGroupBox -- Left = 8 -- Height = 104 -- Top = 120 -- Width = 257 -- Caption = 'Observatory ' -- ClientHeight = 84 -- ClientWidth = 253 -- TabOrder = 1 -- object Label15: TLabel -- Left = 4 -- Height = 19 -- Top = 20 -- Width = 54 -- Caption = 'Latitude : ' -- ParentColor = False -- end -- object Label16: TLabel -- Left = 124 -- Height = 19 -- Top = 21 -- Width = 57 -- Caption = 'Longitude :' -- ParentColor = False -- end -- object SpeedButton8: TSpeedButton -- Left = 136 -- Height = 22 -- Top = 51 -- Width = 105 -- Caption = 'Set Time' -- Color = clBtnFace -- Enabled = False -- NumGlyphs = 0 -- OnClick = SpeedButton8Click -- end -- object SpeedButton9: TSpeedButton -- Left = 16 -- Height = 22 -- Top = 51 -- Width = 105 -- Caption = 'Set Location' -- Color = clBtnFace -- Enabled = False -- NumGlyphs = 0 -- OnClick = SpeedButton9Click -- end -- object lat: TEdit -- Left = 50 -- Height = 26 -- Top = 16 -- Width = 70 -- Color = clBtnFace -- ReadOnly = True -- TabStop = False -- TabOrder = 0 -- Text = '0' -- end -- object long: TEdit -- Left = 180 -- Height = 26 -- Top = 18 -- Width = 70 -- Color = clBtnFace -- ReadOnly = True -- TabStop = False -- TabOrder = 1 -- Text = '0' -- end -- end -- object Panel1: TPanel -- Left = 8 -- Height = 101 -- Top = 232 -- Width = 257 -- ClientHeight = 101 -- ClientWidth = 257 -- TabOrder = 2 -- object LabelAlpha: TLabel -- Left = 26 -- Height = 19 -- Top = 10 -- Width = 22 -- Caption = 'RA ' -- ParentColor = False -- end -- object LabelDelta: TLabel -- Left = 128 -- Height = 19 -- Top = 10 -- Width = 24 -- Caption = 'DEC' -- ParentColor = False -- end -- object Label11: TLabel -- Left = 26 -- Height = 19 -- Top = 34 -- Width = 15 -- Caption = 'AZ' -- ParentColor = False -- end -- object Label12: TLabel -- Left = 128 -- Height = 19 -- Top = 34 -- Width = 20 -- Caption = 'ALT' -- ParentColor = False -- end -- object SpeedButton6: TSpeedButton -- Left = 92 -- Height = 22 -- Top = 63 -- Width = 73 -- Caption = 'Abort Slew' -- Color = clBtnFace -- Font.Color = clRed -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- Font.Style = [fsBold] -- NumGlyphs = 0 -- OnClick = SpeedButton6Click -- ParentFont = False -- end -- object SpeedButton4: TSpeedButton -- Left = 176 -- Height = 22 -- Top = 63 -- Width = 65 -- Caption = 'Help...' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton4Click -- end -- object pos_x: TEdit -- Left = 44 -- Height = 26 -- Top = 6 -- Width = 70 -- ReadOnly = True -- TabStop = False -- TabOrder = 0 -- end -- object pos_y: TEdit -- Left = 160 -- Height = 26 -- Top = 6 -- Width = 70 -- ReadOnly = True -- TabStop = False -- TabOrder = 1 -- end -- object az_x: TEdit -- Left = 44 -- Height = 26 -- Top = 30 -- Width = 70 -- ReadOnly = True -- TabStop = False -- TabOrder = 2 -- end -- object alt_y: TEdit -- Left = 160 -- Height = 26 -- Top = 30 -- Width = 70 -- ReadOnly = True -- TabStop = False -- TabOrder = 3 -- end -- object ShowAltAz: TCheckBox -- Left = 8 -- Height = 22 -- Top = 32 -- Width = 23 -- TabOrder = 4 -- end -- object TrackingBtn: TSpeedButton -- Left = 8 -- Height = 22 -- Top = 63 -- Width = 71 -- Caption = 'Tracking' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = TrackingBtnClick -- end -- object trackingled: TEdit -- Left = 8 -- Height = 16 -- Top = 84 -- Width = 72 -- AutoSize = False -- Color = clRed -- ReadOnly = True -- TabStop = False -- TabOrder = 5 -- end -- end -- object GroupBox1: TGroupBox -- Left = 8 -- Height = 105 -- Top = 0 -- Width = 257 -- Caption = 'Driver Selection' -- ClientHeight = 85 -- ClientWidth = 253 -- TabOrder = 3 -- object SpeedButton3: TSpeedButton -- Left = 176 -- Height = 22 -- Top = 9 -- Width = 65 -- Caption = 'Select' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton3Click -- end -- object Label1: TLabel -- Left = 8 -- Height = 19 -- Top = 56 -- Width = 73 -- Caption = 'Refresh rate :' -- ParentColor = False -- end -- object SpeedButton7: TSpeedButton -- Left = 176 -- Height = 22 -- Top = 32 -- Width = 65 -- Caption = 'Configure' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton7Click -- end -- object SpeedButton11: TSpeedButton -- Left = 176 -- Height = 22 -- Top = 55 -- Width = 65 -- Caption = 'About' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton11Click -- end -- object Edit1: TEdit -- Left = 8 -- Height = 26 -- Top = 24 -- Width = 153 -- Color = clBtnFace -- ReadOnly = True -- TabStop = False -- TabOrder = 0 -- end -- object ReadIntBox: TComboBox -- Left = 88 -- Height = 26 -- Top = 52 -- Width = 73 -- ItemHeight = 0 -- ItemIndex = 3 -- Items.Strings = ( -- '100' -- '250' -- '500' -- '1000' -- '2000' -- ) -- OnChange = ReadIntBoxChange -- TabOrder = 1 -- Text = '1000' -- end -- end -- object Timer1: TTimer -- Enabled = False -- OnTimer = Timer1Timer -- left = 240 -- top = 8 -- end -+object pop_scope: Tpop_scope -+ Left = 1081 -+ Height = 419 -+ Top = 223 -+ Width = 277 -+ HorzScrollBar.Visible = False -+ VertScrollBar.Visible = False -+ ActiveControl = Edit1 -+ BorderStyle = bsToolWindow -+ Caption = 'ASCOM Telescope Interface' -+ ClientHeight = 419 -+ ClientWidth = 277 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ OnCloseQuery = kill -+ OnDestroy = FormDestroy -+ Position = poDefault -+ LCLVersion = '0.9.29' -+ object GroupBox3: TGroupBox -+ Left = 8 -+ Height = 65 -+ Top = 344 -+ Width = 257 -+ ClientHeight = 61 -+ ClientWidth = 253 -+ TabOrder = 0 -+ object SpeedButton1: TSpeedButton -+ Left = 8 -+ Height = 22 -+ Top = 11 -+ Width = 65 -+ Caption = 'Connect' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = setresClick -+ end -+ object SpeedButton2: TSpeedButton -+ Left = 184 -+ Height = 22 -+ Top = 11 -+ Width = 65 -+ Caption = 'Hide' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton2Click -+ end -+ object SpeedButton5: TSpeedButton -+ Left = 112 -+ Height = 22 -+ Top = 11 -+ Width = 65 -+ Caption = 'Disconnect' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton5Click -+ end -+ object led: TEdit -+ Left = 80 -+ Height = 20 -+ Top = 12 -+ Width = 25 -+ AutoSize = False -+ Color = clRed -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 0 -+ end -+ end -+ object GroupBox5: TGroupBox -+ Left = 8 -+ Height = 104 -+ Top = 120 -+ Width = 257 -+ Caption = 'Observatory ' -+ ClientHeight = 84 -+ ClientWidth = 253 -+ TabOrder = 1 -+ object Label15: TLabel -+ Left = 4 -+ Height = 19 -+ Top = 20 -+ Width = 54 -+ Caption = 'Latitude : ' -+ ParentColor = False -+ end -+ object Label16: TLabel -+ Left = 124 -+ Height = 19 -+ Top = 21 -+ Width = 57 -+ Caption = 'Longitude :' -+ ParentColor = False -+ end -+ object SpeedButton8: TSpeedButton -+ Left = 136 -+ Height = 22 -+ Top = 51 -+ Width = 105 -+ Caption = 'Set Time' -+ Color = clBtnFace -+ Enabled = False -+ NumGlyphs = 0 -+ OnClick = SpeedButton8Click -+ end -+ object SpeedButton9: TSpeedButton -+ Left = 16 -+ Height = 22 -+ Top = 51 -+ Width = 105 -+ Caption = 'Set Location' -+ Color = clBtnFace -+ Enabled = False -+ NumGlyphs = 0 -+ OnClick = SpeedButton9Click -+ end -+ object lat: TEdit -+ Left = 50 -+ Height = 26 -+ Top = 16 -+ Width = 70 -+ Color = clBtnFace -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 0 -+ Text = '0' -+ end -+ object long: TEdit -+ Left = 180 -+ Height = 26 -+ Top = 18 -+ Width = 70 -+ Color = clBtnFace -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 1 -+ Text = '0' -+ end -+ end -+ object Panel1: TPanel -+ Left = 8 -+ Height = 101 -+ Top = 232 -+ Width = 257 -+ ClientHeight = 101 -+ ClientWidth = 257 -+ TabOrder = 2 -+ object LabelAlpha: TLabel -+ Left = 26 -+ Height = 19 -+ Top = 10 -+ Width = 22 -+ Caption = 'RA ' -+ ParentColor = False -+ end -+ object LabelDelta: TLabel -+ Left = 128 -+ Height = 19 -+ Top = 10 -+ Width = 24 -+ Caption = 'DEC' -+ ParentColor = False -+ end -+ object Label11: TLabel -+ Left = 26 -+ Height = 19 -+ Top = 34 -+ Width = 15 -+ Caption = 'AZ' -+ ParentColor = False -+ end -+ object Label12: TLabel -+ Left = 128 -+ Height = 19 -+ Top = 34 -+ Width = 20 -+ Caption = 'ALT' -+ ParentColor = False -+ end -+ object SpeedButton6: TSpeedButton -+ Left = 92 -+ Height = 22 -+ Top = 63 -+ Width = 73 -+ Caption = 'Abort Slew' -+ Color = clBtnFace -+ Font.Color = clRed -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ Font.Style = [fsBold] -+ NumGlyphs = 0 -+ OnClick = SpeedButton6Click -+ ParentFont = False -+ end -+ object SpeedButton4: TSpeedButton -+ Left = 176 -+ Height = 22 -+ Top = 63 -+ Width = 65 -+ Caption = 'Help...' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton4Click -+ end -+ object pos_x: TEdit -+ Left = 44 -+ Height = 26 -+ Top = 6 -+ Width = 70 -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 0 -+ end -+ object pos_y: TEdit -+ Left = 160 -+ Height = 26 -+ Top = 6 -+ Width = 70 -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 1 -+ end -+ object az_x: TEdit -+ Left = 44 -+ Height = 26 -+ Top = 30 -+ Width = 70 -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 2 -+ end -+ object alt_y: TEdit -+ Left = 160 -+ Height = 26 -+ Top = 30 -+ Width = 70 -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 3 -+ end -+ object ShowAltAz: TCheckBox -+ Left = 8 -+ Height = 22 -+ Top = 32 -+ Width = 23 -+ TabOrder = 4 -+ end -+ object TrackingBtn: TSpeedButton -+ Left = 8 -+ Height = 22 -+ Top = 63 -+ Width = 71 -+ Caption = 'Tracking' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = TrackingBtnClick -+ end -+ object trackingled: TEdit -+ Left = 8 -+ Height = 16 -+ Top = 84 -+ Width = 72 -+ AutoSize = False -+ Color = clRed -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 5 -+ end -+ end -+ object GroupBox1: TGroupBox -+ Left = 8 -+ Height = 105 -+ Top = 0 -+ Width = 257 -+ Caption = 'Driver Selection' -+ ClientHeight = 85 -+ ClientWidth = 253 -+ TabOrder = 3 -+ object SpeedButton3: TSpeedButton -+ Left = 176 -+ Height = 22 -+ Top = 9 -+ Width = 65 -+ Caption = 'Select' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton3Click -+ end -+ object Label1: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 56 -+ Width = 73 -+ Caption = 'Refresh rate :' -+ ParentColor = False -+ end -+ object SpeedButton7: TSpeedButton -+ Left = 176 -+ Height = 22 -+ Top = 32 -+ Width = 65 -+ Caption = 'Configure' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton7Click -+ end -+ object SpeedButton11: TSpeedButton -+ Left = 176 -+ Height = 22 -+ Top = 55 -+ Width = 65 -+ Caption = 'About' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton11Click -+ end -+ object Edit1: TEdit -+ Left = 8 -+ Height = 26 -+ Top = 24 -+ Width = 153 -+ Color = clBtnFace -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 0 -+ end -+ object ReadIntBox: TComboBox -+ Left = 88 -+ Height = 26 -+ Top = 52 -+ Width = 73 -+ ItemHeight = 0 -+ ItemIndex = 3 -+ Items.Strings = ( -+ '100' -+ '250' -+ '500' -+ '1000' -+ '2000' -+ ) -+ OnChange = ReadIntBoxChange -+ TabOrder = 1 -+ Text = '1000' -+ end -+ end -+ object Timer1: TTimer -+ Enabled = False -+ OnTimer = Timer1Timer -+ left = 240 -+ top = 8 -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_ascomclient.pas skychart_3.2_up/skychart/pu_ascomclient.pas ---- skychart_3.2/skychart/pu_ascomclient.pas 2010-09-01 12:44:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_ascomclient.pas 2011-03-09 15:18:23.124275554 +0100 -@@ -1,679 +1,679 @@ --unit pu_ascomclient; -- --{$MODE objfpc}{$H+} -- --{------------- interface for ASCOM telescope driver. ---------------------------- -- --Copyright (C) 2000 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- ---------------------------------------------------------------------------------} -- --interface -- --uses -- {$ifdef mswindows} -- Variants, comobj, Windows, ShlObj, ShellAPI, -- {$endif} -- LCLIntf, u_util, -- Messages, SysUtils, Classes, Graphics, Controls, -- Forms, Dialogs, -- StdCtrls, Buttons, inifiles, ComCtrls, Menus, ExtCtrls; -- --type -- -- { Tpop_scope } -- -- Tpop_scope = class(TForm) -- GroupBox3: TGroupBox; -- trackingled: TEdit; -- SpeedButton1: TSpeedButton; -- TrackingBtn: TSpeedButton; -- SpeedButton2: TSpeedButton; -- SpeedButton5: TSpeedButton; -- led: TEdit; -- GroupBox5: TGroupBox; -- Label15: TLabel; -- Label16: TLabel; -- lat: TEdit; -- long: TEdit; -- Panel1: TPanel; -- LabelAlpha: TLabel; -- LabelDelta: TLabel; -- Label11: TLabel; -- Label12: TLabel; -- pos_x: TEdit; -- pos_y: TEdit; -- az_x: TEdit; -- alt_y: TEdit; -- ShowAltAz: TCheckBox; -- Timer1: TTimer; -- GroupBox1: TGroupBox; -- Edit1: TEdit; -- SpeedButton3: TSpeedButton; -- ReadIntBox: TComboBox; -- Label1: TLabel; -- SpeedButton7: TSpeedButton; -- SpeedButton6: TSpeedButton; -- SpeedButton8: TSpeedButton; -- SpeedButton9: TSpeedButton; -- SpeedButton4: TSpeedButton; -- SpeedButton11: TSpeedButton; -- {Utility and form functions} -- procedure kill(Sender: TObject; var CanClose: Boolean); -- procedure Timer1Timer(Sender: TObject); -- procedure setresClick(Sender: TObject); -- procedure SaveConfig; -- procedure ReadIntBoxChange(Sender: TObject); -- procedure SpeedButton5Click(Sender: TObject); -- procedure SpeedButton2Click(Sender: TObject); -- procedure SpeedButton4Click(Sender: TObject); -- procedure SpeedButton6Click(Sender: TObject); -- procedure SpeedButton3Click(Sender: TObject); -- procedure SpeedButton7Click(Sender: TObject); -- procedure SpeedButton9Click(Sender: TObject); -- procedure SpeedButton8Click(Sender: TObject); -- procedure FormDestroy(Sender: TObject); -- procedure TrackingBtnClick(Sender: TObject); -- procedure UpdTrackingButton; -- procedure SpeedButton11Click(Sender: TObject); -- private -- { Private declarations } -- FConfig: string; -- public -- { Public declarations } -- function ReadConfig(ConfigPath : shortstring):boolean; -- end; -- -- --Procedure ScopeShow; --Procedure ScopeShowModal(var ok : boolean); --Procedure ScopeConnect(var ok : boolean); --Procedure ScopeDisconnect(var ok : boolean); --Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); --Procedure ScopeGetEqSys(var EqSys : double); --Procedure ScopeSetObs(la,lo : double); --Procedure ScopeAlign(source : string; ra,dec : single); --Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); --Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); --Procedure ScopeGoto(ar,de : single; var ok : boolean); --Procedure ScopeAbortSlew; --Procedure ScopeReset; --Function ScopeInitialized : boolean ; --Function ScopeConnected : boolean ; --Procedure ScopeClose; --Procedure ScopeReadConfig(ConfigPath : shortstring); -- --var -- pop_scope: Tpop_scope; -- --implementation -- -- --{$R *.lfm} -- --var CoordLock : boolean = false; -- Initialized : boolean = false; -- Appdir : string; -- T : Variant; -- curdeg_x, curdeg_y :double; // current equatorial position in degrees -- cur_az, cur_alt :double; // current alt-az position in degrees -- Longitude : single; // Observatory longitude (Negative East of Greenwich} -- Latitude : single; // Observatory latitude -- -- --const crlf=chr(10)+chr(13); -- --{------------------------------------------------------------------------------- -- -- Cartes du Ciel Dll compatibility functions -- ----------------------------------------------------------------------------------} --Procedure ShowCoordinates; --begin --{$ifdef mswindows} --with pop_scope do begin -- if ScopeInitialized then begin -- try -- Curdeg_x:=T.RightAscension*15; -- Curdeg_y:=T.Declination; -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- if ShowAltAz.checked then begin -- try -- Cur_az:=T.Azimuth; -- Cur_alt:=T.Altitude; -- except -- ShowAltAz.checked:=false; -- end; -- end; -- pos_x.text := artostr(Curdeg_x/15); -- pos_y.text := detostr(Curdeg_y); -- if ShowAltAz.checked then begin -- az_x.text := detostr(Cur_az); -- alt_y.text := detostr(Cur_alt); -- end else begin -- az_x.text := ''; -- alt_y.text := ''; -- end; -- if ShowAltAz.checked and (Cur_alt<0) then alt_y.Color:=clRed else alt_y.Color:=clWindow; -- end else begin -- pos_x.text := ''; -- pos_y.text := ''; -- az_x.text := ''; -- alt_y.text := ''; -- end; -- end; --{$endif} --end; -- --Procedure ScopeDisconnect(var ok : boolean); --begin --{$ifdef mswindows} --Initialized:=false; --pop_scope.pos_x.text:=''; --pop_scope.pos_y.text:=''; --pop_scope.az_x.text:=''; --pop_scope.alt_y.text:=''; --if trim(pop_scope.edit1.text)='' then exit; --try --if not VarIsEmpty(T) then begin -- T.connected:=false; -- T:=Unassigned; --end; --ok:=true; --pop_scope.led.color:=clRed; --pop_scope.speedbutton1.enabled:=true; --pop_scope.speedbutton3.enabled:=true; --pop_scope.speedbutton7.enabled:=true; --pop_scope.speedbutton8.enabled:=false; --pop_scope.speedbutton9.enabled:=false; --pop_scope.UpdTrackingButton; --except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); --end; --{$endif} --end; -- --Procedure ScopeConnect(var ok : boolean); --var dis_ok : boolean; --begin --{$ifdef mswindows} --pop_scope.led.color:=clRed; --pop_scope.led.refresh; --pop_scope.timer1.enabled:=false; --pop_scope.speedbutton3.enabled:=true; --ok:=false; --if trim(pop_scope.edit1.text)='' then exit; --try --T:=Unassigned; --T := CreateOleObject(pop_scope.edit1.text); --T.connected:=true; --if T.connected then begin -- Initialized:=true; -- ShowCoordinates; -- pop_scope.led.color:=clLime; -- ok:=true; -- pop_scope.timer1.enabled:=true; -- pop_scope.speedbutton1.enabled:=false; -- pop_scope.speedbutton3.enabled:=false; -- pop_scope.speedbutton7.enabled:=false; -- pop_scope.speedbutton8.enabled:=true; -- pop_scope.speedbutton9.enabled:=true; --end else scopedisconnect(dis_ok); --pop_scope.UpdTrackingButton; --except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); --end; --{$endif} --end; -- --Procedure ScopeClose; --begin --pop_scope.release; --end; -- --Function ScopeConnected : boolean ; --begin --{$ifdef mswindows} --result:=false; --if not initialized then exit; --if VarIsEmpty(T) then exit; --try --result:=T.connected; --except -- result:=false; --end; --{$endif} --end; -- --Function ScopeInitialized : boolean ; --begin --result:= ScopeConnected; --end; -- --Procedure ScopeAlign(source : string; ra,dec : single); --begin --{$ifdef mswindows} -- if not ScopeConnected then exit; -- if T.CanSync then begin -- try -- if not T.tracking then begin -- T.tracking:=true; -- pop_scope.UpdTrackingButton; -- end; -- T.SyncToCoordinates(Ra,Dec); -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end --{$endif} --end; -- --Procedure ScopeShowModal(var ok : boolean); --begin --pop_scope.showmodal; --ok:=(pop_scope.modalresult=mrOK); --end; -- --Procedure ScopeShow; --begin --pop_scope.show --end; -- --Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); --begin --{$ifdef mswindows} -- if ScopeConnected then begin -- try -- ar:=Curdeg_x/15; -- de:=Curdeg_y; -- ok:=true; -- except -- on E: EOleException do begin -- MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- ok:=false; -- end; -- end; -- end else ok:=false; --{$endif} --end; -- --Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); --begin --{$ifdef mswindows} -- if ScopeConnected then begin -- try -- az:=cur_az; -- alt:=cur_alt; -- ok:=true; -- except -- on E: EOleException do begin -- MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- ok:=false; -- end; -- end; -- end else ok:=false; --{$endif} --end; -- --Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); --begin --{$ifdef mswindows} -- if (pop_scope=nil)or(pop_scope.pos_x=nil) then begin -- Initialized := false; -- pop_scope:=Tpop_scope.Create(nil); -- end; -- if ScopeConnected then begin -- try -- name:=T.name; -- QueryOK:=true; -- SyncOK:=T.CanSync; -- GotoOK:=T.CanSlew; -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end else begin -- name:=''; -- QueryOK:=false; -- SyncOK:=false; -- GotoOK:=false; -- end; -- refreshrate:=pop_scope.timer1.interval; --{$endif} --end; -- --Procedure ScopeGetEqSys(var EqSys : double); --var i: integer; --begin -- if ScopeConnected then begin -- try -- i:=T.EquatorialSystem; -- except -- i:=0; -- end; -- end else i:=0; -- case i of -- 0 : EqSys:=0; -- 1 : EqSys:=0; -- 2 : EqSys:=2000; -- 3 : EqSys:=2050; -- 4 : EqSys:=1950; -- end; --end; -- --Procedure ScopeReset; --begin --end; -- --Procedure ScopeSetObs(la,lo : double); --begin --latitude:=la; --longitude:=-lo; --pop_scope.lat.text:=detostr(latitude); --pop_scope.long.text:=detostr(longitude); --end; -- --Procedure ScopeGoto(ar,de : single; var ok : boolean); --begin --{$ifdef mswindows} -- if not ScopeConnected then exit; -- try -- if not T.tracking then begin -- T.tracking:=true; -- pop_scope.UpdTrackingButton; -- end; -- if T.CanSlewAsync then T.SlewToCoordinatesAsync(ar,de) -- else T.SlewToCoordinates(ar,de); -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; --{$endif} --end; -- --Procedure ScopeReadConfig(ConfigPath : shortstring); --begin -- pop_scope.ReadConfig(ConfigPath); --end; -- --Procedure ScopeAbortSlew; --begin --{$ifdef mswindows} --if ScopeConnected then begin -- try -- T.AbortSlew; -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end; --{$endif} --end; -- --{------------------------------------------------------------------------------- -- -- Form functions -- ----------------------------------------------------------------------------------} -- --function Tpop_scope.ReadConfig(ConfigPath : shortstring):boolean; --var ini:tinifile; -- nom : string; --begin --result:=DirectoryExists(ConfigPath); --if Result then -- FConfig:=slash(ConfigPath)+'scope.ini' --else -- FConfig:=slash(extractfilepath(paramstr(0)))+'scope.ini'; --ini:=tinifile.create(FConfig); --nom:= ini.readstring('Ascom','name',''); --if trim(nom)='' then nom:='POTH.Telescope'; --edit1.text:=nom; --ShowAltAz.Checked:=ini.ReadBool('Ascom','AltAz',false); --ReadIntBox.text:=ini.readstring('Ascom','read_interval','1000'); --lat.text:=ini.readstring('observatory','latitude','0'); --long.text:=ini.readstring('observatory','longitude','0'); --ini.free; --Timer1.Interval:=strtointdef(ReadIntBox.text,1000); --end; -- -- --procedure Tpop_scope.kill(Sender: TObject; var CanClose: Boolean); --begin --Saveconfig; --if ScopeConnected then begin -- canclose:=false; -- pop_scope.hide; --end; --end; -- --procedure Tpop_scope.Timer1Timer(Sender: TObject); --begin --if not ScopeConnected then exit; --try --if T.connected and (not CoordLock) then begin -- CoordLock := true; -- timer1.enabled:=false; -- ShowCoordinates; -- CoordLock := false; -- timer1.enabled:=true; --end; --except -- timer1.enabled:=false; -- Initialized := false; --end; --end; -- --procedure Tpop_scope.setresClick(Sender: TObject); --var ok : boolean; --begin --ScopeConnect(ok); --end; -- --procedure Tpop_scope.SaveConfig; --var --ini:tinifile; --begin --ini:=tinifile.create(FConfig); --ini.writestring('Ascom','name',edit1.text); --ini.writestring('Ascom','read_interval',ReadIntBox.text); --ini.writeBool('Ascom','AltAz',ShowAltAz.Checked); --ini.writestring('observatory','latitude',lat.text); --ini.writestring('observatory','longitude',long.text); --ini.free; --end; -- --procedure Tpop_scope.ReadIntBoxChange(Sender: TObject); --begin -- Timer1.Interval:=strtointdef(ReadIntBox.text,1000); --end; -- --procedure Tpop_scope.SpeedButton5Click(Sender: TObject); --var ok : boolean; --begin --ScopeDisconnect(ok); --end; -- --procedure Tpop_scope.SpeedButton2Click(Sender: TObject); --begin --pop_scope.Hide; --end; -- --{$ifdef mswindows} --Function ExecuteFile(const FileName, Params, DefaultDir: string; ShowCmd: Integer): THandle; --var -- zFileName, zParams, zDir: array[0..79] of Char; --begin -- Result := ShellExecute(pop_scope.Handle, nil, StrPCopy(zFileName, FileName), -- StrPCopy(zParams, Params), StrPCopy(zDir, DefaultDir), ShowCmd); --end; --{$endif} -- --procedure Tpop_scope.SpeedButton4Click(Sender: TObject); --begin --{$ifdef mswindows} --ExecuteFile('ascomtel.html','',appdir+'\doc\html_doc\en',SW_SHOWNORMAL); --{$endif} --end; -- --procedure Tpop_scope.SpeedButton6Click(Sender: TObject); --begin --ScopeAbortSlew; --end; -- --procedure Tpop_scope.SpeedButton3Click(Sender: TObject); --var -- V: variant; --begin --{$ifdef mswindows} --try -- initialized:=false; -- V := CreateOleObject('DriverHelper.Chooser'); -- V.devicetype:='Telescope'; -- edit1.text:=V.Choose(edit1.text); -- V:=Unassigned; -- SaveConfig; -- UpdTrackingButton; -- except -- {$ifdef win64} -- Showmessage('The ASCOM telescope chooser do not work correctly from a 64 bits application for now.'+crlf+'Use POTH.Telescope and then select your telescope from the POTH menu.'+crlf+'See http://ascom-standards.org for more information.'); -- {$else} -- Showmessage('Please ensure that ASCOM telescope drivers are installed properly.'+crlf+'See http://ascom-standards.org for more information.'); -- {$endif} -- end; --{$endif} --end; -- --procedure Tpop_scope.SpeedButton7Click(Sender: TObject); --begin --{$ifdef mswindows} --try --if (edit1.text>'') and (not Scopeconnected) then begin --if VarIsEmpty(T) then begin -- T := CreateOleObject(edit1.text); -- T.SetupDialog; -- T:=Unassigned; --end else begin -- T.SetupDialog; --end; --UpdTrackingButton; --end; --except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); --end; --{$endif} --end; -- --procedure Tpop_scope.SpeedButton9Click(Sender: TObject); --begin --{$ifdef mswindows} -- if ScopeConnected then begin -- try -- T.SiteLongitude:=longitude; -- T.SiteLatitude:=latitude; -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end; --{$endif} --end; -- --procedure Tpop_scope.SpeedButton8Click(Sender: TObject); --var utc: Tsystemtime; --begin --{$ifdef mswindows} -- if ScopeConnected then begin -- try -- getsystemtime(utc); -- // does not raise and error but may not be UTC -- T.UTCDate:=systemtimetodatetime(utc); -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end; --{$endif} --end; -- --procedure Tpop_scope.FormDestroy(Sender: TObject); --begin --SaveConfig; --end; -- --procedure Tpop_scope.UpdTrackingButton; --begin --{$ifdef mswindows} --try -- if not ScopeConnected then exit; -- if (not T.CanSetTracking)or(not T.connected) then begin -- TrackingLed.Enabled:=false; -- end else begin -- TrackingBtn.Enabled:=true; -- if T.Tracking then Trackingled.color:=clLime -- else Trackingled.color:=clRed; -- end; --except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); --end; --{$endif} --end; -- --procedure Tpop_scope.TrackingBtnClick(Sender: TObject); --begin --{$ifdef mswindows} -- if ScopeConnected then begin -- try -- T.Tracking:=not T.Tracking; -- UpdTrackingButton; -- except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -- end; -- end; --{$endif} --end; -- --procedure Tpop_scope.SpeedButton11Click(Sender: TObject); --var buf : string; --begin --{$ifdef mswindows} --try -- if (edit1.text>'') then begin -- try -- if VarIsEmpty(T) then begin -- T := CreateOleObject(edit1.text); -- buf:=T.Description; -- buf:=buf+crlf+T.DriverInfo; -- T:=Unassigned; -- showmessage(buf); -- end else begin -- buf:=T.Description; -- buf:=buf+crlf+T.DriverInfo; -- showmessage(buf); -- end; -- UpdTrackingButton; -- except -- end; -- end; --except -- on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); --end; --{$endif} --end; -- -- -+unit pu_ascomclient; -+ -+{$MODE objfpc}{$H+} -+ -+{------------- interface for ASCOM telescope driver. ---------------------------- -+ -+Copyright (C) 2000 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+ -+-------------------------------------------------------------------------------} -+ -+interface -+ -+uses -+ {$ifdef mswindows} -+ Variants, comobj, Windows, ShlObj, ShellAPI, -+ {$endif} -+ LCLIntf, u_util, -+ Messages, SysUtils, Classes, Graphics, Controls, -+ Forms, Dialogs, -+ StdCtrls, Buttons, inifiles, ComCtrls, Menus, ExtCtrls; -+ -+type -+ -+ { Tpop_scope } -+ -+ Tpop_scope = class(TForm) -+ GroupBox3: TGroupBox; -+ trackingled: TEdit; -+ SpeedButton1: TSpeedButton; -+ TrackingBtn: TSpeedButton; -+ SpeedButton2: TSpeedButton; -+ SpeedButton5: TSpeedButton; -+ led: TEdit; -+ GroupBox5: TGroupBox; -+ Label15: TLabel; -+ Label16: TLabel; -+ lat: TEdit; -+ long: TEdit; -+ Panel1: TPanel; -+ LabelAlpha: TLabel; -+ LabelDelta: TLabel; -+ Label11: TLabel; -+ Label12: TLabel; -+ pos_x: TEdit; -+ pos_y: TEdit; -+ az_x: TEdit; -+ alt_y: TEdit; -+ ShowAltAz: TCheckBox; -+ Timer1: TTimer; -+ GroupBox1: TGroupBox; -+ Edit1: TEdit; -+ SpeedButton3: TSpeedButton; -+ ReadIntBox: TComboBox; -+ Label1: TLabel; -+ SpeedButton7: TSpeedButton; -+ SpeedButton6: TSpeedButton; -+ SpeedButton8: TSpeedButton; -+ SpeedButton9: TSpeedButton; -+ SpeedButton4: TSpeedButton; -+ SpeedButton11: TSpeedButton; -+ {Utility and form functions} -+ procedure kill(Sender: TObject; var CanClose: Boolean); -+ procedure Timer1Timer(Sender: TObject); -+ procedure setresClick(Sender: TObject); -+ procedure SaveConfig; -+ procedure ReadIntBoxChange(Sender: TObject); -+ procedure SpeedButton5Click(Sender: TObject); -+ procedure SpeedButton2Click(Sender: TObject); -+ procedure SpeedButton4Click(Sender: TObject); -+ procedure SpeedButton6Click(Sender: TObject); -+ procedure SpeedButton3Click(Sender: TObject); -+ procedure SpeedButton7Click(Sender: TObject); -+ procedure SpeedButton9Click(Sender: TObject); -+ procedure SpeedButton8Click(Sender: TObject); -+ procedure FormDestroy(Sender: TObject); -+ procedure TrackingBtnClick(Sender: TObject); -+ procedure UpdTrackingButton; -+ procedure SpeedButton11Click(Sender: TObject); -+ private -+ { Private declarations } -+ FConfig: string; -+ public -+ { Public declarations } -+ function ReadConfig(ConfigPath : shortstring):boolean; -+ end; -+ -+ -+Procedure ScopeShow; -+Procedure ScopeShowModal(var ok : boolean); -+Procedure ScopeConnect(var ok : boolean); -+Procedure ScopeDisconnect(var ok : boolean); -+Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); -+Procedure ScopeGetEqSys(var EqSys : double); -+Procedure ScopeSetObs(la,lo : double); -+Procedure ScopeAlign(source : string; ra,dec : single); -+Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); -+Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); -+Procedure ScopeGoto(ar,de : single; var ok : boolean); -+Procedure ScopeAbortSlew; -+Procedure ScopeReset; -+Function ScopeInitialized : boolean ; -+Function ScopeConnected : boolean ; -+Procedure ScopeClose; -+Procedure ScopeReadConfig(ConfigPath : shortstring); -+ -+var -+ pop_scope: Tpop_scope; -+ -+implementation -+ -+ -+{$R *.lfm} -+ -+var CoordLock : boolean = false; -+ Initialized : boolean = false; -+ Appdir : string; -+ T : Variant; -+ curdeg_x, curdeg_y :double; // current equatorial position in degrees -+ cur_az, cur_alt :double; // current alt-az position in degrees -+ Longitude : single; // Observatory longitude (Negative East of Greenwich} -+ Latitude : single; // Observatory latitude -+ -+ -+const crlf=chr(10)+chr(13); -+ -+{------------------------------------------------------------------------------- -+ -+ Cartes du Ciel Dll compatibility functions -+ -+--------------------------------------------------------------------------------} -+Procedure ShowCoordinates; -+begin -+{$ifdef mswindows} -+with pop_scope do begin -+ if ScopeInitialized then begin -+ try -+ Curdeg_x:=T.RightAscension*15; -+ Curdeg_y:=T.Declination; -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ if ShowAltAz.checked then begin -+ try -+ Cur_az:=T.Azimuth; -+ Cur_alt:=T.Altitude; -+ except -+ ShowAltAz.checked:=false; -+ end; -+ end; -+ pos_x.text := artostr(Curdeg_x/15); -+ pos_y.text := detostr(Curdeg_y); -+ if ShowAltAz.checked then begin -+ az_x.text := detostr(Cur_az); -+ alt_y.text := detostr(Cur_alt); -+ end else begin -+ az_x.text := ''; -+ alt_y.text := ''; -+ end; -+ if ShowAltAz.checked and (Cur_alt<0) then alt_y.Color:=clRed else alt_y.Color:=clWindow; -+ end else begin -+ pos_x.text := ''; -+ pos_y.text := ''; -+ az_x.text := ''; -+ alt_y.text := ''; -+ end; -+ end; -+{$endif} -+end; -+ -+Procedure ScopeDisconnect(var ok : boolean); -+begin -+{$ifdef mswindows} -+Initialized:=false; -+pop_scope.pos_x.text:=''; -+pop_scope.pos_y.text:=''; -+pop_scope.az_x.text:=''; -+pop_scope.alt_y.text:=''; -+if trim(pop_scope.edit1.text)='' then exit; -+try -+if not VarIsEmpty(T) then begin -+ T.connected:=false; -+ T:=Unassigned; -+end; -+ok:=true; -+pop_scope.led.color:=clRed; -+pop_scope.speedbutton1.enabled:=true; -+pop_scope.speedbutton3.enabled:=true; -+pop_scope.speedbutton7.enabled:=true; -+pop_scope.speedbutton8.enabled:=false; -+pop_scope.speedbutton9.enabled:=false; -+pop_scope.UpdTrackingButton; -+except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+end; -+{$endif} -+end; -+ -+Procedure ScopeConnect(var ok : boolean); -+var dis_ok : boolean; -+begin -+{$ifdef mswindows} -+pop_scope.led.color:=clRed; -+pop_scope.led.refresh; -+pop_scope.timer1.enabled:=false; -+pop_scope.speedbutton3.enabled:=true; -+ok:=false; -+if trim(pop_scope.edit1.text)='' then exit; -+try -+T:=Unassigned; -+T := CreateOleObject(pop_scope.edit1.text); -+T.connected:=true; -+if T.connected then begin -+ Initialized:=true; -+ ShowCoordinates; -+ pop_scope.led.color:=clLime; -+ ok:=true; -+ pop_scope.timer1.enabled:=true; -+ pop_scope.speedbutton1.enabled:=false; -+ pop_scope.speedbutton3.enabled:=false; -+ pop_scope.speedbutton7.enabled:=false; -+ pop_scope.speedbutton8.enabled:=true; -+ pop_scope.speedbutton9.enabled:=true; -+end else scopedisconnect(dis_ok); -+pop_scope.UpdTrackingButton; -+except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+end; -+{$endif} -+end; -+ -+Procedure ScopeClose; -+begin -+pop_scope.release; -+end; -+ -+Function ScopeConnected : boolean ; -+begin -+{$ifdef mswindows} -+result:=false; -+if not initialized then exit; -+if VarIsEmpty(T) then exit; -+try -+result:=T.connected; -+except -+ result:=false; -+end; -+{$endif} -+end; -+ -+Function ScopeInitialized : boolean ; -+begin -+result:= ScopeConnected; -+end; -+ -+Procedure ScopeAlign(source : string; ra,dec : single); -+begin -+{$ifdef mswindows} -+ if not ScopeConnected then exit; -+ if T.CanSync then begin -+ try -+ if not T.tracking then begin -+ T.tracking:=true; -+ pop_scope.UpdTrackingButton; -+ end; -+ T.SyncToCoordinates(Ra,Dec); -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end -+{$endif} -+end; -+ -+Procedure ScopeShowModal(var ok : boolean); -+begin -+pop_scope.showmodal; -+ok:=(pop_scope.modalresult=mrOK); -+end; -+ -+Procedure ScopeShow; -+begin -+pop_scope.show -+end; -+ -+Procedure ScopeGetRaDec(var ar,de : double; var ok : boolean); -+begin -+{$ifdef mswindows} -+ if ScopeConnected then begin -+ try -+ ar:=Curdeg_x/15; -+ de:=Curdeg_y; -+ ok:=true; -+ except -+ on E: EOleException do begin -+ MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ ok:=false; -+ end; -+ end; -+ end else ok:=false; -+{$endif} -+end; -+ -+Procedure ScopeGetAltAz(var alt,az : double; var ok : boolean); -+begin -+{$ifdef mswindows} -+ if ScopeConnected then begin -+ try -+ az:=cur_az; -+ alt:=cur_alt; -+ ok:=true; -+ except -+ on E: EOleException do begin -+ MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ ok:=false; -+ end; -+ end; -+ end else ok:=false; -+{$endif} -+end; -+ -+Procedure ScopeGetInfo(var Name : shortstring; var QueryOK,SyncOK,GotoOK : boolean; var refreshrate : integer); -+begin -+{$ifdef mswindows} -+ if (pop_scope=nil)or(pop_scope.pos_x=nil) then begin -+ Initialized := false; -+ pop_scope:=Tpop_scope.Create(nil); -+ end; -+ if ScopeConnected then begin -+ try -+ name:=T.name; -+ QueryOK:=true; -+ SyncOK:=T.CanSync; -+ GotoOK:=T.CanSlew; -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end else begin -+ name:=''; -+ QueryOK:=false; -+ SyncOK:=false; -+ GotoOK:=false; -+ end; -+ refreshrate:=pop_scope.timer1.interval; -+{$endif} -+end; -+ -+Procedure ScopeGetEqSys(var EqSys : double); -+var i: integer; -+begin -+ if ScopeConnected then begin -+ try -+ i:=T.EquatorialSystem; -+ except -+ i:=0; -+ end; -+ end else i:=0; -+ case i of -+ 0 : EqSys:=0; -+ 1 : EqSys:=0; -+ 2 : EqSys:=2000; -+ 3 : EqSys:=2050; -+ 4 : EqSys:=1950; -+ end; -+end; -+ -+Procedure ScopeReset; -+begin -+end; -+ -+Procedure ScopeSetObs(la,lo : double); -+begin -+latitude:=la; -+longitude:=-lo; -+pop_scope.lat.text:=detostr(latitude); -+pop_scope.long.text:=detostr(longitude); -+end; -+ -+Procedure ScopeGoto(ar,de : single; var ok : boolean); -+begin -+{$ifdef mswindows} -+ if not ScopeConnected then exit; -+ try -+ if not T.tracking then begin -+ T.tracking:=true; -+ pop_scope.UpdTrackingButton; -+ end; -+ if T.CanSlewAsync then T.SlewToCoordinatesAsync(ar,de) -+ else T.SlewToCoordinates(ar,de); -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+{$endif} -+end; -+ -+Procedure ScopeReadConfig(ConfigPath : shortstring); -+begin -+ pop_scope.ReadConfig(ConfigPath); -+end; -+ -+Procedure ScopeAbortSlew; -+begin -+{$ifdef mswindows} -+if ScopeConnected then begin -+ try -+ T.AbortSlew; -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end; -+{$endif} -+end; -+ -+{------------------------------------------------------------------------------- -+ -+ Form functions -+ -+--------------------------------------------------------------------------------} -+ -+function Tpop_scope.ReadConfig(ConfigPath : shortstring):boolean; -+var ini:tinifile; -+ nom : string; -+begin -+result:=DirectoryExists(ConfigPath); -+if Result then -+ FConfig:=slash(ConfigPath)+'scope.ini' -+else -+ FConfig:=slash(extractfilepath(paramstr(0)))+'scope.ini'; -+ini:=tinifile.create(FConfig); -+nom:= ini.readstring('Ascom','name',''); -+if trim(nom)='' then nom:='POTH.Telescope'; -+edit1.text:=nom; -+ShowAltAz.Checked:=ini.ReadBool('Ascom','AltAz',false); -+ReadIntBox.text:=ini.readstring('Ascom','read_interval','1000'); -+lat.text:=ini.readstring('observatory','latitude','0'); -+long.text:=ini.readstring('observatory','longitude','0'); -+ini.free; -+Timer1.Interval:=strtointdef(ReadIntBox.text,1000); -+end; -+ -+ -+procedure Tpop_scope.kill(Sender: TObject; var CanClose: Boolean); -+begin -+Saveconfig; -+if ScopeConnected then begin -+ canclose:=false; -+ pop_scope.hide; -+end; -+end; -+ -+procedure Tpop_scope.Timer1Timer(Sender: TObject); -+begin -+if not ScopeConnected then exit; -+try -+if T.connected and (not CoordLock) then begin -+ CoordLock := true; -+ timer1.enabled:=false; -+ ShowCoordinates; -+ CoordLock := false; -+ timer1.enabled:=true; -+end; -+except -+ timer1.enabled:=false; -+ Initialized := false; -+end; -+end; -+ -+procedure Tpop_scope.setresClick(Sender: TObject); -+var ok : boolean; -+begin -+ScopeConnect(ok); -+end; -+ -+procedure Tpop_scope.SaveConfig; -+var -+ini:tinifile; -+begin -+ini:=tinifile.create(FConfig); -+ini.writestring('Ascom','name',edit1.text); -+ini.writestring('Ascom','read_interval',ReadIntBox.text); -+ini.writeBool('Ascom','AltAz',ShowAltAz.Checked); -+ini.writestring('observatory','latitude',lat.text); -+ini.writestring('observatory','longitude',long.text); -+ini.free; -+end; -+ -+procedure Tpop_scope.ReadIntBoxChange(Sender: TObject); -+begin -+ Timer1.Interval:=strtointdef(ReadIntBox.text,1000); -+end; -+ -+procedure Tpop_scope.SpeedButton5Click(Sender: TObject); -+var ok : boolean; -+begin -+ScopeDisconnect(ok); -+end; -+ -+procedure Tpop_scope.SpeedButton2Click(Sender: TObject); -+begin -+pop_scope.Hide; -+end; -+ -+{$ifdef mswindows} -+Function ExecuteFile(const FileName, Params, DefaultDir: string; ShowCmd: Integer): THandle; -+var -+ zFileName, zParams, zDir: array[0..79] of Char; -+begin -+ Result := ShellExecute(pop_scope.Handle, nil, StrPCopy(zFileName, FileName), -+ StrPCopy(zParams, Params), StrPCopy(zDir, DefaultDir), ShowCmd); -+end; -+{$endif} -+ -+procedure Tpop_scope.SpeedButton4Click(Sender: TObject); -+begin -+{$ifdef mswindows} -+ExecuteFile('ascomtel.html','',appdir+'\doc\html_doc\en',SW_SHOWNORMAL); -+{$endif} -+end; -+ -+procedure Tpop_scope.SpeedButton6Click(Sender: TObject); -+begin -+ScopeAbortSlew; -+end; -+ -+procedure Tpop_scope.SpeedButton3Click(Sender: TObject); -+var -+ V: variant; -+begin -+{$ifdef mswindows} -+try -+ initialized:=false; -+ V := CreateOleObject('DriverHelper.Chooser'); -+ V.devicetype:='Telescope'; -+ edit1.text:=V.Choose(edit1.text); -+ V:=Unassigned; -+ SaveConfig; -+ UpdTrackingButton; -+ except -+ {$ifdef win64} -+ Showmessage('The ASCOM telescope chooser do not work correctly from a 64 bits application for now.'+crlf+'Use POTH.Telescope and then select your telescope from the POTH menu.'+crlf+'See http://ascom-standards.org for more information.'); -+ {$else} -+ Showmessage('Please ensure that ASCOM telescope drivers are installed properly.'+crlf+'See http://ascom-standards.org for more information.'); -+ {$endif} -+ end; -+{$endif} -+end; -+ -+procedure Tpop_scope.SpeedButton7Click(Sender: TObject); -+begin -+{$ifdef mswindows} -+try -+if (edit1.text>'') and (not Scopeconnected) then begin -+if VarIsEmpty(T) then begin -+ T := CreateOleObject(edit1.text); -+ T.SetupDialog; -+ T:=Unassigned; -+end else begin -+ T.SetupDialog; -+end; -+UpdTrackingButton; -+end; -+except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+end; -+{$endif} -+end; -+ -+procedure Tpop_scope.SpeedButton9Click(Sender: TObject); -+begin -+{$ifdef mswindows} -+ if ScopeConnected then begin -+ try -+ T.SiteLongitude:=longitude; -+ T.SiteLatitude:=latitude; -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end; -+{$endif} -+end; -+ -+procedure Tpop_scope.SpeedButton8Click(Sender: TObject); -+var utc: Tsystemtime; -+begin -+{$ifdef mswindows} -+ if ScopeConnected then begin -+ try -+ getsystemtime(utc); -+ // does not raise and error but may not be UTC -+ T.UTCDate:=systemtimetodatetime(utc); -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end; -+{$endif} -+end; -+ -+procedure Tpop_scope.FormDestroy(Sender: TObject); -+begin -+SaveConfig; -+end; -+ -+procedure Tpop_scope.UpdTrackingButton; -+begin -+{$ifdef mswindows} -+try -+ if not ScopeConnected then exit; -+ if (not T.CanSetTracking)or(not T.connected) then begin -+ TrackingLed.Enabled:=false; -+ end else begin -+ TrackingBtn.Enabled:=true; -+ if T.Tracking then Trackingled.color:=clLime -+ else Trackingled.color:=clRed; -+ end; -+except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+end; -+{$endif} -+end; -+ -+procedure Tpop_scope.TrackingBtnClick(Sender: TObject); -+begin -+{$ifdef mswindows} -+ if ScopeConnected then begin -+ try -+ T.Tracking:=not T.Tracking; -+ UpdTrackingButton; -+ except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+ end; -+ end; -+{$endif} -+end; -+ -+procedure Tpop_scope.SpeedButton11Click(Sender: TObject); -+var buf : string; -+begin -+{$ifdef mswindows} -+try -+ if (edit1.text>'') then begin -+ try -+ if VarIsEmpty(T) then begin -+ T := CreateOleObject(edit1.text); -+ buf:=T.Description; -+ buf:=buf+crlf+T.DriverInfo; -+ T:=Unassigned; -+ showmessage(buf); -+ end else begin -+ buf:=T.Description; -+ buf:=buf+crlf+T.DriverInfo; -+ showmessage(buf); -+ end; -+ UpdTrackingButton; -+ except -+ end; -+ end; -+except -+ on E: EOleException do MessageDlg('Error: ' + E.Message, mtWarning, [mbOK], 0); -+end; -+{$endif} -+end; -+ -+ - end. -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_catgenadv.lfm skychart_3.2_up/skychart/pu_catgenadv.lfm ---- skychart_3.2/skychart/pu_catgenadv.lfm 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_catgenadv.lfm 2011-03-09 15:18:23.127275188 +0100 -@@ -1,118 +1,118 @@ --object f_catgenadv: Tf_catgenadv -- Left = 274 -- Height = 263 -- Top = 176 -- Width = 224 -- ActiveControl = Edit1 -- BorderStyle = bsToolWindow -- Caption = 'Compute Field' -- ClientHeight = 263 -- ClientWidth = 224 -- Font.Height = -11 -- OnCreate = FormCreate -- OnShow = FormShow -- Position = poMainFormCenter -- LCLVersion = '0.9.29' -- object Label1: TLabel -- Left = 72 -- Height = 23 -- Top = 90 -- Width = 7 -- Caption = 'x' -- Font.Height = -13 -- Font.Name = 'MS Sans Serif' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label2: TLabel -- Left = 72 -- Height = 23 -- Top = 126 -- Width = 9 -- Caption = '+' -- Font.Height = -13 -- Font.Name = 'MS Sans Serif' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label3: TLabel -- Left = 72 -- Height = 28 -- Top = 160 -- Width = 10 -- Caption = '=' -- Font.Height = -16 -- Font.Name = 'MS Sans Serif' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label4: TLabel -- Left = 8 -- Height = 56 -- Top = 8 -- Width = 208 -- AutoSize = False -- Caption = 'Indicate here how to compute the require value from the data stored in the catalog text file.' -- ParentColor = False -- WordWrap = True -- end -- object Button1: TButton -- Left = 16 -- Height = 25 -- Top = 216 -- Width = 57 -- BorderSpacing.InnerBorder = 4 -- Caption = 'OK' -- ModalResult = 1 -- TabOrder = 0 -- end -- object Button2: TButton -- Left = 80 -- Height = 25 -- Top = 216 -- Width = 57 -- BorderSpacing.InnerBorder = 4 -- Caption = 'Cancel' -- ModalResult = 2 -- TabOrder = 1 -- end -- object Edit1: TEdit -- Left = 24 -- Height = 21 -- Top = 72 -- Width = 110 -- OnChange = Edit1Change -- OnExit = Edit1Change -- TabOrder = 2 -- end -- object Edit2: TEdit -- Left = 24 -- Height = 21 -- Top = 106 -- Width = 110 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 3 -- end -- object Edit3: TEdit -- Left = 24 -- Height = 21 -- Top = 140 -- Width = 110 -- OnChange = Edit3Change -- OnExit = Edit3Change -- TabOrder = 4 -- end -- object Edit4: TEdit -- Left = 24 -- Height = 21 -- Top = 176 -- Width = 110 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 5 -- end -+object f_catgenadv: Tf_catgenadv -+ Left = 274 -+ Height = 263 -+ Top = 176 -+ Width = 224 -+ ActiveControl = Edit1 -+ BorderStyle = bsToolWindow -+ Caption = 'Compute Field' -+ ClientHeight = 263 -+ ClientWidth = 224 -+ Font.Height = -11 -+ OnCreate = FormCreate -+ OnShow = FormShow -+ Position = poMainFormCenter -+ LCLVersion = '0.9.29' -+ object Label1: TLabel -+ Left = 72 -+ Height = 23 -+ Top = 90 -+ Width = 7 -+ Caption = 'x' -+ Font.Height = -13 -+ Font.Name = 'MS Sans Serif' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label2: TLabel -+ Left = 72 -+ Height = 23 -+ Top = 126 -+ Width = 9 -+ Caption = '+' -+ Font.Height = -13 -+ Font.Name = 'MS Sans Serif' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label3: TLabel -+ Left = 72 -+ Height = 28 -+ Top = 160 -+ Width = 10 -+ Caption = '=' -+ Font.Height = -16 -+ Font.Name = 'MS Sans Serif' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label4: TLabel -+ Left = 8 -+ Height = 56 -+ Top = 8 -+ Width = 208 -+ AutoSize = False -+ Caption = 'Indicate here how to compute the require value from the data stored in the catalog text file.' -+ ParentColor = False -+ WordWrap = True -+ end -+ object Button1: TButton -+ Left = 16 -+ Height = 25 -+ Top = 216 -+ Width = 57 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'OK' -+ ModalResult = 1 -+ TabOrder = 0 -+ end -+ object Button2: TButton -+ Left = 80 -+ Height = 25 -+ Top = 216 -+ Width = 57 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'Cancel' -+ ModalResult = 2 -+ TabOrder = 1 -+ end -+ object Edit1: TEdit -+ Left = 24 -+ Height = 21 -+ Top = 72 -+ Width = 110 -+ OnChange = Edit1Change -+ OnExit = Edit1Change -+ TabOrder = 2 -+ end -+ object Edit2: TEdit -+ Left = 24 -+ Height = 21 -+ Top = 106 -+ Width = 110 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 3 -+ end -+ object Edit3: TEdit -+ Left = 24 -+ Height = 21 -+ Top = 140 -+ Width = 110 -+ OnChange = Edit3Change -+ OnExit = Edit3Change -+ TabOrder = 4 -+ end -+ object Edit4: TEdit -+ Left = 24 -+ Height = 21 -+ Top = 176 -+ Width = 110 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 5 -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_catgenadv.lrs skychart_3.2_up/skychart/pu_catgenadv.lrs ---- skychart_3.2/skychart/pu_catgenadv.lrs 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_catgenadv.lrs 2011-03-09 15:18:57.116095932 +0100 -@@ -1,5 +1,3 @@ --{ This is an automatically generated lazarus resource file } -- - LazarusResources.Add('Tf_catgenadv','FORMDATA',[ - 'TPF0'#12'Tf_catgenadv'#11'f_catgenadv'#4'Left'#3#18#1#6'Height'#3#7#1#3'Top' - +#3#176#0#5'Width'#3#224#0#13'ActiveControl'#7#5'Edit1'#11'BorderStyle'#7#12 -diff -ur skychart_3.2/skychart/pu_catgen.lfm skychart_3.2_up/skychart/pu_catgen.lfm ---- skychart_3.2/skychart/pu_catgen.lfm 2010-09-30 13:10:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_catgen.lfm 2011-03-09 15:18:57.105097283 +0100 -@@ -1,9 +1,9 @@ - object f_catgen: Tf_catgen -- Left = 381 -+ Left = 388 - Height = 479 - Top = 94 - Width = 503 -- ActiveControl = CheckListBox1 -+ ActiveControl = PageControl1 - BorderStyle = bsToolWindow - Caption = 'Prepare a catalog CatGen 3.0' - ClientHeight = 479 -@@ -13,7 +13,7 @@ - OnDestroy = FormDestroy - OnShow = FormShow - Position = poDefaultPosOnly -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object Image1: TImage - Left = 0 - Height = 438 -@@ -2903,14 +2903,13 @@ - Width = 389 - ActivePage = TabSheet3 - Align = alClient -- ShowTabs = False - TabIndex = 2 - TabOrder = 0 - OnPageChanged = PageControl1PageChanged - object TabSheet1: TTabSheet - Caption = '1' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - object Label6: TLabel - Left = 20 - Height = 14 -@@ -3097,8 +3096,8 @@ - end - object TabSheet2: TTabSheet - Caption = '2' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 4 - object Label2: TLabel - Left = 16 -@@ -3452,14 +3451,14 @@ - end - object TabSheet3: TTabSheet - Caption = '3' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 1 - object Label4: TLabel - Left = 134 - Height = 14 - Top = 252 -- Width = 48 -+ Width = 51 - Caption = 'First Char' - ParentColor = False - end -@@ -3467,7 +3466,7 @@ - Left = 270 - Height = 14 - Top = 252 -- Width = 34 -+ Width = 39 - Caption = 'Length' - ParentColor = False - end -@@ -3475,7 +3474,7 @@ - Left = 24 - Height = 14 - Top = 16 -- Width = 263 -+ Width = 303 - Caption = 'Select the fields to use and their position in the text file' - ParentColor = False - end -@@ -3483,7 +3482,7 @@ - Left = 18 - Height = 14 - Top = 252 -- Width = 27 -+ Width = 31 - Caption = 'Label' - ParentColor = False - end -@@ -3534,9 +3533,9 @@ - end - object CheckBox2: TCheckBox - Left = 18 -- Height = 21 -+ Height = 22 - Top = 280 -- Width = 191 -+ Width = 216 - Caption = 'Use this field as an Alternate Name' - OnClick = CheckBox2Click - TabOrder = 4 -@@ -3560,7 +3559,6 @@ - Font.Height = -11 - Font.Name = 'courier' - Font.Pitch = fpFixed -- HideSelection = False - OnMouseUp = Memo1MouseUp - ParentFont = False - ScrollBars = ssHorizontal -@@ -3570,8 +3568,8 @@ - end - object TabSheet4: TTabSheet - Caption = '4' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 2 - object Label1: TLabel - Left = 24 -@@ -3626,7 +3624,6 @@ - ShowHidden = False - ButtonWidth = 20 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - end - object CheckBox6: TCheckBox -@@ -3687,8 +3684,8 @@ - end - object TabSheet5: TTabSheet - Caption = '5' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 4 - object Label9: TLabel - Left = 24 -@@ -3729,8 +3726,8 @@ - end - object TabSheet6: TTabSheet - Caption = '6' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 5 - object Label14: TLabel - Left = 22 -@@ -3771,8 +3768,8 @@ - end - object TabSheet7: TTabSheet - Caption = '7' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 6 - object Label17: TLabel - Left = 30 -@@ -3812,8 +3809,8 @@ - end - object TabSheet8: TTabSheet - Caption = '8' -- ClientHeight = 434 -- ClientWidth = 385 -+ ClientHeight = 403 -+ ClientWidth = 383 - ImageIndex = 7 - object Label20: TLabel - Left = 70 -diff -ur skychart_3.2/skychart/pu_catgen.lrs skychart_3.2_up/skychart/pu_catgen.lrs ---- skychart_3.2/skychart/pu_catgen.lrs 2010-09-30 13:10:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_catgen.lrs 2011-03-09 15:18:57.141092862 +0100 -@@ -1,17 +1,17 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_catgen','FORMDATA',[ -- 'TPF0'#9'Tf_catgen'#8'f_catgen'#4'Left'#3'}'#1#6'Height'#3#223#1#3'Top'#2'^'#5 -- +'Width'#3#247#1#13'ActiveControl'#7#13'CheckListBox1'#11'BorderStyle'#7#12'b' -- +'sToolWindow'#7'Caption'#6#28'Prepare a catalog CatGen 3.0'#12'ClientHeight' -+ 'TPF0'#9'Tf_catgen'#8'f_catgen'#4'Left'#3#132#1#6'Height'#3#223#1#3'Top'#2'^' -+ +#5'Width'#3#247#1#13'ActiveControl'#7#12'PageControl1'#11'BorderStyle'#7#12 -+ +'bsToolWindow'#7'Caption'#6#28'Prepare a catalog CatGen 3.0'#12'ClientHeight' - +#3#223#1#11'ClientWidth'#3#247#1#11'Font.Height'#2#245#8'OnCreate'#7#10'Form' - +'Create'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#8'Position'#7 -- +#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.29'#0#6'TImage'#6'Image1'#4'Lef' -- +'t'#2#0#6'Height'#3#182#1#3'Top'#2#0#5'Width'#2'r'#5'Align'#7#6'alLeft'#12'P' -- +'icture.Data'#10#240'f'#1#0#7'TPixmap'#228'f'#1#0'/* XPM */'#10'static char ' -- +'*cielcat2[] = {'#10'/* width height num_colors chars_per_pixel */'#10'" 1' -- +'13 381 256 2",'#10'/* colors */'#10'"`` c #000000",'#10'"' -- +'`. c #000008",'#10'"`# c #080808",'#10'"`a c #080810",'#10'"`b c #080818",' -+ +#16'poDefaultPosOnly'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TImage'#6'Image1'#4'L' -+ +'eft'#2#0#6'Height'#3#182#1#3'Top'#2#0#5'Width'#2'r'#5'Align'#7#6'alLeft'#12 -+ +'Picture.Data'#10#240'f'#1#0#7'TPixmap'#228'f'#1#0'/* XPM */'#10'static char' -+ +' *cielcat2[] = {'#10'/* width height num_colors chars_per_pixel */'#10'" ' -+ +'113 381 256 2",'#10'/* colors */'#10'"`` c #000000",'#10 -+ +'"`. c #000008",'#10'"`# c #080808",'#10'"`a c #080810",'#10'"`b c #080818",' - +#10'"`c c #080821",'#10'"`d c #080829",'#10'"`e c #080831",'#10'"`f c #08083' - +'9",'#10'"`g c #100808",'#10'"`h c #101008",'#10'"`i c #101010",'#10'"`j c #' - +'101018",'#10'"`k c #101021",'#10'"`l c #101029",'#10'"`m c #101031",'#10'"`' -@@ -1270,368 +1270,368 @@ - +'``````````````````````````````````````````````````````````````"'#10'};'#10#7 - +'Stretch'#9#0#0#12'TPageControl'#12'PageControl1'#4'Left'#2'r'#6'Height'#3 - +#182#1#3'Top'#2#0#5'Width'#3#133#1#10'ActivePage'#7#9'TabSheet3'#5'Align'#7#8 -- +'alClient'#8'ShowTabs'#8#8'TabIndex'#2#2#8'TabOrder'#2#0#13'OnPageChanged'#7 -- +#23'PageControl1PageChanged'#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#1'1'#12 -- +'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#0#6'TLabel'#6'Label6'#4'Left' -- +#2#20#6'Height'#2#14#3'Top'#2#6#5'Width'#3#192#0#7'Caption'#6')Select the ty' -- +'pe of object in your catalog'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' -- +#6'Label8'#4'Left'#2#14#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2'V'#7'Captio' -- +'n'#6#19'Input Catalog files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label10'#4'L' -- +'eft'#2#14#6'Height'#2#14#3'Top'#3#164#0#5'Width'#2'^'#7'Caption'#6#18'Catal' -- +'og short name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#2#14#6'He' -- +'ight'#2#14#3'Top'#3#192#0#5'Width'#2'Y'#7'Caption'#6#17'Catalog long name' -- +#11'ParentColor'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#4'Left'#2'f'#6'Heig' -- ,'ht'#2#25#3'Top'#3#248#0#5'Width'#2#25#5'Color'#7#9'clBtnFace'#10'Glyph.Data' -- +#10#18#6#0#0#14#6#0#0'BM'#14#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#22#0#0#0#22#0#0 -- +#0#1#0#24#0#0#0#0#0#216#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#207#208#208#207 -+ +'alClient'#8'TabIndex'#2#2#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageContro' -+ +'l1PageChanged'#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#1'1'#12'ClientHeigh' -+ +'t'#3#147#1#11'ClientWidth'#3#127#1#0#6'TLabel'#6'Label6'#4'Left'#2#20#6'Hei' -+ +'ght'#2#14#3'Top'#2#6#5'Width'#3#192#0#7'Caption'#6')Select the type of obje' -+ +'ct in your catalog'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label8' -+ +#4'Left'#2#14#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2'V'#7'Caption'#6#19'In' -+ +'put Catalog files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label10'#4'Left'#2#14#6 -+ +'Height'#2#14#3'Top'#3#164#0#5'Width'#2'^'#7'Caption'#6#18'Catalog short nam' -+ +'e'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#2#14#6'Height'#2#14#3 -+ +'Top'#3#192#0#5'Width'#2'Y'#7'Caption'#6#17'Catalog long name'#11'ParentColo' -+ +'r'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#4'Left'#2'f'#6'Height'#2#25#3'To' -+ ,'p'#3#248#0#5'Width'#2#25#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#18#6#0#0 -+ +#14#6#0#0'BM'#14#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#22#0#0#0#22#0#0#0#1#0#24#0#0 -+ +#0#0#0#216#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#207#208#208#207#208#208#207 - +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 - +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 - +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 -- +#208#208#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207 -+ +#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 - +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 - +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 -- +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#12#12#12#12 -+ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#12#12#12#12#12#12#12#12 - +#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12 -- +#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12#12'011'#207#208#208#207#208#208 -- +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#0#0#0#0#0#0'((' -- +#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#16'KKZ[[' -- +#185#186#186#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#29 -- +#29#0'//'#0'OO'#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 -- +#128#0#128#128#0#128#128#0#128#128#0#128#128#0'll'#0#23#23#136#142#142#185 -- +#186#186#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#159#159#0#255#255#0 -- +'oo'#0#23#23#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 -- +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#24#24'Z[['#207 -- +#208#208#207#208#208#207#208#208#0#0#0#0#0#129#159#159#207#255#255'Z'#228#228 -- +#0#173#173#0#24#24#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 -- +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0'll'#17'KK111'#207#208#208 -- +#207#208#208#0#0#0#0#0'Y'#159#159#143#255#255'}'#255#255'['#228#228#0'oo'#0 -- +'OO'#0'``'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 -- +#128#0#128#128#0#128#128#0#128#128#0'``'#7';;ttt'#178#179#179#0#0#0#0#0#9#159 -- +#159#15#255#255#141#255#255#197#255#255#15#255#255#2'<<'#0'=='#0'xx'#0'xx'#0 -- +'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'pp'#0#0#0#133#134#134 -- +#0#0#0#0#0#159#159#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255 -- +#255#0#143#143#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255 -- +#255'O'#255#255#157#255#255'b'#220#220#10#175#175#175#175#175'6'#175#175'6' -- +#175#175#175#175#175#10#175#175#0'LL'#26#26#26#142#143#143#142#143#143#142 -- +#143#143#142#143#143#142#143#143#142#143#143#0#0#0#0#0'1'#159#159'O'#255#255 -- +#133#255#255#157#255#255'O'#255#255#157#255#255#133#255#255'U'#255#255#175 -- +#255#255'm'#255#255'm'#255#255#175#255#255'U'#255#255'"oo&&&'#207#208#208#207 -- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#159#159 -- +#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255#255'o'#255#255#239 -- +#255#255#0#255#255#175#255#255#175#255#255#0#255#255#239#255#255'ooo&&&'#207 -- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0 -- +#0#9#159#159#15#255#255#141#255#255#197#255#255#15#255#255#2'<<'#6#15#15#14 -- +#15#15#0#15#15#10#15#15#10#15#15#0#15#15#14#15#15#6#6#6'&&&'#207#208#208#207 -- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0'ttt+qq'#0'oo>oo' -- +'[oo'#0'oo^sstttttttttttttttttttttttt'#133#133#133#207#208#208'pqqZ[[Z[[Z[[' -- +#170#171#171#0#0#207#208#208'eff&&&&&&&&&&&&'#175#176#176#207#208#208#207#208 -+ +#12#12#12#12#12#12#12#12#12#12#12#12'011'#207#208#208#207#208#208#207#208#208 -+ +#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#0#0#0#0#0#0'(('#0'GG'#0'GG' -+ +#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#0'GG'#16'KKZ[['#185#186#186 -+ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#0#29#29#0'//'#0'O' -+ +'O'#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 -+ +#128#0#128#128#0#128#128#0#128#128#0'll'#0#23#23#136#142#142#185#186#186#207 -+ +#208#208#207#208#208#207#208#208#0#0#0#0#0#0#159#159#0#255#255#0'oo'#0#23#23 -+ +#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 -+ +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#24#24'Z[['#207#208#208#207#208 -+ +#208#207#208#208#0#0#0#0#0#129#159#159#207#255#255'Z'#228#228#0#173#173#0#24 -+ +#24#0'll'#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 -+ +#128#0#128#128#0#128#128#0#128#128#0'll'#17'KK111'#207#208#208#207#208#208#0 -+ +#0#0#0#0'Y'#159#159#143#255#255'}'#255#255'['#228#228#0'oo'#0'OO'#0'``'#0#128 -+ +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 -+ +#128#128#0#128#128#0'``'#7';;ttt'#178#179#179#0#0#0#0#0#9#159#159#15#255#255 -+ +#141#255#255#197#255#255#15#255#255#2'<<'#0'=='#0'xx'#0'xx'#0'xx'#0'xx'#0'xx' -+ +#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'xx'#0'pp'#0#0#0#133#134#134#0#0#0#0#0#159 -+ +#159#159#255#255#255'o'#255#255'/'#255#255#255#255#255'/'#255#255#0#143#143#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255#255'O'#255#255#157 -+ +#255#255'b'#220#220#10#175#175#175#175#175'6'#175#175'6'#175#175#175#175#175 -+ +#10#175#175#0'LL'#26#26#26#142#143#143#142#143#143#142#143#143#142#143#143 -+ +#142#143#143#142#143#143#0#0#0#0#0'1'#159#159'O'#255#255#133#255#255#157#255 -+ +#255'O'#255#255#157#255#255#133#255#255'U'#255#255#175#255#255'm'#255#255'm' -+ +#255#255#175#255#255'U'#255#255'"oo&&&'#207#208#208#207#208#208#207#208#208 -+ +#207#208#208#207#208#208#207#208#208#0#0#0#0#0#159#159#159#255#255#255'o'#255 -+ +#255'/'#255#255#255#255#255'/'#255#255'o'#255#255#239#255#255#0#255#255#175 -+ +#255#255#175#255#255#0#255#255#239#255#255'ooo&&&'#207#208#208#207#208#208 -+ +#207#208#208#207#208#208#207#208#208#207#208#208#0#0#0#0#0#9#159#159#15#255 -+ +#255#141#255#255#197#255#255#15#255#255#2'<<'#6#15#15#14#15#15#0#15#15#10#15 -+ +#15#10#15#15#0#15#15#14#15#15#6#6#6'&&&'#207#208#208#207#208#208#207#208#208 -+ +#207#208#208#207#208#208#207#208#208#0#0'ttt+qq'#0'oo>oo[oo'#0'oo^sstttttttt' -+ +'tttttttttttttttt'#133#133#133#207#208#208'pqqZ[[Z[[Z[['#170#171#171#0#0#207 -+ +#208#208'eff&&&&&&&&&&&&'#175#176#176#207#208#208#207#208#208#207#208#208#207 -+ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 -+ +#208'FFF'#21#21#21#0#0#0#0#0#0#142#143#143#0#0#207#208#208#207#208#208#207 -+ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 - +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 -- +#207#208#208#207#208#208'FFF'#21#21#21#0#0#0#0#0#0#142#143#143#0#0#207#208 -+ +#207#208#208#207#208#208#207#208#208'ttt'#0#0#0#0#0#0#142#143#143#0#0#207#208 - +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 -+ +#207#208#208#207#208#208#207#208#208#207#208#208#154#155#155'&'''''#196#197 -+ +#197#207#208#208#207#208#208#207#208#208'FFF___'#157#158#158#0#0#0#142#143 -+ +#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 -+ +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#170#171#171 -+ +'Z[[rssttttttttt___'#141#142#142#199#200#200'Z[['#170#171#171#0#0#207#208#208 - +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 -- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208'ttt'#0#0#0#0#0#0#142 -- +#143#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 -- +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#154#155 -- +#155'&'''''#196#197#197#207#208#208#207#208#208#207#208#208'FFF___'#157#158 -- +#158#0#0#0#142#143#143#0#0#207#208#208#207#208#208#207#208#208#207#208#208 -+ +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#24#24#24 -+ +#12#12#12#12#12#12#12#12#12#170#171#171#207#208#208#207#208#208#207#208#208 -+ +#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 - +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207 -- +#208#208#170#171#171'Z[[rssttttttttt___'#141#142#142#199#200#200'Z[['#170#171 -- +#171#0#0#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 -- +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 -- +#207#208#208#24#24#24#12#12#12#12#12#12#12#12#12#170#171#171#207#208#208#207 -- +#208#208#207#208#208#207#208#208#0#0#207#208#208#207#208#208#207#208#208#207 - +#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208 -- +#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208 -- +#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0 -- +#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196 -- ,#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207 -+ +#208#207#208#208#207#208#208#207#208#208#207#208#208#0#0#196#207#207#196#207 - +#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207 -- +#196#207#207#196#207#207#196#207#207#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#17'Sp' -- +'eedButton1Click'#0#0#6'TLabel'#7'Label22'#4'Left'#2#14#6'Height'#2'I'#3'Top' -- +#3'f'#1#5'Width'#3'Y'#1#8'AutoSize'#8#7'Caption'#6#211'For a large catalog a' -- +'lways select "Binary". For a small dataset that change frequently select "T' -- +'ext", this let you edit the file and see the result immediatly on the chart' -- +' without the need to rerun this utility.'#11'ParentColor'#8#8'WordWrap'#9#0 -- +#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#3#132#0#6'Height'#3#137#0#3'Top'#2 -- +#22#5'Width'#3#227#0#8'AutoFill'#9#7'Caption'#6#12'Catalog type'#28'ChildSiz' -- +'ing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizi' -- +'ng.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarge' -- +'Vertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 -- +#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' -- +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' -- +'olsPerLine'#2#1#12'ClientHeight'#2'z'#11'ClientWidth'#3#223#0#9'ItemIndex'#2 -- +#0#13'Items.Strings'#1#6#5'Stars'#6#15'Variables stars'#6#13'Doubles stars'#6 -- +#24'Nebulae or other objects'#6#16'Nebulae outlines'#0#7'OnClick'#7#16'Radio' -- +'Group1Click'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#3#145#0#6'Height' -- +#2#21#3'Top'#3#160#0#5'Width'#2'1'#9'MaxLength'#2#4#8'TabOrder'#2#1#0#0#5'TE' -- +'dit'#5'Edit5'#4'Left'#3#145#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#201#0 -- +#9'MaxLength'#2'2'#8'TabOrder'#2#2#0#0#8'TListBox'#8'ListBox1'#4'Left'#3#145 -- +#0#6'Height'#2'8'#3'Top'#3#220#0#5'Width'#3#201#0#10'ItemHeight'#2#0#10'OnDb' -- +'lClick'#7#17'SpeedButton1Click'#8'TabOrder'#2#3#8'TopIndex'#2#255#0#0#11'TR' -- +'adioGroup'#9'binarycat'#4'Left'#2#14#6'Height'#2'8'#3'Top'#3'('#1#5'Width'#3 -- +'['#1#8'AutoFill'#9#7'Caption'#6#19'Output Catalog Type'#28'ChildSizing.Left' -- +'RightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlar' -- +'geHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' -- +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' -- +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' -- +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' -- +'e'#2#2#12'ClientHeight'#2')'#11'ClientWidth'#3'W'#1#7'Columns'#2#2#9'ItemIn' -- +'dex'#2#0#13'Items.Strings'#1#6#22'Binary indexed catalog'#6#17'Text file ca' -- +'talog'#0#7'OnClick'#7#15'binarycatChange'#8'TabOrder'#2#4#0#0#0#9'TTabSheet' -- +#9'TabSheet2'#7'Caption'#6#1'2'#12'ClientHeight'#3#178#1#11'ClientWidth'#3 -- +#129#1#10'ImageIndex'#2#4#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'Height'#2#14#3 -- +'Top'#2#8#5'Width'#2'}'#7'Caption'#6#23'General catalog options'#11'ParentCo' -- +'lor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3 -- +#224#0#5'Width'#3'Y'#1#7'Caption'#6#26'Default Nebulae parameters'#12'Client' -- +'Height'#3#177#0#11'ClientWidth'#3'U'#1#8'TabOrder'#2#5#0#6'TLabel'#7'Label1' -- +'1'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#17#5'Width'#2'm'#7'Caption'#6#19'Dim' -- +'ension and Units'#11'ParentColor'#8#0#0#6'TLabel'#7'Label12'#4'Left'#2#8#6 -- +'Height'#2#14#3'Top'#2'X'#5'Width'#2'<'#7'Caption'#6#11'Object type'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#7'Label15'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'x'#5 -- +'Width'#3#229#0#7'Caption'#6'-Recognize Units or Object type from the file:' -- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#134#0#6'Height'#2#14#3 -- +'Top'#2'0'#5'Width'#3#136#0#7'Caption'#6#28'(useful to represent a flux)'#11 -- +'ParentColor'#8#8'WordWrap'#9#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#204#0#6 -- +'Height'#2#21#3'Top'#2#12#5'Width'#2'Y'#10'ItemHeight'#2#0#13'Items.Strings' -- +#1#6#6'Degree'#6#6'Minute'#6#6'Second'#0#8'OnChange'#7#15'ComboBox1Change'#8 -- +'TabOrder'#2#1#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#3#140#0#6'Height'#2#21#4 -- +'Hint'#6#7'0..3600'#3'Top'#2#12#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHin' -- +'t'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#3#16#14#0#0#9'TCheckBox'#9'Ch' -- +'eckBox1'#4'Left'#2#4#6'Height'#2#19#3'Top'#2'('#5'Width'#2'l'#7'Caption'#6 -- +#17'Logarithmic scale'#8'TabOrder'#2#2#0#0#9'TComboBox'#9'ComboBox3'#4'Left' -- +#2'x'#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'q'#10'ItemHeight'#2#0#9'ItemInde' -- +'x'#2#14#13'Items.Strings'#1#6#6'Galaxy'#6#14'Galaxy Cluster'#6#12'Open Clus' -- +'ter'#6#16'Globular Cluster'#6#16'Planetary Nebula'#6#6'Nebula'#6#11'Dark Ne' -- +'bula'#6#18'Cluster and Nebula'#6#4'Knot'#6#4'Star'#6#11'Double Star'#6#11'T' -- +'riple star'#6#9'Asterism '#6#12'Non Existant'#6#6'Unknow'#6#6'Circle'#6#6'S' -- +'quare'#6#7'Losange'#0#8'TabOrder'#2#3#4'Text'#6#6'Unknow'#0#0#7'TButton'#7 -- +'Button3'#4'Left'#2#9#6'Height'#2#25#3'Top'#3#136#0#5'Width'#2'{'#25'BorderS' -- +'pacing.InnerBorder'#2#4#7'Caption'#6#17'Edit Object Types'#7'OnClick'#7#12 -- +'Button3Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button6'#4'Left'#3#156#0#6'H' -- ,'eight'#2#25#3'Top'#3#136#0#5'Width'#2'y'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#10'Edit Units'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#5#0#0 -- +#0#9'TGroupBox'#9'GroupBox7'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5 -- +'Width'#3'Y'#1#7'Caption'#6#26'Default Outline parameters'#12'ClientHeight'#3 -- +#177#0#11'ClientWidth'#3'U'#1#8'TabOrder'#2#6#0#6'TLabel'#7'Label18'#4'Left' -- +#3#148#0#6'Height'#2#14#3'Top'#2'P'#5'Width'#2':'#7'Caption'#6#11'Line width' -- +' '#11'ParentColor'#8#0#0#6'TLabel'#7'Label19'#4'Left'#3#156#0#6'Height'#2#14 -- +#3'Top'#3#152#0#5'Width'#2' '#7'Caption'#6#6'Color '#11'ParentColor'#8#0#0#6 -- +'TShape'#6'Shape1'#4'Left'#3#220#0#6'Height'#2#22#3'Top'#3#144#0#5'Width'#2 -- +#22#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#7'TButton'#7'Button9'#4'Left'#2#9#6 -- +'Height'#2#25#3'Top'#2'm'#5'Width'#2'|'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#19'Edit Line operation'#7'OnClick'#7#12'Button9Click'#8'TabOrder' -- +#2#0#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#3#220#0#6'Height'#2#21#4'Hint'#6#5 -- +'0..99'#3'Top'#2'K'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' -- +'der'#2#1#5'Value'#2#0#8'MaxValue'#2'c'#0#0#7'TButton'#8'Button11'#4'Left'#2 -- +#8#6'Height'#2#25#3'Top'#3#144#0#5'Width'#2'}'#25'BorderSpacing.InnerBorder' -- +#2#4#7'Caption'#6#10'Edit Color'#7'OnClick'#7#13'Button11Click'#8'TabOrder'#2 -- +#2#0#0#11'TRadioGroup'#11'RadioGroup6'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2#8 -- +#5'Width'#3'<'#1#8'AutoFill'#9#7'Caption'#6#12'Drawing Type'#28'ChildSizing.' -- +'LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.E' -- +'nlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVert' -- +'ical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 -- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' -- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' -- +'PerLine'#2#3#12'ClientHeight'#2'*'#11'ClientWidth'#3'8'#1#7'Columns'#2#3#9 -- +'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#6'Spline'#6#7'Surface'#0#8'T' -- +'abOrder'#2#3#0#0#9'TCheckBox'#9'CheckBox7'#4'Left'#2#4#6'Height'#2#19#3'Top' -- +#2'H'#5'Width'#2'c'#7'Caption'#6#14'Closed contour'#7'Checked'#9#5'State'#7#9 -- +'cbChecked'#8'TabOrder'#2#4#0#0#0#11'TRadioGroup'#11'RadioGroup2'#4'Left'#2#8 -- +#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#10'R' -- +'A options'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' -- +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -- +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -- +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -- +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -- +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'Z'#11'ClientWidth' -- +#3#176#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#24'Hours, minutes, secondes' -- +#6#13'Decimal hours'#6#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#0 -- +#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'Ra' -- +'dioGroup3'#4'Left'#3#190#0#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#192#0#8'Au' -- +'toFill'#9#7'Caption'#6#11'DEC options'#28'ChildSizing.LeftRightSpacing'#2#6 -- +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 -- +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' -- +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' -- +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' -- +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientH' -- +'eight'#2'Z'#11'ClientWidth'#3#188#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 -- +#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#6#28'Decimal South Pol' -- +'ar Distance'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#1#0#0#9'TGro' -- +'upBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#130 -- +#0#7'Caption'#6#19'Coordinates Equinox'#12'ClientHeight'#2'*'#11'ClientWidth' -- +#2'~'#8'TabOrder'#2#2#0#10'TFloatEdit'#10'FloatEdit1'#4'Left'#2#8#6'Height'#2 -- +#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9 -- +'TGroupBox'#9'GroupBox4'#4'Left'#3#254#0#6'Height'#2'9'#3'Top'#3#152#0#5'Wid' -- +'th'#3#128#0#7'Caption'#6#17'Maximum magnitude'#12'ClientHeight'#2'*'#11'Cli' -- +'entWidth'#2'|'#8'TabOrder'#2#4#0#10'TFloatEdit'#10'FloatEdit2'#4'Left'#2#12 -- +#6'Height'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#3#142#0#6'Height'#2'9'#3'Top'#3 -- +#152#0#5'Width'#2'k'#7'Caption'#6#14'Position Epoch'#12'ClientHeight'#2'*'#11 -- +'ClientWidth'#2'g'#8'TabOrder'#2#3#0#10'TFloatEdit'#10'FloatEdit3'#4'Left'#2 -- +#8#6'Height'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -- ,#0#0#0#0#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#1'3'#12'ClientHeight'#3 -- +#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#1#0#6'TLabel'#6'Label4'#4'Le' -- +'ft'#3#134#0#6'Height'#2#14#3'Top'#3#252#0#5'Width'#2'0'#7'Caption'#6#10'Fir' -- +'st Char'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#14#1#6'Height' -- +#2#14#3'Top'#3#252#0#5'Width'#2'"'#7'Caption'#6#6'Length'#11'ParentColor'#8#0 -- +#0#6'TLabel'#6'Label7'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#3#7#1 -- +#7'Caption'#6'<Select the fields to use and their position in the text file' -- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#18#6'Height'#2#14#3'Top' -- +#3#252#0#5'Width'#2#27#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#13'TCheck' -- +'ListBox'#13'CheckListBox1'#4'Left'#2#18#6'Height'#3#199#0#3'Top'#2'('#5'Wid' -- +'th'#3'Y'#1#13'Items.Strings'#1#6#2'RA'#6#3'DEC'#0#10'ItemHeight'#2#19#7'OnK' -- +'eyUp'#7#18'CheckListBox1KeyUp'#9'OnMouseUp'#7#20'CheckListBox1MouseUp'#8'Ta' -- +'bOrder'#2#0#4'Data'#10#6#0#0#0#2#0#0#0#0#0#0#0#5'TEdit'#5'Edit1'#4'Left'#3 -- +#202#0#6'Height'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange' -- +#7#11'Edit1Change'#8'TabOrder'#2#2#0#0#5'TEdit'#5'Edit2'#4'Left'#3'>'#1#6'He' -- +'ight'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Edit' -- +'2Change'#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit3'#4'Left'#2'>'#6'Height'#2#21#3 -- +'Top'#3#248#0#5'Width'#2'7'#8'AutoSize'#8#9'MaxLength'#2#10#8'OnChange'#7#11 -- +'Edit3Change'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#18#6'H' -- +'eight'#2#21#3'Top'#3#24#1#5'Width'#3#191#0#7'Caption'#6'#Use this field as ' -- +'an Alternate Name'#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#4#7'Visibl' -- +'e'#8#0#0#7'TButton'#7'Button7'#4'Left'#3' '#1#6'Height'#2#25#3'Top'#3#24#1#5 -- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Advanced'#7'On' -- +'Click'#7#12'Button7Click'#8'TabOrder'#2#5#0#0#5'TMemo'#5'Memo1'#4'Left'#2#11 -- +#6'Height'#2'Z'#3'Top'#3'>'#1#5'Width'#3'_'#1#11'Font.Height'#2#245#9'Font.N' -- +'ame'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#13'HideSelection'#8#9'OnMouse' -- +'Up'#7#12'Memo1MouseUp'#10'ParentFont'#8#10'ScrollBars'#7#12'ssHorizontal'#8 -- +'TabOrder'#2#6#8'WordWrap'#8#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#1 -- +'4'#12'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#2#0#6 -- +'TLabel'#6'Label1'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#2'{'#7'C' -- +'aption'#6#22'Output catalog options'#11'ParentColor'#8#0#0#11'TRadioGroup' -- +#11'RadioGroup4'#4'Left'#2#24#6'Height'#2'y'#3'Top'#2'('#5'Width'#3'A'#1#8'A' -- +'utoFill'#9#7'Caption'#6#15'Number of files'#28'ChildSizing.LeftRightSpacing' -+ ,#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196 -+ +#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207#207#196#207 -+ +#207#196#207#207#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#17'SpeedButton1Click'#0#0 -+ +#6'TLabel'#7'Label22'#4'Left'#2#14#6'Height'#2'I'#3'Top'#3'f'#1#5'Width'#3'Y' -+ +#1#8'AutoSize'#8#7'Caption'#6#211'For a large catalog always select "Binary"' -+ +'. For a small dataset that change frequently select "Text", this let you ed' -+ +'it the file and see the result immediatly on the chart without the need to ' -+ +'rerun this utility.'#11'ParentColor'#8#8'WordWrap'#9#0#0#11'TRadioGroup'#11 -+ +'RadioGroup1'#4'Left'#3#132#0#6'Height'#3#137#0#3'Top'#2#22#5'Width'#3#227#0 -+ +#8'AutoFill'#9#7'Caption'#6#12'Catalog type'#28'ChildSizing.LeftRightSpacing' - +#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 - +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' - +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' - +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 - +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' -- +'tHeight'#2'j'#11'ClientWidth'#3'='#1#9'ItemIndex'#2#0#13'Items.Strings'#1#6 -- +'(50 (recommended up to 100''000 objects)'#6')184 (recommended up to 1''00' -- +'0''000 objects)'#6')732 (recommended up to 5''000''000 objects)'#6#21'9537 ' -- +'(larger dataset)'#0#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2 -- +#24#6'Height'#2'`'#3'Top'#3'='#1#5'Width'#3'A'#1#7'Caption'#6#16'Output Dire' -- +'ctory'#12'ClientHeight'#2'Q'#11'ClientWidth'#3'='#1#8'TabOrder'#2#0#0#14'TD' -- +'irectoryEdit'#14'DirectoryEdit1'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#16#5 -- +'Width'#3#240#0#9'Directory'#6#10'C:\testcat'#17'OnAcceptDirectory'#7#29'Dir' -- +'ectoryEdit1AcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#20#9'NumGlyp' -- +'hs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CheckBox6'#4'Le' -- +'ft'#2#16#6'Height'#2#19#3'Top'#2'0'#5'Width'#3#178#0#7'Caption'#6#30'Append' -- +' to an existing catalog '#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupBox6'#4 -- +'Left'#2#24#6'Height'#3#133#0#3'Top'#3#176#0#5'Width'#3'A'#1#7'Caption'#6#12 -- +'Search Index'#12'ClientHeight'#2'v'#11'ClientWidth'#3'='#1#8'TabOrder'#2#1#0 -- +#9'TCheckBox'#9'CheckBox3'#4'Left'#2#16#6'Height'#2#19#3'Top'#2#12#5'Width'#3 -- +#148#0#7'Caption'#6#26'Create a search index file'#7'Checked'#9#5'State'#7#9 -- +'cbChecked'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CheckBox4'#4'Left'#2#16#6'Hei' -- +'ght'#2#19#3'Top'#2'<'#5'Width'#3#211#0#7'Caption'#6'$Add the alternate name' -- +'s to the index'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox5'#4'Left'#2#16#6 -- +'Height'#2#19#3'Top'#2'T'#5'Width'#3#234#0#7'Caption'#6'+Prefix the alternat' -- +'e names with their label'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2 -- +#2#0#0#9'TCheckBox'#9'CheckBox8'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'$'#5'W' -- +'idth'#3#207#0#7'Caption'#6'#Prefix name with catalog short name'#8'TabOrder' -- +#2#3#0#0#0#0#9'TTabSheet'#9'TabSheet5'#7'Caption'#6#1'5'#12'ClientHeight'#3 -- +#178#1#11'ClientWidth'#3#129#1#10'ImageIndex'#2#4#0#6'TLabel'#6'Label9'#4'Le' -- +'ft'#2#24#6'Height'#2#14#3'Top'#2#24#5'Width'#3#14#1#7'Caption'#6'8Indicate ' -- ,'the string identifier for each type of object :'#11'ParentColor'#8#0#0#11'T' -- +'StringGrid'#11'StringGrid1'#4'Left'#2#24#6'Height'#3'$'#1#3'Top'#2'@'#5'Wid' -- +'th'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2 -- +#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLi' -- +'ne'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'goAlway' -- +'sShowEditor'#0#8'RowCount'#2#15#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#9 -- +'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button4'#4'Left'#3#134#0#6'Hei' -- +'ght'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'C' -- +'aption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9'T' -- +'TabSheet'#9'TabSheet6'#7'Caption'#6#1'6'#12'ClientHeight'#3#178#1#11'Client' -- +'Width'#3#129#1#10'ImageIndex'#2#5#0#6'TLabel'#7'Label14'#4'Left'#2#22#6'Hei' -- +'ght'#2#14#3'Top'#2'('#5'Width'#3#225#0#7'Caption'#6'0Indicate how to recogn' -- +'ize the object size unit :'#11'ParentColor'#8#0#0#11'TStringGrid'#11'String' -- +'Grid2'#4'Left'#2#22#6'Height'#3'$'#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount' -- +#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0 -- +#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goH' -- +'orzLine'#13'goRangeSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount' -- +#2#4#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0 -- +#0#0#7'TButton'#7'Button5'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#128#1#5'W' -- +'idth'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnCli' -- +'ck'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet7'#7'Ca' -- +'ption'#6#1'7'#12'ClientHeight'#3#178#1#11'ClientWidth'#3#129#1#10'ImageInde' -- +'x'#2#6#0#6'TLabel'#7'Label17'#4'Left'#2#30#6'Height'#2#16#3'Top'#2'('#5'Wid' -- +'th'#3#15#1#7'Caption'#6'+Indicate the string for each draw operation'#11'Pa' -- +'rentColor'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#30#6'Height'#3'$' -- +#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'D' -- +'efaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLin' -- +'e'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'go' -- +'Editing'#18'goAlwaysShowEditor'#0#8'TabOrder'#2#0#16'TitleFont.Height'#2#245 -- +#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button8'#4'Left'#3#136#0#6'H' -- +'eight'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#9 -- +'TTabSheet'#9'TabSheet8'#7'Caption'#6#1'8'#12'ClientHeight'#3#178#1#11'Clien' -- +'tWidth'#3#129#1#10'ImageIndex'#2#7#0#6'TLabel'#7'Label20'#4'Left'#2'F'#6'He' -- +'ight'#2#14#3'Top'#2#24#5'Width'#3#157#0#7'Caption'#6'"Indicate the string f' -- +'or each color'#11'ParentColor'#8#0#0#6'TShape'#6'Shape2'#4'Left'#2'0'#6'Hei' -- +'ght'#2#25#3'Top'#2'X'#5'Width'#2'Q'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6 -- +'TShape'#6'Shape3'#4'Left'#2'0'#6'Height'#2#25#3'Top'#2'r'#5'Width'#2'Q'#11 -- +'Brush.Color'#7#8'clSilver'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6 -- +'Shape4'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#140#0#5'Width'#2'Q'#11'Brush.C' -- +'olor'#7#6'clGray'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape5'#4 -- +'Left'#2'0'#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'Q'#11'Brush.Color'#4'00' -- +'0'#0#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape6'#4'Left'#2'0'#6 -- +'Height'#2#25#3'Top'#3#192#0#5'Width'#2'Q'#11'Brush.Color'#7#5'clRed'#9'OnMo' -- +'useUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape7'#4'Left'#2'0'#6'Height'#2 -- +#25#3'Top'#3#218#0#5'Width'#2'Q'#11'Brush.Color'#7#6'clLime'#9'OnMouseUp'#7 -- +#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape8'#4'Left'#2'0'#6'Height'#2#25#3'Top' -- +#3#244#0#5'Width'#2'Q'#11'Brush.Color'#7#8'clYellow'#9'OnMouseUp'#7#13'Shape' -- +'1MouseUp'#0#0#6'TShape'#6'Shape9'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#14#1 -- +#5'Width'#2'Q'#11'Brush.Color'#7#6'clBlue'#9'OnMouseUp'#7#13'Shape1MouseUp'#0 -- +#0#6'TShape'#7'Shape10'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3'('#1#5'Width'#2 -- +'Q'#11'Brush.Color'#7#9'clFuchsia'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TS' -- +'hape'#7'Shape11'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3'B'#1#5'Width'#2'Q'#11 -- +'Brush.Color'#7#6'clAqua'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TLabel'#7'L' -- +'abel21'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'@'#5'Width'#2'z'#7'Caption'#6#26 -- +'Click to change the color '#11'ParentColor'#8#0#0#11'TStringGrid'#11'String' -- +'Grid4'#4'Left'#3#158#0#6'Height'#3','#1#3'Top'#2'='#5'Width'#3#208#0#8'ColC' -- +'ount'#2#1#15'DefaultColWidth'#3#200#0#16'DefaultRowHeight'#2#26#9'FixedCols' -- +#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzL' -- +'ine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'goAlwa' -- +'ysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16'TitleFont.Height'#2#245 -- +#0#0#7'TButton'#8'Button10'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#128#1#5 -- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnCl' -- +'ick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel1'#4'Left' -- ,#2#0#6'Height'#2')'#3'Top'#3#182#1#5'Width'#3#247#1#5'Align'#7#8'alBottom'#10 -- +'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'ClientWidth'#3#247#1#11'Pa' -- +'rentColor'#8#8'TabOrder'#2#1#0#7'TButton'#6'Exitbt'#4'Left'#3#150#1#6'Heigh' -- +'t'#2#25#3'Top'#2#4#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' -- +'n'#6#5'Close'#7'OnClick'#7#11'ExitbtClick'#8'TabOrder'#2#3#7'Visible'#8#0#0 -- +#7'TButton'#6'prevbt'#4'Left'#3#4#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C' -- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'<< Prev'#7'OnClick'#7#11 -- +'prevbtClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'nextbt'#4'Left'#3'K'#1#6'Heig' -- +'ht'#2#25#3'Top'#2#4#5'Width'#2'A'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' -- +'on'#6#9'Next >>'#7'OnClick'#7#11'nextbtClick'#8'TabOrder'#2#1#0#0#7'TButt' -- +'on'#5'Endbt'#4'Left'#3#144#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'['#25'Bor' -- +'derSpacing.InnerBorder'#2#4#7'Caption'#6#13'Build Catalog'#7'Enabled'#8#7'O' -- +'nClick'#7#10'EndbtClick'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#3 -- +#170#0#6'Height'#2#25#3'Top'#2#4#5'Width'#2'V'#25'BorderSpacing.InnerBorder' -- +#2#4#7'Caption'#6#12'Load project'#7'OnClick'#7#12'Button2Click'#8'TabOrder' -- +#2#4#0#0#7'TButton'#7'Button1'#4'Left'#2'O'#6'Height'#2#25#3'Top'#2#4#5'Widt' -- +'h'#2'W'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#12'Save Project'#7'O' -- +'nClick'#7#12'Button1Click'#8'TabOrder'#2#5#0#0#7'TButton'#8'Button12'#4'Lef' -- +'t'#2#8#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C'#25'BorderSpacing.InnerBorder' -- +#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#13'Button12Click'#8'TabOrder'#2#6#0#0 -- +#0#11'TOpenDialog'#11'OpenDialog1'#6'Filter'#6#31'All files|*|Project files|' -- +'*.prj'#11'FilterIndex'#2#0#7'Options'#11#15'ofPathMustExist'#15'ofFileMustE' -- +'xist'#14'ofEnableSizing'#0#4'left'#3#184#0#3'top'#2#8#0#0#11'TSaveDialog'#11 -- +'SaveDialog1'#6'Filter'#6'!All files|*.*|Project files|*.prj'#11'FilterIndex' -- +#2#0#7'Options'#11#17'ofOverwritePrompt'#14'ofHideReadOnly'#18'ofNoReadOnlyR' -- +'eturn'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#3#144#0#3'top'#2#8#0#0 -- +#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7'clBlack'#20'CustomColors.Str' -- +'ings'#1#6#13'ColorA=000000'#6#13'ColorB=000080'#6#13'ColorC=008000'#6#13'Co' -- +'lorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800080'#6#13'ColorG=808000'#6 -- +#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'ColorJ=0000FF'#6#13'ColorK=00FF0' -- +'0'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6#13'ColorO=' -- +'FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6#13'ColorR=F0CAA6'#6#13'Co' -- +'lorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#224#0#3'top'#2#8#0#0#0 -+ +'tHeight'#2'z'#11'ClientWidth'#3#223#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 -+ +#5'Stars'#6#15'Variables stars'#6#13'Doubles stars'#6#24'Nebulae or other ob' -+ +'jects'#6#16'Nebulae outlines'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrde' -+ +'r'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#3#145#0#6'Height'#2#21#3'Top'#3#160#0#5 -+ +'Width'#2'1'#9'MaxLength'#2#4#8'TabOrder'#2#1#0#0#5'TEdit'#5'Edit5'#4'Left'#3 -+ +#145#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#201#0#9'MaxLength'#2'2'#8'Ta' -+ +'bOrder'#2#2#0#0#8'TListBox'#8'ListBox1'#4'Left'#3#145#0#6'Height'#2'8'#3'To' -+ +'p'#3#220#0#5'Width'#3#201#0#10'ItemHeight'#2#0#10'OnDblClick'#7#17'SpeedBut' -+ +'ton1Click'#8'TabOrder'#2#3#8'TopIndex'#2#255#0#0#11'TRadioGroup'#9'binaryca' -+ +'t'#4'Left'#2#14#6'Height'#2'8'#3'Top'#3'('#1#5'Width'#3'['#1#8'AutoFill'#9#7 -+ +'Caption'#6#19'Output Catalog Type'#28'ChildSizing.LeftRightSpacing'#2#6#28 -+ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' -+ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' -+ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' -+ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' -+ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHei' -+ +'ght'#2')'#11'ClientWidth'#3'W'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.S' -+ +'trings'#1#6#22'Binary indexed catalog'#6#17'Text file catalog'#0#7'OnClick' -+ +#7#15'binarycatChange'#8'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Cap' -+ +'tion'#6#1'2'#12'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex' -+ +#2#4#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#8#5'Width'#2 -+ +'}'#7'Caption'#6#23'General catalog options'#11'ParentColor'#8#0#0#9'TGroupB' -+ +'ox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5'Width'#3'Y' -+ +#1#7'Caption'#6#26'Default Nebulae parameters'#12'ClientHeight'#3#177#0#11'C' -+ +'lientWidth'#3'U'#1#8'TabOrder'#2#5#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Hei' -+ +'ght'#2#14#3'Top'#2#17#5'Width'#2'm'#7'Caption'#6#19'Dimension and Units'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#7'Label12'#4'Left'#2#8#6'Height'#2#14#3'Top'#2 -+ +'X'#5'Width'#2'<'#7'Caption'#6#11'Object type'#11'ParentColor'#8#0#0#6'TLabe' -+ +'l'#7'Label15'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'x'#5'Width'#3#229#0#7'Cap' -+ +'tion'#6'-Recognize Units or Object type from the file:'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#7'Label16'#4'Left'#3#134#0#6'Height'#2#14#3'Top'#2'0'#5'Width'#3 -+ +#136#0#7'Caption'#6#28'(useful to represent a flux)'#11'ParentColor'#8#8'Wor' -+ +'dWrap'#9#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#204#0#6'Height'#2#21#3'Top' -+ +#2#12#5'Width'#2'Y'#10'ItemHeight'#2#0#13'Items.Strings'#1#6#6'Degree'#6#6'M' -+ +'inute'#6#6'Second'#0#8'OnChange'#7#15'ComboBox1Change'#8'TabOrder'#2#1#0#0#9 -+ +'TLongEdit'#9'LongEdit1'#4'Left'#3#140#0#6'Height'#2#21#4'Hint'#6#7'0..3600' -+ +#3'Top'#2#12#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0 -+ +#5'Value'#2#0#8'MaxValue'#3#16#14#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#4#6 -+ +'Height'#2#19#3'Top'#2'('#5'Width'#2'l'#7'Caption'#6#17'Logarithmic scale'#8 -+ +'TabOrder'#2#2#0#0#9'TComboBox'#9'ComboBox3'#4'Left'#2'x'#6'Height'#2#21#3'T' -+ +'op'#2'P'#5'Width'#2'q'#10'ItemHeight'#2#0#9'ItemIndex'#2#14#13'Items.String' -+ +'s'#1#6#6'Galaxy'#6#14'Galaxy Cluster'#6#12'Open Cluster'#6#16'Globular Clus' -+ +'ter'#6#16'Planetary Nebula'#6#6'Nebula'#6#11'Dark Nebula'#6#18'Cluster and ' -+ +'Nebula'#6#4'Knot'#6#4'Star'#6#11'Double Star'#6#11'Triple star'#6#9'Asteris' -+ +'m '#6#12'Non Existant'#6#6'Unknow'#6#6'Circle'#6#6'Square'#6#7'Losange'#0#8 -+ +'TabOrder'#2#3#4'Text'#6#6'Unknow'#0#0#7'TButton'#7'Button3'#4'Left'#2#9#6'H' -+ +'eight'#2#25#3'Top'#3#136#0#5'Width'#2'{'#25'BorderSpacing.InnerBorder'#2#4#7 -+ +'Caption'#6#17'Edit Object Types'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2 -+ +#4#0#0#7'TButton'#7'Button6'#4'Left'#3#156#0#6'Height'#2#25#3'Top'#3#136#0#5 -+ ,'Width'#2'y'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'Edit Units'#7 -+ +'OnClick'#7#12'Button6Click'#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox7' -+ +#4'Left'#2#16#6'Height'#3#192#0#3'Top'#3#224#0#5'Width'#3'Y'#1#7'Caption'#6 -+ +#26'Default Outline parameters'#12'ClientHeight'#3#177#0#11'ClientWidth'#3'U' -+ +#1#8'TabOrder'#2#6#0#6'TLabel'#7'Label18'#4'Left'#3#148#0#6'Height'#2#14#3'T' -+ +'op'#2'P'#5'Width'#2':'#7'Caption'#6#11'Line width '#11'ParentColor'#8#0#0#6 -+ +'TLabel'#7'Label19'#4'Left'#3#156#0#6'Height'#2#14#3'Top'#3#152#0#5'Width'#2 -+ +' '#7'Caption'#6#6'Color '#11'ParentColor'#8#0#0#6'TShape'#6'Shape1'#4'Left' -+ +#3#220#0#6'Height'#2#22#3'Top'#3#144#0#5'Width'#2#22#9'OnMouseUp'#7#13'Shape' -+ +'1MouseUp'#0#0#7'TButton'#7'Button9'#4'Left'#2#9#6'Height'#2#25#3'Top'#2'm'#5 -+ +'Width'#2'|'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Edit Line ope' -+ +'ration'#7'OnClick'#7#12'Button9Click'#8'TabOrder'#2#0#0#0#9'TLongEdit'#9'Lo' -+ +'ngEdit2'#4'Left'#3#220#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'K'#5'Wi' -+ +'dth'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8 -+ +'MaxValue'#2'c'#0#0#7'TButton'#8'Button11'#4'Left'#2#8#6'Height'#2#25#3'Top' -+ +#3#144#0#5'Width'#2'}'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'Edi' -+ +'t Color'#7'OnClick'#7#13'Button11Click'#8'TabOrder'#2#2#0#0#11'TRadioGroup' -+ +#11'RadioGroup6'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2#8#5'Width'#3'<'#1#8'Aut' -+ +'oFill'#9#7'Caption'#6#12'Drawing Type'#28'ChildSizing.LeftRightSpacing'#2#6 -+ +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 -+ +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' -+ +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' -+ +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' -+ +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientH' -+ +'eight'#2'*'#11'ClientWidth'#3'8'#1#7'Columns'#2#3#9'ItemIndex'#2#0#13'Items' -+ +'.Strings'#1#6#4'Line'#6#6'Spline'#6#7'Surface'#0#8'TabOrder'#2#3#0#0#9'TChe' -+ +'ckBox'#9'CheckBox7'#4'Left'#2#4#6'Height'#2#19#3'Top'#2'H'#5'Width'#2'c'#7 -+ +'Caption'#6#14'Closed contour'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrd' -+ +'er'#2#4#0#0#0#11'TRadioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2'i'#3 -+ +'Top'#2'('#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#10'RA options'#28'Chi' -+ +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' -+ +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' -+ +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' -+ +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' -+ +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' -+ +'ontrolsPerLine'#2#1#12'ClientHeight'#2'Z'#11'ClientWidth'#3#176#0#9'ItemInd' -+ +'ex'#2#0#13'Items.Strings'#1#6#24'Hours, minutes, secondes'#6#13'Decimal hou' -+ +'rs'#6#26'Degrees, minutes, secondes'#6#15'Decimal degrees'#0#7'OnClick'#7#16 -+ +'RadioGroup1Click'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioGroup3'#4'Lef' -+ +'t'#3#190#0#6'Height'#2'i'#3'Top'#2'('#5'Width'#3#192#0#8'AutoFill'#9#7'Capt' -+ +'ion'#6#11'DEC options'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.' -+ +'TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousC' -+ +'hildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' -+ +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' -+ +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' -+ +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'Z'#11 -+ +'ClientWidth'#3#188#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#26'Degrees, min' -+ +'utes, secondes'#6#15'Decimal degrees'#6#28'Decimal South Polar Distance'#0#7 -+ +'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#1#0#0#9'TGroupBox'#9'GroupBox' -+ +'1'#4'Left'#2#8#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#130#0#7'Caption'#6 -+ +#19'Coordinates Equinox'#12'ClientHeight'#2'*'#11'ClientWidth'#2'~'#8'TabOrd' -+ +'er'#2#2#0#10'TFloatEdit'#10'FloatEdit1'#4'Left'#2#8#6'Height'#2#21#3'Top'#2 -+ +#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' -+ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9'TGroupBox'#9 -+ +'GroupBox4'#4'Left'#3#254#0#6'Height'#2'9'#3'Top'#3#152#0#5'Width'#3#128#0#7 -+ +'Caption'#6#17'Maximum magnitude'#12'ClientHeight'#2'*'#11'ClientWidth'#2'|' -+ +#8'TabOrder'#2#4#0#10'TFloatEdit'#10'FloatEdit2'#4'Left'#2#12#6'Height'#2#21 -+ +#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#9'T' -+ +'GroupBox'#9'GroupBox2'#4'Left'#3#142#0#6'Height'#2'9'#3'Top'#3#152#0#5'Widt' -+ +'h'#2'k'#7'Caption'#6#14'Position Epoch'#12'ClientHeight'#2'*'#11'ClientWidt' -+ +'h'#2'g'#8'TabOrder'#2#3#0#10'TFloatEdit'#10'FloatEdit3'#4'Left'#2#8#6'Heigh' -+ +'t'#2#21#3'Top'#2#12#5'Width'#2'9'#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0 -+ +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 -+ ,#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#1'3'#12'ClientHeight'#3#147#1#11 -+ +'ClientWidth'#3#127#1#10'ImageIndex'#2#1#0#6'TLabel'#6'Label4'#4'Left'#3#134 -+ +#0#6'Height'#2#14#3'Top'#3#252#0#5'Width'#2'3'#7'Caption'#6#10'First Char'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#14#1#6'Height'#2#14#3'Top' -+ +#3#252#0#5'Width'#2''''#7'Caption'#6#6'Length'#11'ParentColor'#8#0#0#6'TLabe' -+ +'l'#6'Label7'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#16#5'Width'#3'/'#1#7'Capt' -+ +'ion'#6'<Select the fields to use and their position in the text file'#11'Pa' -+ +'rentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#18#6'Height'#2#14#3'Top'#3 -+ +#252#0#5'Width'#2#31#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#13'TCheckLi' -+ +'stBox'#13'CheckListBox1'#4'Left'#2#18#6'Height'#3#199#0#3'Top'#2'('#5'Width' -+ +#3'Y'#1#13'Items.Strings'#1#6#2'RA'#6#3'DEC'#0#10'ItemHeight'#2#19#7'OnKeyUp' -+ +#7#18'CheckListBox1KeyUp'#9'OnMouseUp'#7#20'CheckListBox1MouseUp'#8'TabOrder' -+ +#2#0#4'Data'#10#6#0#0#0#2#0#0#0#0#0#0#0#5'TEdit'#5'Edit1'#4'Left'#3#202#0#6 -+ +'Height'#2#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Ed' -+ +'it1Change'#8'TabOrder'#2#2#0#0#5'TEdit'#5'Edit2'#4'Left'#3'>'#1#6'Height'#2 -+ +#21#3'Top'#3#248#0#5'Width'#2'-'#8'AutoSize'#8#8'OnChange'#7#11'Edit2Change' -+ +#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit3'#4'Left'#2'>'#6'Height'#2#21#3'Top'#3 -+ +#248#0#5'Width'#2'7'#8'AutoSize'#8#9'MaxLength'#2#10#8'OnChange'#7#11'Edit3C' -+ +'hange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#18#6'Height' -+ +#2#22#3'Top'#3#24#1#5'Width'#3#216#0#7'Caption'#6'#Use this field as an Alte' -+ +'rnate Name'#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#4#7'Visible'#8#0#0 -+ +#7'TButton'#7'Button7'#4'Left'#3' '#1#6'Height'#2#25#3'Top'#3#24#1#5'Width'#2 -+ +'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Advanced'#7'OnClick'#7 -+ +#12'Button7Click'#8'TabOrder'#2#5#0#0#5'TMemo'#5'Memo1'#4'Left'#2#11#6'Heigh' -+ +'t'#2'Z'#3'Top'#3'>'#1#5'Width'#3'_'#1#11'Font.Height'#2#245#9'Font.Name'#6#7 -+ +'courier'#10'Font.Pitch'#7#7'fpFixed'#9'OnMouseUp'#7#12'Memo1MouseUp'#10'Par' -+ +'entFont'#8#10'ScrollBars'#7#12'ssHorizontal'#8'TabOrder'#2#6#8'WordWrap'#8#0 -+ +#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#1'4'#12'ClientHeight'#3#147#1#11 -+ +'ClientWidth'#3#127#1#10'ImageIndex'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2#24#6 -+ +'Height'#2#14#3'Top'#2#16#5'Width'#2'{'#7'Caption'#6#22'Output catalog optio' -+ +'ns'#11'ParentColor'#8#0#0#11'TRadioGroup'#11'RadioGroup4'#4'Left'#2#24#6'He' -+ +'ight'#2'y'#3'Top'#2'('#5'Width'#3'A'#1#8'AutoFill'#9#7'Caption'#6#15'Number' -+ +' of files'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' -+ +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -+ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -+ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -+ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -+ +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'j'#11'ClientWidth' -+ +#3'='#1#9'ItemIndex'#2#0#13'Items.Strings'#1#6'(50 (recommended up to 100' -+ +'''000 objects)'#6')184 (recommended up to 1''000''000 objects)'#6')732 (rec' -+ +'ommended up to 5''000''000 objects)'#6#21'9537 (larger dataset)'#0#8'TabOrd' -+ +'er'#2#2#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#24#6'Height'#2'`'#3'Top'#3 -+ +'='#1#5'Width'#3'A'#1#7'Caption'#6#16'Output Directory'#12'ClientHeight'#2'Q' -+ +#11'ClientWidth'#3'='#1#8'TabOrder'#2#0#0#14'TDirectoryEdit'#14'DirectoryEdi' -+ +'t1'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#16#5'Width'#3#240#0#9'Directory'#6 -+ +#10'C:\testcat'#17'OnAcceptDirectory'#7#29'DirectoryEdit1AcceptDirectory'#10 -+ +'ShowHidden'#8#11'ButtonWidth'#2#20#9'NumGlyphs'#2#1#8'TabOrder'#2#0#0#0#9'T' -+ +'CheckBox'#9'CheckBox6'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'0'#5'Width'#3 -+ +#178#0#7'Caption'#6#30'Append to an existing catalog '#8'TabOrder'#2#1#0#0#0 -+ +#9'TGroupBox'#9'GroupBox6'#4'Left'#2#24#6'Height'#3#133#0#3'Top'#3#176#0#5'W' -+ +'idth'#3'A'#1#7'Caption'#6#12'Search Index'#12'ClientHeight'#2'v'#11'ClientW' -+ +'idth'#3'='#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'CheckBox3'#4'Left'#2#16#6'Hei' -+ +'ght'#2#19#3'Top'#2#12#5'Width'#3#148#0#7'Caption'#6#26'Create a search inde' -+ +'x file'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#0#0#0#9'TCheckBo' -+ +'x'#9'CheckBox4'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'<'#5'Width'#3#211#0#7 -+ +'Caption'#6'$Add the alternate names to the index'#8'TabOrder'#2#1#0#0#9'TCh' -+ +'eckBox'#9'CheckBox5'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'T'#5'Width'#3#234 -+ +#0#7'Caption'#6'+Prefix the alternate names with their label'#7'Checked'#9#5 -+ +'State'#7#9'cbChecked'#8'TabOrder'#2#2#0#0#9'TCheckBox'#9'CheckBox8'#4'Left' -+ +#2#16#6'Height'#2#19#3'Top'#2'$'#5'Width'#3#207#0#7'Caption'#6'#Prefix name ' -+ +'with catalog short name'#8'TabOrder'#2#3#0#0#0#0#9'TTabSheet'#9'TabSheet5'#7 -+ +'Caption'#6#1'5'#12'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIn' -+ +'dex'#2#4#0#6'TLabel'#6'Label9'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#24#5'Wi' -+ +'dth'#3#14#1#7'Caption'#6'8Indicate the string identifier for each type of o' -+ ,'bject :'#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGrid1'#4'Left'#2#24 -+ +#6'Height'#3'$'#1#3'Top'#2'@'#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColW' -+ +'idth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15 -+ +'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRan' -+ +'geSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#15#8'TabOrder' -+ +#2#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton' -+ +#7'Button4'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'Bo' -+ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4' -+ +'Click'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet6'#7'Caption'#6#1'6'#12 -+ +'ClientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex'#2#5#0#6'TLabel' -+ +#7'Label14'#4'Left'#2#22#6'Height'#2#14#3'Top'#2'('#5'Width'#3#225#0#7'Capti' -+ +'on'#6'0Indicate how to recognize the object size unit :'#11'ParentColor'#8#0 -+ +#0#11'TStringGrid'#11'StringGrid2'#4'Left'#2#22#6'Height'#3'$'#1#3'Top'#2'H' -+ +#5'Width'#3'@'#1#8'ColCount'#2#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeigh' -+ +'t'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedH' -+ +'orzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#9'goEditing'#18'go' -+ +'AlwaysShowEditor'#0#8'RowCount'#2#4#8'TabOrder'#2#0#16'TitleFont.Height'#2 -+ +#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7'Button5'#4'Left'#3#134#0 -+ +#6'Height'#2#25#3'Top'#3#128#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2 -+ +#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0 -+ +#9'TTabSheet'#9'TabSheet7'#7'Caption'#6#1'7'#12'ClientHeight'#3#147#1#11'Cli' -+ +'entWidth'#3#127#1#10'ImageIndex'#2#6#0#6'TLabel'#7'Label17'#4'Left'#2#30#6 -+ +'Height'#2#16#3'Top'#2'('#5'Width'#3#15#1#7'Caption'#6'+Indicate the string ' -+ +'for each draw operation'#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGri' -+ +'d3'#4'Left'#2#30#6'Height'#3'$'#1#3'Top'#2'H'#5'Width'#3'@'#1#8'ColCount'#2 -+ +#2#15'DefaultColWidth'#2'x'#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7 -+ +'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHor' -+ +'zLine'#13'goRangeSelect'#9'goEditing'#18'goAlwaysShowEditor'#0#8'TabOrder'#2 -+ +#0#16'TitleFont.Height'#2#245#9'ColWidths'#1#2'x'#3#193#0#0#0#0#7'TButton'#7 -+ +'Button8'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'Bord' -+ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#6'Return'#7'OnClick'#7#12'Button4Cl' -+ +'ick'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#9'TabSheet8'#7'Caption'#6#1'8'#12'C' -+ +'lientHeight'#3#147#1#11'ClientWidth'#3#127#1#10'ImageIndex'#2#7#0#6'TLabel' -+ +#7'Label20'#4'Left'#2'F'#6'Height'#2#14#3'Top'#2#24#5'Width'#3#157#0#7'Capti' -+ +'on'#6'"Indicate the string for each color'#11'ParentColor'#8#0#0#6'TShape'#6 -+ +'Shape2'#4'Left'#2'0'#6'Height'#2#25#3'Top'#2'X'#5'Width'#2'Q'#9'OnMouseUp'#7 -+ +#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape3'#4'Left'#2'0'#6'Height'#2#25#3'Top' -+ +#2'r'#5'Width'#2'Q'#11'Brush.Color'#7#8'clSilver'#9'OnMouseUp'#7#13'Shape1Mo' -+ +'useUp'#0#0#6'TShape'#6'Shape4'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#140#0#5 -+ +'Width'#2'Q'#11'Brush.Color'#7#6'clGray'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0 -+ +#6'TShape'#6'Shape5'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'Q' -+ +#11'Brush.Color'#4'000'#0#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'S' -+ +'hape6'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'Q'#11'Brush.Co' -+ +'lor'#7#5'clRed'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape7'#4 -+ +'Left'#2'0'#6'Height'#2#25#3'Top'#3#218#0#5'Width'#2'Q'#11'Brush.Color'#7#6 -+ +'clLime'#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape8'#4'Left'#2 -+ +'0'#6'Height'#2#25#3'Top'#3#244#0#5'Width'#2'Q'#11'Brush.Color'#7#8'clYellow' -+ +#9'OnMouseUp'#7#13'Shape1MouseUp'#0#0#6'TShape'#6'Shape9'#4'Left'#2'0'#6'Hei' -+ +'ght'#2#25#3'Top'#3#14#1#5'Width'#2'Q'#11'Brush.Color'#7#6'clBlue'#9'OnMouse' -+ +'Up'#7#13'Shape1MouseUp'#0#0#6'TShape'#7'Shape10'#4'Left'#2'0'#6'Height'#2#25 -+ +#3'Top'#3'('#1#5'Width'#2'Q'#11'Brush.Color'#7#9'clFuchsia'#9'OnMouseUp'#7#13 -+ +'Shape1MouseUp'#0#0#6'TShape'#7'Shape11'#4'Left'#2'0'#6'Height'#2#25#3'Top'#3 -+ +'B'#1#5'Width'#2'Q'#11'Brush.Color'#7#6'clAqua'#9'OnMouseUp'#7#13'Shape1Mous' -+ +'eUp'#0#0#6'TLabel'#7'Label21'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'@'#5'Widt' -+ +'h'#2'z'#7'Caption'#6#26'Click to change the color '#11'ParentColor'#8#0#0#11 -+ +'TStringGrid'#11'StringGrid4'#4'Left'#3#158#0#6'Height'#3','#1#3'Top'#2'='#5 -+ +'Width'#3#208#0#8'ColCount'#2#1#15'DefaultColWidth'#3#200#0#16'DefaultRowHei' -+ +'ght'#2#26#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVe' -+ +'rtLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect' -+ +#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16'T' -+ +'itleFont.Height'#2#245#0#0#7'TButton'#8'Button10'#4'Left'#3#134#0#6'Height' -+ +#2#25#3'Top'#3#128#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' -+ +'on'#6#6'Return'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#0#0#6'TPa' -+ +'nel'#6'Panel1'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#182#1#5'Width'#3#247#1#5 -+ ,'Align'#7#8'alBottom'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'Cl' -+ +'ientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#1#0#7'TButton'#6'Exitbt' -+ +#4'Left'#3#150#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'K'#25'BorderSpacing.In' -+ +'nerBorder'#2#4#7'Caption'#6#5'Close'#7'OnClick'#7#11'ExitbtClick'#8'TabOrde' -+ +'r'#2#3#7'Visible'#8#0#0#7'TButton'#6'prevbt'#4'Left'#3#4#1#6'Height'#2#25#3 -+ +'Top'#2#4#5'Width'#2'C'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'<< ' -+ +' Prev'#7'OnClick'#7#11'prevbtClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'nextb' -+ +'t'#4'Left'#3'K'#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'A'#25'BorderSpacing.' -+ +'InnerBorder'#2#4#7'Caption'#6#9'Next >>'#7'OnClick'#7#11'nextbtClick'#8'T' -+ +'abOrder'#2#1#0#0#7'TButton'#5'Endbt'#4'Left'#3#144#1#6'Height'#2#25#3'Top'#2 -+ +#4#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Build Cat' -+ +'alog'#7'Enabled'#8#7'OnClick'#7#10'EndbtClick'#8'TabOrder'#2#2#0#0#7'TButto' -+ +'n'#7'Button2'#4'Left'#3#170#0#6'Height'#2#25#3'Top'#2#4#5'Width'#2'V'#25'Bo' -+ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#12'Load project'#7'OnClick'#7#12 -+ +'Button2Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button1'#4'Left'#2'O'#6'Heig' -+ +'ht'#2#25#3'Top'#2#4#5'Width'#2'W'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' -+ +'on'#6#12'Save Project'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#5#0#0#7 -+ +'TButton'#8'Button12'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#4#5'Width'#2'C'#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#13'Button1' -+ +'2Click'#8'TabOrder'#2#6#0#0#0#11'TOpenDialog'#11'OpenDialog1'#6'Filter'#6#31 -+ +'All files|*|Project files|*.prj'#11'FilterIndex'#2#0#7'Options'#11#15'ofPat' -+ +'hMustExist'#15'ofFileMustExist'#14'ofEnableSizing'#0#4'left'#3#184#0#3'top' -+ +#2#8#0#0#11'TSaveDialog'#11'SaveDialog1'#6'Filter'#6'!All files|*.*|Project ' -+ +'files|*.prj'#11'FilterIndex'#2#0#7'Options'#11#17'ofOverwritePrompt'#14'ofH' -+ +'ideReadOnly'#18'ofNoReadOnlyReturn'#14'ofEnableSizing'#12'ofViewDetail'#0#4 -+ +'left'#3#144#0#3'top'#2#8#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7 -+ +'clBlack'#20'CustomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080' -+ +#6#13'ColorC=008000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800' -+ +'080'#6#13'ColorG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'Color' -+ +'J=0000FF'#6#13'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13 -+ +'ColorN=FF00FF'#6#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6 -+ +#13'ColorR=F0CAA6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#224#0 -+ +#3'top'#2#8#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_clock.lfm skychart_3.2_up/skychart/pu_clock.lfm ---- skychart_3.2/skychart/pu_clock.lfm 2010-08-30 20:31:46.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_clock.lfm 2011-03-09 15:18:23.138273833 +0100 -@@ -1,257 +1,257 @@ --object f_clock: Tf_clock -- Left = 351 -- Height = 198 -- Top = 137 -- Width = 375 -- BorderIcons = [] -- BorderStyle = bsNone -- Caption = 'Clock' -- ClientHeight = 198 -- ClientWidth = 375 -- Color = clBlack -- FormStyle = fsStayOnTop -- Icon.Data = { -- BE0800000000010001002020000001000800A808000016000000280000002000 -- 0000400000000100080000000000000000000000000000000000000000000000 -- 000000000000500019000E0E0E0010101000500032001A1A1A00262626003131 -- 3100323232004A4229003E3E3E004A4A4A0052524A0056565600635A4A005A5A -- 5A008C6B210062626200636363009473210094733100A57B1800A57B2100AD7B -- 21005A735A006E6E6E00AD841800B5841800AD842100B5842100AD842900A584 -- 4200BD8C2100B58C29007A7A7A00BD8C29007B7B7B009C845200B58C3100BD8C -- 31006B846B00C6942100CE94210080808000BD942900AD8C4A00C6942900BD94 -- 3100AD8C5200A58C5A00BD94390084848400C6943900B5944200BD9442008686 -- 8600CE9C2900B5945200CE9C3100428C9C00CE9C3900AD9463008C8C8C00AD94 -- 6B00C69C4A00BD9C5200D6A53100A5947B004A949C00CEA53900D6A539009292 -- 9200CEA54200B59C6B00D6A542009C949400CEA54A00A59C7B00C6A55200AD9C -- 7B00CEA55200D6AD3900C6A55A00AD9C84009C9C8C00D6AD4200C6A56300949C -- 9400D6AD4A00B5A573009C9C9C00CEAD5200BDA57300CEAD5A009E9E9E00D6AD -- 5A00ADA58400C6AD6300A4A0A000B5A58C00DEB54A00CEAD6B00C6AD7300B5AD -- 8400C6AD8400B5AD8C00B5AD9400BDAD9400D6B57300AAAAAA00DEBD5A00CEB5 -- 7B00E7BD5A00D6B57B00C6B58400BDB5A500B5B5AD009CB5BD00B5B5B500E7C6 -- 6B00B6B6B600DEC67300D6BD9400C6BD9C00E7C67300DEC68400C6BDAD00BDBD -- BD00EFCE7300DEC69400E7CE7B00C0C0C000CEC6AD00E7CE8C00C2C2C200CEC6 -- B500C6C6BD00C6C6C600EFD68400EFD68C00CECEBD00E7D69C00D6CEBD00CECE -- CE00DED6B500F7DE9400E7D6B500EFDE9C00DED6C600F7DEA500ADD6DE00EFDE -- AD00D6D6D600DADADA00F7E7AD00F7E7B500DEDEDE00E6E6E600E7E7E70000FE -- FE00F7EFE700FFF7D600F2F2F200FFF7E700F7F7F700FFFFFF00000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 0000000000000000000000000000000000000000000000000000000000000000 -- 00000000000000000000000000000000000000007B3D14101431638E00000000 -- 0000000000000000000000000000000000000049162020232F323630690B0B0B -- 0A0800000000000000000000000000000000392C382E20201B1D1D2F39531111 -- 110D000000050D110D0A000000000000065C2E423C65920E8781321A342D7311 -- 110D0B19477878786D6D470A0000020B47215148689EA50F98A4944115402511 -- 110D787878786D6D6D62626247374762474A645688A49E0F76338F9227263957 -- 750D6D6D6D6D6D62626262626262624747706E4F8FA49E0F0733A5A34C1C3528 -- 440D6D6D6D626262626200626247474747807C095AA45A0322A49C12131B1C43 -- 960D6262626262626262626247474747478A8B4D749EA4249C9E9EA050201718 -- 3B0D6262626262626262624747474747378295724B8F9EA4A5A5A490482A1E7E -- 0D0B6262626262624747474747473737375F9B97605A7F899C9C8C653A291F0D -- 0D0B6262624747474747474762474737377193A38D67540C3E6A6145421D6B0D -- 0B0B47474747474747474762A5866247372B6C9BA18B795D5B585546233F0D0D -- 0B0B474747474747473737479DA2866D6237226C859A9B9177644532590D0D0B -- 0B0B47474737A2473737373762A2A599786237227A7D6F52404E66840D0D0B0B -- 0B0B003737373737372B2B374786A5A59D83004722191111110D0D0D0D0B0B0B -- 0B0A3737372B2B2B2B2B222B37629DA2A59D8F6D472219110D0D0D0D0B0B0B0B -- 0A0A2B2B2B2B2B2222222222222B629D9DA29D8F78622B19110D0D0D0B0B0B9F -- 0B0A2222222222222222221919222B86998F9D9D9986623719110D0B0B0B0B0B -- 0B0A222222222222191919191919192B8F998F9DA29D8F6D4719110B0B0B0A0A -- 0A0419191919191919191922191111196278868F9DA29D99784722110B0A0A0A -- 04041919191919191919229F191111111183786D8F9DA29D99836222110B0A04 -- 040419191919191111111919191111110D226286628F9DA29D9983622B110B0A -- 04011111111111111111001111110D0D0D0D62376D6286999D9D00866237110B -- 0A011111111111111111110D0D0D0D0D0D0D115E623747788F99998F866D3719 -- 0B0A111111111111110D0D0D0D0D0D0D0B0B0B3719621947788F99998F836D47 -- 190D0D0D0D0D0D0D990D0D0D0D0D0B0B0B0B0B0B47113719376D838F8F86786D -- 47190D0D0D0D0D0D0D0D0D0B0B0B0B0B0B0B0B0A11192211112B627886838378 -- 62470D0D0D0D0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A370A370B0D225E6D787878 -- 6D620B0B0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A0A040B190B190A0D1947626D6D -- 62620B0B0B0B0B0B0B0B0B0A0A0A0A0A0A0A04040404190A190A080B19375E62 -- 6262808080000000000000000000000000000000000000000000000000000000 -- 0000008000000000000000000000000000000000000000000000000000000000 -- 0000800080000000000000000000000000000000000000000000000000000000 -- 0000008000800000000000000000000000000000000000000000000000000000 -- 0000 -- } -- KeyPreview = True -- OnCreate = FormCreate -- OnDblClick = FormDblClick -- OnHide = FormHide -- OnMouseDown = FormMouseDown -- OnMouseMove = FormMouseMove -- OnMouseUp = FormMouseUp -- OnShow = FormShow -- LCLVersion = '0.9.29' -- object Label1: TLabel -- Left = 16 -- Height = 25 -- Top = 16 -- Width = 61 -- Caption = 'Legal :' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Label2: TLabel -- Left = 16 -- Height = 25 -- Top = 44 -- Width = 38 -- Caption = 'UT :' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Label3: TLabel -- Left = 16 -- Height = 25 -- Top = 72 -- Width = 108 -- Caption = 'Mean local :' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Label4: TLabel -- Left = 16 -- Height = 25 -- Top = 100 -- Width = 89 -- Caption = 'True solar' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock1: TLabel -- Left = 168 -- Height = 25 -- Top = 16 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock2: TLabel -- Left = 168 -- Height = 25 -- Top = 44 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock3: TLabel -- Left = 168 -- Height = 25 -- Top = 72 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock4: TLabel -- Left = 168 -- Height = 25 -- Top = 100 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Label5: TLabel -- Left = 16 -- Height = 25 -- Top = 128 -- Width = 62 -- Caption = 'Sideral' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock5: TLabel -- Left = 168 -- Height = 25 -- Top = 128 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Label6: TLabel -- Left = 16 -- Height = 25 -- Top = 156 -- Width = 31 -- Caption = 'JD:' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object clock6: TLabel -- Left = 168 -- Height = 25 -- Top = 156 -- Width = 79 -- Caption = '00:00:00' -- Font.Color = clRed -- Font.Height = -20 -- ParentColor = False -- ParentFont = False -- OnMouseDown = FormMouseDown -- OnMouseUp = FormMouseUp -- end -- object Timer1: TTimer -- Enabled = False -- OnTimer = Timer1Timer -- left = 280 -- top = 16 -- end -+object f_clock: Tf_clock -+ Left = 351 -+ Height = 198 -+ Top = 137 -+ Width = 375 -+ BorderIcons = [] -+ BorderStyle = bsNone -+ Caption = 'Clock' -+ ClientHeight = 198 -+ ClientWidth = 375 -+ Color = clBlack -+ FormStyle = fsStayOnTop -+ Icon.Data = { -+ BE0800000000010001002020000001000800A808000016000000280000002000 -+ 0000400000000100080000000000000000000000000000000000000000000000 -+ 000000000000500019000E0E0E0010101000500032001A1A1A00262626003131 -+ 3100323232004A4229003E3E3E004A4A4A0052524A0056565600635A4A005A5A -+ 5A008C6B210062626200636363009473210094733100A57B1800A57B2100AD7B -+ 21005A735A006E6E6E00AD841800B5841800AD842100B5842100AD842900A584 -+ 4200BD8C2100B58C29007A7A7A00BD8C29007B7B7B009C845200B58C3100BD8C -+ 31006B846B00C6942100CE94210080808000BD942900AD8C4A00C6942900BD94 -+ 3100AD8C5200A58C5A00BD94390084848400C6943900B5944200BD9442008686 -+ 8600CE9C2900B5945200CE9C3100428C9C00CE9C3900AD9463008C8C8C00AD94 -+ 6B00C69C4A00BD9C5200D6A53100A5947B004A949C00CEA53900D6A539009292 -+ 9200CEA54200B59C6B00D6A542009C949400CEA54A00A59C7B00C6A55200AD9C -+ 7B00CEA55200D6AD3900C6A55A00AD9C84009C9C8C00D6AD4200C6A56300949C -+ 9400D6AD4A00B5A573009C9C9C00CEAD5200BDA57300CEAD5A009E9E9E00D6AD -+ 5A00ADA58400C6AD6300A4A0A000B5A58C00DEB54A00CEAD6B00C6AD7300B5AD -+ 8400C6AD8400B5AD8C00B5AD9400BDAD9400D6B57300AAAAAA00DEBD5A00CEB5 -+ 7B00E7BD5A00D6B57B00C6B58400BDB5A500B5B5AD009CB5BD00B5B5B500E7C6 -+ 6B00B6B6B600DEC67300D6BD9400C6BD9C00E7C67300DEC68400C6BDAD00BDBD -+ BD00EFCE7300DEC69400E7CE7B00C0C0C000CEC6AD00E7CE8C00C2C2C200CEC6 -+ B500C6C6BD00C6C6C600EFD68400EFD68C00CECEBD00E7D69C00D6CEBD00CECE -+ CE00DED6B500F7DE9400E7D6B500EFDE9C00DED6C600F7DEA500ADD6DE00EFDE -+ AD00D6D6D600DADADA00F7E7AD00F7E7B500DEDEDE00E6E6E600E7E7E70000FE -+ FE00F7EFE700FFF7D600F2F2F200FFF7E700F7F7F700FFFFFF00000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 0000000000000000000000000000000000000000000000000000000000000000 -+ 00000000000000000000000000000000000000007B3D14101431638E00000000 -+ 0000000000000000000000000000000000000049162020232F323630690B0B0B -+ 0A0800000000000000000000000000000000392C382E20201B1D1D2F39531111 -+ 110D000000050D110D0A000000000000065C2E423C65920E8781321A342D7311 -+ 110D0B19477878786D6D470A0000020B47215148689EA50F98A4944115402511 -+ 110D787878786D6D6D62626247374762474A645688A49E0F76338F9227263957 -+ 750D6D6D6D6D6D62626262626262624747706E4F8FA49E0F0733A5A34C1C3528 -+ 440D6D6D6D626262626200626247474747807C095AA45A0322A49C12131B1C43 -+ 960D6262626262626262626247474747478A8B4D749EA4249C9E9EA050201718 -+ 3B0D6262626262626262624747474747378295724B8F9EA4A5A5A490482A1E7E -+ 0D0B6262626262624747474747473737375F9B97605A7F899C9C8C653A291F0D -+ 0D0B6262624747474747474762474737377193A38D67540C3E6A6145421D6B0D -+ 0B0B47474747474747474762A5866247372B6C9BA18B795D5B585546233F0D0D -+ 0B0B474747474747473737479DA2866D6237226C859A9B9177644532590D0D0B -+ 0B0B47474737A2473737373762A2A599786237227A7D6F52404E66840D0D0B0B -+ 0B0B003737373737372B2B374786A5A59D83004722191111110D0D0D0D0B0B0B -+ 0B0A3737372B2B2B2B2B222B37629DA2A59D8F6D472219110D0D0D0D0B0B0B0B -+ 0A0A2B2B2B2B2B2222222222222B629D9DA29D8F78622B19110D0D0D0B0B0B9F -+ 0B0A2222222222222222221919222B86998F9D9D9986623719110D0B0B0B0B0B -+ 0B0A222222222222191919191919192B8F998F9DA29D8F6D4719110B0B0B0A0A -+ 0A0419191919191919191922191111196278868F9DA29D99784722110B0A0A0A -+ 04041919191919191919229F191111111183786D8F9DA29D99836222110B0A04 -+ 040419191919191111111919191111110D226286628F9DA29D9983622B110B0A -+ 04011111111111111111001111110D0D0D0D62376D6286999D9D00866237110B -+ 0A011111111111111111110D0D0D0D0D0D0D115E623747788F99998F866D3719 -+ 0B0A111111111111110D0D0D0D0D0D0D0B0B0B3719621947788F99998F836D47 -+ 190D0D0D0D0D0D0D990D0D0D0D0D0B0B0B0B0B0B47113719376D838F8F86786D -+ 47190D0D0D0D0D0D0D0D0D0B0B0B0B0B0B0B0B0A11192211112B627886838378 -+ 62470D0D0D0D0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A370A370B0D225E6D787878 -+ 6D620B0B0B0B0B0B0B0B0B0B0B0B0A0A0A0A0A0A040B190B190A0D1947626D6D -+ 62620B0B0B0B0B0B0B0B0B0A0A0A0A0A0A0A04040404190A190A080B19375E62 -+ 6262808080000000000000000000000000000000000000000000000000000000 -+ 0000008000000000000000000000000000000000000000000000000000000000 -+ 0000800080000000000000000000000000000000000000000000000000000000 -+ 0000008000800000000000000000000000000000000000000000000000000000 -+ 0000 -+ } -+ KeyPreview = True -+ OnCreate = FormCreate -+ OnDblClick = FormDblClick -+ OnHide = FormHide -+ OnMouseDown = FormMouseDown -+ OnMouseMove = FormMouseMove -+ OnMouseUp = FormMouseUp -+ OnShow = FormShow -+ LCLVersion = '0.9.29' -+ object Label1: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 16 -+ Width = 61 -+ Caption = 'Legal :' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Label2: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 44 -+ Width = 38 -+ Caption = 'UT :' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Label3: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 72 -+ Width = 108 -+ Caption = 'Mean local :' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Label4: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 100 -+ Width = 89 -+ Caption = 'True solar' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock1: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 16 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock2: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 44 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock3: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 72 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock4: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 100 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Label5: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 128 -+ Width = 62 -+ Caption = 'Sideral' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock5: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 128 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Label6: TLabel -+ Left = 16 -+ Height = 25 -+ Top = 156 -+ Width = 31 -+ Caption = 'JD:' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object clock6: TLabel -+ Left = 168 -+ Height = 25 -+ Top = 156 -+ Width = 79 -+ Caption = '00:00:00' -+ Font.Color = clRed -+ Font.Height = -20 -+ ParentColor = False -+ ParentFont = False -+ OnMouseDown = FormMouseDown -+ OnMouseUp = FormMouseUp -+ end -+ object Timer1: TTimer -+ Enabled = False -+ OnTimer = Timer1Timer -+ left = 280 -+ top = 16 -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_clock.lrs skychart_3.2_up/skychart/pu_clock.lrs ---- skychart_3.2/skychart/pu_clock.lrs 2010-08-30 20:31:46.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_clock.lrs 2011-03-09 15:18:23.139273712 +0100 -@@ -1,129 +1,129 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tf_clock','FORMDATA',[ -- 'TPF0'#8'Tf_clock'#7'f_clock'#4'Left'#3'_'#1#6'Height'#3#198#0#3'Top'#3#137#0 -- +#5'Width'#3'w'#1#11'BorderIcons'#11#0#11'BorderStyle'#7#6'bsNone'#7'Caption' -- +#6#5'Clock'#12'ClientHeight'#3#198#0#11'ClientWidth'#3'w'#1#5'Color'#7#7'clB' -- +'lack'#9'FormStyle'#7#11'fsStayOnTop'#9'Icon.Data'#10#194#8#0#0#190#8#0#0#0#0 -- +#1#0#1#0' '#0#0#1#0#8#0#168#8#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0#8 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'P'#0#25#0#14#14#14 -- +#0#16#16#16#0'P'#0'2'#0#26#26#26#0'&&&'#0'111'#0'222'#0'JB)'#0'>>>'#0'JJJ'#0 -- +'RRJ'#0'VVV'#0'cZJ'#0'ZZZ'#0#140'k!'#0'bbb'#0'ccc'#0#148's!'#0#148's1'#0#165 -- +'{'#24#0#165'{!'#0#173'{!'#0'ZsZ'#0'nnn'#0#173#132#24#0#181#132#24#0#173#132 -- +'!'#0#181#132'!'#0#173#132')'#0#165#132'B'#0#189#140'!'#0#181#140')'#0'zzz'#0 -- +#189#140')'#0'{{{'#0#156#132'R'#0#181#140'1'#0#189#140'1'#0'k'#132'k'#0#198 -- +#148'!'#0#206#148'!'#0#128#128#128#0#189#148')'#0#173#140'J'#0#198#148')'#0 -- +#189#148'1'#0#173#140'R'#0#165#140'Z'#0#189#148'9'#0#132#132#132#0#198#148'9' -- +#0#181#148'B'#0#189#148'B'#0#134#134#134#0#206#156')'#0#181#148'R'#0#206#156 -- +'1'#0'B'#140#156#0#206#156'9'#0#173#148'c'#0#140#140#140#0#173#148'k'#0#198 -- +#156'J'#0#189#156'R'#0#214#165'1'#0#165#148'{'#0'J'#148#156#0#206#165'9'#0 -- +#214#165'9'#0#146#146#146#0#206#165'B'#0#181#156'k'#0#214#165'B'#0#156#148 -- +#148#0#206#165'J'#0#165#156'{'#0#198#165'R'#0#173#156'{'#0#206#165'R'#0#214 -- +#173'9'#0#198#165'Z'#0#173#156#132#0#156#156#140#0#214#173'B'#0#198#165'c'#0 -- +#148#156#148#0#214#173'J'#0#181#165's'#0#156#156#156#0#206#173'R'#0#189#165 -- +'s'#0#206#173'Z'#0#158#158#158#0#214#173'Z'#0#173#165#132#0#198#173'c'#0#164 -- +#160#160#0#181#165#140#0#222#181'J'#0#206#173'k'#0#198#173's'#0#181#173#132#0 -- +#198#173#132#0#181#173#140#0#181#173#148#0#189#173#148#0#214#181's'#0#170#170 -- +#170#0#222#189'Z'#0#206#181'{'#0#231#189'Z'#0#214#181'{'#0#198#181#132#0#189 -- +#181#165#0#181#181#173#0#156#181#189#0#181#181#181#0#231#198'k'#0#182#182#182 -- +#0#222#198's'#0#214#189#148#0#198#189#156#0#231#198's'#0#222#198#132#0#198 -- +#189#173#0#189#189#189#0#239#206's'#0#222#198#148#0#231#206'{'#0#192#192#192 -- +#0#206#198#173#0#231#206#140#0#194#194#194#0#206#198#181#0#198#198#189#0#198 -- +#198#198#0#239#214#132#0#239#214#140#0#206#206#189#0#231#214#156#0#214#206 -- +#189#0#206#206#206#0#222#214#181#0#247#222#148#0#231#214#181#0#239#222#156#0 -- +#222#214#198#0#247#222#165#0#173#214#222#0#239#222#173#0#214#214#214#0#218 -- +#218#218#0#247#231#173#0#247#231#181#0#222#222#222#0#230#230#230#0#231#231 -- +#231#0#0#254#254#0#247#239#231#0#255#247#214#0#242#242#242#0#255#247#231#0 -- +#247#247#247#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0'{='#20#16#20'1c'#142#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0'I'#22' #/260i'#11#11#11#10#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'9,8. '#27 -- +#29#29'/9S'#17#17#17#13#0#0#0#5#13#17#13#10#0#0#0#0#0#0#6'\.B<e'#146#14#135 -- +#129'2'#26'4-s'#17#17#13#11#25'GxxxmmG'#10#0#0#2#11'G!QHh'#158#165#15#152#164 -- +#148'A'#21'@%'#17#17#13'xxxxmmmbbbG7GbGJdV'#136#164#158#15'v3'#143#146'''&9W' -- +'u'#13'mmmmmbbbbbbbbGGpnO'#143#164#158#15#7'3'#165#163'L'#28'5(D'#13'mmmbbbb' -- +'b'#0'bbGGGG'#128'|'#9'Z'#164'Z'#3'"'#164#156#18#19#27#28'C'#150#13'bbbbbbbb' -- +'bbGGGGG'#138#139'Mt'#158#164'$'#156#158#158#160'P '#23#24';'#13'bbbbbbbbbGG' -- +'GGG7'#130#149'rK'#143#158#164#165#165#164#144'H*'#30'~'#13#11'bbbbbbGGGGGG7' -- +'77_'#155#151'`Z'#127#137#156#156#140'e:)'#31#13#13#11'bbbGGGGGGGbGG77q'#147 -- +#163#141'gT'#12'>jaEB'#29'k'#13#11#11'GGGGGGGGGb'#165#134'bG7+l'#155#161#139 -- +'y][XUF#?'#13#13#11#11'GGGGGGG77G'#157#162#134'mb7"l'#133#154#155#145'wdE2Y' -- +#13#13#11#11#11'GGG7'#162'G7777b'#162#165#153'xb7"z}oR@Nf'#132#13#13#11#11#11 -- +#11#0'777777++7G'#134#165#165#157#131#0'G"'#25#17#17#17#13#13#13#13#11#11#11 -- +#11#10'777+++++"+7b'#157#162#165#157#143'mG"'#25#17#13#13#13#13#11#11#11#11 -- +#10#10'+++++""""""+b'#157#157#162#157#143'xb+'#25#17#13#13#13#11#11#11#159#11 -- +#10'"""""""""'#25#25'"+'#134#153#143#157#157#153#134'b7'#25#17#13#11#11#11#11 -- +#11#11#10'""""""'#25#25#25#25#25#25#25'+'#143#153#143#157#162#157#143'mG'#25 -- +#17#11#11#11#10#10#10#4#25#25#25#25#25#25#25#25#25'"'#25#17#17#25'bx'#134#143 -- +#157#162#157#153'xG"'#17#11#10#10#10#4#4#25#25#25#25#25#25#25#25'"'#159#25#17 -- ,#17#17#17#131'xm'#143#157#162#157#153#131'b"'#17#11#10#4#4#4#25#25#25#25#25 -- +#17#17#17#25#25#25#17#17#17#13'"b'#134'b'#143#157#162#157#153#131'b+'#17#11 -- +#10#4#1#17#17#17#17#17#17#17#17#0#17#17#17#13#13#13#13'b7mb'#134#153#157#157 -- +#0#134'b7'#17#11#10#1#17#17#17#17#17#17#17#17#17#13#13#13#13#13#13#13#17'^b7' -- +'Gx'#143#153#153#143#134'm7'#25#11#10#17#17#17#17#17#17#17#13#13#13#13#13#13 -- +#13#11#11#11'7'#25'b'#25'Gx'#143#153#153#143#131'mG'#25#13#13#13#13#13#13#13 -- +#153#13#13#13#13#13#11#11#11#11#11#11'G'#17'7'#25'7m'#131#143#143#134'xmG'#25 -- +#13#13#13#13#13#13#13#13#13#11#11#11#11#11#11#11#11#10#17#25'"'#17#17'+bx' -- +#134#131#131'xbG'#13#13#13#13#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10'7' -- +#10'7'#11#13'"^mxxxmb'#11#11#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 -- +#4#11#25#11#25#10#13#25'Gbmmbb'#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 -- +#10#4#4#4#4#25#10#25#10#8#11#25'7^bbb'#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#10'KeyPreview'#9#8'OnCreate'#7#10'FormCreate'#10'OnDblClick'#7#12'For' -- +'mDblClick'#6'OnHide'#7#8'FormHide'#11'OnMouseDown'#7#13'FormMouseDown'#11'O' -- +'nMouseMove'#7#13'FormMouseMove'#9'OnMouseUp'#7#11'FormMouseUp'#6'OnShow'#7#8 -- +'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'H' -- +'eight'#2#25#3'Top'#2#16#5'Width'#2'='#7'Caption'#6#7'Legal :'#10'Font.Color' -- +#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMo' -- +'useDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6 -- +'Label2'#4'Left'#2#16#6'Height'#2#25#3'Top'#2','#5'Width'#2'&'#7'Caption'#6#4 -- +'UT :'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 -- +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' -- +'seUp'#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'H'#5'Wid' -- +'th'#2'l'#7'Caption'#6#12'Mean local :'#10'Font.Color'#7#5'clRed'#11'Font.He' -- +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' -- +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label4'#4'Left'#2#16 -- +#6'Height'#2#25#3'Top'#2'd'#5'Width'#2'Y'#7'Caption'#6#10'True solar'#10'Fon' -- +'t.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 -- +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' -- +'abel'#6'clock1'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'O'#7 -- +'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'P' -- +'arentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMous' -- +'eUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock2'#4'Left'#3#168#0#6'Height'#2 -- +#25#3'Top'#2','#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'cl' -- +'Red'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDow' -- +'n'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock' -- +'3'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'H'#5'Width'#2'O'#7'Caption'#6#8 -- +'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8 -- +#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'Form' -- +'MouseUp'#0#0#6'TLabel'#6'clock4'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'd' -- +#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.He' -- +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' -- +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#16 -- +#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Sideral'#10'Font' -- +'.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 -- +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' -- +'abel'#6'clock5'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'O' -- +#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11 -- +'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMou' -- +'seUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label6'#4'Left'#2#16#6'Height'#2#25 -- +#3'Top'#3#156#0#5'Width'#2#31#7'Caption'#6#3'JD:'#10'Font.Color'#7#5'clRed' -- +#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7 -- +#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock6'#4 -- +'Left'#3#168#0#6'Height'#2#25#3'Top'#3#156#0#5'Width'#2'O'#7'Caption'#6#8'00' -- +':00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 -- +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' -- +'seUp'#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#7'OnTimer'#7#11'Timer1Timer'#4'l' -- +'eft'#3#24#1#3'top'#2#16#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tf_clock','FORMDATA',[ -+ 'TPF0'#8'Tf_clock'#7'f_clock'#4'Left'#3'_'#1#6'Height'#3#198#0#3'Top'#3#137#0 -+ +#5'Width'#3'w'#1#11'BorderIcons'#11#0#11'BorderStyle'#7#6'bsNone'#7'Caption' -+ +#6#5'Clock'#12'ClientHeight'#3#198#0#11'ClientWidth'#3'w'#1#5'Color'#7#7'clB' -+ +'lack'#9'FormStyle'#7#11'fsStayOnTop'#9'Icon.Data'#10#194#8#0#0#190#8#0#0#0#0 -+ +#1#0#1#0' '#0#0#1#0#8#0#168#8#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0#8 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'P'#0#25#0#14#14#14 -+ +#0#16#16#16#0'P'#0'2'#0#26#26#26#0'&&&'#0'111'#0'222'#0'JB)'#0'>>>'#0'JJJ'#0 -+ +'RRJ'#0'VVV'#0'cZJ'#0'ZZZ'#0#140'k!'#0'bbb'#0'ccc'#0#148's!'#0#148's1'#0#165 -+ +'{'#24#0#165'{!'#0#173'{!'#0'ZsZ'#0'nnn'#0#173#132#24#0#181#132#24#0#173#132 -+ +'!'#0#181#132'!'#0#173#132')'#0#165#132'B'#0#189#140'!'#0#181#140')'#0'zzz'#0 -+ +#189#140')'#0'{{{'#0#156#132'R'#0#181#140'1'#0#189#140'1'#0'k'#132'k'#0#198 -+ +#148'!'#0#206#148'!'#0#128#128#128#0#189#148')'#0#173#140'J'#0#198#148')'#0 -+ +#189#148'1'#0#173#140'R'#0#165#140'Z'#0#189#148'9'#0#132#132#132#0#198#148'9' -+ +#0#181#148'B'#0#189#148'B'#0#134#134#134#0#206#156')'#0#181#148'R'#0#206#156 -+ +'1'#0'B'#140#156#0#206#156'9'#0#173#148'c'#0#140#140#140#0#173#148'k'#0#198 -+ +#156'J'#0#189#156'R'#0#214#165'1'#0#165#148'{'#0'J'#148#156#0#206#165'9'#0 -+ +#214#165'9'#0#146#146#146#0#206#165'B'#0#181#156'k'#0#214#165'B'#0#156#148 -+ +#148#0#206#165'J'#0#165#156'{'#0#198#165'R'#0#173#156'{'#0#206#165'R'#0#214 -+ +#173'9'#0#198#165'Z'#0#173#156#132#0#156#156#140#0#214#173'B'#0#198#165'c'#0 -+ +#148#156#148#0#214#173'J'#0#181#165's'#0#156#156#156#0#206#173'R'#0#189#165 -+ +'s'#0#206#173'Z'#0#158#158#158#0#214#173'Z'#0#173#165#132#0#198#173'c'#0#164 -+ +#160#160#0#181#165#140#0#222#181'J'#0#206#173'k'#0#198#173's'#0#181#173#132#0 -+ +#198#173#132#0#181#173#140#0#181#173#148#0#189#173#148#0#214#181's'#0#170#170 -+ +#170#0#222#189'Z'#0#206#181'{'#0#231#189'Z'#0#214#181'{'#0#198#181#132#0#189 -+ +#181#165#0#181#181#173#0#156#181#189#0#181#181#181#0#231#198'k'#0#182#182#182 -+ +#0#222#198's'#0#214#189#148#0#198#189#156#0#231#198's'#0#222#198#132#0#198 -+ +#189#173#0#189#189#189#0#239#206's'#0#222#198#148#0#231#206'{'#0#192#192#192 -+ +#0#206#198#173#0#231#206#140#0#194#194#194#0#206#198#181#0#198#198#189#0#198 -+ +#198#198#0#239#214#132#0#239#214#140#0#206#206#189#0#231#214#156#0#214#206 -+ +#189#0#206#206#206#0#222#214#181#0#247#222#148#0#231#214#181#0#239#222#156#0 -+ +#222#214#198#0#247#222#165#0#173#214#222#0#239#222#173#0#214#214#214#0#218 -+ +#218#218#0#247#231#173#0#247#231#181#0#222#222#222#0#230#230#230#0#231#231 -+ +#231#0#0#254#254#0#247#239#231#0#255#247#214#0#242#242#242#0#255#247#231#0 -+ +#247#247#247#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0'{='#20#16#20'1c'#142#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0'I'#22' #/260i'#11#11#11#10#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'9,8. '#27 -+ +#29#29'/9S'#17#17#17#13#0#0#0#5#13#17#13#10#0#0#0#0#0#0#6'\.B<e'#146#14#135 -+ +#129'2'#26'4-s'#17#17#13#11#25'GxxxmmG'#10#0#0#2#11'G!QHh'#158#165#15#152#164 -+ +#148'A'#21'@%'#17#17#13'xxxxmmmbbbG7GbGJdV'#136#164#158#15'v3'#143#146'''&9W' -+ +'u'#13'mmmmmbbbbbbbbGGpnO'#143#164#158#15#7'3'#165#163'L'#28'5(D'#13'mmmbbbb' -+ +'b'#0'bbGGGG'#128'|'#9'Z'#164'Z'#3'"'#164#156#18#19#27#28'C'#150#13'bbbbbbbb' -+ +'bbGGGGG'#138#139'Mt'#158#164'$'#156#158#158#160'P '#23#24';'#13'bbbbbbbbbGG' -+ +'GGG7'#130#149'rK'#143#158#164#165#165#164#144'H*'#30'~'#13#11'bbbbbbGGGGGG7' -+ +'77_'#155#151'`Z'#127#137#156#156#140'e:)'#31#13#13#11'bbbGGGGGGGbGG77q'#147 -+ +#163#141'gT'#12'>jaEB'#29'k'#13#11#11'GGGGGGGGGb'#165#134'bG7+l'#155#161#139 -+ +'y][XUF#?'#13#13#11#11'GGGGGGG77G'#157#162#134'mb7"l'#133#154#155#145'wdE2Y' -+ +#13#13#11#11#11'GGG7'#162'G7777b'#162#165#153'xb7"z}oR@Nf'#132#13#13#11#11#11 -+ +#11#0'777777++7G'#134#165#165#157#131#0'G"'#25#17#17#17#13#13#13#13#11#11#11 -+ +#11#10'777+++++"+7b'#157#162#165#157#143'mG"'#25#17#13#13#13#13#11#11#11#11 -+ +#10#10'+++++""""""+b'#157#157#162#157#143'xb+'#25#17#13#13#13#11#11#11#159#11 -+ +#10'"""""""""'#25#25'"+'#134#153#143#157#157#153#134'b7'#25#17#13#11#11#11#11 -+ +#11#11#10'""""""'#25#25#25#25#25#25#25'+'#143#153#143#157#162#157#143'mG'#25 -+ +#17#11#11#11#10#10#10#4#25#25#25#25#25#25#25#25#25'"'#25#17#17#25'bx'#134#143 -+ +#157#162#157#153'xG"'#17#11#10#10#10#4#4#25#25#25#25#25#25#25#25'"'#159#25#17 -+ ,#17#17#17#131'xm'#143#157#162#157#153#131'b"'#17#11#10#4#4#4#25#25#25#25#25 -+ +#17#17#17#25#25#25#17#17#17#13'"b'#134'b'#143#157#162#157#153#131'b+'#17#11 -+ +#10#4#1#17#17#17#17#17#17#17#17#0#17#17#17#13#13#13#13'b7mb'#134#153#157#157 -+ +#0#134'b7'#17#11#10#1#17#17#17#17#17#17#17#17#17#13#13#13#13#13#13#13#17'^b7' -+ +'Gx'#143#153#153#143#134'm7'#25#11#10#17#17#17#17#17#17#17#13#13#13#13#13#13 -+ +#13#11#11#11'7'#25'b'#25'Gx'#143#153#153#143#131'mG'#25#13#13#13#13#13#13#13 -+ +#153#13#13#13#13#13#11#11#11#11#11#11'G'#17'7'#25'7m'#131#143#143#134'xmG'#25 -+ +#13#13#13#13#13#13#13#13#13#11#11#11#11#11#11#11#11#10#17#25'"'#17#17'+bx' -+ +#134#131#131'xbG'#13#13#13#13#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10'7' -+ +#10'7'#11#13'"^mxxxmb'#11#11#11#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 -+ +#4#11#25#11#25#10#13#25'Gbmmbb'#11#11#11#11#11#11#11#11#11#10#10#10#10#10#10 -+ +#10#4#4#4#4#25#10#25#10#8#11#25'7^bbb'#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#128#0#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#10'KeyPreview'#9#8'OnCreate'#7#10'FormCreate'#10'OnDblClick'#7#12'For' -+ +'mDblClick'#6'OnHide'#7#8'FormHide'#11'OnMouseDown'#7#13'FormMouseDown'#11'O' -+ +'nMouseMove'#7#13'FormMouseMove'#9'OnMouseUp'#7#11'FormMouseUp'#6'OnShow'#7#8 -+ +'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'H' -+ +'eight'#2#25#3'Top'#2#16#5'Width'#2'='#7'Caption'#6#7'Legal :'#10'Font.Color' -+ +#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMo' -+ +'useDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6 -+ +'Label2'#4'Left'#2#16#6'Height'#2#25#3'Top'#2','#5'Width'#2'&'#7'Caption'#6#4 -+ +'UT :'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 -+ +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' -+ +'seUp'#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'H'#5'Wid' -+ +'th'#2'l'#7'Caption'#6#12'Mean local :'#10'Font.Color'#7#5'clRed'#11'Font.He' -+ +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' -+ +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label4'#4'Left'#2#16 -+ +#6'Height'#2#25#3'Top'#2'd'#5'Width'#2'Y'#7'Caption'#6#10'True solar'#10'Fon' -+ +'t.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 -+ +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' -+ +'abel'#6'clock1'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'O'#7 -+ +'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'P' -+ +'arentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMous' -+ +'eUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock2'#4'Left'#3#168#0#6'Height'#2 -+ +#25#3'Top'#2','#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'cl' -+ +'Red'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDow' -+ +'n'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock' -+ +'3'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'H'#5'Width'#2'O'#7'Caption'#6#8 -+ +'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8 -+ +#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'Form' -+ +'MouseUp'#0#0#6'TLabel'#6'clock4'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'd' -+ +#5'Width'#2'O'#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.He' -+ +'ight'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMou' -+ +'seDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#16 -+ +#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Sideral'#10'Font' -+ +'.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8 -+ +#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TL' -+ +'abel'#6'clock5'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#3#128#0#5'Width'#2'O' -+ +#7'Caption'#6#8'00:00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11 -+ +'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMou' -+ +'seUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'Label6'#4'Left'#2#16#6'Height'#2#25 -+ +#3'Top'#3#156#0#5'Width'#2#31#7'Caption'#6#3'JD:'#10'Font.Color'#7#5'clRed' -+ +#11'Font.Height'#2#236#11'ParentColor'#8#10'ParentFont'#8#11'OnMouseDown'#7 -+ +#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMouseUp'#0#0#6'TLabel'#6'clock6'#4 -+ +'Left'#3#168#0#6'Height'#2#25#3'Top'#3#156#0#5'Width'#2'O'#7'Caption'#6#8'00' -+ +':00:00'#10'Font.Color'#7#5'clRed'#11'Font.Height'#2#236#11'ParentColor'#8#10 -+ +'ParentFont'#8#11'OnMouseDown'#7#13'FormMouseDown'#9'OnMouseUp'#7#11'FormMou' -+ +'seUp'#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#7'OnTimer'#7#11'Timer1Timer'#4'l' -+ +'eft'#3#24#1#3'top'#2#16#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_config_catalog.lfm skychart_3.2_up/skychart/pu_config_catalog.lfm ---- skychart_3.2/skychart/pu_config_catalog.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_catalog.lfm 2011-03-09 15:18:57.139093108 +0100 -@@ -1,7 +1,7 @@ - object f_config_catalog: Tf_config_catalog -- Left = 540 -+ Left = 493 - Height = 573 -- Top = 102 -+ Top = 97 - Width = 523 - ActiveControl = MainPanel - BorderStyle = bsToolWindow -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 12 - Height = 520 -@@ -30,15 +30,14 @@ - Width = 498 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 1 - object Page1: TTabSheet - Caption = 'Catalog' -- ClientHeight = 460 -- ClientWidth = 494 -+ ClientHeight = 429 -+ ClientWidth = 492 - object Label37: TLabel -- Left = 98 -+ Left = 96 - Height = 14 - Top = 17 - Width = 246 -@@ -104,8 +103,8 @@ - end - object Page2: TTabSheet - Caption = 'CdC Stars' -- ClientHeight = 460 -- ClientWidth = 494 -+ ClientHeight = 429 -+ ClientWidth = 492 - object Label2: TLabel - Left = 8 - Height = 14 -@@ -425,7 +424,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 3 - OnChange = CDCStarPathChange - end -@@ -439,7 +437,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 7 - OnChange = CDCStarPathChange - end -@@ -453,7 +450,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 11 - OnChange = CDCStarPathChange - end -@@ -466,7 +462,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 15 - OnChange = gcv3Change - end -@@ -479,15 +474,14 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 20 - OnChange = wds3Change - end - end - object Page3: TTabSheet - Caption = 'CdC Nebulae' -- ClientHeight = 460 -- ClientWidth = 494 -+ ClientHeight = 429 -+ ClientWidth = 492 - object Label3: TLabel - Left = 9 - Height = 14 -@@ -617,7 +611,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 3 - OnChange = CDCNebPathChange - end -@@ -690,7 +683,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 3 - OnChange = CDCNebPathChange - end -@@ -973,7 +965,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 15 - OnChange = CDCNebPathChange - end -@@ -986,7 +977,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 16 - OnChange = CDCNebPathChange - end -@@ -999,7 +989,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 17 - OnChange = CDCNebPathChange - end -@@ -1012,7 +1001,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 18 - OnChange = CDCNebPathChange - end -@@ -1025,7 +1013,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 19 - OnChange = CDCNebPathChange - end -@@ -1033,8 +1020,17 @@ - end - object Page5: TTabSheet - Caption = 'Other software' -- ClientHeight = 460 -- ClientWidth = 494 -+ ClientHeight = 429 -+ ClientWidth = 492 -+ object Label21: TLabel -+ Left = 17 -+ Height = 14 -+ Top = 37 -+ Width = 78 -+ Caption = 'Deepsky 2000' -+ ParentColor = False -+ WordWrap = True -+ end - object dsgsc3: TDirectoryEdit - Tag = 13 - Left = 326 -@@ -1045,7 +1041,6 @@ - ShowHidden = False - ButtonWidth = 21 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - OnChange = CDCStarPathChange - end -@@ -1059,7 +1054,6 @@ - ShowHidden = False - ButtonWidth = 21 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 1 - OnChange = CDCStarPathChange - end -@@ -1073,7 +1067,6 @@ - ShowHidden = False - ButtonWidth = 21 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 2 - OnChange = CDCStarPathChange - end -@@ -1203,20 +1196,11 @@ - ShowHint = True - TabOrder = 11 - end -- object Label21: TLabel -- Left = 17 -- Height = 14 -- Top = 37 -- Width = 78 -- Caption = 'Deepsky 2000' -- ParentColor = False -- WordWrap = True -- end - end - object Page4: TTabSheet - Caption = 'Obsolete' -- ClientHeight = 460 -- ClientWidth = 494 -+ ClientHeight = 429 -+ ClientWidth = 492 - object Label88: TLabel - Left = 9 - Height = 14 -@@ -1265,6 +1249,16 @@ - ParentColor = False - WordWrap = True - end -+ object Label95: TLabel -+ Left = 9 -+ Height = 38 -+ Top = 349 -+ Width = 80 -+ AutoSize = False -+ Caption = 'Replaced by PGC' -+ ParentColor = False -+ WordWrap = True -+ end - object TYCbox: TCheckBox - Tag = 3 - Left = 87 -@@ -1443,7 +1437,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 3 - OnChange = CDCStarPathChange - end -@@ -1457,7 +1450,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 7 - OnChange = CDCStarPathChange - end -@@ -1471,7 +1463,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 11 - OnChange = CDCStarPathChange - end -@@ -1485,7 +1476,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 15 - OnChange = CDCStarPathChange - end -@@ -1499,7 +1489,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 16 - OnChange = CDCStarPathChange - end -@@ -1513,7 +1502,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 17 - OnChange = CDCStarPathChange - end -@@ -1527,7 +1515,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 18 - OnChange = CDCStarPathChange - end -@@ -1677,7 +1664,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 29 - OnChange = CDCNebPathChange - end -@@ -1723,16 +1709,6 @@ - ShowHint = True - TabOrder = 32 - end -- object Label95: TLabel -- Left = 9 -- Height = 38 -- Top = 349 -- Width = 80 -- AutoSize = False -- Caption = 'Replaced by PGC' -- ParentColor = False -- WordWrap = True -- end - end - end - object FOVPanel: TPanel -diff -ur skychart_3.2/skychart/pu_config_catalog.lrs skychart_3.2_up/skychart/pu_config_catalog.lrs ---- skychart_3.2/skychart/pu_config_catalog.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_catalog.lrs 2011-03-09 15:18:57.107097037 +0100 -@@ -1,79 +1,79 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_catalog','FORMDATA',[ -- 'TPF0'#17'Tf_config_catalog'#16'f_config_catalog'#4'Left'#3#28#2#6'Height'#3 -- +'='#2#3'Top'#2'f'#5'Width'#3#11#2#13'ActiveControl'#7#9'MainPanel'#11'Border' -+ 'TPF0'#17'Tf_config_catalog'#16'f_config_catalog'#4'Left'#3#237#1#6'Height'#3 -+ +'='#2#3'Top'#2'a'#5'Width'#3#11#2#13'ActiveControl'#7#9'MainPanel'#11'Border' - +'Style'#7#12'bsToolWindow'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3'='#2#11 - +'ClientWidth'#3#11#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCre' - +'ate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' -- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#12#6'Height'#3 -- +#8#2#3'Top'#2#8#5'Width'#3#244#1#12'ClientHeight'#3#8#2#11'ClientWidth'#3#244 -- +#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'PageControl1'#4'L' -- +'eft'#2#1#6'Height'#3#208#1#3'Top'#2#1#5'Width'#3#242#1#10'ActivePage'#7#5'P' -- +'age1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#1#0 -- +#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3#204#1#11'C' -- +'lientWidth'#3#238#1#0#6'TLabel'#7'Label37'#4'Left'#2'b'#6'Height'#2#14#3'To' -- +'p'#2#17#5'Width'#3#246#0#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11#5 -- +'akTop'#7'akRight'#0#7'Caption'#6')Stars and Nebulae catalogs prepared with ' -- +#11'ParentColor'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#0#6'Height' -- +#3'Y'#1#3'Top'#2'0'#5'Width'#3#226#1#8'ColCount'#2#6#15'DefaultColWidth'#2#18 -- +#16'DefaultRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVer' -- +'tLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#11'goRowMoving'#9 -- +'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#2#8'TabOrder'#2#1#16'Titl' -- +'eFont.Height'#2#245#10'OnDrawCell'#7#19'StringGrid3DrawCell'#9'OnMouseUp'#7 -- +#18'StringGrid3MouseUp'#12'OnSelectCell'#7#21'StringGrid3SelectCell'#13'OnSe' -- +'tEditText'#7#22'StringGrid3SetEditText'#9'ColWidths'#1#2#18#2'6'#2'6'#2'6'#3 -- +#4#1#2#18#0#0#0#7'TButton'#12'CatgenButton'#4'Left'#3'p'#1#6'Height'#2#25#3 -- +'Top'#2#12#5'Width'#2'`'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Ca' -- +'tGen'#7'OnClick'#7#11'CatgenClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'addcat' -- +#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#3 -- +'Add'#7'OnClick'#7#11'AddCatClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'delcat'#4 -- +'Left'#3#248#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#6'De' -- +'lete'#7'OnClick'#7#11'DelCatClick'#8'TabOrder'#2#3#0#0#0#9'TTabSheet'#5'Pag' -- +'e2'#7'Caption'#6#9'CdC Stars'#12'ClientHeight'#3#204#1#11'ClientWidth'#3#238 -- +#1#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#3#139 -- +#0#7'Caption'#6#25'CDC Stars Catalog Setting'#11'ParentColor'#8#0#0#6'TLabel' -- +#7'Label65'#4'Left'#2'D'#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#18#7'Caption' -- +#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label66'#4'Left'#2'D'#6'Height'#2 -- +#14#3'Top'#2'h'#5'Width'#2#18#7'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLa' -- +'bel'#7'Label87'#4'Left'#2'D'#6'Height'#2#14#3'Top'#3#147#0#5'Width'#2#18#7 -- +'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#10#1#6 -- +'Height'#2#14#3'Top'#2#23#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor' -- +#8#0#0#6'TLabel'#7'Label28'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2#7#5'Width' -- +#2'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#7'Label17'#4'Left'#3'/'#1#6'Height'#2#14#3'Top'#2 -- +#23#5'Width'#2#28#7'Caption'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' -- +'el27'#4'Left'#3'Y'#1#6'Height'#2#14#3'Top'#2#23#5'Width'#2'4'#7'Caption'#6 -- +#10'Files Path'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left'#2#8#6'Hei' -- +'ght'#2#14#3'Top'#2'@'#5'Width'#2#27#7'Caption'#6#5'Stars'#11'ParentColor'#8 -- +#0#0#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#242#0#5'Width' -- +#2'2'#7'Caption'#6#9'Variables'#11'ParentColor'#8#0#0#6'TLabel'#7'Label20'#4 -- +'Left'#2#8#6'Height'#2#14#3'Top'#3'I'#1#5'Width'#2'-'#7'Caption'#6#7'Doubles' -- +#11'ParentColor'#8#0#0#9'TCheckBox'#6'BSCbox'#3'Tag'#2#1#4'Left'#2'\'#6'Heig' -- +'ht'#2#18#4'Hint'#6'1Bright Stars Catalog 5th Edition (Hoffleit 1991)'#3'To' -- +'p'#2'='#5'Width'#3#139#0#11'HelpContext'#2'd'#7'Caption'#6#19'Bright Star C' -- +'atalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9 -- +#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Fbsc1'#3'Tag'#2#1#4'Left'#3#10#1#6'Heigh' -- +'t'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8 -- +'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2 -- +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Fbsc2'#3'Tag'#2#1#4'Left'#3'2'#1#6'He' -- +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value' -- +#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'SKYbox'#3'Tag'#2#2#4'Left'#2'\'#6'H' -- +'eight'#2#18#4'Hint'#6',SKY2000 - Master Star Catalog (Sande+ 1998)'#3'Top' -- +#2'e'#5'Width'#2'M'#11'HelpContext'#2'e'#7'Caption'#6#7'SKY2000'#7'OnClick'#7 -- +#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9 -- +'TLongEdit'#5'Fsky1'#3'Tag'#2#2#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0.' -- +'.10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -- ,'r'#2#5#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0 -- +#0#9'TLongEdit'#5'Fsky2'#3'Tag'#2#2#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5 -- +'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' -- +'der'#2#6#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10 -- +#0#0#9'TCheckBox'#6'TY2Box'#3'Tag'#2#4#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6 -- +'!The Tycho-2 Catalogue (Hog+ 2000)'#3'Top'#3#144#0#5'Width'#2'{'#11'HelpCon' -- +'text'#2'f'#7'Caption'#6#15'Tycho 2 Catalog'#7'OnClick'#7#15'CDCStarSelClick' -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'Fty21' -- +#3'Tag'#2#4#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#144#0#5 -+ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#12#6'Height' -+ +#3#8#2#3'Top'#2#8#5'Width'#3#244#1#12'ClientHeight'#3#8#2#11'ClientWidth'#3 -+ +#244#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'PageControl1' -+ +#4'Left'#2#1#6'Height'#3#208#1#3'Top'#2#1#5'Width'#3#242#1#10'ActivePage'#7#5 -+ +'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet' -+ +#5'Page1'#7'Caption'#6#7'Catalog'#12'ClientHeight'#3#173#1#11'ClientWidth'#3 -+ +#236#1#0#6'TLabel'#7'Label37'#4'Left'#2'`'#6'Height'#2#14#3'Top'#2#17#5'Widt' -+ +'h'#3#246#0#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11#5'akTop'#7'akRig' -+ +'ht'#0#7'Caption'#6')Stars and Nebulae catalogs prepared with '#11'ParentCol' -+ +'or'#8#0#0#11'TStringGrid'#11'StringGrid3'#4'Left'#2#0#6'Height'#3'Y'#1#3'To' -+ +'p'#2'0'#5'Width'#3#226#1#8'ColCount'#2#6#15'DefaultColWidth'#2#18#16'Defaul' -+ +'tRowHeight'#2#18#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15 -+ +'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#11'goRowMoving'#9'goEditing' -+ +#18'goAlwaysShowEditor'#0#8'RowCount'#2#2#8'TabOrder'#2#1#16'TitleFont.Heigh' -+ +'t'#2#245#10'OnDrawCell'#7#19'StringGrid3DrawCell'#9'OnMouseUp'#7#18'StringG' -+ +'rid3MouseUp'#12'OnSelectCell'#7#21'StringGrid3SelectCell'#13'OnSetEditText' -+ +#7#22'StringGrid3SetEditText'#9'ColWidths'#1#2#18#2'6'#2'6'#2'6'#3#4#1#2#18#0 -+ +#0#0#7'TButton'#12'CatgenButton'#4'Left'#3'p'#1#6'Height'#2#25#3'Top'#2#12#5 -+ +'Width'#2'`'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'CatGen'#7'OnCl' -+ +'ick'#7#11'CatgenClick'#8'TabOrder'#2#0#0#0#7'TButton'#6'addcat'#4'Left'#3 -+ +#144#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#3'Add'#7'OnC' -+ +'lick'#7#11'AddCatClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'delcat'#4'Left'#3 -+ +#248#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'K'#7'Caption'#6#6'Delete'#7 -+ +'OnClick'#7#11'DelCatClick'#8'TabOrder'#2#3#0#0#0#9'TTabSheet'#5'Page2'#7'Ca' -+ +'ption'#6#9'CdC Stars'#12'ClientHeight'#3#173#1#11'ClientWidth'#3#236#1#0#6 -+ +'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#3#139#0#7 -+ +'Caption'#6#25'CDC Stars Catalog Setting'#11'ParentColor'#8#0#0#6'TLabel'#7 -+ +'Label65'#4'Left'#2'D'#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#18#7'Caption'#6 -+ +#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label66'#4'Left'#2'D'#6'Height'#2#14 -+ +#3'Top'#2'h'#5'Width'#2#18#7'Caption'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel' -+ +#7'Label87'#4'Left'#2'D'#6'Height'#2#14#3'Top'#3#147#0#5'Width'#2#18#7'Capti' -+ +'on'#6#2'pm'#11'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#10#1#6'Hei' -+ +'ght'#2#14#3'Top'#2#23#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#7'Label28'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2#7#5'Width'#2 -+ +'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'Paren' -+ +'tColor'#8#0#0#6'TLabel'#7'Label17'#4'Left'#3'/'#1#6'Height'#2#14#3'Top'#2#23 -+ +#5'Width'#2#28#7'Caption'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#7'Label2' -+ +'7'#4'Left'#3'Y'#1#6'Height'#2#14#3'Top'#2#23#5'Width'#2'4'#7'Caption'#6#10 -+ +'Files Path'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left'#2#8#6'Height' -+ +#2#14#3'Top'#2'@'#5'Width'#2#27#7'Caption'#6#5'Stars'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#242#0#5'Width'#2'2'#7 -+ +'Caption'#6#9'Variables'#11'ParentColor'#8#0#0#6'TLabel'#7'Label20'#4'Left'#2 -+ +#8#6'Height'#2#14#3'Top'#3'I'#1#5'Width'#2'-'#7'Caption'#6#7'Doubles'#11'Par' -+ +'entColor'#8#0#0#9'TCheckBox'#6'BSCbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2 -+ +#18#4'Hint'#6'1Bright Stars Catalog 5th Edition (Hoffleit 1991)'#3'Top'#2'=' -+ +#5'Width'#3#139#0#11'HelpContext'#2'd'#7'Caption'#6#19'Bright Star Catalog'#7 -+ +'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#0#0#0#9'TLongEdit'#5'Fbsc1'#3'Tag'#2#1#4'Left'#3#10#1#6'Height'#2#21#4 -+ +'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxV' -+ +'alue'#2#10#0#0#9'TLongEdit'#5'Fbsc2'#3'Tag'#2#1#4'Left'#3'2'#1#6'Height'#2 -+ +#21#4'Hint'#6#5'0..10'#3'Top'#2'='#5'Width'#2#30#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 -+ +'MaxValue'#2#10#0#0#9'TCheckBox'#6'SKYbox'#3'Tag'#2#2#4'Left'#2'\'#6'Height' -+ +#2#18#4'Hint'#6',SKY2000 - Master Star Catalog (Sande+ 1998)'#3'Top'#2'e'#5 -+ +'Width'#2'M'#11'HelpContext'#2'e'#7'Caption'#6#7'SKY2000'#7'OnClick'#7#15'CD' -+ +'CStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLo' -+ +'ngEdit'#5'Fsky1'#3'Tag'#2#2#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10' -+ +#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5 -+ ,#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'T' -+ +'LongEdit'#5'Fsky2'#3'Tag'#2#2#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5'0..' -+ +'10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' -+ +#2#6#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0 -+ +#9'TCheckBox'#6'TY2Box'#3'Tag'#2#4#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'!Th' -+ +'e Tycho-2 Catalogue (Hog+ 2000)'#3'Top'#3#144#0#5'Width'#2'{'#11'HelpContex' -+ +'t'#2'f'#7'Caption'#6#15'Tycho 2 Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14 -+ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'Fty21'#3 -+ +'Tag'#2#4#4'Left'#3#10#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#144#0#5 - +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7 - +#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ft' - +'y22'#3'Tag'#2#4#4'Left'#3'2'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 -@@ -103,366 +103,360 @@ - +'ington Double Star'#7'OnClick'#7#11'WDSboxClick'#14'ParentShowHint'#8#8'Sho' - +'wHint'#9#8'TabOrder'#2#17#0#0#14'TDirectoryEdit'#4'bsc3'#3'Tag'#2#1#4'Left' - +#3'W'#1#6'Height'#2#21#3'Top'#2'='#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 -- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 -- +'MaxLength'#2#0#8'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'T' -- +'DirectoryEdit'#4'sky3'#3'Tag'#2#2#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#2'e' -- +#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden' -- +#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#7#8 -- +'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'ty23'#3'Tag'#2#4 -- +#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#3#144#0#5'Width'#2'o'#17'OnAcceptDirec' -- +'tory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumG' -- +'lyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#11#8'OnChange'#7#17'CDCStarPathCh' -- +'ange'#0#0#14'TDirectoryEdit'#4'gcv3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2 -- +#21#3'Top'#3#239#0#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Num' -- +'Glyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#10'gcv3Change'#0 -- +#0#14'TDirectoryEdit'#4'wds3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2#21#3'Top' -- +#3'F'#1#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1 -- +#9'MaxLength'#2#0#8'TabOrder'#2#20#8'OnChange'#7#10'wds3Change'#0#0#0#9'TTab' -- +'Sheet'#5'Page3'#7'Caption'#6#11'CdC Nebulae'#12'ClientHeight'#3#204#1#11'Cl' -- +'ientWidth'#3#238#1#0#6'TLabel'#6'Label3'#4'Left'#2#9#6'Height'#2#14#3'Top'#2 -- +#7#5'Width'#3#156#0#7'Caption'#6#27'CDC Nebulae Catalog Setting'#11'ParentCo' -- +'lor'#8#0#0#6'TLabel'#7'Label15'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#0#5 -- +'Width'#2'G'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number' -- +#11'ParentColor'#8#0#0#6'TLabel'#8'Label116'#4'Left'#3#23#1#6'Height'#2#14#3 -- +'Top'#2#16#5'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0#0#6'TLabel' -- +#8'Label117'#4'Left'#3'?'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#28#7'Capti' -- +'on'#6#4' max'#11'ParentColor'#8#0#0#6'TLabel'#8'Label118'#4'Left'#3'i'#1#6 -- +'Height'#2#14#3'Top'#2#16#5'Width'#2'4'#7'Caption'#6#10'Files Path'#11'Paren' -- +'tColor'#8#0#0#6'TLabel'#8'Label120'#4'Left'#2#9#6'Height'#2#14#3'Top'#3#133 -- ,#1#5'Width'#3'L'#1#9'Alignment'#7#8'taCenter'#7'Caption'#6'=Use only catalog' -- +' from one of the three block at the same time'#11'ParentColor'#8#0#0#6'TLab' -- +'el'#12'LabelWarning'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#149#1#5'Width'#3 -- +#225#1#8'AutoSize'#8#7'Caption'#6#7'Warning'#11'ParentColor'#8#7'Visible'#8#8 -- +'WordWrap'#9#0#0#6'TPanel'#8'PanelDef'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'$' -- +#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'Clie' -- +'ntWidth'#3#232#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label119'#4'Left'#2#9#6'Heig' -- +'ht'#2#14#3'Top'#2#19#5'Width'#2'('#7'Caption'#6#7'Default'#11'ParentColor'#8 -- +#0#0#9'TCheckBox'#6'SACbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6 -- +'$Saguaro Astronomy Club Database 8.1'#3'Top'#2#16#5'Width'#2'2'#11'HelpCon' -- +'text'#2'k'#7'Caption'#6#4'SAC '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentSh' -- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fsac1'#3'Tag'#2#1 -- +#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30 -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebF' -- +'ield1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fsac2'#3'Tag' -- +#2#1#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2 -- +#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCN' -- +'ebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'sac3' -- +#3'Tag'#2#1#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#16#5'Width'#2'h'#10'ShowH' -- +'idden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder' -- +#2#3#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#6'TPanel'#8'PanelGen'#4'Left'#2 -- +#0#6'Height'#2'-'#3'Top'#2'T'#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised' -- +#12'ClientHeight'#2'-'#11'ClientWidth'#3#232#1#8'TabOrder'#2#1#0#6'TLabel'#7 -- +'Label69'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#14#5'Width'#2'*'#7'Caption'#6#7 -- +'General'#11'ParentColor'#8#0#0#9'TCheckBox'#6'NGCbox'#3'Tag'#2#2#4'Left'#2 -- +'\'#6'Height'#2#18#4'Hint'#6'YNew General Catalogue of Nebulae and Cluster o' -- +'f Stars (Dreyer 1888) (Sky Pub. Corp. 1988)'#3'Top'#2#11#5'Width'#3#152#0#11 -- +'HelpContext'#2'k'#7'Caption'#6#19'New General Catalog'#7'OnClick'#7#14'CDCN' -- +'ebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongE' -- +'dit'#5'fngc1'#3'Tag'#2#2#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 -- +'Top'#2#11#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8 -+ +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8 -+ +'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4 -+ +'sky3'#3'Tag'#2#2#4'Left'#3'W'#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2'o'#17 -+ +'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth' -+ +#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStarPathChange'#0 -+ +#0#14'TDirectoryEdit'#4'ty23'#3'Tag'#2#4#4'Left'#3'W'#1#6'Height'#2#21#3'Top' -+ +#3#144#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'Sho' -+ +'wHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#11#8'OnChang' -+ +'e'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'gcv3'#3'Tag'#2#1#4'Left' -+ +#3'X'#1#6'Height'#2#21#3'Top'#3#239#0#5'Width'#2'o'#10'ShowHidden'#8#11'Butt' -+ +'onWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#10'gcv3Change' -+ +#0#0#14'TDirectoryEdit'#4'wds3'#3'Tag'#2#1#4'Left'#3'X'#1#6'Height'#2#21#3'T' -+ +'op'#3'F'#1#5'Width'#2'o'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs' -+ +#2#1#8'TabOrder'#2#20#8'OnChange'#7#10'wds3Change'#0#0#0#9'TTabSheet'#5'Page' -+ +'3'#7'Caption'#6#11'CdC Nebulae'#12'ClientHeight'#3#173#1#11'ClientWidth'#3 -+ +#236#1#0#6'TLabel'#6'Label3'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'Width'#3 -+ +#156#0#7'Caption'#6#27'CDC Nebulae Catalog Setting'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#7'Label15'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#0#5'Width'#2'G'#9 -+ +'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field number'#11'ParentColo' -+ +'r'#8#0#0#6'TLabel'#8'Label116'#4'Left'#3#23#1#6'Height'#2#14#3'Top'#2#16#5 -+ +'Width'#2#25#7'Caption'#6#4' min'#11'ParentColor'#8#0#0#6'TLabel'#8'Label117' -+ +#4'Left'#3'?'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4' max' -+ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label118'#4'Left'#3'i'#1#6'Height'#2#14#3 -+ +'Top'#2#16#5'Width'#2'4'#7'Caption'#6#10'Files Path'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#8'Label120'#4'Left'#2#9#6'Height'#2#14#3'Top'#3#133#1#5'Width'#3'L' -+ +#1#9'Alignment'#7#8'taCenter'#7'Caption'#6'=Use only catalog from one of the' -+ ,' three block at the same time'#11'ParentColor'#8#0#0#6'TLabel'#12'LabelWarn' -+ +'ing'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#149#1#5'Width'#3#225#1#8'AutoSize' -+ +#8#7'Caption'#6#7'Warning'#11'ParentColor'#8#7'Visible'#8#8'WordWrap'#9#0#0#6 -+ +'TPanel'#8'PanelDef'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'$'#5'Width'#3#232#1 -+ +#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'ClientWidth'#3#232#1#8 -+ +'TabOrder'#2#0#0#6'TLabel'#8'Label119'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#19 -+ +#5'Width'#2'('#7'Caption'#6#7'Default'#11'ParentColor'#8#0#0#9'TCheckBox'#6 -+ +'SACbox'#3'Tag'#2#1#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'$Saguaro Astronomy' -+ +' Club Database 8.1'#3'Top'#2#16#5'Width'#2'2'#11'HelpContext'#2'k'#7'Capti' -+ +'on'#6#4'SAC '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHi' -+ +'nt'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fsac1'#3'Tag'#2#1#4'Left'#3#21#1#6 -+ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebField1Change'#5'Valu' -+ +'e'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fsac2'#3'Tag'#2#1#4'Left'#3'='#1 -+ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#16#5'Width'#2#30#14'ParentShowHi' -+ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCNebField2Change'#5 -+ +'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'sac3'#3'Tag'#2#1#4'Lef' -+ +'t'#3'a'#1#6'Height'#2#21#3'Top'#2#16#5'Width'#2'h'#10'ShowHidden'#8#11'Butt' -+ +'onWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#16'CDCNebPathC' -+ +'hange'#0#0#0#6'TPanel'#8'PanelGen'#4'Left'#2#0#6'Height'#2'-'#3'Top'#2'T'#5 -+ +'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#2'-'#11'Client' -+ +'Width'#3#232#1#8'TabOrder'#2#1#0#6'TLabel'#7'Label69'#4'Left'#2#9#6'Height' -+ +#2#14#3'Top'#2#14#5'Width'#2'*'#7'Caption'#6#7'General'#11'ParentColor'#8#0#0 -+ +#9'TCheckBox'#6'NGCbox'#3'Tag'#2#2#4'Left'#2'\'#6'Height'#2#18#4'Hint'#6'YNe' -+ +'w General Catalogue of Nebulae and Cluster of Stars (Dreyer 1888) (Sky Pub.' -+ +' Corp. 1988)'#3'Top'#2#11#5'Width'#3#152#0#11'HelpContext'#2'k'#7'Caption'#6 -+ +#19'New General Catalog'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 -+ +#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'fngc1'#3'Tag'#2#2#4'Left'#3 -+ +#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#11#5'Width'#2#30#14'ParentS' -+ +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#18'CDCNebField1Chang' -+ +'e'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fngc2'#3'Tag'#2#2#4'Lef' -+ +'t'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#11#5'Width'#2#30#14'Pa' -+ +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#18'CDCNebField2' -+ +'Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'ngc3'#3'Tag' -+ +#2#2#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#11#5'Width'#2'h'#10'ShowHidden'#8 -+ +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#16'CDCN' -+ +'ebPathChange'#0#0#0#6'TPanel'#9'PanelSpec'#4'Left'#2#0#6'Height'#3#250#0#3 -+ +'Top'#3#132#0#5'Width'#3#232#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight' -+ +#3#250#0#11'ClientWidth'#3#232#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label22'#4'Le' -+ +'ft'#2#9#6'Height'#2#31#3'Top'#2#12#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6 -+ +#7'Nebulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label23'#4'Left' -+ +#2#9#6'Height'#2' '#3'Top'#2'<'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#8'G' -+ +'alaxies'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label24'#4'Left'#2 -+ +#9#6'Height'#2#30#3'Top'#2'l'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#13'Op' -+ +'en clusters'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label25'#4'Lef' -+ +'t'#2#9#6'Height'#2#30#3'Top'#3#157#0#5'Width'#2'Q'#8'AutoSize'#8#7'Caption' -+ +#6#17'Globular clusters'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Lab' -+ +'el26'#4'Left'#2#9#6'Height'#2'&'#3'Top'#3#204#0#5'Width'#2'R'#8'AutoSize'#8 -+ +#7'Caption'#6#17'Planetary nebulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TC' -+ +'heckBox'#6'OCLbox'#3'Tag'#2#6#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'-Open C' -+ +'luster Data 5th Edition (Lynga 1987)'#3'Top'#2'i'#5'Width'#3#136#0#11'He' -+ +'lpContext'#2'n'#7'Caption'#6#17'Open Cluster Data'#7'OnClick'#7#14'CDCNebSe' -+ +'lClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TCheckBox' -+ +#6'GCMbox'#3'Tag'#2#7#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'1Globular Cluste' -+ +'rs in the Milky Way (Harris, 1997)'#3'Top'#3#153#0#5'Width'#3#202#0#11'Help' -+ +'Context'#2'o'#7'Caption'#6#29'Globular Cl. in the Milky Way'#7'OnClick'#7#14 -+ +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#0#0#9'TC' -+ +'heckBox'#6'GPNbox'#3'Tag'#2#8#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'EStrasb' -+ +'ourg-ESO Catalogue of Galactic Planetary Nebulae (Acker+, 1992)'#3'Top'#3 -+ +#201#0#5'Width'#3#198#0#11'HelpContext'#2'p'#7'Caption'#6#29'Cat, Galactic P' -+ +'lanetary Neb. '#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#2#0#0#9'TCheckBox'#6'LBNbox'#3'Tag'#2#3#4'Left'#2']'#6 -+ +'Height'#2#18#4'Hint'#6'2Lynds'' Catalogue of Bright Nebulae (Lynds 1965)' -+ +#3'Top'#2#9#5'Width'#3#154#0#11'HelpContext'#2'l'#7'Caption'#6#20'Lynds Brig' -+ ,'ht Nebulae'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#3#0#0#9'TCheckBox'#6'PGCBox'#3'Tag'#2#5#4'Left'#2']'#6'Heig' -+ +'ht'#2#18#4'Hint'#6#25'PGC/LEDA (Paturel+ 2009)'#3'Top'#2':'#5'Width'#2'^' -+ +#11'HelpContext'#2't'#7'Caption'#6#10'PGC / LEDA'#7'OnClick'#7#14'CDCNebSelC' -+ +'lick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5 -+ +'flbn1'#3'Tag'#2#3#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2 -+ +#9#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChan' -+ +'ge'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit' -+ +#5'flbn2'#3'Tag'#2#3#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top' -+ +#2#9#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnCh' -+ +'ange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdi' -+ +'t'#5'fpgc1'#3'Tag'#2#5#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'T' -+ +'op'#2':'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8 - +'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLon' -- +'gEdit'#5'fngc2'#3'Tag'#2#2#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10' -- +#3'Top'#2#11#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 -- +#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'T' -- +'DirectoryEdit'#4'ngc3'#3'Tag'#2#2#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2#11 -- +#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxL' -- +'ength'#2#0#8'TabOrder'#2#3#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#6'TPane' -- +'l'#9'PanelSpec'#4'Left'#2#0#6'Height'#3#250#0#3'Top'#3#132#0#5'Width'#3#232 -- +#1#10'BevelInner'#7#8'bvRaised'#12'ClientHeight'#3#250#0#11'ClientWidth'#3 -- +#232#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label22'#4'Left'#2#9#6'Height'#2#31#3'T' -- +'op'#2#12#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#7'Nebulae'#11'ParentColor' -- +#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label23'#4'Left'#2#9#6'Height'#2' '#3'Top'#2 -- +'<'#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#8'Galaxies'#11'ParentColor'#8#8 -- +'WordWrap'#9#0#0#6'TLabel'#7'Label24'#4'Left'#2#9#6'Height'#2#30#3'Top'#2'l' -- +#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#13'Open clusters'#11'ParentColor'#8 -- +#8'WordWrap'#9#0#0#6'TLabel'#7'Label25'#4'Left'#2#9#6'Height'#2#30#3'Top'#3 -- +#157#0#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#17'Globular clusters'#11'Par' -- +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label26'#4'Left'#2#9#6'Height'#2 -- +'&'#3'Top'#3#204#0#5'Width'#2'R'#8'AutoSize'#8#7'Caption'#6#17'Planetary neb' -- +'ulae'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#6'OCLbox'#3'Tag'#2#6 -- +#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'-Open Cluster Data 5th Edition (Ly' -- +'nga 1987)'#3'Top'#2'i'#5'Width'#3#136#0#11'HelpContext'#2'n'#7'Caption'#6#17 -- +'Open Cluster Data'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'S' -- +'howHint'#9#8'TabOrder'#2#0#0#0#9'TCheckBox'#6'GCMbox'#3'Tag'#2#7#4'Left'#2 -- +']'#6'Height'#2#18#4'Hint'#6'1Globular Clusters in the Milky Way (Harris, 19' -- +'97)'#3'Top'#3#153#0#5'Width'#3#202#0#11'HelpContext'#2'o'#7'Caption'#6#29'G' -- +'lobular Cl. in the Milky Way'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShow' -- +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#1#0#0#9'TCheckBox'#6'GPNbox'#3'Tag'#2#8 -- +#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'EStrasbourg-ESO Catalogue of Galactic' -- +' Planetary Nebulae (Acker+, 1992)'#3'Top'#3#201#0#5'Width'#3#198#0#11'HelpC' -- +'ontext'#2'p'#7'Caption'#6#29'Cat, Galactic Planetary Neb. '#7'OnClick'#7#14 -- +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#0#0#9'TC' -- +'heckBox'#6'LBNbox'#3'Tag'#2#3#4'Left'#2']'#6'Height'#2#18#4'Hint'#6'2Lynds' -- ,''' Catalogue of Bright Nebulae (Lynds 1965)'#3'Top'#2#9#5'Width'#3#154#0 -- +#11'HelpContext'#2'l'#7'Caption'#6#20'Lynds Bright Nebulae'#7'OnClick'#7#14 -- +'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#9'TC' -- +'heckBox'#6'PGCBox'#3'Tag'#2#5#4'Left'#2']'#6'Height'#2#18#4'Hint'#6#25'PGC/' -- +'LEDA (Paturel+ 2009)'#3'Top'#2':'#5'Width'#2'^'#11'HelpContext'#2't'#7'Cap' -- +'tion'#6#10'PGC / LEDA'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'flbn1'#3'Tag'#2#3#4'Left'#3 -- +#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#9#5'Width'#2#30#14'ParentSh' -- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#18'CDCNebField1Change' -- +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'flbn2'#3'Tag'#2#3#4'Left'#3 -- +'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2#9#5'Width'#2#30#14'ParentSh' -- +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#18'CDCNebField2Change' -- +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fpgc1'#3'Tag'#2#5#4'Left'#3 -- +#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2':'#5'Width'#2#30#14'ParentS' -- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#18'CDCNebField1Chang' -- +'e'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fpgc2'#3'Tag'#2#5#4'Lef' -- +'t'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2':'#5'Width'#2#30#14'Pa' -- +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#18'CDCNebField2' -- +'Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'focl1'#3'Tag'#2#6#4 -- +'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'i'#5'Width'#2#30#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#18'CDCNebFiel' -- +'d1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'focl2'#3'Tag'#2#6 -- +#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'i'#5'Width'#2#30 -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange'#7#18'CDCNeb' -- +'Field2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgcm1'#3'Tag' -- +#2#7#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#153#0#5'Width' -- +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#8'OnChange'#7#18'C' -- +'DCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgcm2'#3 -- +'Tag'#2#7#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#153#0#5 -- +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#8'OnChange' -- +#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'f' -- +'gpn1'#3'Tag'#2#8#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 -- +#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'O' -- +'nChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLong' -- +'Edit'#5'fgpn2'#3'Tag'#2#8#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 -- +'Top'#3#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 -- +#14#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14 -- +'TDirectoryEdit'#4'lbn3'#3'Tag'#2#3#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#2#9 -- +#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxL' -- +'ength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDire' -- +'ctoryEdit'#4'pgc3'#3'Tag'#2#5#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#2':'#5'W' -- +'idth'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLeng' -- +'th'#2#0#8'TabOrder'#2#16#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirecto' -- +'ryEdit'#4'ocl3'#3'Tag'#2#6#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2'i'#5'Widt' -- +'h'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength' -- +#2#0#8'TabOrder'#2#17#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEd' -- +'it'#4'gcm3'#3'Tag'#2#7#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#153#0#5'Width' -- +#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0 -- +#8'TabOrder'#2#18#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4 -- +'gpn3'#3'Tag'#2#8#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#201#0#5'Width'#2'h' -- +#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'T' -- +'abOrder'#2#19#8'OnChange'#7#16'CDCNebPathChange'#0#0#0#0#9'TTabSheet'#5'Pag' -- +'e5'#7'Caption'#6#14'Other software'#12'ClientHeight'#3#204#1#11'ClientWidth' -- +#3#238#1#0#14'TDirectoryEdit'#6'dsgsc3'#3'Tag'#2#13#4'Left'#3'F'#1#6'Height' -- +#2#21#3'Top'#3#165#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirec' -- +'tory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#9'MaxLength'#2 -- +#0#8'TabOrder'#2#0#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit' -- +#6'dstyc3'#3'Tag'#2#12#4'Left'#3'E'#1#6'Height'#2#21#3'Top'#2'w'#5'Width'#2 -- +'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'Butto' -- +'nWidth'#2#21#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#8'OnChange'#7 -- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#7'dsbase3'#3'Tag'#2#11#4'Left' -- +#3'E'#1#6'Height'#2#21#3'Top'#2'M'#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 -- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#9 -- +'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'TL' -- ,'ongEdit'#7'dsbase2'#3'Tag'#2#11#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0' -- +'..10'#3'Top'#2'M'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -- +'er'#2#3#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10 -- +#0#0#9'TLongEdit'#6'dstyc2'#3'Tag'#2#12#4'Left'#3' '#1#6'Height'#2#21#4'Hint' -- +#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'T' -- +'abOrder'#2#4#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue' -- +#2#10#0#0#9'TLongEdit'#6'dsgsc2'#3'Tag'#2#13#4'Left'#3'!'#1#6'Height'#2#21#4 -- +'Hint'#6#5'0..10'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHi' -- +'nt'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 -- +'MaxValue'#2#10#0#0#9'TLongEdit'#6'dsgsc1'#3'Tag'#2#13#4'Left'#3#249#0#6'Hei' -- +'ght'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint' -- +#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCStarField1Change'#5'Val' -- +'ue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'dstyc1'#3'Tag'#2#12#4'Left'#3 -- +#249#0#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'Parent' -- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#19'CDCStarField1Cha' -- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#7'dsbase1'#3'Tag'#2#11#4 -- +'Left'#3#249#0#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2#30#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#19'CDCStarFie' -- +'ld1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#8'dsgscBox'#3'Tag' -- +#2#13#4'Left'#2'J'#6'Height'#2#18#4'Hint'#6'EThe Hubble Space Telescope Guid' -- +'e Star Catalog from Deepsky 2000 CDROM'#3'Top'#3#165#0#5'Width'#3#169#0#11 -- +'HelpContext'#2'h'#7'Caption'#6#20'Deepsky 2000 HST GSC'#7'OnClick'#7#15'CDC' -- +'StarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#0#0#9'TChe' -- +'ckBox'#8'dstycBox'#3'Tag'#2#12#4'Left'#2'I'#6'Height'#2#18#4'Hint'#6'%Tycho' -- +' Catalog from Deepsky 2000 CDROM'#3'Top'#2'w'#5'Width'#3#193#0#11'HelpConte' -- +'xt'#2'h'#7'Caption'#6#24'Deepsky 2000 Super Tycho'#7'OnClick'#7#15'CDCStarS' -- +'elClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#0#0#9'TCheckBo' -- +'x'#9'dsbasebox'#3'Tag'#2#11#4'Left'#2'J'#6'Height'#2#18#4'Hint'#6'7Deepsky ' -- +'2000 base directory with stars to magnitude 5.5'#3'Top'#2'M'#5'Width'#3#144 -- +#0#11'HelpContext'#2'h'#7'Caption'#6#17'Deepsky 2000 base'#7'OnClick'#7#15'C' -- +'DCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#0#0#6'T' -- +'Label'#7'Label21'#4'Left'#2#17#6'Height'#2#14#3'Top'#2'%'#5'Width'#2'N'#7'C' -- +'aption'#6#12'Deepsky 2000'#11'ParentColor'#8#8'WordWrap'#9#0#0#0#9'TTabShee' -- +'t'#5'Page4'#7'Caption'#6#8'Obsolete'#12'ClientHeight'#3#204#1#11'ClientWidt' -- +'h'#3#238#1#0#6'TLabel'#7'Label88'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'W' -- +'idth'#3#31#1#7'Caption'#6'1CDC Obsolete Catalog (but you can still use them' -- +')'#11'ParentColor'#8#0#0#6'TLabel'#7'Label91'#4'Left'#2#9#6'Height'#2'"'#3 -- +'Top'#2'5'#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2' -- +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label92'#4'Left'#2#9#6'Heig' -- +'ht'#2'%'#3'Top'#2'e'#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced b' -- +'y Tycho-2'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label93'#4'Left' -- +#2#9#6'Height'#2'&'#3'Top'#3#149#0#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6 -- +#17'Replaced by UCAC3'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label' -- +'94'#4'Left'#2#9#6'Height'#2' '#3'Top'#3'5'#1#5'Width'#2'F'#8'AutoSize'#8#7 -- +'Caption'#6#13'Not available'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBo' -- +'x'#6'TYCbox'#3'Tag'#2#3#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#30'The Tycho ' -- +'Catalogue (ESA 1997)'#3'Top'#2'5'#5'Width'#2'e'#11'HelpContext'#2'f'#7'Capt' -- +'ion'#6#13'Tycho Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint' -- +#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Ftyc1'#3'Tag'#2#3#4'Left' -- +#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'Parent' -- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Cha' -- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftyc2'#3'Tag'#2#3#4'L' -- +'eft'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarFie' -- +'ld2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'TICbox'#3'Tag'#2 -- +#5#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'4Tycho Input Catalog (Revised Vers' -- +'ion) (Egret+ 1992)'#3'Top'#2'e'#5'Width'#3#137#0#11'HelpContext'#2'g'#7'Cap' -- +'tion'#6#20'Tycho Input Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'Parent' -- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'Ftic1'#3'Tag'#2 -- +#5#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30 -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStar' -- +'Field1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftic2'#3'Tag' -- +#2#5#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2 -- +#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCS' -- ,'tarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'GSCbox'#3 -- +'Tag'#2#8#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'=The Hubble Space Telescope ' -- +'Guide Star Catalog ( Lasker 1990)'#3'Top'#3#149#0#5'Width'#3#158#0#11'Help' -- +'Context'#2'h'#7'Caption'#6#22'HST Guide Star Catalog'#7'OnClick'#7#15'CDCSt' -- +'arSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongE' -- +'dit'#5'fgsc1'#3'Tag'#2#8#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 -- +'Top'#3#149#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 -- +#9#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 -- +'TLongEdit'#5'fgsc2'#3'Tag'#2#8#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0.' -- +'.10'#3'Top'#3#149#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' -- +'rder'#2#10#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2 -- +#10#0#0#9'TCheckBox'#6'MCTBox'#3'Tag'#2#10#4'Left'#2'W'#6'Height'#2#21#4'Hin' -- +'t'#6#19'AUDE MicroCat CDROM'#3'Top'#3'5'#1#5'Width'#2'j'#11'HelpContext'#2 -- +'q'#7'Caption'#6#13'AUDE MicroCat'#7'OnClick'#7#15'CDCStarSelClick'#14'Paren' -- +'tShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#0#0#9'TLongEdit'#5'fmct1'#3'Tag' -- +#2#10#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width' -- +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#19'C' -- +'DCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fmct2' -- +#3'Tag'#2#10#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5 -- +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange' -- +#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEd' -- +'it'#4'tyc3'#3'Tag'#2#3#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'5'#5'Width'#2 -- +'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'Butto' -- +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#3#8'OnChange'#7 -- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'tic3'#3'Tag'#2#5#4'Left'#3'R' -- +#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAc' -- +'ceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'Max' -- +'Length'#2#0#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDir' -- +'ectoryEdit'#4'gsc3'#3'Tag'#2#8#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#149#0 -- +#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden' -- +#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#11#8 -- +'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'mct3'#3'Tag'#2#10 -- +#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3'5'#1#5'Width'#2'l'#17'OnAcceptDirect' -+ +'gEdit'#5'fpgc2'#3'Tag'#2#5#4'Left'#3'>'#1#6'Height'#2#21#4'Hint'#6#5'0..10' -+ +#3'Top'#2':'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8 -+ +#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TL' -+ +'ongEdit'#5'focl1'#3'Tag'#2#6#4'Left'#3#21#1#6'Height'#2#21#4'Hint'#6#5'0..1' -+ +'0'#3'Top'#2'i'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' -+ +#2#9#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 -+ +'TLongEdit'#5'focl2'#3'Tag'#2#6#4'Left'#3'='#1#6'Height'#2#21#4'Hint'#6#5'0.' -+ +'.10'#3'Top'#2'i'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#10#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0 -+ +#0#9'TLongEdit'#5'fgcm1'#3'Tag'#2#7#4'Left'#3#22#1#6'Height'#2#21#4'Hint'#6#5 -+ +'0..10'#3'Top'#3#153#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' -+ +'bOrder'#2#11#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2 -+ +#10#0#0#9'TLongEdit'#5'fgcm2'#3'Tag'#2#7#4'Left'#3'>'#1#6'Height'#2#21#4'Hin' -+ +'t'#6#5'0..10'#3'Top'#3#153#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#12#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxV' -+ +'alue'#2#10#0#0#9'TLongEdit'#5'fgpn1'#3'Tag'#2#8#4'Left'#3#22#1#6'Height'#2 -+ +#21#4'Hint'#6#5'0..10'#3'Top'#3#201#0#5'Width'#2#30#14'ParentShowHint'#8#8'S' -+ +'howHint'#9#8'TabOrder'#2#13#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2 -+ +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgpn2'#3'Tag'#2#8#4'Left'#3'>'#1#6'He' -+ +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#201#0#5'Width'#2#30#14'ParentShowHin' -+ +'t'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#18'CDCNebField2Change'#5 -+ +'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'lbn3'#3'Tag'#2#3#4'Lef' -+ +'t'#3'b'#1#6'Height'#2#21#3'Top'#2#9#5'Width'#2'h'#10'ShowHidden'#8#11'Butto' -+ +'nWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#16'CDCNebPathC' -+ +'hange'#0#0#14'TDirectoryEdit'#4'pgc3'#3'Tag'#2#5#4'Left'#3'b'#1#6'Height'#2 -+ +#21#3'Top'#2':'#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGly' -+ +'phs'#2#1#8'TabOrder'#2#16#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirect' -+ +'oryEdit'#4'ocl3'#3'Tag'#2#6#4'Left'#3'a'#1#6'Height'#2#21#3'Top'#2'i'#5'Wid' -+ +'th'#2'h'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder' -+ +#2#17#8'OnChange'#7#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4'gcm3'#3'Ta' -+ +'g'#2#7#4'Left'#3'b'#1#6'Height'#2#21#3'Top'#3#153#0#5'Width'#2'h'#10'ShowHi' -+ +'dden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#18#8'OnChange'#7 -+ +#16'CDCNebPathChange'#0#0#14'TDirectoryEdit'#4'gpn3'#3'Tag'#2#8#4'Left'#3'b' -+ +#1#6'Height'#2#21#3'Top'#3#201#0#5'Width'#2'h'#10'ShowHidden'#8#11'ButtonWid' -+ +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#19#8'OnChange'#7#16'CDCNebPathChang' -+ +'e'#0#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#14'Other software'#12'ClientH' -+ +'eight'#3#173#1#11'ClientWidth'#3#236#1#0#6'TLabel'#7'Label21'#4'Left'#2#17#6 -+ +'Height'#2#14#3'Top'#2'%'#5'Width'#2'N'#7'Caption'#6#12'Deepsky 2000'#11'Par' -+ +'entColor'#8#8'WordWrap'#9#0#0#14'TDirectoryEdit'#6'dsgsc3'#3'Tag'#2#13#4'Le' -+ +'ft'#3'F'#1#6'Height'#2#21#3'Top'#3#165#0#5'Width'#2'o'#17'OnAcceptDirectory' -+ +#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs' -+ +#2#1#8'TabOrder'#2#0#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEd' -+ +'it'#6'dstyc3'#3'Tag'#2#12#4'Left'#3'E'#1#6'Height'#2#21#3'Top'#2'w'#5'Width' -+ +#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'But' -+ +'tonWidth'#2#21#9'NumGlyphs'#2#1#8'TabOrder'#2#1#8'OnChange'#7#17'CDCStarPat' -+ +'hChange'#0#0#14'TDirectoryEdit'#7'dsbase3'#3'Tag'#2#11#4'Left'#3'E'#1#6'Hei' -+ +'ght'#2#21#3'Top'#2'M'#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDir' -+ +'ectory'#10'ShowHidden'#8#11'ButtonWidth'#2#21#9'NumGlyphs'#2#1#8'TabOrder'#2 -+ +#2#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'TLongEdit'#7'dsbase2'#3'Tag'#2 -+ +#11#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2 -+ ,#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#19'CDCS' -+ +'tarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'dstyc2'#3 -+ +'Tag'#2#12#4'Left'#3' '#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'w'#5'Wi' -+ +'dth'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnChange'#7 -+ +#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'ds' -+ +'gsc2'#3'Tag'#2#13#4'Left'#3'!'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3 -+ +#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'On' -+ +'Change'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLong' -+ +'Edit'#6'dsgsc1'#3'Tag'#2#13#4'Left'#3#249#0#6'Height'#2#21#4'Hint'#6#5'0..1' -+ +'0'#3'Top'#3#165#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -+ +'er'#2#6#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10 -+ +#0#0#9'TLongEdit'#6'dstyc1'#3'Tag'#2#12#4'Left'#3#249#0#6'Height'#2#21#4'Hin' -+ +'t'#6#5'0..10'#3'Top'#2'w'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8 -+ +'TabOrder'#2#7#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue' -+ +#2#10#0#0#9'TLongEdit'#7'dsbase1'#3'Tag'#2#11#4'Left'#3#249#0#6'Height'#2#21 -+ +#4'Hint'#6#5'0..10'#3'Top'#2'M'#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHin' -+ +'t'#9#8'TabOrder'#2#8#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2#0#8'M' -+ +'axValue'#2#10#0#0#9'TCheckBox'#8'dsgscBox'#3'Tag'#2#13#4'Left'#2'J'#6'Heigh' -+ +'t'#2#18#4'Hint'#6'EThe Hubble Space Telescope Guide Star Catalog from Deeps' -+ +'ky 2000 CDROM'#3'Top'#3#165#0#5'Width'#3#169#0#11'HelpContext'#2'h'#7'Capti' -+ +'on'#6#20'Deepsky 2000 HST GSC'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentSh' -+ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'dstycBox'#3'Tag' -+ +#2#12#4'Left'#2'I'#6'Height'#2#18#4'Hint'#6'%Tycho Catalog from Deepsky 2000' -+ +' CDROM'#3'Top'#2'w'#5'Width'#3#193#0#11'HelpContext'#2'h'#7'Caption'#6#24'D' -+ +'eepsky 2000 Super Tycho'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'dsbasebox'#3'Tag'#2#11#4 -+ +'Left'#2'J'#6'Height'#2#18#4'Hint'#6'7Deepsky 2000 base directory with stars' -+ +' to magnitude 5.5'#3'Top'#2'M'#5'Width'#3#144#0#11'HelpContext'#2'h'#7'Capt' -+ +'ion'#6#17'Deepsky 2000 base'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShow' -+ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7'Captio' -+ +'n'#6#8'Obsolete'#12'ClientHeight'#3#173#1#11'ClientWidth'#3#236#1#0#6'TLabe' -+ +'l'#7'Label88'#4'Left'#2#9#6'Height'#2#14#3'Top'#2#7#5'Width'#3#31#1#7'Capti' -+ +'on'#6'1CDC Obsolete Catalog (but you can still use them)'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#7'Label91'#4'Left'#2#9#6'Height'#2'"'#3'Top'#2'5'#5'Width'#2 -+ +'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2'#11'ParentColor'#8#8'W' -+ +'ordWrap'#9#0#0#6'TLabel'#7'Label92'#4'Left'#2#9#6'Height'#2'%'#3'Top'#2'e'#5 -+ +'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#19'Replaced by Tycho-2'#11'ParentCol' -+ +'or'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label93'#4'Left'#2#9#6'Height'#2'&'#3'T' -+ +'op'#3#149#0#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#17'Replaced by UCAC3' -+ +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label94'#4'Left'#2#9#6'Heig' -+ +'ht'#2' '#3'Top'#3'5'#1#5'Width'#2'F'#8'AutoSize'#8#7'Caption'#6#13'Not avai' -+ +'lable'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label95'#4'Left'#2#9 -+ +#6'Height'#2'&'#3'Top'#3']'#1#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#15'Re' -+ +'placed by PGC'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#6'TYCbox'#3 -+ +'Tag'#2#3#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#30'The Tycho Catalogue (ESA ' -+ +'1997)'#3'Top'#2'5'#5'Width'#2'e'#11'HelpContext'#2'f'#7'Caption'#6#13'Tycho' -+ +' Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'Ftyc1'#3'Tag'#2#3#4'Left'#3#5#1#6'Heig' -+ +'ht'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'ParentShowHint'#8#8 -+ +'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#19'CDCStarField1Change'#5'Value'#2 -+ +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftyc2'#3'Tag'#2#3#4'Left'#3'-'#1#6'He' -+ +'ight'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'5'#5'Width'#2#30#14'ParentShowHint'#8 -+ +#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#19'CDCStarField2Change'#5'Value' -+ +#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'TICbox'#3'Tag'#2#5#4'Left'#2'W'#6'H' -+ +'eight'#2#21#4'Hint'#6'4Tycho Input Catalog (Revised Version) (Egret+ 1992)' -+ +#3'Top'#2'e'#5'Width'#3#137#0#11'HelpContext'#2'g'#7'Caption'#6#20'Tycho In' -+ +'put Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHi' -+ +'nt'#9#8'TabOrder'#2#4#0#0#9'TLongEdit'#5'Ftic1'#3'Tag'#2#5#4'Left'#3#5#1#6 -+ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#19'CDCStarField1Change'#5'Val' -+ +'ue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'Ftic2'#3'Tag'#2#5#4'Left'#3'-'#1 -+ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#2'e'#5'Width'#2#30#14'ParentShowHi' -+ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#19'CDCStarField2Change'#5 -+ +'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6'GSCbox'#3'Tag'#2#8#4'Left'#2 -+ ,'W'#6'Height'#2#21#4'Hint'#6'=The Hubble Space Telescope Guide Star Catalog ' -+ +' ( Lasker 1990)'#3'Top'#3#149#0#5'Width'#3#158#0#11'HelpContext'#2'h'#7'Cap' -+ +'tion'#6#22'HST Guide Star Catalog'#7'OnClick'#7#15'CDCStarSelClick'#14'Pare' -+ +'ntShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#0#0#9'TLongEdit'#5'fgsc1'#3'Tag' -+ +#2#8#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#149#0#5'Width' -+ +#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#19'CD' -+ +'CStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fgsc2'#3 -+ +'Tag'#2#8#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#149#0#5 -+ +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange' -+ +#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#6 -+ +'MCTBox'#3'Tag'#2#10#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6#19'AUDE MicroCat ' -+ +'CDROM'#3'Top'#3'5'#1#5'Width'#2'j'#11'HelpContext'#2'q'#7'Caption'#6#13'AUD' -+ +'E MicroCat'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHin' -+ +'t'#9#8'TabOrder'#2#12#0#0#9'TLongEdit'#5'fmct1'#3'Tag'#2#10#4'Left'#3#5#1#6 -+ +'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width'#2#30#14'ParentShowHi' -+ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#19'CDCStarField1Change'#5 -+ +'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fmct2'#3'Tag'#2#10#4'Left'#3 -+ +'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3'5'#1#5'Width'#2#30#14'Paren' -+ +'tShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#19'CDCStarField2C' -+ +'hange'#5'Value'#2#0#8'MaxValue'#2#10#0#0#14'TDirectoryEdit'#4'tyc3'#3'Tag'#2 -+ +#3#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'5'#5'Width'#2'l'#17'OnAcceptDirect' - +'ory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGl' -- +'yphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#15#8'OnChange'#7#17'CDCStarPathCha' -- +'nge'#0#0#14'TDirectoryEdit'#4'usn3'#3'Tag'#2#9#4'Left'#3'R'#1#6'Height'#2#21 -- +#3'Top'#3#13#1#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory' -- +#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'T' -- +'abOrder'#2#16#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5 -- +'gscc3'#3'Tag'#2#7#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#229#0#5'Width'#2'o' -+ +'yphs'#2#1#8'TabOrder'#2#3#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirec' -+ +'toryEdit'#4'tic3'#3'Tag'#2#5#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#2'e'#5'Wi' -+ +'dth'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11 -+ +'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#7#8'OnChange'#7#17'CDCStar' -+ +'PathChange'#0#0#14'TDirectoryEdit'#4'gsc3'#3'Tag'#2#8#4'Left'#3'R'#1#6'Heig' -+ +'ht'#2#21#3'Top'#3#149#0#5'Width'#2'l'#17'OnAcceptDirectory'#7#18'CDCAcceptD' -+ +'irectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder' -+ +#2#11#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#4'mct3'#3'T' -+ +'ag'#2#10#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3'5'#1#5'Width'#2'l'#17'OnAcc' -+ +'eptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23 -+ +#9'NumGlyphs'#2#1#8'TabOrder'#2#15#8'OnChange'#7#17'CDCStarPathChange'#0#0#14 -+ +'TDirectoryEdit'#4'usn3'#3'Tag'#2#9#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#13 -+ +#1#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidde' -+ +'n'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#16#8'OnChange'#7#17 -+ +'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'gscc3'#3'Tag'#2#7#4'Left'#3'R'#1 -+ +#6'Height'#2#21#3'Top'#3#229#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18'CDCA' -+ +'cceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Ta' -+ +'bOrder'#2#17#8'OnChange'#7#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'g' -+ +'scf3'#3'Tag'#2#6#4'Left'#3'R'#1#6'Height'#2#21#3'Top'#3#189#0#5'Width'#2'o' - +#17'OnAcceptDirectory'#7#18'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWi' -- +'dth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#17#8'OnChange'#7 -- +#17'CDCStarPathChange'#0#0#14'TDirectoryEdit'#5'gscf3'#3'Tag'#2#6#4'Left'#3 -- +'R'#1#6'Height'#2#21#3'Top'#3#189#0#5'Width'#2'o'#17'OnAcceptDirectory'#7#18 -- +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 -- +'MaxLength'#2#0#8'TabOrder'#2#18#8'OnChange'#7#17'CDCStarPathChange'#0#0#9'T' -- +'LongEdit'#6'fgscf2'#3'Tag'#2#6#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0.' -- +'.10'#3'Top'#3#189#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' -- +'rder'#2#19#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'MaxValue'#2 -- +#10#0#0#9'TLongEdit'#6'fgscc2'#3'Tag'#2#7#4'Left'#3'-'#1#6'Height'#2#21#4'Hi' -- +'nt'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint' -- +#9#8'TabOrder'#2#20#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8'Max' -- +'Value'#2#10#0#0#9'TLongEdit'#5'fusn2'#3'Tag'#2#9#4'Left'#3'-'#1#6'Height'#2 -- +#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShowHint'#8#8'Sh' -- +'owHint'#9#8'TabOrder'#2#21#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2 -- +#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn1'#3'Tag'#2#9#4'Left'#3#5#1#6'Hei' -- +'ght'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShowHint' -- +#8#8'ShowHint'#9#8'TabOrder'#2#22#8'OnChange'#7#19'CDCStarField1Change'#5'Va' -- +'lue'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc1'#3'Tag'#2#7#4'Left'#3#5 -- +#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentS' -- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#23#8'OnChange'#7#19'CDCStarField1Cha' -- +'nge'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscf1'#3'Tag'#2#6#4 -- +'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Width'#2#30 -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#24#8'OnChange'#7#19'CDCSta' -- ,'rField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#9'USNBright'#3 -- +'Tag'#2#9#4'Left'#3#170#0#6'Height'#2#21#3'Top'#3#13#1#5'Width'#2'['#7'Capti' -- +'on'#6#12'Bright stars'#7'OnClick'#7#14'USNBrightClick'#8'TabOrder'#2#25#0#0 -- +#9'TCheckBox'#6'USNbox'#3'Tag'#2#9#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'J- ' -- +'USNO-SA1.0 '#13#10'- USNO-A1.0 '#13#10'- USNO-A2.0'#13#10' U.S. Naval Obse' -- +'rvatory CDROM''s'#3'Top'#3#13#1#5'Width'#2'C'#11'HelpContext'#2'q'#7'Captio' -- +'n'#6#6'USNO-A'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'Show' -- +'Hint'#9#8'TabOrder'#2#26#0#0#9'TCheckBox'#7'GSCCbox'#3'Tag'#2#7#4'Left'#2'W' -- +#6'Height'#2#21#4'Hint'#6'SThe Hubble Space Telescope Guide Star Catalog ( ' -- +'Lasker 1990) Compact CDS version '#3'Top'#3#229#0#5'Width'#2#127#11'HelpCo' -- +'ntext'#2'h'#7'Caption'#6#15'HST GSC compact'#7'OnClick'#7#15'CDCStarSelClic' -- +'k'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#27#0#0#9'TCheckBox'#7'G' -- +'SCFBox'#3'Tag'#2#6#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'RThe Hubble Space ' -- +'Telescope Guide Star Catalog ( Lasker 1990) original FITS CDROM'#3'Top'#3 -- +#189#0#5'Width'#3#149#0#11'HelpContext'#2'h'#7'Caption'#6#21'HST GSC origina' -- +'l FITS'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'ShowHint'#9 -- +#8'TabOrder'#2#28#0#0#14'TDirectoryEdit'#4'rc33'#3'Tag'#2#4#4'Left'#3'R'#1#6 -- +'Height'#2#21#3'Top'#3']'#1#5'Width'#2'h'#17'OnAcceptDirectory'#7#18'CDCAcce' -- +'ptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLe' -- +'ngth'#2#0#8'TabOrder'#2#29#8'OnChange'#7#16'CDCNebPathChange'#0#0#9'TLongEd' -- +'it'#5'frc32'#3'Tag'#2#4#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3 -- +'Top'#3']'#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 -- +#30#8'OnChange'#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9 -- +'TLongEdit'#5'frc31'#3'Tag'#2#4#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..' -- +'10'#3'Top'#3']'#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -- +'er'#2#31#8'OnChange'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10 -- +#0#0#9'TCheckBox'#6'RC3box'#3'Tag'#2#4#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6 -- +'IThird Reference Catalogue of Bright Galaxies (RC3) (de Vaucouleurs+ 1991)' -- +#3'Top'#3']'#1#5'Width'#3#176#0#11'HelpContext'#2'm'#7'Caption'#6#28'3'' Ref' -- +'. Cat. Bright Galaxies'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2' '#0#0#6'TLabel'#7'Label95'#4'Left'#2#9#6'Heigh' -- +'t'#2'&'#3'Top'#3']'#1#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#15'Replaced ' -- +'by PGC'#11'ParentColor'#8#8'WordWrap'#9#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Lef' -- +'t'#2#1#6'Height'#2'6'#3'Top'#3#209#1#5'Width'#3#242#1#5'Align'#7#8'alBottom' -- +#12'ClientHeight'#2'6'#11'ClientWidth'#3#242#1#8'TabOrder'#2#0#0#6'TLabel'#3 -- +'fw0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' -- +'aption'#6#3'fw0'#11'ParentColor'#8#0#0#6'TLabel'#3'fw1'#4'Left'#3#171#0#6'H' -- +'eight'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'P' -- +'arentColor'#8#0#0#6'TLabel'#3'fw2'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2#8 -- +#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11'ParentColor'#8#0#0#6'TLa' -- +'bel'#3'fw3'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSi' -- +'ze'#8#7'Caption'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fw4'#4'Left'#3 -- +#155#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3 -- +'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3'fw5'#4'Left'#2#11#6'Height'#2#17#3'T' -- +'op'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8#0 -- +#0#6'TLabel'#3'fw6'#4'Left'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8 -- +'AutoSize'#8#7'Caption'#6#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fw7'#4'Le' -- +'ft'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Captio' -- +'n'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fw8'#4'Left'#3#251#0#6'Height' -- +#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentC' -- +'olor'#8#0#0#6'TLabel'#3'fw9'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2' '#5'Wi' -- +'dth'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw9'#11'ParentColor'#8#0#0#6'TLabel' -- +#6'Label5'#4'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8 -- +#7'Caption'#6#10'fov number'#11'ParentColor'#8#0#0#6'TLabel'#4'fw10'#4'Left' -- +#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6 -- +#4'fw10'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height' -- +#2'2'#3'Top'#3#11#2#5'Width'#3#11#2#8'HelpType'#7#9'htKeyword'#11'HelpKeywor' -- +'d'#6#17'help/catalog.html'#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11 -- +'ClientWidth'#3#11#2#8'TabOrder'#2#1#0#6'TImage'#10'DirOpenImg'#4'Left'#2#8#6 -- +'Height'#2#16#3'Top'#2#15#5'Width'#2#16#8'AutoSize'#9#12'Picture.Data'#10#198 -- +#1#0#0#7'TPixmap'#186#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"16' -- +' 16 5 1",'#10'". c None",'#10'", c #7F7F7F",'#10'"- c #FFFF00",'#10'"* c #F' -- +'FFFFF",'#10'"a c #000000",'#10'"................",'#10'"................",' -- +#10'"................",'#10'"................",'#10'"...,,,,.........",'#10 -- ,'"..,-*-*,........",'#10'"..,,,,,,,,,,a...",'#10'"..,*********,a..",'#10'"..' -- +',*-.-.-.-.,a..",'#10'"..,*.-.-.-.-,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.' -- +'-.-.-.-,a..",'#10'"..,,,,,,,,,,,a..",'#10'"..aaaaaaaaaaa...",'#10'"........' -- +'........",'#10'"................"}'#10#7'Visible'#8#0#0#7'TButton'#7'Button' -- +'1'#4'Left'#3#240#0#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacin' -- +'g.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'Ta' -- +'bOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'P'#1#6'Height'#2#25#3'Top'#2 -- +#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7 -- +'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Lef' -- +'t'#3#176#1#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerB' -- +'order'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrde' -- +'r'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#2#15 -- +#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBor' -- +'der'#2#4#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3 -- +#0#0#0#11'TOpenDialog'#11'OpenDialog1'#11'FilterIndex'#2#0#4'left'#3#238#1#3 -- +'top'#2#24#0#0#0 -+ +'dth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#18#8'OnChange'#7#17'CDCStarPathCha' -+ +'nge'#0#0#9'TLongEdit'#6'fgscf2'#3'Tag'#2#6#4'Left'#3'-'#1#6'Height'#2#21#4 -+ +'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHi' -+ +'nt'#9#8'TabOrder'#2#19#8'OnChange'#7#19'CDCStarField2Change'#5'Value'#2#0#8 -+ +'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc2'#3'Tag'#2#7#4'Left'#3'-'#1#6'Heigh' -+ +'t'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30#14'ParentShowHint'#8 -+ +#8'ShowHint'#9#8'TabOrder'#2#20#8'OnChange'#7#19'CDCStarField2Change'#5'Valu' -+ +'e'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn2'#3'Tag'#2#9#4'Left'#3'-'#1 -+ +#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'ParentShow' -+ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#21#8'OnChange'#7#19'CDCStarField2Change' -+ +#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'fusn1'#3'Tag'#2#9#4'Left'#3 -+ +#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#13#1#5'Width'#2#30#14'Parent' -+ +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#22#8'OnChange'#7#19'CDCStarField1Ch' -+ +'ange'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscc1'#3'Tag'#2#7#4 -+ +'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#229#0#5'Width'#2#30 -+ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#23#8'OnChange'#7#19'CDCSta' -+ +'rField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#6'fgscf1'#3'T' -+ +'ag'#2#6#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3#189#0#5'Wi' -+ +'dth'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#24#8'OnChange'#7 -+ +#19'CDCStarField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox'#9'US' -+ +'NBright'#3'Tag'#2#9#4'Left'#3#170#0#6'Height'#2#21#3'Top'#3#13#1#5'Width'#2 -+ +'['#7'Caption'#6#12'Bright stars'#7'OnClick'#7#14'USNBrightClick'#8'TabOrder' -+ ,#2#25#0#0#9'TCheckBox'#6'USNbox'#3'Tag'#2#9#4'Left'#2'W'#6'Height'#2#21#4'Hi' -+ +'nt'#6'J- USNO-SA1.0 '#13#10'- USNO-A1.0 '#13#10'- USNO-A2.0'#13#10' U.S. N' -+ +'aval Observatory CDROM''s'#3'Top'#3#13#1#5'Width'#2'C'#11'HelpContext'#2'q' -+ +#7'Caption'#6#6'USNO-A'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8 -+ +#8'ShowHint'#9#8'TabOrder'#2#26#0#0#9'TCheckBox'#7'GSCCbox'#3'Tag'#2#7#4'Lef' -+ +'t'#2'W'#6'Height'#2#21#4'Hint'#6'SThe Hubble Space Telescope Guide Star Cat' -+ +'alog ( Lasker 1990) Compact CDS version '#3'Top'#3#229#0#5'Width'#2#127#11 -+ +'HelpContext'#2'h'#7'Caption'#6#15'HST GSC compact'#7'OnClick'#7#15'CDCStarS' -+ +'elClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#27#0#0#9'TCheckBo' -+ +'x'#7'GSCFBox'#3'Tag'#2#6#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'RThe Hubble ' -+ +'Space Telescope Guide Star Catalog ( Lasker 1990) original FITS CDROM'#3 -+ +'Top'#3#189#0#5'Width'#3#149#0#11'HelpContext'#2'h'#7'Caption'#6#21'HST GSC ' -+ +'original FITS'#7'OnClick'#7#15'CDCStarSelClick'#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#28#0#0#14'TDirectoryEdit'#4'rc33'#3'Tag'#2#4#4'Left'#3 -+ +'R'#1#6'Height'#2#21#3'Top'#3']'#1#5'Width'#2'h'#17'OnAcceptDirectory'#7#18 -+ +'CDCAcceptDirectory'#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8 -+ +'TabOrder'#2#29#8'OnChange'#7#16'CDCNebPathChange'#0#0#9'TLongEdit'#5'frc32' -+ +#3'Tag'#2#4#4'Left'#3'-'#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3']'#1#5 -+ +'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#30#8'OnChange' -+ +#7#18'CDCNebField2Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TLongEdit'#5'f' -+ +'rc31'#3'Tag'#2#4#4'Left'#3#5#1#6'Height'#2#21#4'Hint'#6#5'0..10'#3'Top'#3']' -+ +#1#5'Width'#2#30#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#31#8'OnCha' -+ +'nge'#7#18'CDCNebField1Change'#5'Value'#2#0#8'MaxValue'#2#10#0#0#9'TCheckBox' -+ +#6'RC3box'#3'Tag'#2#4#4'Left'#2'W'#6'Height'#2#21#4'Hint'#6'IThird Reference' -+ +' Catalogue of Bright Galaxies (RC3) (de Vaucouleurs+ 1991)'#3'Top'#3']'#1#5 -+ +'Width'#3#176#0#11'HelpContext'#2'm'#7'Caption'#6#28'3'' Ref. Cat. Bright Ga' -+ +'laxies'#7'OnClick'#7#14'CDCNebSelClick'#14'ParentShowHint'#8#8'ShowHint'#9#8 -+ +'TabOrder'#2' '#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Left'#2#1#6'Height'#2'6'#3'T' -+ +'op'#3#209#1#5'Width'#3#242#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'6'#11 -+ +'ClientWidth'#3#242#1#8'TabOrder'#2#0#0#6'TLabel'#3'fw0'#4'Left'#2'['#6'Heig' -+ +'ht'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw0'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#3'fw1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2#8#5 -+ +'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'TLabe' -+ +'l'#3'fw2'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSiz' -+ +'e'#8#7'Caption'#6#3'fw2'#11'ParentColor'#8#0#0#6'TLabel'#3'fw3'#4'Left'#3'K' -+ +#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw3' -+ +#11'ParentColor'#8#0#0#6'TLabel'#3'fw4'#4'Left'#3#155#1#6'Height'#2#17#3'Top' -+ +#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#3'fw5'#4'Left'#2#11#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'Auto' -+ +'Size'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8#0#0#6'TLabel'#3'fw6'#4'Left'#2 -+ +'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw' -+ +'6'#11'ParentColor'#8#0#0#6'TLabel'#3'fw7'#4'Left'#3#171#0#6'Height'#2#17#3 -+ +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#3'fw8'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2 -+ +'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8#0#0#6'TLabel'#3'fw9' -+ +#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Cap' -+ +'tion'#6#3'fw9'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#2#11#6'Hei' -+ +'ght'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#10'fov number' -+ +#11'ParentColor'#8#0#0#6'TLabel'#4'fw10'#4'Left'#3#155#1#6'Height'#2#17#3'To' -+ +'p'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#4'fw10'#11'ParentColor'#8#0 -+ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#11#2#5'Width' -+ +#3#11#2#8'HelpType'#7#9'htKeyword'#11'HelpKeyword'#6#17'help/catalog.html'#5 -+ +'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#11#2#8'TabOrde' -+ +'r'#2#1#0#6'TImage'#10'DirOpenImg'#4'Left'#2#8#6'Height'#2#16#3'Top'#2#15#5 -+ +'Width'#2#16#8'AutoSize'#9#12'Picture.Data'#10#198#1#0#0#7'TPixmap'#186#1#0#0 -+ +'/* XPM */'#10'static char *graphic[] = {'#10'"16 16 5 1",'#10'". c None",' -+ +#10'", c #7F7F7F",'#10'"- c #FFFF00",'#10'"* c #FFFFFF",'#10'"a c #000000",' -+ +#10'"................",'#10'"................",'#10'"................",'#10 -+ +'"................",'#10'"...,,,,.........",'#10'"..,-*-*,........",'#10'"..' -+ +',,,,,,,,,,a...",'#10'"..,*********,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.' -+ +'-.-.-.-,a..",'#10'"..,*-.-.-.-.,a..",'#10'"..,*.-.-.-.-,a..",'#10'"..,,,,,,' -+ +',,,,,a..",'#10'"..aaaaaaaaaaa...",'#10'"................",'#10'"...........' -+ +'....."}'#10#7'Visible'#8#0#0#7'TButton'#7'Button1'#4'Left'#3#240#0#6'Height' -+ +#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' -+ ,#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'B' -+ +'utton2'#4'Left'#3'P'#1#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#25'BorderSp' -+ +'acing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8 -+ +'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#176#1#6'Height'#2#25#3'To' -+ +'p'#2#15#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Capti' -+ +'on'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button' -+ +'4'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#2#15#5'Width'#2'K'#7'Anchors'#11#5 -+ +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Help'#7 -+ +'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#11'TOpenDialog'#11'OpenDi' -+ +'alog1'#11'FilterIndex'#2#0#4'left'#3#238#1#3'top'#2#24#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_chart.lfm skychart_3.2_up/skychart/pu_config_chart.lfm ---- skychart_3.2/skychart/pu_config_chart.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_chart.lfm 2011-03-09 15:18:57.151091634 +0100 -@@ -1,7 +1,7 @@ - object f_config_chart: Tf_config_chart -- Left = 920 -+ Left = 504 - Height = 567 -- Top = 104 -+ Top = 101 - Width = 510 - ActiveControl = MainPanel - BorderStyle = bsToolWindow -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 517 -@@ -31,19 +31,18 @@ - Width = 508 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - OnPageChanged = PageControl1PageChanged - object Page1: TTabSheet - Caption = 'Page1' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Label31: TLabel - Left = 0 - Height = 14 - Top = 0 -- Width = 76 -+ Width = 72 - Caption = 'Chart Setting' - ParentColor = False - end -@@ -100,7 +99,7 @@ - end - object equinox2: TFloatEdit - Left = 104 -- Height = 21 -+ Height = 23 - Hint = '-20000..20000' - Top = 12 - Width = 89 -@@ -125,9 +124,9 @@ - TabOrder = 2 - object PMBox: TCheckBox - Left = 6 -- Height = 21 -+ Height = 22 - Top = 7 -- Width = 396 -+ Width = 378 - Caption = 'Use the proper motion to correct the position for the given epoch' - OnClick = PMBoxClick - TabOrder = 0 -@@ -135,7 +134,7 @@ - end - object epoch2: TFloatEdit - Left = 336 -- Height = 21 -+ Height = 23 - Hint = '-20000..20000' - Top = 12 - Width = 89 -@@ -180,9 +179,9 @@ - end - object ExpertMode: TCheckBox - Left = 21 -- Height = 21 -+ Height = 22 - Top = 357 -- Width = 95 -+ Width = 93 - Caption = 'Expert mode' - OnClick = ExpertModeClick - TabOrder = 3 -@@ -226,8 +225,8 @@ - end - object Page2: TTabSheet - Caption = 'Page2' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Label30: TLabel - Left = 0 - Height = 14 -@@ -679,8 +678,8 @@ - end - object Page3: TTabSheet - Caption = 'Page3' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Bevel7: TBevel - Left = 15 - Height = 375 -@@ -1008,8 +1007,8 @@ - end - object Page4: TTabSheet - Caption = 'Page4' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Label29: TLabel - Left = 0 - Height = 14 -@@ -1818,8 +1817,8 @@ - end - object Page5: TTabSheet - Caption = 'Page5' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Label159: TLabel - Left = 0 - Height = 14 -@@ -2361,8 +2360,8 @@ - end - object Page6: TTabSheet - Caption = 'Page6' -- ClientHeight = 457 -- ClientWidth = 504 -+ ClientHeight = 426 -+ ClientWidth = 502 - object Label95: TLabel - Left = 0 - Height = 14 -diff -ur skychart_3.2/skychart/pu_config_chart.lrs skychart_3.2_up/skychart/pu_config_chart.lrs ---- skychart_3.2/skychart/pu_config_chart.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_chart.lrs 2011-03-09 15:18:57.129094336 +0100 -@@ -1,626 +1,625 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_chart','FORMDATA',[ -- 'TPF0'#15'Tf_config_chart'#14'f_config_chart'#4'Left'#3#152#3#6'Height'#3'7'#2 -- +#3'Top'#2'h'#5'Width'#3#254#1#13'ActiveControl'#7#9'MainPanel'#11'BorderStyl' -+ 'TPF0'#15'Tf_config_chart'#14'f_config_chart'#4'Left'#3#248#1#6'Height'#3'7'#2 -+ +#3'Top'#2'e'#5'Width'#3#254#1#13'ActiveControl'#7#9'MainPanel'#11'BorderStyl' - +'e'#7#12'bsToolWindow'#7'Caption'#6#6'Charts'#12'ClientHeight'#3'7'#2#11'Cli' - +'entWidth'#3#254#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreat' - +'e'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' -- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3 -- +#5#2#3'Top'#2#0#5'Width'#3#254#1#5'Align'#7#8'alClient'#12'ClientHeight'#3#5 -- +#2#11'ClientWidth'#3#254#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageContr' -- +'ol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#205#1#3'Top'#2#1#5'Width'#3#252 -- +#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex' -- +#2#0#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTa' -- +'bSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight'#3#201#1#11'ClientWi' -- +'dth'#3#248#1#0#6'TLabel'#7'Label31'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5 -- +'Width'#2'L'#7'Caption'#6#13'Chart Setting'#11'ParentColor'#8#0#0#6'TPanel' -- +#11'PanelExpert'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width'#3#197 -- +#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#7'Visibl' -- +'e'#8#0#6'TLabel'#12'EquinoxLabel'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#20#5 -- +'Width'#2'1'#7'Caption'#6#8'Equinox:'#11'ParentColor'#8#0#0#6'TLabel'#6'Labe' -- +'l1'#4'Left'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2''''#7'Caption'#6#6 -- +'Epoch:'#11'ParentColor'#8#0#0#11'TRadioGroup'#12'ApparentType'#4'Left'#2#8#6 -- +'Height'#2'9'#3'Top'#2'x'#5'Width'#3#161#1#8'AutoFill'#9#7'Caption'#6#22'Nut' -- +'ation , Aberration'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.To' -- +'pBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChi' -- +'ldResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'*'#11'Cl' -- +'ientWidth'#3#157#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#13 -- +'Mean position'#6#13'True position'#0#7'OnClick'#7#17'ApparentTypeClick'#8'T' -- +'abOrder'#2#0#0#0#10'TFloatEdit'#8'equinox2'#4'Left'#2'h'#6'Height'#2#21#4'H' -- +'int'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint'#8#8'S' -- +'howHint'#9#8'TabOrder'#2#1#8'OnChange'#7#14'equinox2Change'#5'Value'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0#0#0 -- +#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#9'TGroupBox' -- +#9'GroupBox3'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2'8'#5'Width'#3#161#1#7'Capt' -- +'ion'#6'9Stars proper motion options (if available in the catalog)'#12'Clien' -- +'tHeight'#2'*'#11'ClientWidth'#3#157#1#8'TabOrder'#2#2#0#9'TCheckBox'#5'PMBo' -- +'x'#4'Left'#2#6#6'Height'#2#21#3'Top'#2#7#5'Width'#3#140#1#7'Caption'#6'AUse' -- +' the proper motion to correct the position for the given epoch'#7'OnClick'#7 -- +#10'PMBoxClick'#8'TabOrder'#2#0#0#0#0#10'TFloatEdit'#6'epoch2'#4'Left'#3'P'#1 -- +#6'Height'#2#21#4'Hint'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'Par' -- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#12'epoch2Change' -- +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'Ma' -- +'xValue'#5#0#0#0#0#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixe' -- +'d'#0#0#0#11'TRadioGroup'#14'projectiontype'#4'Left'#2#13#6'Height'#2'`'#3'T' -- +'op'#2'%'#5'Width'#3#194#1#8'AutoFill'#9#7'Caption'#6#23'Chart Coordinate Sy' -- +'stem'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing' -- +#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'Chi' -- +'ldSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.Shr' -- +'inkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crs' -- +'ScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27 -- +'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'Q'#11'ClientWidth'#3#190 -- +#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#22'Equatorial Coord' -- +'inates'#6#21'Azimuthal Coordinates'#6#20'Galactic Coordinates'#6#20'Eclipti' -- +'c Coordinates'#0#7'OnClick'#7#19'projectiontypeClick'#8'TabOrder'#2#2#0#0#9 -- +'TCheckBox'#10'ExpertMode'#4'Left'#2#21#6'Height'#2#21#3'Top'#3'e'#1#5'Width' -- +#2'_'#7'Caption'#6#11'Expert mode'#7'OnClick'#7#15'ExpertModeClick'#8'TabOrd' -- +'er'#2#3#0#0#6'TPanel'#10'PanelCoord'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3 -- +#149#0#5'Width'#3#197#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'T' -- +'abOrder'#2#0#0#11'TRadioGroup'#9'CoordType'#4'Left'#2#3#6'Height'#3#139#0#3 -- +'Top'#2#16#5'Width'#3#184#1#8'AutoFill'#9#7'Caption'#6#19'Type of coordinate' -- +'s'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6 -- +#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSi' -- +'zing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkH' -- ,'orizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScal' -- +'eChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'Chil' -- +'dSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'|'#11'ClientWidth'#3#180#1#9 -- +'ItemIndex'#2#0#13'Items.Strings'#1#6#8'Apparent'#6#16'Mean of the date'#6#10 -- +'Mean J2000'#6#17'Astrometric J2000'#0#7'OnClick'#7#14'CoordTypeClick'#8'Tab' -- +'Order'#2#0#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHei' -- +'ght'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#7'Label30'#4'Left'#2#0#6'H' -- +'eight'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#23'Field of Vision Settin' -- +'g'#11'ParentColor'#8#0#0#6'TLabel'#7'Label96'#4'Left'#2'W'#6'Height'#2#14#3 -- +'Top'#3#131#0#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel' -- +#7'Label97'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#159#0#5'Width'#2#7#7'Captio' -- +'n'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label98'#4'Left'#2'W'#6'Height' -- +#2#14#3'Top'#3#187#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6 -- +'TLabel'#7'Label99'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#215#0#5'Width'#2#7#7 -- +'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label101'#4'Left'#2'W'#6 -- +'Height'#2#14#3'Top'#3#15#1#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8 -- +#0#0#6'TLabel'#8'Label102'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'+'#1#5'Width' -- +#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label103'#4'Left'#2 -- +'W'#6'Height'#2#14#3'Top'#3'G'#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentCol' -- +'or'#8#0#0#6'TLabel'#8'Label104'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'c'#1#5 -- +'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label105'#4 -- +'Left'#2'P'#6'Height'#2#14#3'Top'#3#127#1#5'Width'#2#13#7'Caption'#6#2'10'#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label106'#4'Left'#2'/'#6'Height'#2#14#3'Top' -- +#2'@'#5'Width'#2'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field ' -- +'Number'#11'ParentColor'#8#0#0#6'TLabel'#8'Label107'#4'Left'#3#207#0#6'Heigh' -- +'t'#2#14#3'Top'#2''''#5'Width'#2'G'#7'Caption'#6#15'Field Of Vision'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#8'Label114'#4'Left'#2'W'#6'Height'#2#14#3'Top'#2'g' -- +#5'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Label57'#4 -- +'Left'#3#183#0#6'Height'#2#14#3'Top'#2'@'#5'Width'#2#25#9'Alignment'#7#14'ta' -- +'RightJustify'#7'Caption'#6#4'From'#11'ParentColor'#8#0#0#6'TLabel'#7'Label7' -- +'4'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#243#0#5'Width'#2#7#7'Caption'#6#1'5' -- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#31#1#6'Height'#2#14#3'T' -- +'op'#2'@'#5'Width'#2#12#7'Caption'#6#2'To'#11'ParentColor'#8#0#0#10'TFloatEd' -- +'it'#3'fw1'#3'Tag'#2#1#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3 -- +'Top'#3#151#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2 -- +#4#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVal' -- +'ue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit' -- +#3'fw2'#3'Tag'#2#2#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top' -- +#3#179#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#5 -- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 -- +#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw' -- +'3'#3'Tag'#2#3#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3 -- +#207#0#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#5'Va' -- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 -- +#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw4' -- +#3'Tag'#2#4#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#235#0 -- +#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#5'Value'#5 -- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -- +#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw5'#3'Tag' -- +#2#5#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#7#1#5'Width' -- +#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#5'Value'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -- +#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw6'#3'Tag'#2#6#4 -- +'Left'#3#174#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'#'#1#5'Width'#2'<' -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#5'Value'#5#0#0#0#0#0#0#0 -- +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@' -- +#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw7'#3'Tag'#2#7#4'Left'#3 -- +#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'?'#1#5'Width'#2'<'#14'Par' -- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#16#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'N' -- +'umericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw8'#3'Tag'#2#8#4'Left'#3#172 -- +#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'['#1#5'Width'#2'<'#14'ParentS' -- +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#18#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' -+ +#3#5#2#3'Top'#2#0#5'Width'#3#254#1#5'Align'#7#8'alClient'#12'ClientHeight'#3 -+ +#5#2#11'ClientWidth'#3#254#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageCon' -+ +'trol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#205#1#3'Top'#2#1#5'Width'#3 -+ +#252#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'Ta' -+ +'bOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTabSheet'#5 -+ +'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight'#3#170#1#11'ClientWidth'#3#246 -+ +#1#0#6'TLabel'#7'Label31'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'H' -+ +#7'Caption'#6#13'Chart Setting'#11'ParentColor'#8#0#0#6'TPanel'#11'PanelExpe' -+ +'rt'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width'#3#197#1#12'Clien' -+ +'tHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#7'Visible'#8#0#6'T' -+ +'Label'#12'EquinoxLabel'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#20#5'Width'#2 -+ +'1'#7'Caption'#6#8'Equinox:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Lef' -+ +'t'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2''''#7'Caption'#6#6'Epoch:' -+ +#11'ParentColor'#8#0#0#11'TRadioGroup'#12'ApparentType'#4'Left'#2#8#6'Height' -+ +#2'9'#3'Top'#2'x'#5'Width'#3#161#1#8'AutoFill'#9#7'Caption'#6#22'Nutation , ' -+ +' Aberration'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomS' -+ +'pacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -+ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -+ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -+ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -+ +'m'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'*'#11'ClientWidth' -+ +#3#157#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#13'Mean posit' -+ +'ion'#6#13'True position'#0#7'OnClick'#7#17'ApparentTypeClick'#8'TabOrder'#2 -+ +#0#0#0#10'TFloatEdit'#8'equinox2'#4'Left'#2'h'#6'Height'#2#23#4'Hint'#6#13'-' -+ +'20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint'#8#8'ShowHint'#9#8 -+ +'TabOrder'#2#1#8'OnChange'#7#14'equinox2Change'#5'Value'#5#0#0#0#0#0#0#0#0#0 -+ +#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0#0#0#0#0'@'#156 -+ +#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#9'TGroupBox'#9'GroupBo' -+ +'x3'#4'Left'#2#8#6'Height'#2'9'#3'Top'#2'8'#5'Width'#3#161#1#7'Caption'#6'9S' -+ +'tars proper motion options (if available in the catalog)'#12'ClientHeight'#2 -+ +'*'#11'ClientWidth'#3#157#1#8'TabOrder'#2#2#0#9'TCheckBox'#5'PMBox'#4'Left'#2 -+ +#6#6'Height'#2#22#3'Top'#2#7#5'Width'#3'z'#1#7'Caption'#6'AUse the proper mo' -+ +'tion to correct the position for the given epoch'#7'OnClick'#7#10'PMBoxClic' -+ +'k'#8'TabOrder'#2#0#0#0#0#10'TFloatEdit'#6'epoch2'#4'Left'#3'P'#1#6'Height'#2 -+ +#23#4'Hint'#6#13'-20000..20000'#3'Top'#2#12#5'Width'#2'Y'#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#12'epoch2Change'#5'Value'#5#0 -+ +#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0'@'#156#13#192#8'MaxValue'#5#0#0 -+ +#0#0#0#0'@'#156#13'@'#6'Digits'#2#8#11'NumericType'#7#7'ntFixed'#0#0#0#11'TR' -+ +'adioGroup'#14'projectiontype'#4'Left'#2#13#6'Height'#2'`'#3'Top'#2'%'#5'Wid' -+ +'th'#3#194#1#8'AutoFill'#9#7'Caption'#6#23'Chart Coordinate System'#28'Child' -+ +'Sizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildS' -+ +'izing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enla' -+ +'rgeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal' -+ +#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18 -+ +'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Cont' -+ +'rolsPerLine'#2#2#12'ClientHeight'#2'Q'#11'ClientWidth'#3#190#1#7'Columns'#2 -+ +#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#22'Equatorial Coordinates'#6#21'Az' -+ +'imuthal Coordinates'#6#20'Galactic Coordinates'#6#20'Ecliptic Coordinates'#0 -+ +#7'OnClick'#7#19'projectiontypeClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#10'Ex' -+ +'pertMode'#4'Left'#2#21#6'Height'#2#22#3'Top'#3'e'#1#5'Width'#2']'#7'Caption' -+ +#6#11'Expert mode'#7'OnClick'#7#15'ExpertModeClick'#8'TabOrder'#2#3#0#0#6'TP' -+ +'anel'#10'PanelCoord'#4'Left'#2#10#6'Height'#3#192#0#3'Top'#3#149#0#5'Width' -+ +#3#197#1#12'ClientHeight'#3#192#0#11'ClientWidth'#3#197#1#8'TabOrder'#2#0#0 -+ +#11'TRadioGroup'#9'CoordType'#4'Left'#2#3#6'Height'#3#139#0#3'Top'#2#16#5'Wi' -+ +'dth'#3#184#1#8'AutoFill'#9#7'Caption'#6#19'Type of coordinates'#28'ChildSiz' -+ +'ing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizi' -+ +'ng.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarge' -+ +'Vertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 -+ ,#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' -+ +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' -+ +'olsPerLine'#2#1#12'ClientHeight'#2'|'#11'ClientWidth'#3#180#1#9'ItemIndex'#2 -+ +#0#13'Items.Strings'#1#6#8'Apparent'#6#16'Mean of the date'#6#10'Mean J2000' -+ +#6#17'Astrometric J2000'#0#7'OnClick'#7#14'CoordTypeClick'#8'TabOrder'#2#0#0 -+ +#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight'#3#170#1 -+ +#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label30'#4'Left'#2#0#6'Height'#2#14#3 -+ +'Top'#2#0#5'Width'#2'i'#7'Caption'#6#23'Field of Vision Setting'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#7'Label96'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#131#0#5 -+ +'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label97'#4'L' -+ +'eft'#2'W'#6'Height'#2#14#3'Top'#3#159#0#5'Width'#2#7#7'Caption'#6#1'2'#11'P' -+ +'arentColor'#8#0#0#6'TLabel'#7'Label98'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3 -+ +#187#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' -+ +'l99'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3#215#0#5'Width'#2#7#7'Caption'#6#1 -+ +'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label101'#4'Left'#2'W'#6'Height'#2#14#3 -+ +'Top'#3#15#1#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label102'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'+'#1#5'Width'#2#7#7'Caption' -+ +#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label103'#4'Left'#2'W'#6'Height'#2 -+ +#14#3'Top'#3'G'#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLa' -+ +'bel'#8'Label104'#4'Left'#2'W'#6'Height'#2#14#3'Top'#3'c'#1#5'Width'#2#7#7'C' -+ +'aption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label105'#4'Left'#2'P'#6'H' -+ +'eight'#2#14#3'Top'#3#127#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor' -+ +#8#0#0#6'TLabel'#8'Label106'#4'Left'#2'/'#6'Height'#2#14#3'Top'#2'@'#5'Width' -+ +#2'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'Par' -+ +'entColor'#8#0#0#6'TLabel'#8'Label107'#4'Left'#3#207#0#6'Height'#2#14#3'Top' -+ +#2''''#5'Width'#2'G'#7'Caption'#6#15'Field Of Vision'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#8'Label114'#4'Left'#2'W'#6'Height'#2#14#3'Top'#2'g'#5'Width'#2#7#7 -+ +'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Label57'#4'Left'#3#183#0#6 -+ +'Height'#2#14#3'Top'#2'@'#5'Width'#2#25#9'Alignment'#7#14'taRightJustify'#7 -+ +'Caption'#6#4'From'#11'ParentColor'#8#0#0#6'TLabel'#7'Label74'#4'Left'#2'W'#6 -+ +'Height'#2#14#3'Top'#3#243#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#6'Label5'#4'Left'#3#31#1#6'Height'#2#14#3'Top'#2'@'#5'Width'#2 -+ +#12#7'Caption'#6#2'To'#11'ParentColor'#8#0#0#10'TFloatEdit'#3'fw1'#3'Tag'#2#1 -+ +#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#151#0#5'Width'#2 -+ +'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#5'Value'#5#0#0#0#0#0#0 -+ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7 -+ +'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw2'#3'Tag'#2#2#4'Left' -+ +#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#179#0#5'Width'#2'<'#14 -+ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#5'Value'#5#0#0#0#0#0#0#0#0#0 -+ +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11 -+ +'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw3'#3'Tag'#2#3#4'Left'#3#172 -+ +#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#207#0#5'Width'#2'<'#14'Parent' -+ +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 - +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Num' -- ,'ericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw9'#3'Tag'#2#9#4'Left'#3#172#0 -- +#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'w'#1#5'Width'#2'<'#14'ParentSho' -- +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#20#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Mi' -- +'nValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Numer' -- +'icType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw0'#4'Left'#3#172#0#6'Height'#2 -- +#21#4'Hint'#6#6'0..360'#3'Top'#2'{'#5'Width'#2'<'#14'ParentShowHint'#8#8'Sho' -- +'wHint'#9#8'TabOrder'#2#2#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFi' -- +'xed'#0#0#10'TFloatEdit'#4'fw00'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6 -- +'0..360'#3'Top'#2'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#14'ParentShowHint' -- +#8#8'ReadOnly'#9#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'N' -- +'umericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft0'#4'Left'#3#15#1#6'Height' -- +#2#21#3'Top'#2'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabO' -- +'rder'#2#1#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 -- +'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatE' -- +'dit'#3'ft1'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#2'{'#5'Width'#2'<'#5'Color' -- +#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#3#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'Nume' -- +'ricType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft2'#4'Left'#3#15#1#6'Height'#2 -- +#21#3'Top'#3#151#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'Tab' -- +'Order'#2#5#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloa' -- +'tEdit'#3'ft3'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#179#0#5'Width'#2'<'#5 -- +'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#7#5'Value'#5#0#0#0#0#0#0#0 -- +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11 -- +'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft4'#4'Left'#3#15#1#6'Height' -- +#2#21#3'Top'#3#207#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'T' -- +'abOrder'#2#9#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0 -- +#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFl' -- +'oatEdit'#3'ft5'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#235#0#5'Width'#2'<'#5 -- +'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#11#5'Value'#5#0#0#0#0#0#0 -- +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0 -- +#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft6'#4'Left'#3#15#1#6'Hei' -- +'ght'#2#21#3'Top'#3#7#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8 -- +'TabOrder'#2#13#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0 -- +#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'T' -- +'FloatEdit'#3'ft7'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'#'#1#5'Width'#2'<' -- +#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#15#5'Value'#5#0#0#0#0#0 -- +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0 -- +#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft8'#4'Left'#3#15#1#6'H' -- +'eight'#2#21#3'Top'#3'?'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly' -- +#9#8'TabOrder'#2#17#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0 -- +#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0 -- +#10'TFloatEdit'#3'ft9'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'['#1#5'Width'#2 -- +'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#19#5'Value'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0 -- +#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#4'ft10'#4'Left'#3#15#1#6 -- +'Height'#2#21#3'Top'#3'w'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly' -- +#9#8'TabOrder'#2#21#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0 -- +#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#7 -- +'TButton'#7'Button1'#4'Left'#3#207#0#6'Height'#2#25#3'Top'#3#159#1#5'Width'#2 -- +'S'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#12 -- +'Button1Click'#8'TabOrder'#2#22#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'P' -- +'age3'#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TBevel'#6'Bevel7' -- +#4'Left'#2#15#6'Height'#3'w'#1#3'Top'#2#23#5'Width'#3'd'#1#5'Shape'#7#7'bsFr' -- +'ame'#0#0#6'TLabel'#8'Label158'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Widt' -- +'h'#2'T'#7'Caption'#6#18'Projection Setting'#11'ParentColor'#8#0#0#6'TLabel' -- +#7'Labelp1'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'h'#5'Width'#2#10#7'Caption' -- +#6#2'1 '#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp2'#4'Left'#2'>'#6'Height'#2 -- +#14#3'Top'#3#132#0#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TL' -- +'abel'#7'Labelp3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#160#0#5'Width'#2#7#7 -- +'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp4'#4'Left'#2'>'#6'H' -- +'eight'#2#14#3'Top'#3#188#0#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8 -- ,#0#0#6'TLabel'#8'Label165'#4'Left'#2#27#6'Height'#2#14#3'Top'#2'+'#5'Width'#2 -- +'?'#9'Alignment'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'Paren' -- +'tColor'#8#0#0#6'TLabel'#7'Labelp0'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'L'#5 -- +'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp5'#4'L' -- +'eft'#2'>'#6'Height'#2#14#3'Top'#3#216#0#5'Width'#2#7#7'Caption'#6#1'5'#11'P' -- +'arentColor'#8#0#0#6'TLabel'#7'Labelp6'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 -- +#244#0#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' -- +'lp7'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2#7#7'Caption'#6#1 -- +'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp8'#4'Left'#2'>'#6'Height'#2#14#3 -- +'Top'#3','#1#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7 -- +'Labelp9'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2#7#7'Caption'#6 -- +#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelp10'#4'Left'#2'>'#6'Height'#2#14 -- +#3'Top'#3'd'#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLab' -- +'el'#8'Label172'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'0'#7 -- +'Caption'#6#10'Projection'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox2'#3 -- +'Tag'#2#1#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2'c'#5'Width'#2'I'#16'AutoCo' -- +'mpleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2 -- +#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'Project' -- +'ionChange'#8'TabOrder'#2#1#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox1'#4 -- +'Left'#3#195#0#6'Height'#2#23#3'Top'#2'G'#5'Width'#2'I'#16'AutoCompleteText' -- +#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.' -- +'Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8 -- +'TabOrder'#2#0#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox3'#3'Tag'#2#2#4'L' -- +'eft'#3#195#0#6'Height'#2#23#3'Top'#2#127#5'Width'#2'I'#16'AutoCompleteText' -+ +'ericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw4'#3'Tag'#2#4#4'Left'#3#172#0 -+ +#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#235#0#5'Width'#2'<'#14'ParentSh' -+ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' -+ +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'Nume' -+ +'ricType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw5'#3'Tag'#2#5#4'Left'#3#172#0#6 -+ +'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3#7#1#5'Width'#2'<'#14'ParentShowHi' -+ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#12#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' -+ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericT' -+ +'ype'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw6'#3'Tag'#2#6#4'Left'#3#174#0#6'He' -+ +'ight'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'#'#1#5'Width'#2'<'#14'ParentShowHin' -+ +'t'#8#8'ShowHint'#9#8'TabOrder'#2#14#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVal' -+ +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericTy' -+ +'pe'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'fw7'#3'Tag'#2#7#4'Left'#3#172#0#6'Hei' -+ +'ght'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'?'#1#5'Width'#2'<'#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#16#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' -+ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7 -+ +#7'ntFixed'#0#0#10'TFloatEdit'#3'fw8'#3'Tag'#2#8#4'Left'#3#172#0#6'Height'#2 -+ +#21#4'Hint'#6#6'0..360'#3'Top'#3'['#1#5'Width'#2'<'#14'ParentShowHint'#8#8'S' -+ +'howHint'#9#8'TabOrder'#2#18#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'nt' -+ ,'Fixed'#0#0#10'TFloatEdit'#3'fw9'#3'Tag'#2#9#4'Left'#3#172#0#6'Height'#2#21#4 -+ +'Hint'#6#6'0..360'#3'Top'#3'w'#1#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHi' -+ +'nt'#9#8'TabOrder'#2#20#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 -+ +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixe' -+ +'d'#0#0#10'TFloatEdit'#3'fw0'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..' -+ +'360'#3'Top'#2'{'#5'Width'#2'<'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#2#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'M' -+ +'axValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloa' -+ +'tEdit'#4'fw00'#4'Left'#3#172#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#2 -+ +'_'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#14'ParentShowHint'#8#8'ReadOnly'#9 -+ +#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 -+ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#11'NumericType'#7#7 -+ +'ntFixed'#0#0#10'TFloatEdit'#3'ft0'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#2'_' -+ +#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#1#5'Value' -+ +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0 -+ +#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft1'#4'Left' -+ +#3#15#1#6'Height'#2#21#3'Top'#2'{'#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'R' -+ +'eadOnly'#9#8'TabOrder'#2#3#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFix' -+ +'ed'#0#0#10'TFloatEdit'#3'ft2'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#151#0#5 -+ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#5#5'Value'#5 -+ +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -+ +#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft3'#4'Left'#3 -+ +#15#1#6'Height'#2#21#3'Top'#3#179#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 -+ +'ReadOnly'#9#8'TabOrder'#2#7#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFix' -+ +'ed'#0#0#10'TFloatEdit'#3'ft4'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#207#0#5 -+ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#9#5'Value'#5 -+ +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -+ +#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft5'#4'Left'#3 -+ +#15#1#6'Height'#2#21#3'Top'#3#235#0#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 -+ +'ReadOnly'#9#8'TabOrder'#2#11#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 -+ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntF' -+ +'ixed'#0#0#10'TFloatEdit'#3'ft6'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3#7#1#5 -+ +'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#13#5'Value' -+ +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0 -+ +#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft7'#4'Left' -+ +#3#15#1#6'Height'#2#21#3'Top'#3'#'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8 -+ +'ReadOnly'#9#8'TabOrder'#2#15#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 -+ +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntF' -+ +'ixed'#0#0#10'TFloatEdit'#3'ft8'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3'?'#1 -+ +#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#17#5'Valu' -+ +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0 -+ +#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#3'ft9'#4'Le' -+ +'ft'#3#15#1#6'Height'#2#21#3'Top'#3'['#1#5'Width'#2'<'#5'Color'#7#9'clBtnFac' -+ +'e'#8'ReadOnly'#9#8'TabOrder'#2#19#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' -+ +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7 -+ +'ntFixed'#0#0#10'TFloatEdit'#4'ft10'#4'Left'#3#15#1#6'Height'#2#21#3'Top'#3 -+ +'w'#1#5'Width'#2'<'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#21#5 -+ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 -+ +#0#0#0#0#0#0#0#0#0#0#11'NumericType'#7#7'ntFixed'#0#0#7'TButton'#7'Button1'#4 -+ +'Left'#3#207#0#6'Height'#2#25#3'Top'#3#159#1#5'Width'#2'S'#25'BorderSpacing.' -+ +'InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button1Click'#8'Ta' -+ +'bOrder'#2#22#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHei' -+ +'ght'#3#170#1#11'ClientWidth'#3#246#1#0#6'TBevel'#6'Bevel7'#4'Left'#2#15#6'H' -+ +'eight'#3'w'#1#3'Top'#2#23#5'Width'#3'd'#1#5'Shape'#7#7'bsFrame'#0#0#6'TLabe' -+ +'l'#8'Label158'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'T'#7'Captio' -+ +'n'#6#18'Projection Setting'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp1'#4'Le' -+ +'ft'#2'>'#6'Height'#2#14#3'Top'#2'h'#5'Width'#2#10#7'Caption'#6#2'1 '#11'Par' -+ +'entColor'#8#0#0#6'TLabel'#7'Labelp2'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 -+ +#132#0#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Labe' -+ +'lp3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#160#0#5'Width'#2#7#7'Caption'#6#1 -+ +'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp4'#4'Left'#2'>'#6'Height'#2#14#3 -+ +'Top'#3#188#0#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel' -+ ,#8'Label165'#4'Left'#2#27#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'?'#9'Alignme' -+ +'nt'#7#14'taRightJustify'#7'Caption'#6#12'Field Number'#11'ParentColor'#8#0#0 -+ +#6'TLabel'#7'Labelp0'#4'Left'#2'>'#6'Height'#2#14#3'Top'#2'L'#5'Width'#2#7#7 -+ +'Caption'#6#1'0'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp5'#4'Left'#2'>'#6'H' -+ +'eight'#2#14#3'Top'#3#216#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#7'Labelp6'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#244#0#5'Width' -+ +#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp7'#4'Left'#2 -+ +'>'#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentCol' -+ +'or'#8#0#0#6'TLabel'#7'Labelp8'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3','#1#5 -+ +'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Labelp9'#4'L' -+ +'eft'#2'>'#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'Pa' -+ +'rentColor'#8#0#0#6'TLabel'#8'Labelp10'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3 -+ +'d'#1#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Lab' -+ +'el172'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2'+'#5'Width'#2'0'#7'Caption'#6 -+ +#10'Projection'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox2'#3'Tag'#2#1#4 -+ +'Left'#3#195#0#6'Height'#2#23#3'Top'#2'c'#5'Width'#2'I'#16'AutoCompleteText' - +#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.' - +'Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8 -- +'TabOrder'#2#2#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox4'#3'Tag'#2#3#4'L' -- +'eft'#3#195#0#6'Height'#2#23#3'Top'#3#155#0#5'Width'#2'I'#16'AutoCompleteTex' -- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Ite' -- +'ms.Strings'#1#6#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabO' -- +'rder'#2#3#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox5'#3'Tag'#2#4#4'Left' -- +#3#195#0#6'Height'#2#23#3'Top'#3#183#0#5'Width'#2'I'#16'AutoCompleteText'#11 -- +#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Str' -- +'ings'#1#6#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2 -- +#4#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox6'#3'Tag'#2#5#4'Left'#3#195#0 -- +#6'Height'#2#23#3'Top'#3#211#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbac' -- +'tSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1 -- +#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder' -- +#2#5#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox7'#3'Tag'#2#6#4'Left'#3#195 -- +#0#6'Height'#2#23#3'Top'#3#239#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cb' -- +'actSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings' -- +#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrde' -- +'r'#2#6#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox8'#3'Tag'#2#7#4'Left'#3 -- +#195#0#6'Height'#2#23#3'Top'#3#11#1#5'Width'#2'I'#16'AutoCompleteText'#11#20 -- +'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.String' -- +'s'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabO' -- +'rder'#2#7#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox9'#3'Tag'#2#8#4'Left' -- +#3#195#0#6'Height'#2#23#3'Top'#3''''#1#5'Width'#2'I'#16'AutoCompleteText'#11 -- +#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Str' -- +'ings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'T' -- +'abOrder'#2#8#4'Text'#6#3'ARC'#0#0#9'TComboBox'#10'ComboBox10'#3'Tag'#2#9#4 -- +'Left'#3#195#0#6'Height'#2#23#3'Top'#3'C'#1#5'Width'#2'I'#16'AutoCompleteTex' -- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Ite' -- +'ms.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChang' -- +'e'#8'TabOrder'#2#9#4'Text'#6#3'ARC'#0#0#9'TComboBox'#10'ComboBox11'#3'Tag'#2 -- +#10#4'Left'#3#195#0#6'Height'#2#23#3'Top'#3'`'#1#5'Width'#2'I'#16'AutoComple' -- +'teText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13 -- +'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionCh' -- +'ange'#8'TabOrder'#2#10#4'Text'#6#3'ARC'#0#0#7'TButton'#7'Button7'#4'Left'#3 -- +#195#0#6'Height'#2#25#3'Top'#3#149#1#5'Width'#2'I'#7'Caption'#6#7'Default'#7 -- +'OnClick'#7#12'Button7Click'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7 -- +'Caption'#6#5'Page4'#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TL' -- +'abel'#7'Label29'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'^'#7'Capt' -- +'ion'#6#21'Object Filter Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'Group' -- ,'Box2'#4'Left'#2#9#6'Height'#3#184#0#3'Top'#2#16#5'Width'#3#193#1#7'Caption' -- +#6#12'Stars Filter'#12'ClientHeight'#3#169#0#11'ClientWidth'#3#189#1#8'TabOr' -- +'der'#2#0#0#9'TCheckBox'#7'StarBox'#4'Left'#2#8#6'Height'#2#21#4'Hint'#6'6Co' -- +'py|Copies the selection and puts it on the Clipboard'#3'Top'#2#8#5'Width'#2 -- +'M'#7'Caption'#6#13'Filter stars '#7'OnClick'#7#12'StarBoxClick'#8'TabOrder' -- +#2#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#4#6'Height'#3#137#0#3'Top'#2' '#5'Wid' -- +'th'#3#186#1#12'ClientHeight'#3#137#0#11'ClientWidth'#3#186#1#8'TabOrder'#2#1 -- +#0#6'TPanel'#6'Panel2'#4'Left'#2#4#6'Height'#2'i'#3'Top'#2#30#5'Width'#3#178 -- +#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWidth'#3#178#1#8 -- +'TabOrder'#2#2#0#6'TLabel'#7'Label32'#4'Left'#2#25#6'Height'#2#14#3'Top'#2' ' -- +#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label33'#4 -+ +'TabOrder'#2#1#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#195#0 -+ +#6'Height'#2#23#3'Top'#2'G'#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSe' -+ +'archAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3 -+ +'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#0 -+ +#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox3'#3'Tag'#2#2#4'Left'#3#195#0#6 -+ +'Height'#2#23#3'Top'#2#127#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSea' -+ +'rchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3 -+ +'ARC'#6#3'TAN'#6#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#2 -+ +#4'Text'#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox4'#3'Tag'#2#3#4'Left'#3#195#0#6 -+ +'Height'#2#23#3'Top'#3#155#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactS' -+ +'earchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6 -+ +#3'ARC'#6#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#3#4'Text' -+ +#6#3'ARC'#0#0#9'TComboBox'#9'ComboBox5'#3'Tag'#2#4#4'Left'#3#195#0#6'Height' -+ +#2#23#3'Top'#3#183#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAsc' -+ +'ending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6 -+ +#3'CAR'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#4#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#9'ComboBox6'#3'Tag'#2#5#4'Left'#3#195#0#6'Height'#2#23#3'T' -+ +'op'#3#211#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#5#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#9'ComboBox7'#3'Tag'#2#6#4'Left'#3#195#0#6'Height'#2#23#3'T' -+ +'op'#3#239#0#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#6#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#9'ComboBox8'#3'Tag'#2#7#4'Left'#3#195#0#6'Height'#2#23#3'T' -+ +'op'#3#11#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#7#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#9'ComboBox9'#3'Tag'#2#8#4'Left'#3#195#0#6'Height'#2#23#3'T' -+ +'op'#3''''#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#8#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#10'ComboBox10'#3'Tag'#2#9#4'Left'#3#195#0#6'Height'#2#23#3 -+ +'Top'#3'C'#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#9#4'Text'#6#3'ARC' -+ +#0#0#9'TComboBox'#10'ComboBox11'#3'Tag'#2#10#4'Left'#3#195#0#6'Height'#2#23#3 -+ +'Top'#3'`'#1#5'Width'#2'I'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#3'ARC'#6#3'TAN'#6 -+ +#3'SIN'#0#8'OnSelect'#7#16'ProjectionChange'#8'TabOrder'#2#10#4'Text'#6#3'AR' -+ +'C'#0#0#7'TButton'#7'Button7'#4'Left'#3#195#0#6'Height'#2#25#3'Top'#3#149#1#5 -+ +'Width'#2'I'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button7Click'#8'TabOrde' -+ +'r'#2#11#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3 -+ +#170#1#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label29'#4'Left'#2#0#6'Height'#2 -+ +#14#3'Top'#2#0#5'Width'#2'^'#7'Caption'#6#21'Object Filter Setting'#11'Paren' -+ +'tColor'#8#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#9#6'Height'#3#184#0#3'Top' -+ ,#2#16#5'Width'#3#193#1#7'Caption'#6#12'Stars Filter'#12'ClientHeight'#3#169#0 -+ +#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#9'TCheckBox'#7'StarBox'#4'Left'#2 -+ +#8#6'Height'#2#21#4'Hint'#6'6Copy|Copies the selection and puts it on the Cl' -+ +'ipboard'#3'Top'#2#8#5'Width'#2'M'#7'Caption'#6#13'Filter stars '#7'OnClick' -+ +#7#12'StarBoxClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#4#6'He' -+ +'ight'#3#137#0#3'Top'#2' '#5'Width'#3#186#1#12'ClientHeight'#3#137#0#11'Clie' -+ +'ntWidth'#3#186#1#8'TabOrder'#2#1#0#6'TPanel'#6'Panel2'#4'Left'#2#4#6'Height' -+ +#2'i'#3'Top'#2#30#5'Width'#3#178#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeigh' -+ +'t'#2'i'#11'ClientWidth'#3#178#1#8'TabOrder'#2#2#0#6'TLabel'#7'Label32'#4'Le' -+ +'ft'#2#25#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'1'#11'Paren' -+ +'tColor'#8#0#0#6'TLabel'#7'Label33'#4'Left'#2'B'#6'Height'#2#14#3'Top'#2' '#5 -+ +'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label34'#4'L' -+ +'eft'#2'k'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'3'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#7'Label35'#4'Left'#3#148#0#6'Height'#2#14#3'Top'#2 -+ +' '#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#7'Label36' -+ +#4'Left'#3#189#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'5'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#7'Label38'#4'Left'#3#230#0#6'Height'#2#14#3'To' -+ +'p'#2' '#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'La' -+ +'bel39'#4'Left'#3#15#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1 -+ +'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Label40'#4'Left'#3'8'#1#6'Height'#2#14 -+ +#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7 -+ +'Label76'#4'Left'#3'a'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 -+ +#1'9'#11'ParentColor'#8#0#0#6'TLabel'#7'Label78'#4'Left'#3#138#1#6'Height'#2 -+ +#14#3'Top'#2' '#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLa' -+ +'bel'#8'Label108'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#2'p'#7'Capt' -+ +'ion'#6#24'Field of vision number :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label' -+ +'109'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'L' -+ +'imiting magnitude :'#11'ParentColor'#8#0#0#10'TFloatEdit'#6'fsmag0'#3'Tag'#2 -+ +#1#4'Left'#2#10#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'(' -+ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#11'fsmagCh' -+ +'ange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'Ma' -+ +'xValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag1'#3'Tag'#2#2#4 -+ +'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'P' -+ +'arentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'fsmagChange' -+ +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' -+ +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag2'#3'Tag'#2#3#4'Left'#2 -+ +'['#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentSho' -+ +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#11'fsmagChange'#5'Valu' -+ +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0 -+ +#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag3'#3'Tag'#2#4#4'Left'#3#133#0#6 -+ +'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 -+ +#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height' -+ +#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Sh' -+ +'owHint'#9#8'TabOrder'#2#4#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0 -+ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198 -+ +#5'@'#0#0#10'TFloatEdit'#6'fsmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21 -+ +#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHin' -+ +'t'#9#8'TabOrder'#2#5#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0 -+ +#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@' -+ +#0#0#10'TFloatEdit'#6'fsmag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint' -+ +#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'T' -+ +'abOrder'#2#6#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10 -+ +'TFloatEdit'#6'fsmag7'#3'Tag'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5 -+ +'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' -+ +'der'#2#7#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Min' -+ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TF' -+ +'loatEdit'#6'fsmag8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0.' -+ +'.99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#8#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' -+ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFlo' -+ +'atEdit'#6'fsmag9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4'Hint'#6#5'0.' -+ ,'.99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#9#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinVa' -+ +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#6'TPa' -+ +'nel'#6'Panel3'#4'Left'#2#4#6'Height'#2'-'#3'Top'#2#30#5'Width'#3#178#1#10'B' -+ +'evelOuter'#7#6'bvNone'#12'ClientHeight'#2'-'#11'ClientWidth'#3#178#1#8'TabO' -+ +'rder'#2#1#0#6'TLabel'#8'Label110'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#12#5 -+ +'Width'#2'g'#7'Caption'#6#19'Naked eye reference'#11'ParentColor'#8#0#0#10'T' -+ +'FloatEdit'#8'fsmagvis'#4'Left'#3#188#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 -+ +'Top'#2#7#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8 -+ +'OnChange'#7#14'fsmagvisChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5 -+ +#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#9'TCheckBox' -+ +#11'StarAutoBox'#4'Left'#2#4#6'Height'#2#21#3'Top'#2#6#5'Width'#2'G'#7'Capti' -+ +'on'#6#9'Automatic'#7'OnClick'#7#16'StarAutoBoxClick'#8'TabOrder'#2#0#0#0#0#7 -+ +'TButton'#7'Button8'#4'Left'#3'j'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#7 -+ +'Caption'#6#7'Default'#7'OnClick'#7#12'Button8Click'#8'TabOrder'#2#2#0#0#0#9 -+ +'TGroupBox'#9'GroupBox1'#4'Left'#2#9#6'Height'#3#200#0#3'Top'#3#213#0#5'Widt' -+ +'h'#3#193#1#7'Caption'#6#14'Nebulae Filter'#12'ClientHeight'#3#185#0#11'Clie' -+ +'ntWidth'#3#189#1#8'TabOrder'#2#1#0#6'TLabel'#10'BigNebUnit'#4'Left'#3#133#1 -+ +#6'Height'#2#14#3'Top'#2#15#5'Width'#2'&'#7'Caption'#6#7'minutes'#11'ParentC' -+ +'olor'#8#0#0#9'TCheckBox'#6'NebBox'#4'Left'#2#9#6'Height'#2#21#3'Top'#2#11#5 -+ +'Width'#2'W'#7'Caption'#6#14'Filter nebulae'#7'OnClick'#7#11'NebBoxClick'#8 -+ +'TabOrder'#2#0#0#0#9'TCheckBox'#9'BigNebBox'#4'Left'#3#157#0#6'Height'#2#21#3 -+ +'Top'#2#11#5'Width'#3#131#0#7'Caption'#6#22'Hide object wider than'#7'OnClic' -+ +'k'#7#14'BigNebBoxClick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel5'#4'Left'#2#5 -+ +#6'Height'#3#153#0#3'Top'#2','#5'Width'#3#186#1#12'ClientHeight'#3#153#0#11 -+ +'ClientWidth'#3#186#1#8'TabOrder'#2#3#0#6'TLabel'#7'Label48'#4'Left'#2#8#6'H' -+ +'eight'#2#14#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'Limiting Magnitude :' -+ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label49'#4'Left'#2#8#6'Height'#2#14#3'Top' -+ +#2'e'#5'Width'#3#130#0#7'Caption'#6#28'Limiting Size (arcminutes) :'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#7'Label41'#4'Left'#2#25#6'Height'#2#14#3'Top'#2' ' -+ +#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#7'Label42'#4 - +'Left'#2'B'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'2'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#7'Label34'#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' ' -- +#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Label35'#4 -+ +'entColor'#8#0#0#6'TLabel'#7'Label43'#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' ' -+ +#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TLabel'#7'Label44'#4 - +'Left'#3#148#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'4'#11 -- +'ParentColor'#8#0#0#6'TLabel'#7'Label36'#4'Left'#3#189#0#6'Height'#2#14#3'To' -+ +'ParentColor'#8#0#0#6'TLabel'#7'Label45'#4'Left'#3#189#0#6'Height'#2#14#3'To' - +'p'#2' '#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#7'La' -- +'bel38'#4'Left'#3#230#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 -- +#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Label39'#4'Left'#3#15#1#6'Height'#2 -+ +'bel46'#4'Left'#3#230#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 -+ +#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7'Label47'#4'Left'#3#15#1#6'Height'#2 - +#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#7'Label40'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' -- +'ion'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Label76'#4'Left'#3'a'#1#6'Hei' -+ +'l'#7'Label79'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' -+ +'ion'#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#7'Label80'#4'Left'#3'a'#1#6'Hei' - +'ght'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6 -- +'TLabel'#7'Label78'#4'Left'#3#138#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#13 -- +#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Label108'#4'Left'#2#8#6 -+ +'TLabel'#8'Label111'#4'Left'#3#138#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#13 -+ +#7'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#8'Label112'#4'Left'#2#8#6 - +'Height'#2#14#3'Top'#2#8#5'Width'#2'p'#7'Caption'#6#24'Field of vision numbe' -- +'r :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label109'#4'Left'#2#8#6'Height'#2#14 -- +#3'Top'#2'0'#5'Width'#2'^'#7'Caption'#6#20'Limiting magnitude :'#11'ParentCo' -- +'lor'#8#0#0#10'TFloatEdit'#6'fsmag0'#3'Tag'#2#1#4'Left'#2#10#6'Height'#2#21#4 -- +'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' -- +#9#8'TabOrder'#2#0#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 -- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 -- +#10'TFloatEdit'#6'fsmag1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5 -+ +'r :'#11'ParentColor'#8#0#0#10'TFloatEdit'#5'fmag0'#3'Tag'#2#1#4'Left'#2#8#6 -+ +'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 -+ +#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2 -+ +#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#1#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0 -+ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5 -+ +'@'#0#0#10'TFloatEdit'#5'fmag2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hin' -+ +'t'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8 -+ +'TabOrder'#2#2#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10 -+ +'TFloatEdit'#5'fmag3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#5 - +'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' -- +'der'#2#1#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Min' -- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TF' -- +'loatEdit'#6'fsmag2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#5'0..9' -- +'9'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' -- +#2#2#8'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' -+ +'der'#2#3#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinV' -+ +'alue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFl' -+ +'oatEdit'#5'fmag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#5'0..' -+ +'99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' -+ ,#2#4#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' - +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdi' -- +'t'#6'fsmag3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 -- +'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8 -- +'OnChange'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 -- +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'f' -- +'smag4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2 -- +'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnCha' -- +'nge'#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag' -- +'5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B' -- +#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange' -- +#7#11'fsmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 -- +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag6'#3'T' -- +'ag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width' -- +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange'#7#11'fs' -- +'magChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag7'#3'Tag'#2#8 -- +#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'(' -- +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#11'fsmagCh' -+ +'t'#5'fmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3 -+ +'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#5#8 -+ +'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0 -+ +#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'f' -+ +'mag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B' -+ +#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#6#8'OnChange' -+ +#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 -+ +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fdim0'#3'Ta' -+ +'g'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width' -+ +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#10#8'OnChange'#7#10'f' -+ +'dimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 -+ +#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim1'#3'Tag'#2#2 -+ +#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'(' -+ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#11#8'OnChange'#7#10'fdimCh' - +'ange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'Ma' -- +'xValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag8'#3'Tag'#2#9#4 -- +'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#11'fsmagChang' -+ +'xValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim2'#3'Tag'#2#3#4'L' -+ +'eft'#2'['#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14 -+ +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#12#8'OnChange'#7#10'fdimChang' - +'e'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' -- +'lue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#6'fsmag9'#3'Tag'#2#10#4'Le' -- ,'ft'#3#128#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#11'fsmagChang' -- +'e'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' -- +'lue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#4#6'Heigh' -- +'t'#2'-'#3'Top'#2#30#5'Width'#3#178#1#10'BevelOuter'#7#6'bvNone'#12'ClientHe' -- +'ight'#2'-'#11'ClientWidth'#3#178#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label110'#4 -- +'Left'#2#8#6'Height'#2#14#3'Top'#2#12#5'Width'#2'g'#7'Caption'#6#19'Naked ey' -- +'e reference'#11'ParentColor'#8#0#0#10'TFloatEdit'#8'fsmagvis'#4'Left'#3#188 -- +#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2#7#5'Width'#2'('#14'ParentShowH' -- +'int'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#14'fsmagvisChange'#5'Val' -- +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 -- +#0#0#0#0#0#0#198#5'@'#0#0#0#9'TCheckBox'#11'StarAutoBox'#4'Left'#2#4#6'Heigh' -- +'t'#2#21#3'Top'#2#6#5'Width'#2'G'#7'Caption'#6#9'Automatic'#7'OnClick'#7#16 -- +'StarAutoBoxClick'#8'TabOrder'#2#0#0#0#0#7'TButton'#7'Button8'#4'Left'#3'j'#1 -- +#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#7'Caption'#6#7'Default'#7'OnClick'#7 -- +#12'Button8Click'#8'TabOrder'#2#2#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#9 -- +#6'Height'#3#200#0#3'Top'#3#213#0#5'Width'#3#193#1#7'Caption'#6#14'Nebulae F' -- +'ilter'#12'ClientHeight'#3#185#0#11'ClientWidth'#3#189#1#8'TabOrder'#2#1#0#6 -- +'TLabel'#10'BigNebUnit'#4'Left'#3#133#1#6'Height'#2#14#3'Top'#2#15#5'Width'#2 -- +'&'#7'Caption'#6#7'minutes'#11'ParentColor'#8#0#0#9'TCheckBox'#6'NebBox'#4'L' -- +'eft'#2#9#6'Height'#2#21#3'Top'#2#11#5'Width'#2'W'#7'Caption'#6#14'Filter ne' -- +'bulae'#7'OnClick'#7#11'NebBoxClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'BigN' -- +'ebBox'#4'Left'#3#157#0#6'Height'#2#21#3'Top'#2#11#5'Width'#3#131#0#7'Captio' -- +'n'#6#22'Hide object wider than'#7'OnClick'#7#14'BigNebBoxClick'#8'TabOrder' -- +#2#1#0#0#6'TPanel'#6'Panel5'#4'Left'#2#5#6'Height'#3#153#0#3'Top'#2','#5'Wid' -- +'th'#3#186#1#12'ClientHeight'#3#153#0#11'ClientWidth'#3#186#1#8'TabOrder'#2#3 -- +#0#6'TLabel'#7'Label48'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'^' -- +#7'Caption'#6#20'Limiting Magnitude :'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' -- +'el49'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'e'#5'Width'#3#130#0#7'Caption'#6 -- +#28'Limiting Size (arcminutes) :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label41' -- +#4'Left'#2#25#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'1'#11'P' -- +'arentColor'#8#0#0#6'TLabel'#7'Label42'#4'Left'#2'B'#6'Height'#2#14#3'Top'#2 -- +' '#5'Width'#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#7'Label43' -- +#4'Left'#2'k'#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'3'#11'P' -- +'arentColor'#8#0#0#6'TLabel'#7'Label44'#4'Left'#3#148#0#6'Height'#2#14#3'Top' -- +#2' '#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' -- +'45'#4'Left'#3#189#0#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1 -- +'5'#11'ParentColor'#8#0#0#6'TLabel'#7'Label46'#4'Left'#3#230#0#6'Height'#2#14 -- +#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentColor'#8#0#0#6'TLabel'#7 -- +'Label47'#4'Left'#3#15#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6 -- +#1'7'#11'ParentColor'#8#0#0#6'TLabel'#7'Label79'#4'Left'#3'8'#1#6'Height'#2 -- +#14#3'Top'#2' '#5'Width'#2#7#7'Caption'#6#1'8'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#7'Label80'#4'Left'#3'a'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#7#7'Capt' -- +'ion'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label111'#4'Left'#3#138#1#6'H' -- +'eight'#2#14#3'Top'#2' '#5'Width'#2#13#7'Caption'#6#2'10'#11'ParentColor'#8#0 -- +#0#6'TLabel'#8'Label112'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#2'p' -- +#7'Caption'#6#24'Field of vision number :'#11'ParentColor'#8#0#0#10'TFloatEd' -- +'it'#5'fmag0'#3'Tag'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top' -- +#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnC' -- +'hange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag1' -- +#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Wid' -- +'th'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#10 -- +'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 -- +#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag2'#3'Tag'#2#3 -- +#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#10'fmagChange' -+ +'lue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim3'#3'Tag'#2#4#4'Left' -+ +#3#133#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'Pa' -+ +'rentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13#8'OnChange'#7#10'fdimChange' - +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' -- +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag3'#3'Tag'#2#4#4'Left'#3 -- +#133#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'Parent' -- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#10'fmagChange'#5'Va' -- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 -- +#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag4'#3'Tag'#2#5#4'Left'#3#175#0 -- +#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHi' -- ,'nt'#8#8'ShowHint'#9#8'TabOrder'#2#4#8'OnChange'#7#10'fmagChange'#5'Value'#5 -+ +#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim4'#3'Tag'#2#5#4'Left'#3 -+ +#175#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'Pare' -+ +'ntShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'OnChange'#7#10'fdimChange'#5 -+ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 -+ +#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim5'#3'Tag'#2#6#4'Left'#3#216 -+ +#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentSh' -+ +'owHint'#8#8'ShowHint'#9#8'TabOrder'#2#15#8'OnChange'#7#10'fdimChange'#5'Val' -+ +'ue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 -+ +#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim6'#3'Tag'#2#7#4'Left'#3#2#1#6 -+ +'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHi' -+ +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#16#8'OnChange'#7#10'fdimChange'#5'Value'#5 - +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -- +#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag5'#3'Tag'#2#6#4'Left'#3#216#0#6'Hei' -- +'ght'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2#5#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -- +#198#5'@'#0#0#10'TFloatEdit'#5'fmag6'#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21 -- +#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHin' -- +'t'#9#8'TabOrder'#2#6#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0 -- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0 -- +#0#10'TFloatEdit'#5'fdim0'#3'Tag'#2#1#4'Left'#2#8#6'Height'#2#21#4'Hint'#6#7 -+ +#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fmag7'#3'Tag'#2#8#4'Left'#3','#1#6'Heig' -+ +'ht'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8 -+ +'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0 -+ +#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -+ +#198#5'@'#0#0#10'TFloatEdit'#5'fmag8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2 -+ +#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#8#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0 -+ +#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5 -+ +'@'#0#0#10'TFloatEdit'#5'fmag9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4 -+ +'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#9#8'OnChange'#7#10'fmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 -+ +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 -+ +#10'TFloatEdit'#5'fdim7'#3'Tag'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#7 - +'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' -- +'Order'#2#10#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' -+ +'Order'#2#17#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' - +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10 -- +'TFloatEdit'#5'fdim1'#3'Tag'#2#2#4'Left'#2'1'#6'Height'#2#21#4'Hint'#6#7'0..' -- +'1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -- +'er'#2#11#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinV' -- +'alue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFl' -- +'oatEdit'#5'fdim2'#3'Tag'#2#3#4'Left'#2'['#6'Height'#2#21#4'Hint'#6#7'0..100' -- +'0'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder' -- +#2#12#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue' -- +#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdi' -- +'t'#5'fdim3'#3'Tag'#2#4#4'Left'#3#133#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3 -- +'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#13 -- +#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0 -- +#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5 -- +'fdim4'#3'Tag'#2#5#4'Left'#3#175#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top' -- +#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#14#8'On' -- +'Change'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdi' -- +'m5'#3'Tag'#2#6#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2 -- +'t'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#15#8'OnCh' -- +'ange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0 -- +#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim6' -- +#3'Tag'#2#7#4'Left'#3#2#1#6'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5 -- +'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#16#8'OnChange' -- +#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 -- +#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fmag7'#3'Ta' -- +'g'#2#8#4'Left'#3','#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width' -- +#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#7#8'OnChange'#7#10'fm' -- +'agChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 -- +'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag8'#3'Tag'#2#9#4 -- +'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#8#8'OnChange'#7#10'fmagChange' -- +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' -- +#5#0#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fmag9'#3'Tag'#2#10#4'Left'#3 -- +#128#1#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#2'B'#5'Width'#2'('#14'Parent' -- +'ShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#9#8'OnChange'#7#10'fmagChange'#5'Va' -- +'lue'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0 -- +#0#0#0#0#0#0#198#5'@'#0#0#10'TFloatEdit'#5'fdim7'#3'Tag'#2#8#4'Left'#3','#1#6 -- +'Height'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHi' -- +'nt'#8#8'ShowHint'#9#8'TabOrder'#2#17#8'OnChange'#7#10'fdimChange'#5'Value'#5 -- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -- +#0#0#0#250#8'@'#0#0#10'TFloatEdit'#5'fdim8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Heig' -- +'ht'#2#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2#18#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0 -- +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -- +#250#8'@'#0#0#10'TFloatEdit'#5'fdim9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2 -- +#21#4'Hint'#6#7'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'Sh' -- +'owHint'#9#8'TabOrder'#2#19#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0 -- +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250 -- +#8'@'#0#0#0#9'TLongEdit'#12'fBigNebLimit'#4'Left'#3']'#1#6'Height'#2#21#4'Hi' -- +'nt'#6#8'0..20000'#3'Top'#2#11#5'Width'#2'!'#14'ParentShowHint'#8#8'ShowHint' -- +#9#8'TabOrder'#2#2#8'OnChange'#7#18'fBigNebLimitChange'#5'Value'#2#0#8'MaxVa' -- ,'lue'#3' N'#0#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Page5'#12'ClientHei' -- +'ght'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#8'Label159'#4'Left'#2#0#6 -- +'Height'#2#14#3'Top'#2#0#5'Width'#2'9'#7'Caption'#6#12'Grid Setting'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#8'Label160'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#21 -- +#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#12'Field Number'#11'ParentColor'#8 -- +#8'WordWrap'#9#0#0#6'TLabel'#8'Label176'#4'Left'#2'U'#6'Height'#2'"'#3'Top'#2 -- +#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#19'Degree Grid Spacing'#11'Pare' -- +'ntColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label175'#4'Left'#3#5#1#6'Height'#2 -- +'"'#3'Top'#2#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#17'Hour Grid Spacin' -- +'g'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label161'#4'Left'#2#29#6 -- +'Height'#2#14#3'Top'#2'k'#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0 -- +#0#6'TLabel'#8'Label162'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#132#0#5'Width' -- +#2#7#7'Caption'#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#8'Label163'#4'Left'#2 -- +#29#6'Height'#2#14#3'Top'#3#157#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentCo' -- +'lor'#8#0#0#6'TLabel'#8'Label164'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#182#0 -- +#5'Width'#2#7#7'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label166'#4 -- +'Left'#2#29#6'Height'#2#14#3'Top'#2'R'#5'Width'#2#7#7'Caption'#6#1'0'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#8'Label167'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 -- +#207#0#5'Width'#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' -- +'l168'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2#7#7'Caption'#6#1 -- +'6'#11'ParentColor'#8#0#0#6'TLabel'#8'Label169'#4'Left'#2#29#6'Height'#2#14#3 -- +'Top'#3#1#1#5'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8 -- +'Label170'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2#7#7'Caption' -- +#6#1'8'#11'ParentColor'#8#0#0#6'TLabel'#8'Label174'#4'Left'#2#29#6'Height'#2 -- +#14#3'Top'#3'3'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLa' -- +'bel'#8'Label177'#4'Left'#2#29#6'Height'#2#14#3'Top'#3'L'#1#5'Width'#2#13#7 -- +'Caption'#6#2'10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#133#1#6 -- +'Height'#2' '#3'Top'#2#23#5'Width'#2'C'#8'AutoSize'#8#7'Caption'#6#9'Show Gr' -- +'id'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label4'#4'Left'#2'C'#6 -- +'Height'#2#14#3'Top'#3'm'#1#5'Width'#2'^'#7'Caption'#6#17'Compass rose size' -- +#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3#197#1#6'Height'#2 -- +#21#3'Top'#2'L'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2 -- +#25#0#0#9'TCheckBox'#9'CheckBox2'#3'Tag'#2#1#4'Left'#3#197#1#6'Height'#2#21#3 -- +'Top'#2'e'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#26#0 -- +#0#9'TCheckBox'#9'CheckBox4'#3'Tag'#2#3#4'Left'#3#197#1#6'Height'#2#21#3'Top' -- +#3#151#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#27#0#0 -- +#9'TCheckBox'#9'CheckBox5'#3'Tag'#2#4#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +#176#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#28#0#0#9 -- +'TCheckBox'#9'CheckBox6'#3'Tag'#2#5#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +#201#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#29#0#0#9 -- +'TCheckBox'#9'CheckBox7'#3'Tag'#2#6#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +#226#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#30#0#0#9 -- +'TCheckBox'#9'CheckBox8'#3'Tag'#2#7#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +#251#0#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#31#0#0#9 -- +'TCheckBox'#9'CheckBox9'#3'Tag'#2#8#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +#20#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2' '#0#0#9 -- +'TCheckBox'#10'CheckBox10'#3'Tag'#2#9#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3 -- +'-'#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2'!'#0#0#9 -- +'TCheckBox'#10'CheckBox13'#4'Left'#3#5#1#6'Height'#2#21#3'Top'#3#131#1#5'Wid' -- +'th'#3#164#0#7'Caption'#6#24'Always show compass rose'#7'OnClick'#7#15'Check' -- +'Box13Click'#8'TabOrder'#2#23#0#0#9'TCheckBox'#9'CheckBox3'#3'Tag'#2#2#4'Lef' -- +'t'#3#197#1#6'Height'#2#21#3'Top'#2'~'#5'Width'#2#23#7'OnClick'#7#16'ShowGri' -- +'dBoxClick'#8'TabOrder'#2'"'#0#0#9'TCheckBox'#10'CheckBox11'#3'Tag'#2#10#4'L' -- +'eft'#3#197#1#6'Height'#2#21#3'Top'#3'F'#1#5'Width'#2#23#7'OnClick'#7#16'Sho' -- +'wGridBoxClick'#8'TabOrder'#2'#'#0#0#7'TButton'#7'Button2'#4'Left'#3#5#1#6'H' -- +'eight'#2#25#3'Top'#3#157#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#7'Default'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#24#0#0#9 -- +'TTrackBar'#9'TrackBar1'#4'Left'#2#21#6'Height'#2#23#3'Top'#3#131#1#5'Width' -- +#3#220#0#9'Frequency'#2#5#8'LineSize'#2#5#3'Max'#3#130#0#3'Min'#2#30#8'OnCha' -- +'nge'#7#15'TrackBar1Change'#8'PageSize'#2#10#8'Position'#2'P'#9'TickStyle'#7 -- +#6'tsNone'#8'TabOrder'#2#22#0#0#6'TRaDec'#6'RaDec1'#4'Left'#2'A'#6'Height'#2 -- +#23#3'Top'#2'L'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0 -- +#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#0#0#0#6'TRa' -- +'Dec'#6'RaDec2'#3'Tag'#2#1#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'e'#5'Width'#3 -- ,#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' -- +'e'#7#16'DegSpacingChange'#8'TabOrder'#2#2#0#0#6'TRaDec'#6'RaDec3'#3'Tag'#2#2 -- +#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'DE'#5 -+ +'TFloatEdit'#5'fdim8'#3'Tag'#2#9#4'Left'#3'V'#1#6'Height'#2#21#4'Hint'#6#7'0' -+ +'..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' -+ +'rder'#2#18#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Mi' -+ +'nValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#10'T' -+ +'FloatEdit'#5'fdim9'#3'Tag'#2#10#4'Left'#3#128#1#6'Height'#2#21#4'Hint'#6#7 -+ +'0..1000'#3'Top'#2't'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' -+ +'Order'#2#19#8'OnChange'#7#10'fdimChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'M' -+ +'inValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#250#8'@'#0#0#0#9 -+ +'TLongEdit'#12'fBigNebLimit'#4'Left'#3']'#1#6'Height'#2#21#4'Hint'#6#8'0..20' -+ +'000'#3'Top'#2#11#5'Width'#2'!'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#2#8'OnChange'#7#18'fBigNebLimitChange'#5'Value'#2#0#8'MaxValue'#3' N'#0 -+ ,#0#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Page5'#12'ClientHeight'#3#170#1 -+ +#11'ClientWidth'#3#246#1#0#6'TLabel'#8'Label159'#4'Left'#2#0#6'Height'#2#14#3 -+ +'Top'#2#0#5'Width'#2'9'#7'Caption'#6#12'Grid Setting'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#8'Label160'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#21#5'Width'#2'P'#8 -+ +'AutoSize'#8#7'Caption'#6#12'Field Number'#11'ParentColor'#8#8'WordWrap'#9#0 -+ +#0#6'TLabel'#8'Label176'#4'Left'#2'U'#6'Height'#2'"'#3'Top'#2#21#5'Width'#2 -+ +'p'#8'AutoSize'#8#7'Caption'#6#19'Degree Grid Spacing'#11'ParentColor'#8#8'W' -+ +'ordWrap'#9#0#0#6'TLabel'#8'Label175'#4'Left'#3#5#1#6'Height'#2'"'#3'Top'#2 -+ +#21#5'Width'#2'p'#8'AutoSize'#8#7'Caption'#6#17'Hour Grid Spacing'#11'Parent' -+ +'Color'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label161'#4'Left'#2#29#6'Height'#2#14 -+ +#3'Top'#2'k'#5'Width'#2#7#7'Caption'#6#1'1'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label162'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#132#0#5'Width'#2#7#7'Caption' -+ +#6#1'2'#11'ParentColor'#8#0#0#6'TLabel'#8'Label163'#4'Left'#2#29#6'Height'#2 -+ +#14#3'Top'#3#157#0#5'Width'#2#7#7'Caption'#6#1'3'#11'ParentColor'#8#0#0#6'TL' -+ +'abel'#8'Label164'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#182#0#5'Width'#2#7#7 -+ +'Caption'#6#1'4'#11'ParentColor'#8#0#0#6'TLabel'#8'Label166'#4'Left'#2#29#6 -+ +'Height'#2#14#3'Top'#2'R'#5'Width'#2#7#7'Caption'#6#1'0'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#8'Label167'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#207#0#5'Width' -+ +#2#7#7'Caption'#6#1'5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label168'#4'Left'#2 -+ +#29#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2#7#7'Caption'#6#1'6'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#8'Label169'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#1#1#5 -+ +'Width'#2#7#7'Caption'#6#1'7'#11'ParentColor'#8#0#0#6'TLabel'#8'Label170'#4 -+ +'Left'#2#29#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2#7#7'Caption'#6#1'8'#11'P' -+ +'arentColor'#8#0#0#6'TLabel'#8'Label174'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 -+ +'3'#1#5'Width'#2#7#7'Caption'#6#1'9'#11'ParentColor'#8#0#0#6'TLabel'#8'Label' -+ +'177'#4'Left'#2#29#6'Height'#2#14#3'Top'#3'L'#1#5'Width'#2#13#7'Caption'#6#2 -+ +'10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#133#1#6'Height'#2' ' -+ +#3'Top'#2#23#5'Width'#2'C'#8'AutoSize'#8#7'Caption'#6#9'Show Grid'#11'Parent' -+ +'Color'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label4'#4'Left'#2'C'#6'Height'#2#14#3 -+ +'Top'#3'm'#1#5'Width'#2'^'#7'Caption'#6#17'Compass rose size'#11'ParentColor' -+ +#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3#197#1#6'Height'#2#21#3'Top'#2'L'#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#25#0#0#9'TCheck' -+ +'Box'#9'CheckBox2'#3'Tag'#2#1#4'Left'#3#197#1#6'Height'#2#21#3'Top'#2'e'#5'W' -+ +'idth'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#26#0#0#9'TCheckB' -+ +'ox'#9'CheckBox4'#3'Tag'#2#3#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#151#0#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#27#0#0#9'TCheck' -+ +'Box'#9'CheckBox5'#3'Tag'#2#4#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#176#0#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#28#0#0#9'TCheck' -+ +'Box'#9'CheckBox6'#3'Tag'#2#5#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#201#0#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#29#0#0#9'TCheck' -+ +'Box'#9'CheckBox7'#3'Tag'#2#6#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#226#0#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#30#0#0#9'TCheck' -+ +'Box'#9'CheckBox8'#3'Tag'#2#7#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#251#0#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2#31#0#0#9'TCheck' -+ +'Box'#9'CheckBox9'#3'Tag'#2#8#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3#20#1#5 -+ +'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2' '#0#0#9'TCheck' -+ +'Box'#10'CheckBox10'#3'Tag'#2#9#4'Left'#3#197#1#6'Height'#2#21#3'Top'#3'-'#1 -+ +#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxClick'#8'TabOrder'#2'!'#0#0#9'TChe' -+ +'ckBox'#10'CheckBox13'#4'Left'#3#5#1#6'Height'#2#21#3'Top'#3#131#1#5'Width'#3 -+ +#164#0#7'Caption'#6#24'Always show compass rose'#7'OnClick'#7#15'CheckBox13C' -+ +'lick'#8'TabOrder'#2#23#0#0#9'TCheckBox'#9'CheckBox3'#3'Tag'#2#2#4'Left'#3 -+ +#197#1#6'Height'#2#21#3'Top'#2'~'#5'Width'#2#23#7'OnClick'#7#16'ShowGridBoxC' -+ +'lick'#8'TabOrder'#2'"'#0#0#9'TCheckBox'#10'CheckBox11'#3'Tag'#2#10#4'Left'#3 -+ +#197#1#6'Height'#2#21#3'Top'#3'F'#1#5'Width'#2#23#7'OnClick'#7#16'ShowGridBo' -+ +'xClick'#8'TabOrder'#2'#'#0#0#7'TButton'#7'Button2'#4'Left'#3#5#1#6'Height'#2 -+ +#25#3'Top'#3#157#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' -+ +#6#7'Default'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#24#0#0#9'TTrackBar' -+ +#9'TrackBar1'#4'Left'#2#21#6'Height'#2#23#3'Top'#3#131#1#5'Width'#3#220#0#9 -+ +'Frequency'#2#5#8'LineSize'#2#5#3'Max'#3#130#0#3'Min'#2#30#8'OnChange'#7#15 -+ +'TrackBar1Change'#8'PageSize'#2#10#8'Position'#2'P'#9'TickStyle'#7#6'tsNone' -+ +#8'TabOrder'#2#22#0#0#6'TRaDec'#6'RaDec1'#4'Left'#2'A'#6'Height'#2#23#3'Top' -+ +#2'L'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enab' -+ +'led'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#0#0#0#6'TRaDec'#6'R' -+ +'aDec2'#3'Tag'#2#1#4'Left'#2'A'#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4 -+ ,'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16 -+ +'DegSpacingChange'#8'TabOrder'#2#2#0#0#6'TRaDec'#6'RaDec3'#3'Tag'#2#2#4'Left' -+ +#2'A'#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5 -+ +#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOr' -+ +'der'#2#4#0#0#6'TRaDec'#6'RaDec4'#3'Tag'#2#3#4'Left'#2'A'#6'Height'#2#23#3'T' -+ +'op'#3#151#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0 -+ +#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#6#0#0#6'TRaDe' -+ +'c'#6'RaDec5'#3'Tag'#2#4#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#176#0#5'Width' -+ +#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' -+ +'nge'#7#16'DegSpacingChange'#8'TabOrder'#2#8#0#0#6'TRaDec'#6'RaDec6'#3'Tag'#2 -+ +#5#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7#2'D' -+ +'E'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingC' -+ +'hange'#8'TabOrder'#2#10#0#0#6'TRaDec'#6'RaDec7'#3'Tag'#2#6#4'Left'#2'A'#6'H' -+ +'eight'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0 -+ +#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2 -+ +#12#0#0#6'TRaDec'#6'RaDec8'#3'Tag'#2#7#4'Left'#2'A'#6'Height'#2#23#3'Top'#3 -+ +#251#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Ena' -+ +'bled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#14#0#0#6'TRaDec'#6 -+ +'RaDec9'#3'Tag'#2#8#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#20#1#5'Width'#3#176 -+ +#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7 -+ +#16'DegSpacingChange'#8'TabOrder'#2#16#0#0#6'TRaDec'#7'RaDec10'#3'Tag'#2#9#4 -+ +'Left'#2'A'#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5 - +'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange' -- +#8'TabOrder'#2#4#0#0#6'TRaDec'#6'RaDec4'#3'Tag'#2#3#4'Left'#2'A'#6'Height'#2 -- +#23#3'Top'#3#151#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0 -- +#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#6#0#0#6 -- +'TRaDec'#6'RaDec5'#3'Tag'#2#4#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#176#0#5'W' -- +'idth'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8 -- +'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#8#0#0#6'TRaDec'#6'RaDec6'#3 -- +'Tag'#2#5#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind' -- +#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpa' -- +'cingChange'#8'TabOrder'#2#10#0#0#6'TRaDec'#6'RaDec7'#3'Tag'#2#6#4'Left'#2'A' -- +#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0 -- +#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrde' -- +'r'#2#12#0#0#6'TRaDec'#6'RaDec8'#3'Tag'#2#7#4'Left'#2'A'#6'Height'#2#23#3'To' -- +'p'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7 -- +'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#14#0#0#6'TRaDec' -- +#6'RaDec9'#3'Tag'#2#8#4'Left'#2'A'#6'Height'#2#23#3'Top'#3#20#1#5'Width'#3 -- +#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' -- +'e'#7#16'DegSpacingChange'#8'TabOrder'#2#16#0#0#6'TRaDec'#7'RaDec10'#3'Tag'#2 -- +#9#4'Left'#2'A'#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0#4'kind'#7#2'DE' -- +#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChan' -- +'ge'#8'TabOrder'#2#18#0#0#6'TRaDec'#7'RaDec11'#3'Tag'#2#10#4'Left'#2'A'#6'He' -- +'ight'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0 -- +#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#20 -- +#0#0#6'TRaDec'#7'RaDec12'#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'L'#5'Width' -- +#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' -- +'nge'#7#17'HourSpacingChange'#8'TabOrder'#2#1#0#0#6'TRaDec'#7'RaDec13'#3'Tag' -- +#2#1#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4'kind'#7#2 -- +'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacin' -- +'gChange'#8'TabOrder'#2#3#0#0#6'TRaDec'#7'RaDec14'#3'Tag'#2#2#4'Left'#3#253#0 -- +#6'Height'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0 -- +#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2 -- +#5#0#0#6'TRaDec'#7'RaDec15'#3'Tag'#2#3#4'Left'#3#253#0#6'Height'#2#23#3'Top' -- +#3#151#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'E' -- +'nabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#7#0#0#6'TRaDec' -- +#7'RaDec16'#3'Tag'#2#4#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#176#0#5'Width' -- +#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnCha' -- +'nge'#7#17'HourSpacingChange'#8'TabOrder'#2#9#0#0#6'TRaDec'#7'RaDec17'#3'Tag' -- +#2#5#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7 -- +#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpac' -- +'ingChange'#8'TabOrder'#2#11#0#0#6'TRaDec'#7'RaDec18'#3'Tag'#2#6#4'Left'#3 -- +#253#0#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'valu' -- +'e'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8 -- +'TabOrder'#2#13#0#0#6'TRaDec'#7'RaDec19'#3'Tag'#2#7#4'Left'#3#253#0#6'Height' -- +#2#23#3'Top'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0 -- +#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#15#0 -- +#0#6'TRaDec'#7'RaDec20'#3'Tag'#2#8#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#20 -- +#1#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled' -- +#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#17#0#0#6'TRaDec'#7'RaDe' -- +'c21'#3'Tag'#2#9#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176 -+ +#8'TabOrder'#2#18#0#0#6'TRaDec'#7'RaDec11'#3'Tag'#2#10#4'Left'#2'A'#6'Height' -+ +#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'DE'#5'value'#5#0#0#0#0#0#0#0 -+ +#0#0#0#7'Enabled'#9#8'OnChange'#7#16'DegSpacingChange'#8'TabOrder'#2#20#0#0#6 -+ +'TRaDec'#7'RaDec12'#4'Left'#3#253#0#6'Height'#2#23#3'Top'#2'L'#5'Width'#3#176 - +#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7 -- +#17'HourSpacingChange'#8'TabOrder'#2#19#0#0#6'TRaDec'#7'RaDec22'#3'Tag'#2#10 -- +#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'R' -- +'A'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacing' -- +'Change'#8'TabOrder'#2#21#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#5'Page6' -- +#12'ClientHeight'#3#201#1#11'ClientWidth'#3#248#1#0#6'TLabel'#7'Label95'#4'L' -- +'eft'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#19'Object Lis' -- +'t Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#24#6'H' -- +'eight'#3#223#0#3'Top'#2'('#5'Width'#3'q'#1#7'Caption'#6'!Type of object to ' -- +'add to the list'#12'ClientHeight'#3#208#0#11'ClientWidth'#3'm'#1#8'TabOrder' -- +#2#0#0#9'TCheckBox'#8'liststar'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#24#5'Wi' -- +'dth'#2'6'#7'Caption'#6#5'Stars'#7'OnClick'#7#13'liststarClick'#8'TabOrder'#2 -- ,#0#0#0#9'TCheckBox'#7'listneb'#4'Left'#2' '#6'Height'#2#21#3'Top'#2':'#5'Wid' -- +'th'#2'E'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#12'listnebClick'#8'TabOrder'#2 -- +#1#0#0#9'TCheckBox'#7'listpla'#4'Left'#2' '#6'Height'#2#21#3'Top'#2'\'#5'Wid' -- +'th'#3#138#0#7'Caption'#6#19'Solar System object'#7'OnClick'#7#12'listplaCli' -- +'ck'#8'TabOrder'#2#2#0#0#9'TCheckBox'#7'listvar'#4'Left'#2' '#6'Height'#2#21 -- +#3'Top'#2'~'#5'Width'#2'g'#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#12'l' -- +'istvarClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#7'listdbl'#4'Left'#2' '#6'Hei' -- +'ght'#2#21#3'Top'#3#160#0#5'Width'#2'a'#7'Caption'#6#12'Double Stars'#7'OnCl' -- +'ick'#7#12'listdblClick'#8'TabOrder'#2#4#0#0#0#0#0#6'TPanel'#8'FOVPanel'#4'L' -- +'eft'#2#1#6'Height'#2'6'#3'Top'#3#206#1#5'Width'#3#252#1#5'Align'#7#8'alBott' -- +'om'#12'ClientHeight'#2'6'#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#7'Visible' -- +#8#0#6'TLabel'#4'fv10'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2 -- +'N'#8'AutoSize'#8#7'Caption'#6#4'fv10'#11'ParentColor'#8#0#0#6'TLabel'#6'Lab' -- +'el2'#4'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' -- +'aption'#6#11'fov number:'#11'ParentColor'#8#0#0#6'TLabel'#3'fv9'#4'Left'#3 -- +'K'#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3 -- +'fw9'#11'ParentColor'#8#0#0#6'TLabel'#3'fv8'#4'Left'#3#251#0#6'Height'#2#17#3 -- +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8 -- +#0#0#6'TLabel'#3'fv7'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2 -- +'N'#8'AutoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fv6' -- +#4'Left'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Capti' -- +'on'#6#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fv5'#4'Left'#2#11#6'Height'#2 -- +#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentCol' -- +'or'#8#0#0#6'TLabel'#3'fv4'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2#8#5'Widt' -- +'h'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3 -- +'fv3'#4'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7 -- +'Caption'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fv2'#4'Left'#3#251#0#6 -- +'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11 -- +'ParentColor'#8#0#0#6'TLabel'#3'fv1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2 -- +#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'T' -- +'Label'#3'fv0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSi' -- +'ze'#8#7'Caption'#6#3'fw0'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'L' -- +'eft'#2#0#6'Height'#2'2'#3'Top'#3#5#2#5'Width'#3#254#1#5'Align'#7#8'alBottom' -- +#12'ClientHeight'#2'2'#11'ClientWidth'#3#254#1#8'TabOrder'#2#1#0#7'TButton'#7 -- +'Button3'#4'Left'#3#212#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' -- +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'O' -- +'K'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' -- +'4'#4'Left'#3'4'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 -- +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply' -- +#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'L' -- +'eft'#3#156#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop' -- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'C' -- +'ancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left' -- +#2'x'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRi' -- +'ght'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0 -- +#0#0#0 -+ +#17'HourSpacingChange'#8'TabOrder'#2#1#0#0#6'TRaDec'#7'RaDec13'#3'Tag'#2#1#4 -+ +'Left'#3#253#0#6'Height'#2#23#3'Top'#2'e'#5'Width'#3#176#0#4'kind'#7#2'RA'#5 -+ +'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChang' -+ +'e'#8'TabOrder'#2#3#0#0#6'TRaDec'#7'RaDec14'#3'Tag'#2#2#4'Left'#3#253#0#6'He' -+ +'ight'#2#23#3'Top'#2'~'#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0 -+ +#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#5#0 -+ +#0#6'TRaDec'#7'RaDec15'#3'Tag'#2#3#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3 -+ +#151#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Ena' -+ +'bled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#7#0#0#6'TRaDec'#7 -+ +'RaDec16'#3'Tag'#2#4#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#176#0#5'Width'#3 -+ +#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChang' -+ +'e'#7#17'HourSpacingChange'#8'TabOrder'#2#9#0#0#6'TRaDec'#7'RaDec17'#3'Tag'#2 -+ +#5#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#201#0#5'Width'#3#176#0#4'kind'#7#2 -+ +'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacin' -+ +'gChange'#8'TabOrder'#2#11#0#0#6'TRaDec'#7'RaDec18'#3'Tag'#2#6#4'Left'#3#253 -+ +#0#6'Height'#2#23#3'Top'#3#226#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5 -+ +#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabO' -+ +'rder'#2#13#0#0#6'TRaDec'#7'RaDec19'#3'Tag'#2#7#4'Left'#3#253#0#6'Height'#2 -+ +#23#3'Top'#3#251#0#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0 -+ +#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#15#0#0 -+ +#6'TRaDec'#7'RaDec20'#3'Tag'#2#8#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3#20#1 -+ +#5'Width'#3#176#0#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9 -+ +#8'OnChange'#7#17'HourSpacingChange'#8'TabOrder'#2#17#0#0#6'TRaDec'#7'RaDec2' -+ +'1'#3'Tag'#2#9#4'Left'#3#253#0#6'Height'#2#23#3'Top'#3'-'#1#5'Width'#3#176#0 -+ +#4'kind'#7#2'RA'#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17 -+ +'HourSpacingChange'#8'TabOrder'#2#19#0#0#6'TRaDec'#7'RaDec22'#3'Tag'#2#10#4 -+ +'Left'#3#253#0#6'Height'#2#23#3'Top'#3'F'#1#5'Width'#3#176#0#4'kind'#7#2'RA' -+ +#5'value'#5#0#0#0#0#0#0#0#0#0#0#7'Enabled'#9#8'OnChange'#7#17'HourSpacingCha' -+ +'nge'#8'TabOrder'#2#21#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#5'Page6'#12 -+ +'ClientHeight'#3#170#1#11'ClientWidth'#3#246#1#0#6'TLabel'#7'Label95'#4'Left' -+ +#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'i'#7'Caption'#6#19'Object List Set' -+ +'ting'#11'ParentColor'#8#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#24#6'Height' -+ +#3#223#0#3'Top'#2'('#5'Width'#3'q'#1#7'Caption'#6'!Type of object to add to ' -+ +'the list'#12'ClientHeight'#3#208#0#11'ClientWidth'#3'm'#1#8'TabOrder'#2#0#0 -+ +#9'TCheckBox'#8'liststar'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#24#5'Width'#2 -+ +'6'#7'Caption'#6#5'Stars'#7'OnClick'#7#13'liststarClick'#8'TabOrder'#2#0#0#0 -+ ,#9'TCheckBox'#7'listneb'#4'Left'#2' '#6'Height'#2#21#3'Top'#2':'#5'Width'#2 -+ +'E'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#12'listnebClick'#8'TabOrder'#2#1#0#0 -+ +#9'TCheckBox'#7'listpla'#4'Left'#2' '#6'Height'#2#21#3'Top'#2'\'#5'Width'#3 -+ +#138#0#7'Caption'#6#19'Solar System object'#7'OnClick'#7#12'listplaClick'#8 -+ +'TabOrder'#2#2#0#0#9'TCheckBox'#7'listvar'#4'Left'#2' '#6'Height'#2#21#3'Top' -+ +#2'~'#5'Width'#2'g'#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#12'listvarC' -+ +'lick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#7'listdbl'#4'Left'#2' '#6'Height'#2 -+ +#21#3'Top'#3#160#0#5'Width'#2'a'#7'Caption'#6#12'Double Stars'#7'OnClick'#7 -+ +#12'listdblClick'#8'TabOrder'#2#4#0#0#0#0#0#6'TPanel'#8'FOVPanel'#4'Left'#2#1 -+ +#6'Height'#2'6'#3'Top'#3#206#1#5'Width'#3#252#1#5'Align'#7#8'alBottom'#12'Cl' -+ +'ientHeight'#2'6'#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#7'Visible'#8#0#6'T' -+ +'Label'#4'fv10'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'A' -+ +'utoSize'#8#7'Caption'#6#4'fv10'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4 -+ +'Left'#2#11#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption' -+ +#6#11'fov number:'#11'ParentColor'#8#0#0#6'TLabel'#3'fv9'#4'Left'#3'K'#1#6'H' -+ +'eight'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw9'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#3'fv8'#4'Left'#3#251#0#6'Height'#2#17#3'Top'#2 -+ +' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw8'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#3'fv7'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'A' -+ +'utoSize'#8#7'Caption'#6#3'fw7'#11'ParentColor'#8#0#0#6'TLabel'#3'fv6'#4'Lef' -+ +'t'#2'['#6'Height'#2#17#3'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6 -+ +#3'fw6'#11'ParentColor'#8#0#0#6'TLabel'#3'fv5'#4'Left'#2#11#6'Height'#2#17#3 -+ +'Top'#2' '#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw5'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#3'fv4'#4'Left'#3#155#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N' -+ +#8'AutoSize'#8#7'Caption'#6#3'fw4'#11'ParentColor'#8#0#0#6'TLabel'#3'fv3'#4 -+ +'Left'#3'K'#1#6'Height'#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Captio' -+ +'n'#6#3'fw3'#11'ParentColor'#8#0#0#6'TLabel'#3'fv2'#4'Left'#3#251#0#6'Height' -+ +#2#17#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw2'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#3'fv1'#4'Left'#3#171#0#6'Height'#2#17#3'Top'#2#8#5'Wid' -+ +'th'#2'N'#8'AutoSize'#8#7'Caption'#6#3'fw1'#11'ParentColor'#8#0#0#6'TLabel'#3 -+ +'fv0'#4'Left'#2'['#6'Height'#2#13#3'Top'#2#8#5'Width'#2'N'#8'AutoSize'#8#7'C' -+ +'aption'#6#3'fw0'#11'ParentColor'#8#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6 -+ +'Height'#2'2'#3'Top'#3#5#2#5'Width'#3#254#1#5'Align'#7#8'alBottom'#12'Client' -+ +'Height'#2'2'#11'ClientWidth'#3#254#1#8'TabOrder'#2#1#0#7'TButton'#7'Button3' -+ +#4'Left'#3#212#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'ak' -+ +'Top'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'De' -+ +'fault'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4'#4'Le' -+ +'ft'#3'4'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 -+ +'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClic' -+ +'k'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'Left'#3 -+ +#156#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akR' -+ +'ight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel' -+ +#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#2'x'#6 -+ +'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7 -+ +'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_display.lfm skychart_3.2_up/skychart/pu_config_display.lfm ---- skychart_3.2/skychart/pu_config_display.lfm 2010-09-28 18:29:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_display.lfm 2011-03-09 15:18:57.113096300 +0100 -@@ -1,7 +1,7 @@ - object f_config_display: Tf_config_display -- Left = 842 -+ Left = 501 - Height = 560 -- Top = 111 -+ Top = 109 - Width = 515 - ActiveControl = MainPanel - BorderStyle = bsToolWindow -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 510 -@@ -31,13 +31,12 @@ - Width = 513 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Display' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object stardisplay: TRadioGroup - Left = 8 - Height = 65 -@@ -91,9 +90,9 @@ - end - object red_moveBox: TCheckBox - Left = 28 -- Height = 21 -+ Height = 22 - Top = 429 -- Width = 202 -+ Width = 227 - Caption = 'Reduce detail when moving the chart' - OnClick = red_moveBoxClick - TabOrder = 2 -@@ -110,13 +109,13 @@ - Left = 38 - Height = 14 - Top = 48 -- Width = 78 -+ Width = 90 - Caption = 'Stars bitmap file' - ParentColor = False - end - object FileNameEdit1: TFileNameEdit - Left = 37 -- Height = 21 -+ Height = 23 - Top = 84 - Width = 332 - DialogOptions = [] -@@ -124,7 +123,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 0 -- MaxLength = 0 - TabOrder = 0 - OnChange = FileNameEdit1Change - end -@@ -146,6 +144,22 @@ - ClientHeight = 242 - ClientWidth = 441 - TabOrder = 3 -+ object Label259: TLabel -+ Left = 24 -+ Height = 14 -+ Top = 75 -+ Width = 42 -+ Caption = 'Contrast' -+ ParentColor = False -+ end -+ object Label258: TLabel -+ Left = 24 -+ Height = 14 -+ Top = 38 -+ Width = 85 -+ Caption = 'Bright Stars Size ' -+ ParentColor = False -+ end - object StarButton7: TButton - Left = 224 - Height = 25 -@@ -202,31 +216,47 @@ - Position = 1 - TabOrder = 4 - end -- object Label259: TLabel -+ end -+ object Panel7: TPanel -+ Left = 8 -+ Height = 242 -+ Top = 172 -+ Width = 441 -+ ClientHeight = 242 -+ ClientWidth = 441 -+ TabOrder = 5 -+ object Label257: TLabel - Left = 24 - Height = 14 -- Top = 75 -+ Top = 79 -+ Width = 125 -+ Caption = 'Increment for Bright Stars' -+ ParentColor = False -+ end -+ object Label263: TLabel -+ Left = 24 -+ Height = 14 -+ Top = 161 -+ Width = 77 -+ Caption = 'Color saturation' -+ ParentColor = False -+ end -+ object Label262: TLabel -+ Left = 24 -+ Height = 14 -+ Top = 120 - Width = 42 - Caption = 'Contrast' - ParentColor = False - end -- object Label258: TLabel -+ object Label256: TLabel - Left = 24 - Height = 14 - Top = 38 -- Width = 85 -- Caption = 'Bright Stars Size ' -+ Width = 80 -+ Caption = 'Faint Stars Size ' - ParentColor = False - end -- end -- object Panel7: TPanel -- Left = 8 -- Height = 242 -- Top = 172 -- Width = 441 -- ClientHeight = 242 -- ClientWidth = 441 -- TabOrder = 5 - object StarButton4: TButton - Left = 336 - Height = 25 -@@ -318,44 +348,12 @@ - Position = 1 - TabOrder = 7 - end -- object Label257: TLabel -- Left = 24 -- Height = 14 -- Top = 79 -- Width = 125 -- Caption = 'Increment for Bright Stars' -- ParentColor = False -- end -- object Label263: TLabel -- Left = 24 -- Height = 14 -- Top = 161 -- Width = 77 -- Caption = 'Color saturation' -- ParentColor = False -- end -- object Label262: TLabel -- Left = 24 -- Height = 14 -- Top = 120 -- Width = 42 -- Caption = 'Contrast' -- ParentColor = False -- end -- object Label256: TLabel -- Left = 24 -- Height = 14 -- Top = 38 -- Width = 80 -- Caption = 'Faint Stars Size ' -- ParentColor = False -- end - end - end - object Page2: TTabSheet - Caption = 'Colour' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object Label181: TLabel - Left = 86 - Height = 14 -@@ -872,8 +870,8 @@ - end - object Page3: TTabSheet - Caption = 'Deep-sky colour' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object lblDSOCScheme: TLabel - Left = 13 - Height = 14 -@@ -1321,7 +1319,7 @@ - end - object NebBrightBar: TTrackBar - Left = 232 -- Height = 33 -+ Height = 38 - Top = 35 - Width = 217 - Frequency = 26 -@@ -1333,7 +1331,7 @@ - end - object NebGrayBar: TTrackBar - Left = 8 -- Height = 33 -+ Height = 38 - Top = 35 - Width = 209 - Frequency = 26 -@@ -1396,8 +1394,8 @@ - end - object Page4: TTabSheet - Caption = 'Sky colour' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object Panel2: TPanel - Left = 24 - Height = 147 -@@ -1574,8 +1572,8 @@ - end - object Page5: TTabSheet - Caption = 'Lines' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object EqGrid: TCheckBox - Left = 16 - Height = 21 -@@ -1658,7 +1656,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 2 - OnChange = ConstlFileChange - end -@@ -1720,7 +1717,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 2 - OnChange = ConstbFileChange - end -@@ -1906,8 +1902,8 @@ - end - object Page6: TTabSheet - Caption = 'Labels' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object MagLabel: TRadioGroup - Left = 16 - Height = 81 -@@ -2484,8 +2480,8 @@ - end - object Page7: TTabSheet - Caption = 'Fonts' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object Bevel10: TBevel - Left = 8 - Height = 329 -@@ -3020,8 +3016,8 @@ - end - object Page8: TTabSheet - Caption = 'Finder circle' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object Label307: TLabel - Left = 80 - Height = 14 -@@ -3167,8 +3163,8 @@ - end - object Page9: TTabSheet - Caption = 'Finder rectangle' -- ClientHeight = 504 -- ClientWidth = 509 -+ ClientHeight = 473 -+ ClientWidth = 507 - object Label308: TLabel - Left = 80 - Height = 14 -diff -ur skychart_3.2/skychart/pu_config_display.lrs skychart_3.2_up/skychart/pu_config_display.lrs ---- skychart_3.2/skychart/pu_config_display.lrs 2010-09-28 18:29:57.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_display.lrs 2011-03-09 15:18:57.148092003 +0100 -@@ -1,621 +1,743 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_display','FORMDATA',[ -- 'TPF0'#17'Tf_config_display'#16'f_config_display'#4'Left'#3'J'#3#6'Height'#3 -- +'0'#2#3'Top'#2'o'#5'Width'#3#3#2#13'ActiveControl'#7#9'MainPanel'#11'BorderS' -+ 'TPF0'#17'Tf_config_display'#16'f_config_display'#4'Left'#3#245#1#6'Height'#3 -+ +'0'#2#3'Top'#2'm'#5'Width'#3#3#2#13'ActiveControl'#7#9'MainPanel'#11'BorderS' - +'tyle'#7#12'bsToolWindow'#7'Caption'#6#7'Display'#12'ClientHeight'#3'0'#2#11 - +'ClientWidth'#3#3#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCrea' - +'te'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' -- +#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3 -- +#254#1#3'Top'#2#0#5'Width'#3#3#2#5'Align'#7#8'alClient'#12'ClientHeight'#3 -+ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' -+ +#3#254#1#3'Top'#2#0#5'Width'#3#3#2#5'Align'#7#8'alClient'#12'ClientHeight'#3 - +#254#1#11'ClientWidth'#3#3#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageCon' - +'trol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#252#1#3'Top'#2#1#5'Width'#3#1 -- +#2#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabIndex' -- +#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Display'#12'Clie' -- +'ntHeight'#3#248#1#11'ClientWidth'#3#253#1#0#11'TRadioGroup'#11'stardisplay' -- +#4'Left'#2#8#6'Height'#2'A'#3'Top'#2'd'#5'Width'#3#185#1#8'AutoFill'#9#7'Cap' -- +'tion'#6#12'Star Display'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizin' -- +'g.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenou' -- +'sChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' -- +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' -- +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' -- +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'2'#11 -- +'ClientWidth'#3#181#1#7'Columns'#2#3#13'Items.Strings'#1#6#9'Line mode'#6#12 -- +'Photographic'#6#10'Parametric'#0#7'OnClick'#7#16'stardisplayClick'#8'TabOrd' -- +'er'#2#1#0#0#11'TRadioGroup'#13'nebuladisplay'#4'Left'#2#8#6'Height'#2'A'#3 -- +'Top'#2#20#5'Width'#3#185#1#8'AutoFill'#9#7'Caption'#6#14'Nebula Display'#28 -- +'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'C' -- +'hildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing' -- +'.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHoriz' -- +'ontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChi' -- +'lds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSiz' -- +'ing.ControlsPerLine'#2#2#12'ClientHeight'#2'2'#11'ClientWidth'#3#181#1#7'Co' -- +'lumns'#2#2#13'Items.Strings'#1#6#9'Line mode'#6#7'Graphic'#0#7'OnClick'#7#18 -- +'nebuladisplayClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#11'red_moveBox'#4'Left' -- +#2#28#6'Height'#2#21#3'Top'#3#173#1#5'Width'#3#202#0#7'Caption'#6'#Reduce de' -- +'tail when moving the chart'#7'OnClick'#7#16'red_moveBoxClick'#8'TabOrder'#2 -- +#2#0#0#6'TPanel'#6'Panel5'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#173#0#5'Wi' -- +'dth'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2 -- +#4#0#6'TLabel'#6'Label9'#4'Left'#2'&'#6'Height'#2#14#3'Top'#2'0'#5'Width'#2 -- +'N'#7'Caption'#6#17'Stars bitmap file'#11'ParentColor'#8#0#0#13'TFileNameEdi' -- +'t'#13'FileNameEdit1'#4'Left'#2'%'#6'Height'#2#21#3'Top'#2'T'#5'Width'#3'L'#1 -- +#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonW' -- +'idth'#2#23#9'NumGlyphs'#2#0#9'MaxLength'#2#0#8'TabOrder'#2#0#8'OnChange'#7 -- +#19'FileNameEdit1Change'#0#0#7'TButton'#7'Button7'#4'Left'#2'&'#6'Height'#2 -- +#25#3'Top'#3#145#0#5'Width'#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'But' -- +'ton7Click'#8'TabOrder'#2#1#0#0#0#6'TPanel'#6'Panel4'#4'Left'#2#8#6'Height'#3 -- +#242#0#3'Top'#3#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWid' -- +'th'#3#185#1#8'TabOrder'#2#3#0#7'TButton'#11'StarButton7'#4'Left'#3#224#0#6 -- +'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4 -- +#7'Caption'#6#9'Big stars'#7'OnClick'#7#16'StarButton7Click'#8'TabOrder'#2#0 -- +#0#0#7'TButton'#11'StarButton6'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5 -- +'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11'Small stars'#7 -- +'OnClick'#7#16'StarButton6Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarButto' -- +'n5'#4'Left'#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpaci' -- +'ng.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton5Clic' -- +'k'#8'TabOrder'#2#2#0#0#9'TTrackBar'#11'StarDynBar1'#4'Left'#3#192#0#6'Heigh' -- +'t'#2'#'#3'Top'#2'C'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#3#150#0#3'Min' -- +#2'2'#8'OnChange'#7#17'StarDynBar1Change'#8'PageSize'#2#10#8'Position'#2'2'#8 -- +'TabOrder'#2#3#0#0#9'TTrackBar'#12'StarSizeBar1'#4'Left'#3#192#0#6'Height'#2 -- +'#'#3'Top'#2#30#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'O' -- +'nChange'#7#18'StarSizeBar1Change'#8'PageSize'#2#5#8'Position'#2#1#8'TabOrde' -- +'r'#2#4#0#0#6'TLabel'#8'Label259'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'K'#5 -- +'Width'#2'*'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' -- +'l258'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'&'#5'Width'#2'U'#7'Caption'#6#18 -- +'Bright Stars Size '#11'ParentColor'#8#0#0#0#6'TPanel'#6'Panel7'#4'Left'#2#8 -- +#6'Height'#3#242#0#3'Top'#3#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0 -- +#11'ClientWidth'#3#185#1#8'TabOrder'#2#5#0#7'TButton'#11'StarButton4'#4'Left' -- ,#3'P'#1#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBo' -- +'rder'#2#4#7'Caption'#6#11'Black/White'#7'OnClick'#7#16'StarButton4Click'#8 -- +'TabOrder'#2#0#0#0#7'TButton'#11'StarButton3'#4'Left'#3#224#0#6'Height'#2#25 -- +#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#10'High Color'#7'OnClick'#7#16'StarButton3Click'#8'TabOrder'#2#1#0#0#7'TBut' -- +'ton'#11'StarButton2'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2 -- +'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Naked Eye'#7'OnClick'#7 -- +#16'StarButton2Click'#8'TabOrder'#2#2#0#0#7'TButton'#11'StarButton1'#4'Left' -- +#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBord' -- +'er'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton1Click'#8'TabOrde' -- +'r'#2#3#0#0#9'TTrackBar'#15'SizeContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3 -- +'Top'#2'<'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#2'd'#3'Min'#2#10#8'OnCh' -- +'ange'#7#21'SizeContrastBarChange'#8'PageSize'#2#10#8'Position'#2#10#8'TabOr' -- +'der'#2#4#0#0#9'TTrackBar'#13'SaturationBar'#4'Left'#3#193#0#6'Height'#2'!'#3 -- +'Top'#3#142#0#5'Width'#3#225#0#9'Frequency'#2#28#3'Max'#3#255#0#8'OnChange'#7 -- +#19'SaturationBarChange'#8'PageSize'#2#28#8'Position'#2#0#8'TabOrder'#2#5#0#0 -- +#9'TTrackBar'#15'StarContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'e' -- +#5'Width'#3#225#0#9'Frequency'#2'd'#3'Max'#3#232#3#3'Min'#2'd'#8'OnChange'#7 -- +#21'StarContrastBarChange'#8'PageSize'#2'd'#8'Position'#2'd'#8'TabOrder'#2#6 -- +#0#0#9'TTrackBar'#11'StarSizeBar'#4'Left'#3#193#0#6'Height'#2'$'#3'Top'#2#16 -- +#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'OnChange'#7#17'S' -- +'tarSizeBarChange'#8'PageSize'#2#5#8'Position'#2#1#8'TabOrder'#2#7#0#0#6'TLa' -- +'bel'#8'Label257'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'O'#5'Width'#2'}'#7'Ca' -- +'ption'#6#26'Increment for Bright Stars'#11'ParentColor'#8#0#0#6'TLabel'#8'L' -- +'abel263'#4'Left'#2#24#6'Height'#2#14#3'Top'#3#161#0#5'Width'#2'M'#7'Caption' -- +#6#16'Color saturation'#11'ParentColor'#8#0#0#6'TLabel'#8'Label262'#4'Left'#2 -- +#24#6'Height'#2#14#3'Top'#2'x'#5'Width'#2'*'#7'Caption'#6#8'Contrast'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#8'Label256'#4'Left'#2#24#6'Height'#2#14#3'Top'#2 -- +'&'#5'Width'#2'P'#7'Caption'#6#17'Faint Stars Size '#11'ParentColor'#8#0#0#0 -- +#0#9'TTabSheet'#5'Page2'#7'Caption'#6#6'Colour'#12'ClientHeight'#3#248#1#11 -- +'ClientWidth'#3#253#1#0#6'TLabel'#8'Label181'#4'Left'#2'V'#6'Height'#2#14#3 -- +'Top'#2'"'#5'Width'#2#20#7'Caption'#6#4'-0.3'#11'ParentColor'#8#0#0#6'TLabel' -- +#8'Label182'#4'Left'#3#142#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20#7'Capt' -- +'ion'#6#4'-0.1'#11'ParentColor'#8#0#0#6'TLabel'#8'Label183'#4'Left'#3#198#0#6 -- +'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.2'#11'ParentColor'#8 -- +#0#0#6'TLabel'#8'Label184'#4'Left'#3#254#0#6'Height'#2#14#3'Top'#2'"'#5'Widt' -- +'h'#2#16#7'Caption'#6#3'0.5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label185'#4'L' -- +'eft'#3'0'#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.8'#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label186'#4'Left'#3'f'#1#6'Height'#2#14#3'To' -- +'p'#2'"'#5'Width'#2#16#7'Caption'#6#3'1.3'#11'ParentColor'#8#0#0#6'TLabel'#8 -- +'Label187'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#7#7'Caption' -- +#6#1'>'#11'ParentColor'#8#0#0#6'TLabel'#8'Label188'#4'Left'#2'('#6'Height'#2 -- +#14#3'Top'#2'"'#5'Width'#2#7#7'Caption'#6#1'<'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#8'Label189'#4'Left'#2' '#6'Height'#2#14#3'Top'#2#10#5'Width'#2'Z'#7'Capt' -- +'ion'#6#19'Star colour (B-V) :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label193'#4 -- +'Left'#3#208#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'8'#9'Alignment'#7#8 -- +'taCenter'#7'Caption'#6#11'Coord. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'La' -- +'bel194'#4'Left'#3'#'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2''''#9'Align' -- +'ment'#7#8'taCenter'#7'Caption'#6#8'Eq. Grid'#11'ParentColor'#8#0#0#6'TLabel' -- +#8'Label195'#4'Left'#3#184#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#24#9'Alig' -- +'nment'#7#8'taCenter'#7'Caption'#6#5'Orbit'#11'ParentColor'#8#0#0#6'TLabel'#8 -- +'Label197'#4'Left'#2'0'#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'>'#9'Alignm' -- +'ent'#7#8'taCenter'#7'Caption'#6#13'Constellation'#11'ParentColor'#8#0#0#6'T' -- +'Label'#8'Label198'#4'Left'#3#136#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2 -- +'0'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Boundary'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label199'#4'Left'#3'p'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2 -- +'-'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Eyepiece'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label196'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width' -- +#2'7'#9'Alignment'#7#8'taCenter'#7'Caption'#6#11'Misc. Lines'#11'ParentColor' -- +#8#0#0#6'TLabel'#7'Label11'#4'Left'#3'4'#1#6'Height'#2#14#3'Top'#2'b'#5'Widt' -- +'h'#2'&'#9'Alignment'#7#8'taCenter'#7'Caption'#6#7'Horizon'#11'ParentColor'#8 -- +#0#0#6'TLabel'#6'Label6'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2 -- +'*'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Asteroid'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label234'#4'Left'#2'x'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#31 -- ,#9'Alignment'#7#8'taCenter'#7'Caption'#6#5'Comet'#11'ParentColor'#8#0#0#6'TL' -- +'abel'#8'Label269'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'1'#7 -- +'Caption'#6#9'Milky Way'#11'ParentColor'#8#0#0#6'TPanel'#3'bg1'#4'Left'#2' ' -- +#6'Height'#2'&'#3'Top'#2'0'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'Client' -- +'Width'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#0#0#6'TShape'#6'Shape1'#3'Ta' -- +'g'#2#1#4'Left'#2#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7 -- +#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape2'#3'Tag'#2#2#4 -- +'Left'#2'M'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeM' -- +'ouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape3'#3'Tag'#2#3#4'Left'#3 -- +#130#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseU' -- +'p'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#6'Shape4'#3'Tag'#2#4#4'Left'#3#184#0 -+ +#2#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'TabOrd' -+ +'er'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Display'#12'ClientHeight'#3 -+ +#217#1#11'ClientWidth'#3#251#1#0#11'TRadioGroup'#11'stardisplay'#4'Left'#2#8 -+ +#6'Height'#2'A'#3'Top'#2'd'#5'Width'#3#185#1#8'AutoFill'#9#7'Caption'#6#12'S' -+ +'tar Display'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomS' -+ +'pacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -+ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -+ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -+ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -+ +'m'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'2'#11'ClientWidth' -+ +#3#181#1#7'Columns'#2#3#13'Items.Strings'#1#6#9'Line mode'#6#12'Photographic' -+ +#6#10'Parametric'#0#7'OnClick'#7#16'stardisplayClick'#8'TabOrder'#2#1#0#0#11 -+ +'TRadioGroup'#13'nebuladisplay'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#20#5'Wid' -+ +'th'#3#185#1#8'AutoFill'#9#7'Caption'#6#14'Nebula Display'#28'ChildSizing.Le' -+ +'ftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enl' -+ +'argeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertic' -+ +'al'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'cr' -+ +'sScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildS' -+ +'izing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPe' -+ +'rLine'#2#2#12'ClientHeight'#2'2'#11'ClientWidth'#3#181#1#7'Columns'#2#2#13 -+ +'Items.Strings'#1#6#9'Line mode'#6#7'Graphic'#0#7'OnClick'#7#18'nebuladispla' -+ +'yClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#11'red_moveBox'#4'Left'#2#28#6'Hei' -+ +'ght'#2#22#3'Top'#3#173#1#5'Width'#3#227#0#7'Caption'#6'#Reduce detail when ' -+ +'moving the chart'#7'OnClick'#7#16'red_moveBoxClick'#8'TabOrder'#2#2#0#0#6'T' -+ +'Panel'#6'Panel5'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#173#0#5'Width'#3#185 -+ +#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2#4#0#6'TLab' -+ +'el'#6'Label9'#4'Left'#2'&'#6'Height'#2#14#3'Top'#2'0'#5'Width'#2'Z'#7'Capti' -+ +'on'#6#17'Stars bitmap file'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'File' -+ +'NameEdit1'#4'Left'#2'%'#6'Height'#2#23#3'Top'#2'T'#5'Width'#3'L'#1#13'Dialo' -+ +'gOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2 -+ +#23#9'NumGlyphs'#2#0#8'TabOrder'#2#0#8'OnChange'#7#19'FileNameEdit1Change'#0 -+ +#0#7'TButton'#7'Button7'#4'Left'#2'&'#6'Height'#2#25#3'Top'#3#145#0#5'Width' -+ +#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button7Click'#8'TabOrder'#2#1#0 -+ +#0#0#6'TPanel'#6'Panel4'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#172#0#5'Widt' -+ +'h'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'TabOrder'#2#3 -+ +#0#6'TLabel'#8'Label259'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'K'#5'Width'#2 -+ +'*'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Label258'#4'L' -+ +'eft'#2#24#6'Height'#2#14#3'Top'#2'&'#5'Width'#2'U'#7'Caption'#6#18'Bright S' -+ +'tars Size '#11'ParentColor'#8#0#0#7'TButton'#11'StarButton7'#4'Left'#3#224#0 -+ +#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2 -+ +#4#7'Caption'#6#9'Big stars'#7'OnClick'#7#16'StarButton7Click'#8'TabOrder'#2 -+ +#0#0#0#7'TButton'#11'StarButton6'#4'Left'#2'x'#6'Height'#2#25#3'Top'#3#192#0 -+ +#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11'Small stars' -+ +#7'OnClick'#7#16'StarButton6Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarBut' -+ +'ton5'#4'Left'#2#16#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpa' -+ +'cing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'StarButton5Cl' -+ +'ick'#8'TabOrder'#2#2#0#0#9'TTrackBar'#11'StarDynBar1'#4'Left'#3#192#0#6'Hei' -+ +'ght'#2'#'#3'Top'#2'C'#5'Width'#3#225#0#9'Frequency'#2#10#3'Max'#3#150#0#3'M' -+ +'in'#2'2'#8'OnChange'#7#17'StarDynBar1Change'#8'PageSize'#2#10#8'Position'#2 -+ +'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#12'StarSizeBar1'#4'Left'#3#192#0#6'Heig' -+ +'ht'#2'#'#3'Top'#2#30#5'Width'#3#225#0#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2 -+ +#1#8'OnChange'#7#18'StarSizeBar1Change'#8'PageSize'#2#5#8'Position'#2#1#8'Ta' -+ +'bOrder'#2#4#0#0#0#6'TPanel'#6'Panel7'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3 -+ +#172#0#5'Width'#3#185#1#12'ClientHeight'#3#242#0#11'ClientWidth'#3#185#1#8'T' -+ +'abOrder'#2#5#0#6'TLabel'#8'Label257'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'O' -+ ,#5'Width'#2'}'#7'Caption'#6#26'Increment for Bright Stars'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#8'Label263'#4'Left'#2#24#6'Height'#2#14#3'Top'#3#161#0#5'Widt' -+ +'h'#2'M'#7'Caption'#6#16'Color saturation'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label262'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'x'#5'Width'#2'*'#7'Caption'#6 -+ +#8'Contrast'#11'ParentColor'#8#0#0#6'TLabel'#8'Label256'#4'Left'#2#24#6'Heig' -+ +'ht'#2#14#3'Top'#2'&'#5'Width'#2'P'#7'Caption'#6#17'Faint Stars Size '#11'Pa' -+ +'rentColor'#8#0#0#7'TButton'#11'StarButton4'#4'Left'#3'P'#1#6'Height'#2#25#3 -+ +'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#11 -+ +'Black/White'#7'OnClick'#7#16'StarButton4Click'#8'TabOrder'#2#0#0#0#7'TButto' -+ +'n'#11'StarButton3'#4'Left'#3#224#0#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2 -+ +'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'High Color'#7'OnClick' -+ +#7#16'StarButton3Click'#8'TabOrder'#2#1#0#0#7'TButton'#11'StarButton2'#4'Lef' -+ +'t'#2'x'#6'Height'#2#25#3'Top'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerB' -+ +'order'#2#4#7'Caption'#6#9'Naked Eye'#7'OnClick'#7#16'StarButton2Click'#8'Ta' -+ +'bOrder'#2#2#0#0#7'TButton'#11'StarButton1'#4'Left'#2#16#6'Height'#2#25#3'To' -+ +'p'#3#192#0#5'Width'#2'_'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'D' -+ +'efault'#7'OnClick'#7#16'StarButton1Click'#8'TabOrder'#2#3#0#0#9'TTrackBar' -+ +#15'SizeContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'<'#5'Width'#3 -+ +#225#0#9'Frequency'#2#10#3'Max'#2'd'#3'Min'#2#10#8'OnChange'#7#21'SizeContra' -+ +'stBarChange'#8'PageSize'#2#10#8'Position'#2#10#8'TabOrder'#2#4#0#0#9'TTrack' -+ +'Bar'#13'SaturationBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#3#142#0#5'Widt' -+ +'h'#3#225#0#9'Frequency'#2#28#3'Max'#3#255#0#8'OnChange'#7#19'SaturationBarC' -+ +'hange'#8'PageSize'#2#28#8'Position'#2#0#8'TabOrder'#2#5#0#0#9'TTrackBar'#15 -+ +'StarContrastBar'#4'Left'#3#193#0#6'Height'#2'!'#3'Top'#2'e'#5'Width'#3#225#0 -+ +#9'Frequency'#2'd'#3'Max'#3#232#3#3'Min'#2'd'#8'OnChange'#7#21'StarContrastB' -+ +'arChange'#8'PageSize'#2'd'#8'Position'#2'd'#8'TabOrder'#2#6#0#0#9'TTrackBar' -+ +#11'StarSizeBar'#4'Left'#3#193#0#6'Height'#2'$'#3'Top'#2#16#5'Width'#3#225#0 -+ +#9'Frequency'#2#5#3'Max'#2'2'#3'Min'#2#1#8'OnChange'#7#17'StarSizeBarChange' -+ +#8'PageSize'#2#5#8'Position'#2#1#8'TabOrder'#2#7#0#0#0#0#9'TTabSheet'#5'Page' -+ +'2'#7'Caption'#6#6'Colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0 -+ +#6'TLabel'#8'Label181'#4'Left'#2'V'#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20 -+ +#7'Caption'#6#4'-0.3'#11'ParentColor'#8#0#0#6'TLabel'#8'Label182'#4'Left'#3 -+ +#142#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#20#7'Caption'#6#4'-0.1'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#8'Label183'#4'Left'#3#198#0#6'Height'#2#14#3'Top'#2 -+ +'"'#5'Width'#2#16#7'Caption'#6#3'0.2'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' -+ +'l184'#4'Left'#3#254#0#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6 -+ +#3'0.5'#11'ParentColor'#8#0#0#6'TLabel'#8'Label185'#4'Left'#3'0'#1#6'Height' -+ +#2#14#3'Top'#2'"'#5'Width'#2#16#7'Caption'#6#3'0.8'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#8'Label186'#4'Left'#3'f'#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#16 -+ +#7'Caption'#6#3'1.3'#11'ParentColor'#8#0#0#6'TLabel'#8'Label187'#4'Left'#3 -+ +#160#1#6'Height'#2#14#3'Top'#2'"'#5'Width'#2#7#7'Caption'#6#1'>'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#8'Label188'#4'Left'#2'('#6'Height'#2#14#3'Top'#2'"'#5 -+ +'Width'#2#7#7'Caption'#6#1'<'#11'ParentColor'#8#0#0#6'TLabel'#8'Label189'#4 -+ +'Left'#2' '#6'Height'#2#14#3'Top'#2#10#5'Width'#2'Z'#7'Caption'#6#19'Star co' -+ +'lour (B-V) :'#11'ParentColor'#8#0#0#6'TLabel'#8'Label193'#4'Left'#3#208#0#6 -+ +'Height'#2#14#3'Top'#3#162#0#5'Width'#2'8'#9'Alignment'#7#8'taCenter'#7'Capt' -+ +'ion'#6#11'Coord. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label194'#4'Left'#3 -+ +'#'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2''''#9'Alignment'#7#8'taCenter' -+ +#7'Caption'#6#8'Eq. Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label195'#4'Left' -+ +#3#184#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#24#9'Alignment'#7#8'taCenter' -+ +#7'Caption'#6#5'Orbit'#11'ParentColor'#8#0#0#6'TLabel'#8'Label197'#4'Left'#2 -+ +'0'#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'>'#9'Alignment'#7#8'taCenter'#7 -+ +'Caption'#6#13'Constellation'#11'ParentColor'#8#0#0#6'TLabel'#8'Label198'#4 -+ +'Left'#3#136#0#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'0'#9'Alignment'#7#8 -+ +'taCenter'#7'Caption'#6#8'Boundary'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' -+ +'99'#4'Left'#3'p'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'-'#9'Alignment'#7#8 -+ +'taCenter'#7'Caption'#6#8'Eyepiece'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' -+ +'96'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#3#162#0#5'Width'#2'7'#9'Alignment' -+ +#7#8'taCenter'#7'Caption'#6#11'Misc. Lines'#11'ParentColor'#8#0#0#6'TLabel'#7 -+ +'Label11'#4'Left'#3'4'#1#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'&'#9'Alignmen' -+ +'t'#7#8'taCenter'#7'Caption'#6#7'Horizon'#11'ParentColor'#8#0#0#6'TLabel'#6 -+ +'Label6'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'*'#9'Alignment'#7 -+ +#8'taCenter'#7'Caption'#6#8'Asteroid'#11'ParentColor'#8#0#0#6'TLabel'#8'Labe' -+ +'l234'#4'Left'#2'x'#6'Height'#2#14#3'Top'#2'b'#5'Width'#2#31#9'Alignment'#7#8 -+ ,'taCenter'#7'Caption'#6#5'Comet'#11'ParentColor'#8#0#0#6'TLabel'#8'Label269' -+ +#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'b'#5'Width'#2'1'#7'Caption'#6#9'Mil' -+ +'ky Way'#11'ParentColor'#8#0#0#6'TPanel'#3'bg1'#4'Left'#2' '#6'Height'#2'&'#3 -+ +'Top'#2'0'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11 -+ +'ParentColor'#8#8'TabOrder'#2#0#0#6'TShape'#6'Shape1'#3'Tag'#2#1#4'Left'#2#24 - +#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'S' -- +'hape'#7#8'stCircle'#0#0#6'TShape'#6'Shape5'#3'Tag'#2#5#4'Left'#3#237#0#6'He' -- +'ight'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' -- +#7#8'stCircle'#0#0#6'TShape'#6'Shape6'#3'Tag'#2#6#4'Left'#3'"'#1#6'Height'#2 -+ +'hape'#7#8'stCircle'#0#0#6'TShape'#6'Shape2'#3'Tag'#2#2#4'Left'#2'M'#6'Heigh' -+ +'t'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7 -+ +#8'stCircle'#0#0#6'TShape'#6'Shape3'#3'Tag'#2#3#4'Left'#3#130#0#6'Height'#2 - +#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'st' -- +'Circle'#0#0#6'TShape'#6'Shape7'#3'Tag'#2#7#4'Left'#3'X'#1#6'Height'#2#30#3 -+ +'Circle'#0#0#6'TShape'#6'Shape4'#3'Tag'#2#4#4'Left'#3#184#0#6'Height'#2#30#3 - +'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircl' -- +'e'#0#0#0#6'TPanel'#3'bg3'#4'Left'#2' '#6'Height'#2'&'#3'Top'#3#176#0#5'Widt' -- +'h'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11'ParentColor'#8#8 -- +'TabOrder'#2#2#0#6'TShape'#7'Shape15'#3'Tag'#2#16#4'Left'#2' '#6'Height'#2#30 -- +#3'Top'#2#4#5'Width'#2'!'#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWh' -- +'ite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare' -- +#0#0#6'TShape'#7'Shape16'#3'Tag'#2#17#4'Left'#2'l'#6'Height'#2#30#3'Top'#2#4 -- +#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.' -- +'Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TSh' -- +'ape'#7'Shape14'#3'Tag'#2#15#4'Left'#3'P'#1#6'Height'#2#30#3'Top'#2#4#5'Widt' -- +'h'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width' -+ +'e'#0#0#6'TShape'#6'Shape5'#3'Tag'#2#5#4'Left'#3#237#0#6'Height'#2#30#3'Top' -+ +#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0 -+ +#6'TShape'#6'Shape6'#3'Tag'#2#6#4'Left'#3'"'#1#6'Height'#2#30#3'Top'#2#4#5'W' -+ +'idth'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TSh' -+ +'ape'#6'Shape7'#3'Tag'#2#7#4'Left'#3'X'#1#6'Height'#2#30#3'Top'#2#4#5'Width' -+ +#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#0#6'TPanel' -+ +#3'bg3'#4'Left'#2' '#6'Height'#2'&'#3'Top'#3#176#0#5'Width'#3#145#1#12'Clien' -+ +'tHeight'#2'&'#11'ClientWidth'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#2#0#6 -+ +'TShape'#7'Shape15'#3'Tag'#2#16#4'Left'#2' '#6'Height'#2#30#3'Top'#2#4#5'Wid' -+ +'th'#2'!'#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width' - +#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7 -- +'Shape12'#3'Tag'#2#13#4'Left'#3#8#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30 -- +#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'O' -- +'nMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape11' -- +#3'Tag'#2#12#4'Left'#3#188#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brus' -- +'h.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseU' -- +'p'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#0#6'TPanel'#3'bg4'#4'Left' -- +#2'!'#6'Height'#2'&'#3'Top'#2'p'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'C' -- +'lientWidth'#3#145#1#11'ParentColor'#8#8'TabOrder'#2#1#0#6'TShape'#7'Shape26' -- +#3'Tag'#2#20#4'Left'#2#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseU' -- +'p'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape27'#3'Tag' -- +#2#21#4'Left'#2'W'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12 -- +'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape28'#3'Tag'#2#22#4 -- +'Left'#3#214#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'Sha' -- +'peMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape25'#3'Tag'#2#19#4'Le' -- +'ft'#3#21#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeM' -- +'ouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape13'#3'Tag'#2#14#4'Left' -- +#3#150#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear' -+ +'Shape16'#3'Tag'#2#17#4'Left'#2'l'#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11 -+ +'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMo' -+ +'useUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape14'#3 -+ +'Tag'#2#15#4'Left'#3'P'#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.S' -+ +'tyle'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7 -+ +#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape12'#3'Tag'#2#13 -+ +#4'Left'#3#8#1#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'b' -+ +'sClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeM' -+ +'ouseUp'#5'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape11'#3'Tag'#2#12#4'Left' -+ +#3#188#0#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear' - +#9'Pen.Color'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5 -- +'Shape'#7#8'stSquare'#0#0#6'TShape'#7'Shape17'#3'Tag'#2#18#4'Left'#3'U'#1#6 -- +'Height'#2#30#3'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Co' -- +'lor'#7#7'clWhite'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' -- +#7#8'stCircle'#0#0#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#29#6'Height'#3#168#0 -- +#3'Top'#3'5'#1#5'Width'#3#145#1#7'Caption'#6#5'Theme'#12'ClientHeight'#3#153 -- +#0#11'ClientWidth'#3#141#1#8'TabOrder'#2#3#0#9'TComboBox'#9'ThemeList'#4'Lef' -- +'t'#2'e'#6'Height'#2#23#3'Top'#2#1#5'Width'#3#164#0#10'ItemHeight'#2#0#8'OnS' -- +'elect'#7#15'ThemeListChange'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'NightBu' -- +'tton'#4'Left'#3#205#0#6'Height'#2'd'#3'Top'#2')'#5'Width'#3#180#0#8'AutoFil' -- +'l'#9#7'Caption'#6#19'Night Vision Button'#28'ChildSizing.LeftRightSpacing'#2 -- +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 -- +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' -- +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' -- +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 -- +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' -- +'tHeight'#2'U'#11'ClientWidth'#3#176#0#13'Items.Strings'#1#6#14'Normal (colo' -- +'r)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnClick'#7#16'NightButtonClick'#8'Tab' -- ,'Order'#2#2#0#0#11'TRadioGroup'#14'StandardButton'#4'Left'#2#5#6'Height'#2'd' -- +#3'Top'#2')'#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#14'Default Button' -- +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 -- +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' -- +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' -- +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' -- +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' -- +'zing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#176#0#13 -- +'Items.Strings'#1#6#14'Normal (color)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnC' -- +'lick'#7#19'StandardButtonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupB' -- +'ox7'#4'Left'#2' '#6'Height'#2'T'#3'Top'#3#221#0#5'Width'#3#146#1#7'Caption' -- +#6#14'Standard Color'#12'ClientHeight'#2'E'#11'ClientWidth'#3#142#1#8'TabOrd' -- +'er'#2#4#0#7'TButton'#15'BtnDefaultColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2 -- +#7#5'Width'#2'h'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7 -- +'OnClick'#7#20'BtnDefaultColorClick'#8'TabOrder'#2#0#0#0#7'TButton'#11'BtnRe' -- +'dColor'#4'Left'#3#251#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25'BorderSp' -- +'acing.InnerBorder'#2#4#7'Caption'#6#3'Red'#7'OnClick'#7#16'BtnRedColorClick' -- +#8'TabOrder'#2#1#0#0#7'TButton'#10'BtnWBColor'#4'Left'#2#7#6'Height'#2#25#3 -- +'Top'#2''''#5'Width'#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#14'White on Black'#7'OnClick'#7#15'BtnWBColorClick'#8'TabOrder'#2#2#0#0#7'T' -- +'Button'#10'BtnBWColor'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#2''''#5'Width' -- +#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'Black on White'#7 -- +'OnClick'#7#15'BtnBWColorClick'#8'TabOrder'#2#3#0#0#7'TButton'#7'Button8'#4 -- +'Left'#3#129#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#7'Caption'#6#6'Pastel' -- +#7'OnClick'#7#12'Button8Click'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page3' -- +#7'Caption'#6#15'Deep-sky colour'#12'ClientHeight'#3#248#1#11'ClientWidth'#3 -- +#253#1#0#6'TLabel'#13'lblDSOCScheme'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#28 -- +#5'Width'#3#143#0#7'Caption'#6#28'Use a preset colour scheme :'#11'ParentCol' -- +'or'#8#0#0#9'TGroupBox'#15'gbDSOCOverrides'#4'Left'#2#253#6'Height'#3#209#0#3 -- +'Top'#2'K'#5'Width'#3#253#1#7'Caption'#6'! Choose colours for object type ' -- +#12'ClientHeight'#3#194#0#11'ClientWidth'#3#249#1#8'TabOrder'#2#0#0#6'TLabel' -- +#6'lblAst'#4'Left'#2#16#6'Height'#2#14#3'Top'#2','#5'Width'#2'{'#8'AutoSize' -- +#8#7'Caption'#6#8'Asterism'#11'ParentColor'#8#0#0#6'TShape'#6'shpAst'#4'Left' -- +#3#139#0#6'Height'#2#13#3'Top'#2','#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSO' -- +'MouseUp'#0#0#6'TLabel'#5'lblSN'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2','#5 -- +'Width'#3#131#0#8'AutoSize'#8#7'Caption'#6#17'Supernova remnant'#11'ParentCo' -- +'lor'#8#0#0#6'TShape'#5'shpSN'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2','#5'W' -- +'idth'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#6'lblOCl'#4'Lef' -- +'t'#2#16#6'Height'#2#14#3'Top'#2'@'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6 -- +#12'Open cluster'#11'ParentColor'#8#0#0#6'TLabel'#6'lblGCl'#4'Left'#2#16#6'H' -- +'eight'#2#14#3'Top'#2'T'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Globula' -- +'r cluster'#11'ParentColor'#8#0#0#6'TLabel'#6'lblPNe'#4'Left'#2#16#6'Height' -- +#2#14#3'Top'#2'h'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Planetary nebu' -- +'la'#11'ParentColor'#8#0#0#6'TLabel'#5'lblDN'#4'Left'#2#16#6'Height'#2#14#3 -- +'Top'#2'|'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#11'Dark nebula'#11'Paren' -- +'tColor'#8#0#0#6'TLabel'#5'lblEN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#144#0 -- +#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#15'Emission nebula'#11'ParentColor' -- +#8#0#0#6'TLabel'#5'lblRN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#164#0#5'Width' -- +#2'{'#8'AutoSize'#8#7'Caption'#6#17'Reflection nebula'#11'ParentColor'#8#0#0 -- +#6'TShape'#5'shpRN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#3#164#0#5'Width'#2 -- +'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpEN'#4'Left'#3#139#0 -- +#6'Height'#2#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouse' -- +'Up'#0#0#6'TShape'#5'shpDN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'|'#5'Wid' -- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpPNe'#4'Left' -- +#3#139#0#6'Height'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSO' -- +'MouseUp'#0#0#6'TShape'#6'shpGCl'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'T' -- +#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpOCl'#4 -- +'Left'#3#139#0#6'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9'OnMouseUp'#7#15'Sh' -- +'apeDSOMouseUp'#0#0#6'TLabel'#6'lblGxy'#4'Left'#3#240#0#6'Height'#2#14#3'Top' -- +#2'@'#5'Width'#3#131#0#8'AutoSize'#8#7'Caption'#6#6'Galaxy'#11'ParentColor'#8 -- +#0#0#6'TLabel'#8'lblGxyCl'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'T'#5'Widt' -- +'h'#3#131#0#8'AutoSize'#8#7'Caption'#6#14'Galaxy cluster'#11'ParentColor'#8#0 -- +#0#6'TLabel'#4'lblQ'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#3 -- +#131#0#8'AutoSize'#8#7'Caption'#6#6'Quasar'#11'ParentColor'#8#0#0#6'TLabel'#5 -- ,'lblGL'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'|'#5'Width'#3#131#0#8'AutoSi' -- +'ze'#8#7'Caption'#6#18'Gravitational lens'#11'ParentColor'#8#0#0#6'TLabel'#5 -- +'lblNE'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#131#0#8'Aut' -- +'oSize'#8#7'Caption'#6#20'Non-existent/unknown'#11'ParentColor'#8#8'WordWrap' -- +#9#0#0#6'TShape'#5'shpNE'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#3#144#0#5'Wid' -- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpGL'#4'Left'#3 -- +'v'#1#6'Height'#2#13#3'Top'#2'|'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMou' -- +'seUp'#0#0#6'TShape'#4'shpQ'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'h'#5'Wid' -- +'th'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#8'shpGxyCl'#4'Lef' -- +'t'#3'v'#1#6'Height'#2#13#3'Top'#2'T'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeD' -- +'SOMouseUp'#0#0#6'TShape'#6'shpGxy'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'@' -- +#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#10'lblDSOTyp' -- +'e'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'x'#8'AutoSize'#8#7 -- +'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Tra' -- +'nsparent'#8#0#0#6'TLabel'#12'lblDSOColour'#4'Left'#3'v'#1#6'Height'#2#14#3 -+ +'Shape'#7#8'stSquare'#0#0#0#6'TPanel'#3'bg4'#4'Left'#2'!'#6'Height'#2'&'#3'T' -+ +'op'#2'p'#5'Width'#3#145#1#12'ClientHeight'#2'&'#11'ClientWidth'#3#145#1#11 -+ +'ParentColor'#8#8'TabOrder'#2#1#0#6'TShape'#7'Shape26'#3'Tag'#2#20#4'Left'#2 -+ +#24#6'Height'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5 -+ +'Shape'#7#8'stCircle'#0#0#6'TShape'#7'Shape27'#3'Tag'#2#21#4'Left'#2'W'#6'He' -+ +'ight'#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape' -+ +#7#8'stCircle'#0#0#6'TShape'#7'Shape28'#3'Tag'#2#22#4'Left'#3#214#0#6'Height' -+ +#2#30#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8 -+ +'stSquare'#0#0#6'TShape'#7'Shape25'#3'Tag'#2#19#4'Left'#3#21#1#6'Height'#2#30 -+ +#3'Top'#2#4#5'Width'#2#30#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSqu' -+ +'are'#0#0#6'TShape'#7'Shape13'#3'Tag'#2#14#4'Left'#3#150#0#6'Height'#2#30#3 -+ +'Top'#2#4#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhit' -+ +'e'#9'Pen.Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stSquare'#0 -+ +#0#6'TShape'#7'Shape17'#3'Tag'#2#18#4'Left'#3'U'#1#6'Height'#2#30#3'Top'#2#4 -+ +#5'Width'#2#30#11'Brush.Style'#7#7'bsClear'#9'Pen.Color'#7#7'clWhite'#9'Pen.' -+ +'Width'#2#3#9'OnMouseUp'#7#12'ShapeMouseUp'#5'Shape'#7#8'stCircle'#0#0#0#9'T' -+ +'GroupBox'#9'GroupBox6'#4'Left'#2#29#6'Height'#3#168#0#3'Top'#3'5'#1#5'Width' -+ +#3#145#1#7'Caption'#6#5'Theme'#12'ClientHeight'#3#153#0#11'ClientWidth'#3#141 -+ +#1#8'TabOrder'#2#3#0#9'TComboBox'#9'ThemeList'#4'Left'#2'e'#6'Height'#2#23#3 -+ +'Top'#2#1#5'Width'#3#164#0#10'ItemHeight'#2#0#8'OnSelect'#7#15'ThemeListChan' -+ +'ge'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'NightButton'#4'Left'#3#205#0#6'H' -+ +'eight'#2'd'#3'Top'#2')'#5'Width'#3#180#0#8'AutoFill'#9#7'Caption'#6#19'Nigh' -+ +'t Vision Button'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBot' -+ +'tomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildRe' -+ +'size'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'Chi' -+ +'ldSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertic' -+ +'al'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopT' -+ +'oBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'Clien' -+ +'tWidth'#3#176#0#13'Items.Strings'#1#6#14'Normal (color)'#6#3'Red'#6#4'Blue' -+ +#6#5'Green'#0#7'OnClick'#7#16'NightButtonClick'#8'TabOrder'#2#2#0#0#11'TRadi' -+ ,'oGroup'#14'StandardButton'#4'Left'#2#5#6'Height'#2'd'#3'Top'#2')'#5'Width'#3 -+ +#180#0#8'AutoFill'#9#7'Caption'#6#14'Default Button'#28'ChildSizing.LeftRigh' -+ +'tSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHo' -+ +'rizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7 -+ +#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScale' -+ +'Childs'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.' -+ +'Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine' -+ +#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#176#0#13'Items.Strings'#1#6#14 -+ +'Normal (color)'#6#3'Red'#6#4'Blue'#6#5'Green'#0#7'OnClick'#7#19'StandardBut' -+ +'tonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'GroupBox7'#4'Left'#2' '#6'He' -+ +'ight'#2'T'#3'Top'#3#221#0#5'Width'#3#146#1#7'Caption'#6#14'Standard Color' -+ +#12'ClientHeight'#2'E'#11'ClientWidth'#3#142#1#8'TabOrder'#2#4#0#7'TButton' -+ +#15'BtnDefaultColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#20'BtnD' -+ +'efaultColorClick'#8'TabOrder'#2#0#0#0#7'TButton'#11'BtnRedColor'#4'Left'#3 -+ +#251#0#6'Height'#2#25#3'Top'#2#7#5'Width'#2'h'#25'BorderSpacing.InnerBorder' -+ +#2#4#7'Caption'#6#3'Red'#7'OnClick'#7#16'BtnRedColorClick'#8'TabOrder'#2#1#0 -+ +#0#7'TButton'#10'BtnWBColor'#4'Left'#2#7#6'Height'#2#25#3'Top'#2''''#5'Width' -+ +#3#164#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'White on Black'#7 -+ +'OnClick'#7#15'BtnWBColorClick'#8'TabOrder'#2#2#0#0#7'TButton'#10'BtnBWColor' -+ +#4'Left'#3#191#0#6'Height'#2#25#3'Top'#2''''#5'Width'#3#164#0#25'BorderSpaci' -+ +'ng.InnerBorder'#2#4#7'Caption'#6#14'Black on White'#7'OnClick'#7#15'BtnBWCo' -+ +'lorClick'#8'TabOrder'#2#3#0#0#7'TButton'#7'Button8'#4'Left'#3#129#0#6'Heigh' -+ +'t'#2#25#3'Top'#2#7#5'Width'#2'h'#7'Caption'#6#6'Pastel'#7'OnClick'#7#12'But' -+ +'ton8Click'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#15'De' -+ +'ep-sky colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0#6'TLabel' -+ +#13'lblDSOCScheme'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#28#5'Width'#3#143#0#7 -+ +'Caption'#6#28'Use a preset colour scheme :'#11'ParentColor'#8#0#0#9'TGroupB' -+ +'ox'#15'gbDSOCOverrides'#4'Left'#2#253#6'Height'#3#209#0#3'Top'#2'K'#5'Width' -+ +#3#253#1#7'Caption'#6'! Choose colours for object type '#12'ClientHeight'#3 -+ +#194#0#11'ClientWidth'#3#249#1#8'TabOrder'#2#0#0#6'TLabel'#6'lblAst'#4'Left' -+ +#2#16#6'Height'#2#14#3'Top'#2','#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#8 -+ +'Asterism'#11'ParentColor'#8#0#0#6'TShape'#6'shpAst'#4'Left'#3#139#0#6'Heigh' -+ +'t'#2#13#3'Top'#2','#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6 -+ +'TLabel'#5'lblSN'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2','#5'Width'#3#131#0 -+ +#8'AutoSize'#8#7'Caption'#6#17'Supernova remnant'#11'ParentColor'#8#0#0#6'TS' -+ +'hape'#5'shpSN'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2','#5'Width'#2'!'#9'On' -+ +'MouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#6'lblOCl'#4'Left'#2#16#6'Heigh' -+ +'t'#2#14#3'Top'#2'@'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#12'Open cluste' -+ +'r'#11'ParentColor'#8#0#0#6'TLabel'#6'lblGCl'#4'Left'#2#16#6'Height'#2#14#3 -+ +'Top'#2'T'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Globular cluster'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#6'lblPNe'#4'Left'#2#16#6'Height'#2#14#3'Top'#2 -+ +'h'#5'Width'#2'{'#8'AutoSize'#8#7'Caption'#6#16'Planetary nebula'#11'ParentC' -+ +'olor'#8#0#0#6'TLabel'#5'lblDN'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|'#5'Wi' -+ +'dth'#2'{'#8'AutoSize'#8#7'Caption'#6#11'Dark nebula'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#5'lblEN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#144#0#5'Width'#2'{'#8 -+ +'AutoSize'#8#7'Caption'#6#15'Emission nebula'#11'ParentColor'#8#0#0#6'TLabel' -+ +#5'lblRN'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#164#0#5'Width'#2'{'#8'AutoSiz' -+ +'e'#8#7'Caption'#6#17'Reflection nebula'#11'ParentColor'#8#0#0#6'TShape'#5's' -+ +'hpRN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#3#164#0#5'Width'#2'!'#9'OnMouse' -+ +'Up'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpEN'#4'Left'#3#139#0#6'Height'#2 -+ +#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TS' -+ +'hape'#5'shpDN'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'|'#5'Width'#2'!'#9'O' -+ +'nMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpPNe'#4'Left'#3#139#0#6'H' -+ +'eight'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0 -+ +#6'TShape'#6'shpGCl'#4'Left'#3#139#0#6'Height'#2#13#3'Top'#2'T'#5'Width'#2'!' -+ +#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#6'shpOCl'#4'Left'#3#139#0#6 -+ +'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0 -+ +#0#6'TLabel'#6'lblGxy'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'@'#5'Width'#3 -+ +#131#0#8'AutoSize'#8#7'Caption'#6#6'Galaxy'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'lblGxyCl'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'T'#5'Width'#3#131#0#8'Aut' -+ +'oSize'#8#7'Caption'#6#14'Galaxy cluster'#11'ParentColor'#8#0#0#6'TLabel'#4 -+ +'lblQ'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#3#131#0#8'AutoSiz' -+ +'e'#8#7'Caption'#6#6'Quasar'#11'ParentColor'#8#0#0#6'TLabel'#5'lblGL'#4'Left' -+ ,#3#240#0#6'Height'#2#14#3'Top'#2'|'#5'Width'#3#131#0#8'AutoSize'#8#7'Caption' -+ +#6#18'Gravitational lens'#11'ParentColor'#8#0#0#6'TLabel'#5'lblNE'#4'Left'#3 -+ +#240#0#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#131#0#8'AutoSize'#8#7'Captio' -+ +'n'#6#20'Non-existent/unknown'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TShape' -+ +#5'shpNE'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#3#144#0#5'Width'#2'!'#9'OnMou' -+ +'seUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#5'shpGL'#4'Left'#3'v'#1#6'Height' -+ +#2#13#3'Top'#2'|'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TSh' -+ +'ape'#4'shpQ'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'h'#5'Width'#2'!'#9'OnMo' -+ +'useUp'#7#15'ShapeDSOMouseUp'#0#0#6'TShape'#8'shpGxyCl'#4'Left'#3'v'#1#6'Hei' -+ +'ght'#2#13#3'Top'#2'T'#5'Width'#2'!'#9'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6 -+ +'TShape'#6'shpGxy'#4'Left'#3'v'#1#6'Height'#2#13#3'Top'#2'@'#5'Width'#2'!'#9 -+ +'OnMouseUp'#7#15'ShapeDSOMouseUp'#0#0#6'TLabel'#10'lblDSOType'#4'Left'#3#240 -+ +#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'x'#8'AutoSize'#8#7'Caption'#6#11'Ob' -+ +'ject type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6 -+ +'TLabel'#12'lblDSOColour'#4'Left'#3'v'#1#6'Height'#2#14#3'Top'#2#24#5'Width' -+ +#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colour'#5'Color'#7#9'clBtnFace'#11'Parent' -+ +'Color'#8#11'Transparent'#8#0#0#6'TLabel'#16'lblDSOColourFill'#4'Left'#3#174 -+ +#1#6'Height'#2#14#3'Top'#2#24#5'Width'#2'A'#8'AutoSize'#8#7'Caption'#6#5'Fil' -+ +'l?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabe' -+ +'l'#6'Label7'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#24#5'Width'#2's'#8'AutoSi' -+ +'ze'#8#7'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8 -+ +#11'Transparent'#8#0#0#6'TLabel'#7'Label12'#4'Left'#3#139#0#6'Height'#2#14#3 - +'Top'#2#24#5'Width'#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colour'#5'Color'#7#9'c' -- +'lBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#16'lblDSOColour' -- +'Fill'#4'Left'#3#174#1#6'Height'#2#14#3'Top'#2#24#5'Width'#2'A'#8'AutoSize'#8 -- +#7'Caption'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transpar' -- +'ent'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#24#5'Wi' -- +'dth'#2's'#8'AutoSize'#8#7'Caption'#6#11'Object type'#5'Color'#7#9'clBtnFace' -- +#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#7'Label12'#4'Left'#3#139#0 -- +#6'Height'#2#14#3'Top'#2#24#5'Width'#2'7'#8'AutoSize'#8#7'Caption'#6#6'Colou' -- +'r'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel' -- +#7'Label13'#4'Left'#3#195#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'*'#8'AutoS' -- +'ize'#8#7'Caption'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'T' -- +'ransparent'#8#0#0#9'TCheckBox'#10'chkFillAst'#4'Left'#3#194#0#6'Height'#2#21 -- +#3'Top'#2')'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#15'chkFillAstClick'#8'T' -- +'abOrder'#2#0#7'Visible'#8#0#0#9'TCheckBox'#10'chkFillOCl'#4'Left'#3#195#0#6 -- +'Height'#2#21#3'Top'#2'='#5'Width'#2#23#7'OnClick'#7#15'chkFillOClClick'#8'T' -- +'abOrder'#2#1#0#0#9'TCheckBox'#10'chkFillGCl'#4'Left'#3#195#0#6'Height'#2#21 -- +#3'Top'#2'Q'#5'Width'#2#23#7'OnClick'#7#15'chkFillGClClick'#8'TabOrder'#2#2#0 -- +#0#9'TCheckBox'#10'chkFillPNe'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'e'#5 -- +'Width'#2#23#7'OnClick'#7#15'chkFillPNeClick'#8'TabOrder'#2#3#0#0#9'TCheckBo' -- +'x'#9'chkFillDN'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7 -- +'OnClick'#7#14'chkFillDNClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#9'chkFillEN' -- +#4'Left'#3#195#0#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'OnClick'#7#14 -- +'chkFillENClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#9'chkFillRN'#4'Left'#3#195 -- +#0#6'Height'#2#21#3'Top'#3#161#0#5'Width'#2#23#7'OnClick'#7#14'chkFillRNClic' -- +'k'#8'TabOrder'#2#6#0#0#9'TCheckBox'#9'chkFillSN'#4'Left'#3#174#1#6'Height'#2 -- +#21#3'Top'#2')'#5'Width'#2#23#7'OnClick'#7#14'chkFillSNClick'#8'TabOrder'#2#7 -- +#0#0#9'TCheckBox'#10'chkFillGxy'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'='#5 -- +'Width'#2#23#7'OnClick'#7#15'chkFillGxyClick'#8'TabOrder'#2#8#0#0#9'TCheckBo' -- +'x'#12'chkFillGxyCl'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'Q'#5'Width'#2#23 -- +#7'OnClick'#7#17'chkFillGxyClClick'#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'chkFi' -- +'llQ'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'OnClick'#7 -- +#13'chkFillQClick'#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'chkFillGL'#4'Left'#3 -- +#174#1#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14 -- +'chkFillGLClick'#8'TabOrder'#2#11#7'Visible'#8#0#0#9'TCheckBox'#9'chkFillNE' -- +#4'Left'#3#174#1#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'Enabled'#8#7 -- +'OnClick'#7#14'chkFillNEClick'#8'TabOrder'#2#12#7'Visible'#8#0#0#0#9'TGroupB' -- +'ox'#9'GroupBox2'#4'Left'#2#5#6'Height'#3#163#0#3'Top'#3'*'#1#5'Width'#3#254 -- +#1#7'Caption'#6#26' Adjust colour brightness '#12'ClientHeight'#3#148#0#11'C' -- +'lientWidth'#3#250#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2#24#6'He' -- +'ight'#2#14#3'Top'#2#20#5'Width'#2'v'#7'Caption'#6#22'Low surface brightness' -- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#248#0#6'Height'#2#14#3 -- +'Top'#2#20#5'Width'#2'u'#7'Caption'#6#23'High surface brightness'#11'ParentC' -- +'olor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'E'#5'Wi' -- +'dth'#2'"'#7'Caption'#6#7'Fainter'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' -- +#4'Left'#3#139#1#6'Height'#2#14#3'Top'#2'E'#5'Width'#2'M'#7'Anchors'#11#5'ak' -- +'Top'#6'akLeft'#7'akRight'#0#7'Caption'#6#10'Brighter '#11'ParentColor'#8#0 -- +#0#9'TTrackBar'#12'NebBrightBar'#4'Left'#3#232#0#6'Height'#2'!'#3'Top'#2'#'#5 -- +'Width'#3#217#0#9'Frequency'#2#26#3'Max'#3#255#0#8'OnChange'#7#18'NebBrightB' -- +'arChange'#8'PageSize'#2#26#8'Position'#2#0#8'TabOrder'#2#1#0#0#9'TTrackBar' -- ,#10'NebGrayBar'#4'Left'#2#8#6'Height'#2'!'#3'Top'#2'#'#5'Width'#3#209#0#9'Fr' -- +'equency'#2#26#3'Max'#3#255#0#8'OnChange'#7#16'NebGrayBarChange'#8'PageSize' -- +#2#26#8'Position'#2#0#8'TabOrder'#2#0#0#0#7'TButton'#17'DefNebColorButton'#4 -- +'Left'#3'v'#1#6'Height'#2#25#3'Top'#2'f'#5'Width'#2'K'#25'BorderSpacing.Inne' -- +'rBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#22'DefNebColorButtonClick' -- +#8'TabOrder'#2#3#0#0#6'TPanel'#13'NebColorPanel'#4'Left'#2'p'#6'Height'#2')' -- +#3'Top'#2']'#5'Width'#3#233#0#12'ClientHeight'#2')'#11'ClientWidth'#3#233#0#8 -- +'TabOrder'#2#2#0#6'TShape'#7'Shape29'#4'Left'#2' '#6'Height'#2'!'#3'Top'#2#4 -- +#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#6'TShape'#7'Shape30'#4'Left'#3#136 -- +#0#6'Height'#2'!'#3'Top'#2#4#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#0#0#9 -- +'TComboBox'#13'lstDSOCScheme'#4'Left'#3#253#0#6'Height'#2#24#3'Top'#2#21#5'W' -- +'idth'#3#168#0#10'ItemHeight'#2#0#13'Items.Strings'#1#6#14'CdC v2 default'#6 -- +#14'CdC v3 default'#6#13'Printed atlas'#6#5'Green'#0#8'OnChange'#7#19'lstDSO' -- +'CSchemeChange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#9'TTabSh' -- +'eet'#5'Page4'#7'Caption'#6#10'Sky colour'#12'ClientHeight'#3#248#1#11'Clien' -- +'tWidth'#3#253#1#0#6'TPanel'#6'Panel2'#4'Left'#2#24#6'Height'#3#147#0#3'Top' -- +#3#142#0#5'Width'#3#160#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#147#0 -- +#11'ClientWidth'#3#160#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label205'#4'Left'#2'v' -- +#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'%'#9'Alignment'#7#8'taCenter'#7'Capti' -- +'on'#6#8'Twilight'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label202' -- +#4'Left'#2#11#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'-'#9'Alignment'#7#8'taCe' -- +'nter'#7'Caption'#6#8'Day Time'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' -- +#8'Label208'#4'Left'#3#13#1#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'g'#9'Align' -- +'ment'#7#8'taCenter'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#21'Ast' -- +'ronomical Twilight'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel'#6'Panel6' -- +#4'Left'#2#8#6'Height'#2'a'#3'Top'#2#8#5'Width'#3'l'#1#12'ClientHeight'#2'a' -- +#11'ClientWidth'#3'l'#1#8'TabOrder'#2#0#0#6'TShape'#7'Shape18'#3'Tag'#2#1#4 -- +'Left'#2#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' -- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape19'#3'Tag'#2#2#4'Le' -- +'ft'#2'4'#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' -- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape20'#3'Tag'#2#3#4'Le' -- +'ft'#2'h'#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver' -- +#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape21'#3'Tag'#2#4#4'Le' -- +'ft'#3#156#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilv' -- +'er'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape22'#3'Tag'#2#5#4 -- +'Left'#3#208#0#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSi' -- +'lver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape23'#3'Tag'#2#6 -- +#4'Left'#3#4#1#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSi' -- +'lver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape24'#3'Tag'#2#7 -- +#4'Left'#3'8'#1#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clS' -- +'ilver'#9'OnMouseUp'#7#15'ShapeSkyMouseUp'#0#0#0#0#6'TPanel'#6'Panel3'#4'Lef' -- +'t'#2#30#6'Height'#2'x'#3'Top'#3'&'#1#5'Width'#3#176#0#10'BevelOuter'#7#6'bv' -- +'None'#12'ClientHeight'#2'x'#11'ClientWidth'#3#176#0#8'TabOrder'#2#2#0#6'TSh' -- +'ape'#6'Shape8'#4'Left'#2#5#6'Height'#2'I'#3'Top'#2#8#5'Width'#3#139#0#9'OnM' -- +'ouseUp'#7#15'ShapeSkyMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#8#6'Height' -- +#2#14#3'Top'#2'`'#5'Width'#2'M'#7'Caption'#6#16'Fixed sky color '#11'ParentC' -- +'olor'#8#0#0#0#11'TRadioGroup'#11'skycolorbox'#4'Left'#2#24#6'Height'#2'Y'#3 -- +'Top'#2'0'#5'Width'#3'l'#1#8'AutoFill'#9#7'Caption'#6#9'Sky Color'#28'ChildS' -- +'izing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSi' -- +'zing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlar' -- +'geVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal' -- +#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18 -- +'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Cont' -- +'rolsPerLine'#2#2#12'ClientHeight'#2'J'#11'ClientWidth'#3'h'#1#7'Columns'#2#2 -- +#13'Items.Strings'#1#6#11'Fixed Black'#6#9'Automatic'#0#7'OnClick'#7#16'skyc' -- +'olorboxClick'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button3'#4'Left'#3#245#0#6'H' -- +'eight'#2#25#3'Top'#3'E'#1#5'Width'#2'~'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#13'Default color'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#3#0 -- +#0#0#9'TTabSheet'#5'Page5'#7'Caption'#6#5'Lines'#12'ClientHeight'#3#248#1#11 -- +'ClientWidth'#3#253#1#0#9'TCheckBox'#6'EqGrid'#4'Left'#2#16#6'Height'#2#21#3 -- +'Top'#2'e'#5'Width'#2't'#7'Caption'#6#19'Add Equatorial Grid'#7'OnClick'#7#11 -- +'EqGridClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#5'CGrid'#4'Left'#2#16#6'Heigh' -- +'t'#2#21#3'Top'#2' '#5'Width'#3#130#0#7'Caption'#6#20'Show Coordinate Grid'#7 -- +'OnClick'#7#10'CGridClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#8'ecliptic'#4'Le' -- ,'ft'#3#210#0#6'Height'#2#21#3'Top'#2' '#5'Width'#2'X'#7'Caption'#6#13'Show E' -- +'cliptic'#7'OnClick'#7#13'eclipticClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#8 -- +'galactic'#4'Left'#3#210#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#3#134#0#7'Cap' -- +'tion'#6#21'Show Galactic Equator'#7'OnClick'#7#13'galacticClick'#8'TabOrder' -- +#2#7#0#0#9'TCheckBox'#7'GridNum'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Wi' -- +'dth'#2'h'#7'Caption'#6#15'Show Grid Label'#7'OnClick'#7#12'GridNumClick'#8 -- +'TabOrder'#2#4#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#3#140#0#3 -- +'Top'#3#157#0#5'Width'#3#17#1#7'Caption'#6#21'Constellation Figures'#12'Clie' -- +'ntHeight'#2'}'#11'ClientWidth'#3#13#1#8'TabOrder'#2#9#0#6'TLabel'#8'Label13' -- +'2'#4'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#153#0#7'Caption'#6'!C' -- +'onstellation Figure File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Cons' -- +'tl'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#3#149#0#7'Caption'#6#25 -- +'Show Constellation Figure'#7'OnClick'#7#11'ConstlClick'#8'TabOrder'#2#0#0#0 -- +#13'TFileNameEdit'#10'ConstlFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5 -- +'Width'#3#208#0#13'DialogOptions'#11#0#6'Filter'#6#26'Constellation Figure|*' -- +'.cln'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumG' -- +'lyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#16'ConstlFileChan' -- +'ge'#0#0#9'TComboBox'#7'CFStyle'#4'Left'#2#29#6'Height'#2#23#3'Top'#2' '#5'W' -- +'idth'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Lin' -- +'e'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'C' -- +'FStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawF' -- +'ixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#0#9'TGroupBox'#9'GroupBox3'#4'L' -- +'eft'#2#8#6'Height'#3#140#0#3'Top'#3'-'#1#5'Width'#3#17#1#7'Caption'#6#24'Co' -- +'nstellation Boundaries'#12'ClientHeight'#2'}'#11'ClientWidth'#3#13#1#8'TabO' -- +'rder'#2#11#0#6'TLabel'#7'Label72'#4'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5 -- +'Width'#3#170#0#7'Caption'#6'#Constellation Boundary File Name : '#11'Parent' -- +'Color'#8#0#0#9'TCheckBox'#6'Constb'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5 -- +'Width'#3#166#0#7'Caption'#6#27'Show Constellation Boundary'#7'OnClick'#7#11 -- +'ConstbClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#10'ConstbFile'#4'Left'#2 -- +#29#6'Height'#2#21#3'Top'#2'Z'#5'Width'#3#208#0#13'DialogOptions'#11#0#6'Fil' -- +'ter'#6#28'Constellation Boundary|*.cby'#11'FilterIndex'#2#0#15'HideDirector' -- +'ies'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 -- +#2#8'OnChange'#7#16'ConstbFileChange'#0#0#9'TComboBox'#7'CBStyle'#4'Left'#2 -- +#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex' -- +#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Das' -- +'h Dot Dot'#0#8'OnChange'#7#13'CBStyleChange'#10'OnDrawItem'#7#13'StyleDrawI' -- +'tem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#0 -- +#9'TGroupBox'#9'GroupBox4'#4'Left'#3'%'#1#6'Height'#3#140#0#3'Top'#3#157#0#5 -- +'Width'#3#185#0#7'Caption'#6#9'Milky Way'#12'ClientHeight'#2'}'#11'ClientWid' -- +'th'#3#181#0#8'TabOrder'#2#10#0#9'TCheckBox'#8'milkyway'#4'Left'#2#8#6'Heigh' -- +'t'#2#21#3'Top'#2#24#5'Width'#2'g'#7'Caption'#6#14'Show Milky Way'#7'OnClick' -- +#7#13'milkywayClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'fillmilkyway'#4'Lef' -- +'t'#2#8#6'Height'#2#21#3'Top'#2'8'#5'Width'#2'V'#7'Caption'#6#14'Fill Milky ' -- +'Way'#7'OnClick'#7#17'fillmilkywayClick'#8'TabOrder'#2#1#0#0#0#9'TComboBox'#9 -- +'GridStyle'#4'Left'#2''''#6'Height'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'ItemHe' -- +'ight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot' -- +#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#15'GridStyleChange'#10'OnD' -- +'rawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1 -- +#4'Text'#6#4'Line'#0#0#9'TComboBox'#13'EclipticStyle'#4'Left'#3#230#0#6'Heig' -- +'ht'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13 -- +'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot D' -- +'ot'#0#8'OnChange'#7#19'EclipticStyleChange'#10'OnDrawItem'#7#13'StyleDrawIt' -- +'em'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#3#4'Text'#6#4'Line'#0#0#9 -- +'TComboBox'#11'EqGridStyle'#4'Left'#2''''#6'Height'#2#23#3'Top'#2'}'#5'Width' -- +#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4 -- +'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#17'EqGridSt' -- +'yleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixe' -- +'d'#8'TabOrder'#2#6#4'Text'#6#4'Line'#0#0#9'TComboBox'#10'GalEqStyle'#4'Left' -- +#3#230#0#6'Height'#2#23#3'Top'#2'}'#5'Width'#2'd'#10'ItemHeight'#2#16#9'Item' -- +'Index'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6 -- +#12'Dash Dot Dot'#0#8'OnChange'#7#16'GalEqStyleChange'#10'OnDrawItem'#7#13'S' -- +'tyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#8#4'Text'#6#4'L' -- +'ine'#0#0#9'TGroupBox'#9'GroupBox8'#4'Left'#3'%'#1#6'Height'#3#140#0#3'Top'#3 -- +'-'#1#5'Width'#3#185#0#7'Caption'#6#13'Proper Motion'#12'ClientHeight'#2'}' -- ,#11'ClientWidth'#3#181#0#8'TabOrder'#2#12#0#6'TLabel'#7'Label68'#4'Left'#2'[' -- +#6'Height'#2#14#3'Top'#2'_'#5'Width'#2#29#7'Caption'#6#5'years'#11'ParentCol' -- +'or'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2'$'#6'Height'#2'?'#3'Top'#2#15#5'Wid' -- +'th'#3#142#0#8'AutoSize'#8#7'Caption'#6':Draw a line that represent the prop' -- +'er motion for the next '#11'ParentColor'#8#8'WordWrap'#9#0#0#9'TCheckBox'#9 -- +'DrawPmBox'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#2#23#7'OnClick'#7 -- +#14'DrawPmBoxClick'#8'TabOrder'#2#0#0#0#9'TLongEdit'#7'DrawPMy'#4'Left'#2#22 -- +#6'Height'#2#21#4'Hint'#6#13'-99999..99999'#3'Top'#2'Z'#5'Width'#2'8'#14'Par' -- +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#13'DrawPMyChange' -- +#5'Value'#2#0#8'MinValue'#4'ay'#254#255#8'MaxValue'#4#159#134#1#0#0#0#0#0#9 -- +'TTabSheet'#5'Page6'#7'Caption'#6#6'Labels'#12'ClientHeight'#3#248#1#11'Clie' -- +'ntWidth'#3#253#1#0#11'TRadioGroup'#8'MagLabel'#4'Left'#2#16#6'Height'#2'Q'#3 -- +'Top'#3']'#1#5'Width'#3#221#0#8'AutoFill'#9#7'Caption'#6#10'Star Label'#28'C' -- +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' -- +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' -- +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' -- +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' -- +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' -- +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#217#0#7'Col' -- +'umns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Name'#6#11'Common Name'#6 -- +#9'Magnitude'#0#7'OnClick'#7#13'MagLabelClick'#8'TabOrder'#2#3#0#0#11'TRadio' -- +'Group'#10'constlabel'#4'Left'#3#245#0#6'Height'#2'Q'#3'Top'#3']'#1#5'Width' -- +#3#220#0#8'AutoFill'#9#7'Caption'#6#19'Constellation Label'#28'ChildSizing.L' -- +'eftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.En' -- +'largeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVerti' -- +'cal'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'c' -- +'rsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Child' -- +'Sizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsP' -- +'erLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#216#0#7'Columns'#2#2#9 -- +'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Full Name'#6#12'Abbreviation'#6#10'L' -- +'atin Name'#0#7'OnClick'#7#15'constlabelClick'#8'TabOrder'#2#4#0#0#9'TCheckB' -- +'ox'#12'Showlabelall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'1'#5'Width'#2'k'#7 -- +'Caption'#6#18'Display the labels'#7'OnClick'#7#17'ShowlabelallClick'#8'TabO' -- +'rder'#2#0#0#0#9'TCheckBox'#13'ShowChartInfo'#4'Left'#2#16#6'Height'#2#21#3 -- +'Top'#2#5#5'Width'#3#239#0#7'Caption'#6'.Display the chart information in th' -- +'e menu bar.'#7'OnClick'#7#18'ShowChartInfoClick'#8'TabOrder'#2#1#0#0#9'TGro' -- +'upBox'#9'GroupBox5'#4'Left'#2#16#6'Height'#3#9#1#3'Top'#2'M'#5'Width'#3#221 -- +#1#7'Caption'#6#12'Label Object'#12'ClientHeight'#3#250#0#11'ClientWidth'#3 -- +#217#1#8'TabOrder'#2#2#0#6'TLabel'#8'Label237'#4'Left'#3#227#0#6'Height'#2'!' -- +#3'Top'#2#15#5'Width'#2'P'#8'AutoSize'#8#7'Caption'#6#20'Magnitude differenc' -- +'e'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label252'#4'Left'#3':'#1 -- +#6'Height'#2#14#3'Top'#2' '#5'Width'#2#26#7'Caption'#6#5'Color'#11'ParentCol' -- +'or'#8#0#0#6'TLabel'#8'Label240'#4'Left'#3'9'#1#6'Height'#2#14#3'Top'#2#16#5 -- +'Width'#2#27#7'Caption'#6#5'Label'#11'ParentColor'#8#0#0#6'TShape'#14'labelc' -- +'olorStar'#3'Tag'#2#1#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'6'#5'Width'#2'!' -- +#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorVar'#3'Tag' -- +#2#2#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'N'#5'Width'#2'!'#9'OnMouseUp'#7 -- +#17'labelcolorMouseUp'#0#0#6'TShape'#14'labelcolorMult'#3'Tag'#2#3#4'Left'#3 -- +'6'#1#6'Height'#2#17#3'Top'#2'f'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorM' -- +'ouseUp'#0#0#6'TShape'#13'labelcolorNeb'#3'Tag'#2#4#4'Left'#3'6'#1#6'Height' -- +#2#17#3'Top'#2'~'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'T' -- +'Shape'#13'labelcolorSol'#3'Tag'#2#5#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3 -- +#150#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#15'l' -- +'abelcolorConst'#3'Tag'#2#6#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#174#0#5'W' -- +'idth'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#14'labelcolor' -- +'Misc'#3'Tag'#2#7#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#198#0#5'Width'#2'!' -- +#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#19'labelcolorchartinfo'#3 -- +'Tag'#2#8#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#3#222#0#5'Width'#2'!'#9'OnMou' -- +'seUp'#7#17'labelcolorMouseUp'#0#0#6'TLabel'#8'Label255'#4'Left'#3'n'#1#6'He' -- +'ight'#2#14#3'Top'#2' '#5'Width'#2#22#7'Caption'#6#4'Size'#11'ParentColor'#8 -- +#0#0#9'TCheckBox'#13'showlabelStar'#3'Tag'#2#1#4'Left'#2#16#6'Height'#2#21#3 -- +'Top'#2'8'#5'Width'#2'1'#7'Caption'#6#5'Stars'#7'OnClick'#7#14'showlabelClic' -- +'k'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'showlabelVar'#3'Tag'#2#2#4'Left'#2#16 -- +#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'['#7'Caption'#6#14'Variable Stars'#7 -- ,'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#13'showlabel' -- +'Mult'#3'Tag'#2#3#4'Left'#2#16#6'Height'#2#21#3'Top'#2'h'#5'Width'#2'W'#7'Ca' -- +'ption'#6#14'Multiple Stars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#2 -- +#0#0#9'TCheckBox'#12'showlabelNeb'#3'Tag'#2#4#4'Left'#2#16#6'Height'#2#21#3 -- +'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Nebulae'#7'OnClick'#7#14'showlabe' -- +'lClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#12'showlabelSol'#3'Tag'#2#5#4'Left' -- +#2#16#6'Height'#2#21#3'Top'#3#152#0#5'Width'#2'W'#7'Caption'#6#12'Solar Syst' -- +'em'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#14'sho' -- +'wlabelConst'#3'Tag'#2#6#4'Left'#2#16#6'Height'#2#21#3'Top'#3#176#0#5'Width' -- +#2'q'#7'Caption'#6#18'Constellation name'#7'OnClick'#7#14'showlabelClick'#8 -- +'TabOrder'#2#5#0#0#9'TCheckBox'#13'showlabelMisc'#3'Tag'#2#7#4'Left'#2#16#6 -- +'Height'#2#21#3'Top'#3#200#0#5'Width'#2'Q'#7'Caption'#6#12'Other labels'#7'O' -- +'nClick'#7#14'showlabelClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#18'ShowLabelC' -- +'hartInfo'#3'Tag'#2#8#4'Left'#2#16#6'Height'#2#21#3'Top'#3#224#0#5'Width'#2 -- +'i'#7'Caption'#6#17'Chart Information'#7'OnClick'#7#14'showlabelClick'#8'Tab' -- +'Order'#2#7#0#0#5'TEdit'#5'Edit1'#3'Tag'#2#1#4'Left'#3#227#0#6'Height'#2#21#3 -- +'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#8#0 -- +#0#7'TUpDown'#12'labelmagStar'#3'Tag'#2#1#4'Left'#3#9#1#6'Height'#2#21#3'Top' -- +#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit1'#3'Min'#2#0#3'Max'#2#10#8'Positio' -- +'n'#2#1#8'TabOrder'#2#9#4'Wrap'#8#0#0#5'TEdit'#5'Edit2'#3'Tag'#2#2#4'Left'#3 -- +#227#0#6'Height'#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange'#7#15'labelmagCha' -- +'nged'#8'TabOrder'#2#10#0#0#7'TUpDown'#11'labelmagVar'#3'Tag'#2#2#4'Left'#3#9 -- +#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associate'#7#5'Edit2'#3'Min'#2 -- +#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#11#4'Wrap'#8#0#0#7'TUpDown'#12 -- +'labelmagMult'#3'Tag'#2#3#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2 -- +#17#9'Associate'#7#5'Edit3'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrde' -- +'r'#2#12#4'Wrap'#8#0#0#5'TEdit'#5'Edit3'#3'Tag'#2#3#4'Left'#3#227#0#6'Height' -- +#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder' -- +#2#13#0#0#7'TUpDown'#11'labelmagNeb'#3'Tag'#2#4#4'Left'#3#9#1#6'Height'#2#21 -- +#3'Top'#2'|'#5'Width'#2#17#9'Associate'#7#5'Edit4'#3'Min'#2#0#3'Max'#2#10#8 -- +'Position'#2#1#8'TabOrder'#2#14#4'Wrap'#8#0#0#5'TEdit'#5'Edit4'#3'Tag'#2#4#4 -- +'Left'#3#227#0#6'Height'#2#21#3'Top'#2'|'#5'Width'#2'&'#8'OnChange'#7#15'lab' -- +'elmagChanged'#8'TabOrder'#2#15#0#0#7'TUpDown'#11'labelmagSol'#3'Tag'#2#5#4 -- +'Left'#3#9#1#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2#17#9'Associate'#7#5'Ed' -- +'it5'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#16#4'Wrap'#8#0#0#5 -- +'TEdit'#5'Edit5'#3'Tag'#2#5#4'Left'#3#227#0#6'Height'#2#21#3'Top'#3#148#0#5 -- +'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#17#0#0#5'TEdit' -- +#5'Edit6'#3'Tag'#2#1#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2'&' -- +#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#18#0#0#7'TUpDown'#13'label' -- +'SizeStar'#3'Tag'#2#1#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2 -- +#17#9'Associate'#7#5'Edit6'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrde' -- +'r'#2#19#4'Wrap'#8#0#0#5'TEdit'#5'Edit7'#3'Tag'#2#2#4'Left'#3'k'#1#6'Height' -- +#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrde' -- +'r'#2#20#0#0#7'TUpDown'#12'labelsizeVar'#3'Tag'#2#2#4'Left'#3#145#1#6'Height' -- +#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associate'#7#5'Edit7'#3'Min'#2#4#3'Max'#2 -- +'0'#8'Position'#2#6#8'TabOrder'#2#21#4'Wrap'#8#0#0#5'TEdit'#5'Edit8'#3'Tag'#2 -- +#3#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChange'#7#16 -- +'labelsizeChanged'#8'TabOrder'#2#22#0#0#7'TUpDown'#13'labelsizeMult'#3'Tag'#2 -- +#3#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'd'#5'Width'#2#17#9'Associate'#7#5 -- +'Edit8'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#23#4'Wrap'#8#0#0 -- +#5'TEdit'#5'Edit9'#3'Tag'#2#4#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'|'#5'Wi' -- +'dth'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#24#0#0#7'TUpDown' -- +#12'labelsizeNeb'#3'Tag'#2#4#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'|'#5'Wi' -- +'dth'#2#17#9'Associate'#7#5'Edit9'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 -- +'TabOrder'#2#25#4'Wrap'#8#0#0#5'TEdit'#6'Edit10'#3'Tag'#2#5#4'Left'#3'k'#1#6 -- +'Height'#2#21#3'Top'#3#148#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' -- +#8'TabOrder'#2#26#0#0#7'TUpDown'#12'labelsizeSol'#3'Tag'#2#5#4'Left'#3#145#1 -- +#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2#17#9'Associate'#7#6'Edit10'#3'Min' -- +#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#27#4'Wrap'#8#0#0#5'TEdit'#6'E' -- +'dit11'#3'Tag'#2#6#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#172#0#5'Width'#2'&' -- +#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#28#0#0#7'TUpDown'#14'label' -- +'sizeConst'#3'Tag'#2#6#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#172#0#5'Width' -- +#2#17#9'Associate'#7#6'Edit11'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabO' -- +'rder'#2#29#4'Wrap'#8#0#0#5'TEdit'#6'Edit12'#3'Tag'#2#7#4'Left'#3'k'#1#6'Hei' -- ,'ght'#2#21#3'Top'#3#196#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8 -- +'TabOrder'#2#30#0#0#7'TUpDown'#13'labelsizeMisc'#3'Tag'#2#7#4'Left'#3#145#1#6 -- +'Height'#2#21#3'Top'#3#196#0#5'Width'#2#17#9'Associate'#7#6'Edit12'#3'Min'#2 -- +#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#31#4'Wrap'#8#0#0#5'TEdit'#6'Edi' -- +'t13'#3'Tag'#2#8#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#220#0#5'Width'#2'&'#8 -- +'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2' '#0#0#7'TUpDown'#18'labelsi' -- +'zeChartInfo'#3'Tag'#2#8#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#220#0#5'Wid' -- +'th'#2#17#9'Associate'#7#6'Edit13'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 -- +'TabOrder'#2'!'#4'Wrap'#8#0#0#0#9'TCheckBox'#16'DrawAllStarLabel'#4'Left'#2 -- +#26#6'Height'#2#21#3'Top'#3#181#1#5'Width'#3#179#0#7'Caption'#6'#Display lab' -- +'els for all star catalog'#7'OnClick'#7#21'DrawAllStarLabelClick'#8'TabOrder' -- +#2#5#0#0#7'TButton'#7'Button9'#4'Left'#3'e'#1#6'Height'#2#25#3'Top'#3#177#1#5 -- +'Width'#2'c'#7'Caption'#6#7'Default'#7'OnClick'#7#12'Button9Click'#8'TabOrde' -- +'r'#2#6#0#0#9'TCheckBox'#9'ShowTitle'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#27 -- +#5'Width'#3#141#0#7'Caption'#6#26'Show position in title bar'#7'OnClick'#7#14 -- +'ShowTitleClick'#8'TabOrder'#2#7#0#0#0#9'TTabSheet'#5'Page7'#7'Caption'#6#5 -- +'Fonts'#12'ClientHeight'#3#248#1#11'ClientWidth'#3#253#1#0#6'TBevel'#7'Bevel' -- +'10'#4'Left'#2#8#6'Height'#3'I'#1#3'Top'#2' '#5'Width'#3#137#1#5'Shape'#7#7 -- +'bsFrame'#0#0#6'TLabel'#8'Label121'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'J'#5 -- +'Width'#2'R'#7'Caption'#6#16'Coordinates Grid'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#8'Label122'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'('#5'Width'#2' '#7'Capt' -- +'ion'#6#6'Object'#11'ParentColor'#8#0#0#6'TLabel'#8'Label123'#4'Left'#2#16#6 -- +'Height'#2#14#3'Top'#2's'#5'Width'#2'!'#7'Caption'#6#6'Labels'#11'ParentColo' -- +'r'#8#0#0#6'TLabel'#8'Label124'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#157#0#5 -- +'Width'#2'%'#7'Caption'#6#6'Legend'#11'ParentColor'#8#0#0#6'TLabel'#8'Label1' -- +'25'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#198#0#5'Width'#2'R'#7'Caption'#6#18 -- +'Information detail'#11'ParentColor'#8#0#0#6'TLabel'#8'Label126'#4'Left'#2#16 -- +#6'Height'#2#14#3'Top'#3#240#0#5'Width'#2'0'#7'Caption'#6#11'Object list'#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label127'#4'Left'#2#16#6'Height'#2#14#3'Top' -- +#3#26#1#5'Width'#2'C'#7'Caption'#6#14'Printer legend'#11'ParentColor'#8#0#0#6 -- +'TLabel'#8'Label128'#4'Left'#3#192#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2#22 -- +#7'Caption'#6#4'Font'#11'ParentColor'#8#0#0#6'TLabel'#8'Label129'#4'Left'#3 -- +'X'#1#6'Height'#2#14#3'Top'#2'('#5'Width'#2'!'#7'Caption'#6#6'Modify'#11'Par' -- +'entColor'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#3'Tag'#2#1#4'Left'#3'`'#1 -- +#6'Height'#2#22#3'Top'#2'E'#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.D' -- +'ata'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0 -- +#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +'lBtnFace'#11'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#7'Label13'#4'Le' -+ +'ft'#3#195#0#6'Height'#2#14#3'Top'#2#24#5'Width'#2'*'#8'AutoSize'#8#7'Captio' -+ +'n'#6#5'Fill?'#5'Color'#7#9'clBtnFace'#11'ParentColor'#8#11'Transparent'#8#0 -+ +#0#9'TCheckBox'#10'chkFillAst'#4'Left'#3#194#0#6'Height'#2#21#3'Top'#2')'#5 -+ +'Width'#2#23#7'Enabled'#8#7'OnClick'#7#15'chkFillAstClick'#8'TabOrder'#2#0#7 -+ +'Visible'#8#0#0#9'TCheckBox'#10'chkFillOCl'#4'Left'#3#195#0#6'Height'#2#21#3 -+ +'Top'#2'='#5'Width'#2#23#7'OnClick'#7#15'chkFillOClClick'#8'TabOrder'#2#1#0#0 -+ +#9'TCheckBox'#10'chkFillGCl'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'Q'#5'Wi' -+ +'dth'#2#23#7'OnClick'#7#15'chkFillGClClick'#8'TabOrder'#2#2#0#0#9'TCheckBox' -+ +#10'chkFillPNe'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'O' -+ +'nClick'#7#15'chkFillPNeClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#9'chkFillDN' -+ +#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'y'#5'Width'#2#23#7'OnClick'#7#14'ch' -+ +'kFillDNClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#9'chkFillEN'#4'Left'#3#195#0 -+ +#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'OnClick'#7#14'chkFillENClick' -+ +#8'TabOrder'#2#5#0#0#9'TCheckBox'#9'chkFillRN'#4'Left'#3#195#0#6'Height'#2#21 -+ +#3'Top'#3#161#0#5'Width'#2#23#7'OnClick'#7#14'chkFillRNClick'#8'TabOrder'#2#6 -+ +#0#0#9'TCheckBox'#9'chkFillSN'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2')'#5 -+ +'Width'#2#23#7'OnClick'#7#14'chkFillSNClick'#8'TabOrder'#2#7#0#0#9'TCheckBox' -+ +#10'chkFillGxy'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'='#5'Width'#2#23#7'O' -+ +'nClick'#7#15'chkFillGxyClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#12'chkFillGx' -+ +'yCl'#4'Left'#3#174#1#6'Height'#2#21#3'Top'#2'Q'#5'Width'#2#23#7'OnClick'#7 -+ +#17'chkFillGxyClClick'#8'TabOrder'#2#9#0#0#9'TCheckBox'#8'chkFillQ'#4'Left'#3 -+ +#174#1#6'Height'#2#21#3'Top'#2'e'#5'Width'#2#23#7'OnClick'#7#13'chkFillQClic' -+ +'k'#8'TabOrder'#2#10#0#0#9'TCheckBox'#9'chkFillGL'#4'Left'#3#174#1#6'Height' -+ +#2#21#3'Top'#2'y'#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14'chkFillGLClick' -+ +#8'TabOrder'#2#11#7'Visible'#8#0#0#9'TCheckBox'#9'chkFillNE'#4'Left'#3#174#1 -+ +#6'Height'#2#21#3'Top'#3#141#0#5'Width'#2#23#7'Enabled'#8#7'OnClick'#7#14'ch' -+ +'kFillNEClick'#8'TabOrder'#2#12#7'Visible'#8#0#0#0#9'TGroupBox'#9'GroupBox2' -+ +#4'Left'#2#5#6'Height'#3#163#0#3'Top'#3'*'#1#5'Width'#3#254#1#7'Caption'#6#26 -+ +' Adjust colour brightness '#12'ClientHeight'#3#148#0#11'ClientWidth'#3#250#1 -+ +#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2#24#6'Height'#2#14#3'Top'#2 -+ +#20#5'Width'#2'v'#7'Caption'#6#22'Low surface brightness'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#6'Label2'#4'Left'#3#248#0#6'Height'#2#14#3'Top'#2#20#5'Width'#2 -+ +'u'#7'Caption'#6#23'High surface brightness'#11'ParentColor'#8#0#0#6'TLabel' -+ +#6'Label3'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'E'#5'Width'#2'"'#7'Caption'#6 -+ +#7'Fainter'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#3#139#1#6'Heig' -+ +'ht'#2#14#3'Top'#2'E'#5'Width'#2'M'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRig' -+ +'ht'#0#7'Caption'#6#10'Brighter '#11'ParentColor'#8#0#0#9'TTrackBar'#12'Neb' -+ +'BrightBar'#4'Left'#3#232#0#6'Height'#2'&'#3'Top'#2'#'#5'Width'#3#217#0#9'Fr' -+ +'equency'#2#26#3'Max'#3#255#0#8'OnChange'#7#18'NebBrightBarChange'#8'PageSiz' -+ +'e'#2#26#8'Position'#2#0#8'TabOrder'#2#1#0#0#9'TTrackBar'#10'NebGrayBar'#4'L' -+ ,'eft'#2#8#6'Height'#2'&'#3'Top'#2'#'#5'Width'#3#209#0#9'Frequency'#2#26#3'Ma' -+ +'x'#3#255#0#8'OnChange'#7#16'NebGrayBarChange'#8'PageSize'#2#26#8'Position'#2 -+ +#0#8'TabOrder'#2#0#0#0#7'TButton'#17'DefNebColorButton'#4'Left'#3'v'#1#6'Hei' -+ +'ght'#2#25#3'Top'#2'f'#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' -+ +'tion'#6#7'Default'#7'OnClick'#7#22'DefNebColorButtonClick'#8'TabOrder'#2#3#0 -+ +#0#6'TPanel'#13'NebColorPanel'#4'Left'#2'p'#6'Height'#2')'#3'Top'#2']'#5'Wid' -+ +'th'#3#233#0#12'ClientHeight'#2')'#11'ClientWidth'#3#233#0#8'TabOrder'#2#2#0 -+ +#6'TShape'#7'Shape29'#4'Left'#2' '#6'Height'#2'!'#3'Top'#2#4#5'Width'#2'A'#5 -+ +'Shape'#7#9'stEllipse'#0#0#6'TShape'#7'Shape30'#4'Left'#3#136#0#6'Height'#2 -+ +'!'#3'Top'#2#4#5'Width'#2'A'#5'Shape'#7#9'stEllipse'#0#0#0#0#9'TComboBox'#13 -+ +'lstDSOCScheme'#4'Left'#3#253#0#6'Height'#2#24#3'Top'#2#21#5'Width'#3#168#0 -+ +#10'ItemHeight'#2#0#13'Items.Strings'#1#6#14'CdC v2 default'#6#14'CdC v3 def' -+ +'ault'#6#13'Printed atlas'#6#5'Green'#0#8'OnChange'#7#19'lstDSOCSchemeChange' -+ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page4'#7 -+ +'Caption'#6#10'Sky colour'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0 -+ +#6'TPanel'#6'Panel2'#4'Left'#2#24#6'Height'#3#147#0#3'Top'#3#142#0#5'Width'#3 -+ +#160#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#147#0#11'ClientWidth'#3 -+ +#160#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label205'#4'Left'#2'v'#6'Height'#2#14#3 -+ +'Top'#2'n'#5'Width'#2'%'#9'Alignment'#7#8'taCenter'#7'Caption'#6#8'Twilight' -+ +#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label202'#4'Left'#2#11#6'He' -+ +'ight'#2#14#3'Top'#2'n'#5'Width'#2'-'#9'Alignment'#7#8'taCenter'#7'Caption'#6 -+ +#8'Day Time'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8'Label208'#4'Lef' -+ +'t'#3#13#1#6'Height'#2#14#3'Top'#2'n'#5'Width'#2'g'#9'Alignment'#7#8'taCente' -+ +'r'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#21'Astronomical Twiligh' -+ +'t'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel'#6'Panel6'#4'Left'#2#8#6'He' -+ +'ight'#2'a'#3'Top'#2#8#5'Width'#3'l'#1#12'ClientHeight'#2'a'#11'ClientWidth' -+ +#3'l'#1#8'TabOrder'#2#0#0#6'TShape'#7'Shape18'#3'Tag'#2#1#4'Left'#2#0#6'Heig' -+ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 -+ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape19'#3'Tag'#2#2#4'Left'#2'4'#6'Heig' -+ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 -+ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape20'#3'Tag'#2#3#4'Left'#2'h'#6'Heig' -+ +'ht'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp'#7 -+ +#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape21'#3'Tag'#2#4#4'Left'#3#156#0#6'H' -+ +'eight'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseUp' -+ +#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape22'#3'Tag'#2#5#4'Left'#3#208#0#6 -+ +'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseU' -+ +'p'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape23'#3'Tag'#2#6#4'Left'#3#4#1#6 -+ +'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMouseU' -+ +'p'#7#15'ShapeSkyMouseUp'#0#0#6'TShape'#7'Shape24'#3'Tag'#2#7#4'Left'#3'8'#1 -+ +#6'Height'#2'a'#3'Top'#2#0#5'Width'#2'4'#9'Pen.Color'#7#8'clSilver'#9'OnMous' -+ +'eUp'#7#15'ShapeSkyMouseUp'#0#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#30#6'Heigh' -+ +'t'#2'x'#3'Top'#3'&'#1#5'Width'#3#176#0#10'BevelOuter'#7#6'bvNone'#12'Client' -+ +'Height'#2'x'#11'ClientWidth'#3#176#0#8'TabOrder'#2#2#0#6'TShape'#6'Shape8'#4 -+ +'Left'#2#5#6'Height'#2'I'#3'Top'#2#8#5'Width'#3#139#0#9'OnMouseUp'#7#15'Shap' -+ +'eSkyMouseUp'#0#0#6'TLabel'#6'Label5'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'`' -+ +#5'Width'#2'M'#7'Caption'#6#16'Fixed sky color '#11'ParentColor'#8#0#0#0#11 -+ +'TRadioGroup'#11'skycolorbox'#4'Left'#2#24#6'Height'#2'Y'#3'Top'#2'0'#5'Widt' -+ +'h'#3'l'#1#8'AutoFill'#9#7'Caption'#6#9'Sky Color'#28'ChildSizing.LeftRightS' -+ +'pacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHori' -+ +'zontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24 -+ +'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChi' -+ +'lds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Lay' -+ +'out'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2 -+ +#12'ClientHeight'#2'J'#11'ClientWidth'#3'h'#1#7'Columns'#2#2#13'Items.String' -+ +'s'#1#6#11'Fixed Black'#6#9'Automatic'#0#7'OnClick'#7#16'skycolorboxClick'#8 -+ +'TabOrder'#2#0#0#0#7'TButton'#7'Button3'#4'Left'#3#245#0#6'Height'#2#25#3'To' -+ +'p'#3'E'#1#5'Width'#2'~'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'D' -+ +'efault color'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#3#0#0#0#9'TTabShe' -+ +'et'#5'Page5'#7'Caption'#6#5'Lines'#12'ClientHeight'#3#217#1#11'ClientWidth' -+ +#3#251#1#0#9'TCheckBox'#6'EqGrid'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'e'#5 -+ +'Width'#2't'#7'Caption'#6#19'Add Equatorial Grid'#7'OnClick'#7#11'EqGridClic' -+ +'k'#8'TabOrder'#2#5#0#0#9'TCheckBox'#5'CGrid'#4'Left'#2#16#6'Height'#2#21#3 -+ +'Top'#2' '#5'Width'#3#130#0#7'Caption'#6#20'Show Coordinate Grid'#7'OnClick' -+ +#7#10'CGridClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#8'ecliptic'#4'Left'#3#210 -+ ,#0#6'Height'#2#21#3'Top'#2' '#5'Width'#2'X'#7'Caption'#6#13'Show Ecliptic'#7 -+ +'OnClick'#7#13'eclipticClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#8'galactic'#4 -+ +'Left'#3#210#0#6'Height'#2#21#3'Top'#2'e'#5'Width'#3#134#0#7'Caption'#6#21'S' -+ +'how Galactic Equator'#7'OnClick'#7#13'galacticClick'#8'TabOrder'#2#7#0#0#9 -+ +'TCheckBox'#7'GridNum'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Width'#2'h'#7 -+ +'Caption'#6#15'Show Grid Label'#7'OnClick'#7#12'GridNumClick'#8'TabOrder'#2#4 -+ +#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#3#140#0#3'Top'#3#157#0#5 -+ +'Width'#3#17#1#7'Caption'#6#21'Constellation Figures'#12'ClientHeight'#2'}' -+ +#11'ClientWidth'#3#13#1#8'TabOrder'#2#9#0#6'TLabel'#8'Label132'#4'Left'#2#29 -+ +#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#153#0#7'Caption'#6'!Constellation Fig' -+ +'ure File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Constl'#4'Left'#2#8#6 -+ +'Height'#2#21#3'Top'#2#11#5'Width'#3#149#0#7'Caption'#6#25'Show Constellatio' -+ +'n Figure'#7'OnClick'#7#11'ConstlClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit' -+ +#10'ConstlFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5'Width'#3#208#0#13 -+ +'DialogOptions'#11#0#6'Filter'#6#26'Constellation Figure|*.cln'#11'FilterInd' -+ +'ex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOr' -+ +'der'#2#2#8'OnChange'#7#16'ConstlFileChange'#0#0#9'TComboBox'#7'CFStyle'#4'L' -+ +'eft'#2#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'ItemHeight'#2#16#9'It' -+ +'emIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot' -+ +#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'CFStyleChange'#10'OnDrawItem'#7#13'St' -+ +'yleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Li' -+ +'ne'#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#8#6'Height'#3#140#0#3'Top'#3 -+ +'-'#1#5'Width'#3#17#1#7'Caption'#6#24'Constellation Boundaries'#12'ClientHei' -+ +'ght'#2'}'#11'ClientWidth'#3#13#1#8'TabOrder'#2#11#0#6'TLabel'#7'Label72'#4 -+ +'Left'#2#29#6'Height'#2#14#3'Top'#2'K'#5'Width'#3#170#0#7'Caption'#6'#Conste' -+ +'llation Boundary File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#6'Constb' -+ +#4'Left'#2#8#6'Height'#2#21#3'Top'#2#11#5'Width'#3#166#0#7'Caption'#6#27'Sho' -+ +'w Constellation Boundary'#7'OnClick'#7#11'ConstbClick'#8'TabOrder'#2#0#0#0 -+ +#13'TFileNameEdit'#10'ConstbFile'#4'Left'#2#29#6'Height'#2#21#3'Top'#2'Z'#5 -+ +'Width'#3#208#0#13'DialogOptions'#11#0#6'Filter'#6#28'Constellation Boundary' -+ +'|*.cby'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'Nu' -+ +'mGlyphs'#2#1#8'TabOrder'#2#2#8'OnChange'#7#16'ConstbFileChange'#0#0#9'TComb' -+ +'oBox'#7'CBStyle'#4'Left'#2#29#6'Height'#2#23#3'Top'#2' '#5'Width'#2'd'#10'I' -+ +'temHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3 -+ +'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#13'CBStyleChange'#10 -+ +'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder' -+ +#2#1#4'Text'#6#4'Line'#0#0#0#9'TGroupBox'#9'GroupBox4'#4'Left'#3'%'#1#6'Heig' -+ +'ht'#3#140#0#3'Top'#3#157#0#5'Width'#3#185#0#7'Caption'#6#9'Milky Way'#12'Cl' -+ +'ientHeight'#2'}'#11'ClientWidth'#3#181#0#8'TabOrder'#2#10#0#9'TCheckBox'#8 -+ +'milkyway'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#24#5'Width'#2'g'#7'Caption'#6 -+ +#14'Show Milky Way'#7'OnClick'#7#13'milkywayClick'#8'TabOrder'#2#0#0#0#9'TCh' -+ +'eckBox'#12'fillmilkyway'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'8'#5'Width'#2 -+ +'V'#7'Caption'#6#14'Fill Milky Way'#7'OnClick'#7#17'fillmilkywayClick'#8'Tab' -+ +'Order'#2#1#0#0#0#9'TComboBox'#9'GridStyle'#4'Left'#2''''#6'Height'#2#23#3'T' -+ +'op'#2'5'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.String' -+ +'s'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnCh' -+ +'ange'#7#15'GridStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16 -+ +'csOwnerDrawFixed'#8'TabOrder'#2#1#4'Text'#6#4'Line'#0#0#9'TComboBox'#13'Ecl' -+ +'ipticStyle'#4'Left'#3#230#0#6'Height'#2#23#3'Top'#2'5'#5'Width'#2'd'#10'Ite' -+ +'mHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3 -+ +'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#19'EclipticStyleChang' -+ +'e'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawFixed'#8'Tab' -+ +'Order'#2#3#4'Text'#6#4'Line'#0#0#9'TComboBox'#11'EqGridStyle'#4'Left'#2'''' -+ +#6'Height'#2#23#3'Top'#2'}'#5'Width'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2 -+ +#0#13'Items.Strings'#1#6#4'Line'#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash ' -+ +'Dot Dot'#0#8'OnChange'#7#17'EqGridStyleChange'#10'OnDrawItem'#7#13'StyleDra' -+ +'wItem'#5'Style'#7#16'csOwnerDrawFixed'#8'TabOrder'#2#6#4'Text'#6#4'Line'#0#0 -+ +#9'TComboBox'#10'GalEqStyle'#4'Left'#3#230#0#6'Height'#2#23#3'Top'#2'}'#5'Wi' -+ +'dth'#2'd'#10'ItemHeight'#2#16#9'ItemIndex'#2#0#13'Items.Strings'#1#6#4'Line' -+ +#6#4'Dash'#6#3'Dot'#6#8'Dash Dot'#6#12'Dash Dot Dot'#0#8'OnChange'#7#16'GalE' -+ +'qStyleChange'#10'OnDrawItem'#7#13'StyleDrawItem'#5'Style'#7#16'csOwnerDrawF' -+ +'ixed'#8'TabOrder'#2#8#4'Text'#6#4'Line'#0#0#9'TGroupBox'#9'GroupBox8'#4'Lef' -+ +'t'#3'%'#1#6'Height'#3#140#0#3'Top'#3'-'#1#5'Width'#3#185#0#7'Caption'#6#13 -+ +'Proper Motion'#12'ClientHeight'#2'}'#11'ClientWidth'#3#181#0#8'TabOrder'#2 -+ ,#12#0#6'TLabel'#7'Label68'#4'Left'#2'['#6'Height'#2#14#3'Top'#2'_'#5'Width'#2 -+ +#29#7'Caption'#6#5'years'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2 -+ +'$'#6'Height'#2'?'#3'Top'#2#15#5'Width'#3#142#0#8'AutoSize'#8#7'Caption'#6':' -+ +'Draw a line that represent the proper motion for the next '#11'ParentColor' -+ +#8#8'WordWrap'#9#0#0#9'TCheckBox'#9'DrawPmBox'#4'Left'#2#8#6'Height'#2#21#3 -+ +'Top'#2#11#5'Width'#2#23#7'OnClick'#7#14'DrawPmBoxClick'#8'TabOrder'#2#0#0#0 -+ +#9'TLongEdit'#7'DrawPMy'#4'Left'#2#22#6'Height'#2#21#4'Hint'#6#13'-99999..99' -+ +'999'#3'Top'#2'Z'#5'Width'#2'8'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -+ +'r'#2#1#8'OnChange'#7#13'DrawPMyChange'#5'Value'#2#0#8'MinValue'#4'ay'#254 -+ +#255#8'MaxValue'#4#159#134#1#0#0#0#0#0#9'TTabSheet'#5'Page6'#7'Caption'#6#6 -+ +'Labels'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251#1#0#11'TRadioGroup'#8 -+ +'MagLabel'#4'Left'#2#16#6'Height'#2'Q'#3'Top'#3']'#1#5'Width'#3#221#0#8'Auto' -+ +'Fill'#9#7'Caption'#6#10'Star Label'#28'ChildSizing.LeftRightSpacing'#2#6#28 -+ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' -+ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' -+ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' -+ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' -+ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHei' -+ +'ght'#2'B'#11'ClientWidth'#3#217#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.' -+ +'Strings'#1#6#4'Name'#6#11'Common Name'#6#9'Magnitude'#0#7'OnClick'#7#13'Mag' -+ +'LabelClick'#8'TabOrder'#2#3#0#0#11'TRadioGroup'#10'constlabel'#4'Left'#3#245 -+ +#0#6'Height'#2'Q'#3'Top'#3']'#1#5'Width'#3#220#0#8'AutoFill'#9#7'Caption'#6 -+ +#19'Constellation Label'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing' -+ +'.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenous' -+ +'ChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize' -+ +#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.Shrink' -+ +'Vertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightTh' -+ +'enTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11 -+ +'ClientWidth'#3#216#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9 -+ +'Full Name'#6#12'Abbreviation'#6#10'Latin Name'#0#7'OnClick'#7#15'constlabel' -+ +'Click'#8'TabOrder'#2#4#0#0#9'TCheckBox'#12'Showlabelall'#4'Left'#2#16#6'Hei' -+ +'ght'#2#21#3'Top'#2'1'#5'Width'#2'k'#7'Caption'#6#18'Display the labels'#7'O' -+ +'nClick'#7#17'ShowlabelallClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#13'ShowCha' -+ +'rtInfo'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#5#5'Width'#3#239#0#7'Caption'#6 -+ +'.Display the chart information in the menu bar.'#7'OnClick'#7#18'ShowChartI' -+ +'nfoClick'#8'TabOrder'#2#1#0#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#16#6'Heig' -+ +'ht'#3#9#1#3'Top'#2'M'#5'Width'#3#221#1#7'Caption'#6#12'Label Object'#12'Cli' -+ +'entHeight'#3#250#0#11'ClientWidth'#3#217#1#8'TabOrder'#2#2#0#6'TLabel'#8'La' -+ +'bel237'#4'Left'#3#227#0#6'Height'#2'!'#3'Top'#2#15#5'Width'#2'P'#8'AutoSize' -+ +#8#7'Caption'#6#20'Magnitude difference'#11'ParentColor'#8#8'WordWrap'#9#0#0 -+ +#6'TLabel'#8'Label252'#4'Left'#3':'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2 -+ +#26#7'Caption'#6#5'Color'#11'ParentColor'#8#0#0#6'TLabel'#8'Label240'#4'Left' -+ +#3'9'#1#6'Height'#2#14#3'Top'#2#16#5'Width'#2#27#7'Caption'#6#5'Label'#11'Pa' -+ +'rentColor'#8#0#0#6'TShape'#14'labelcolorStar'#3'Tag'#2#1#4'Left'#3'6'#1#6'H' -+ +'eight'#2#17#3'Top'#2'6'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0 -+ +#0#6'TShape'#13'labelcolorVar'#3'Tag'#2#2#4'Left'#3'6'#1#6'Height'#2#17#3'To' -+ +'p'#2'N'#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#14 -+ +'labelcolorMult'#3'Tag'#2#3#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'f'#5'Widt' -+ +'h'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorNeb' -+ +#3'Tag'#2#4#4'Left'#3'6'#1#6'Height'#2#17#3'Top'#2'~'#5'Width'#2'!'#9'OnMous' -+ +'eUp'#7#17'labelcolorMouseUp'#0#0#6'TShape'#13'labelcolorSol'#3'Tag'#2#5#4'L' -+ +'eft'#3'6'#1#6'Height'#2#17#3'Top'#3#150#0#5'Width'#2'!'#9'OnMouseUp'#7#17'l' -+ +'abelcolorMouseUp'#0#0#6'TShape'#15'labelcolorConst'#3'Tag'#2#6#4'Left'#3'6' -+ +#1#6'Height'#2#17#3'Top'#3#174#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorM' -+ +'ouseUp'#0#0#6'TShape'#14'labelcolorMisc'#3'Tag'#2#7#4'Left'#3'6'#1#6'Height' -+ +#2#17#3'Top'#3#198#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6 -+ +'TShape'#19'labelcolorchartinfo'#3'Tag'#2#8#4'Left'#3'6'#1#6'Height'#2#17#3 -+ +'Top'#3#222#0#5'Width'#2'!'#9'OnMouseUp'#7#17'labelcolorMouseUp'#0#0#6'TLabe' -+ +'l'#8'Label255'#4'Left'#3'n'#1#6'Height'#2#14#3'Top'#2' '#5'Width'#2#22#7'Ca' -+ +'ption'#6#4'Size'#11'ParentColor'#8#0#0#9'TCheckBox'#13'showlabelStar'#3'Tag' -+ +#2#1#4'Left'#2#16#6'Height'#2#21#3'Top'#2'8'#5'Width'#2'1'#7'Caption'#6#5'St' -+ +'ars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'sh' -+ +'owlabelVar'#3'Tag'#2#2#4'Left'#2#16#6'Height'#2#21#3'Top'#2'P'#5'Width'#2'[' -+ +#7'Caption'#6#14'Variable Stars'#7'OnClick'#7#14'showlabelClick'#8'TabOrder' -+ ,#2#1#0#0#9'TCheckBox'#13'showlabelMult'#3'Tag'#2#3#4'Left'#2#16#6'Height'#2 -+ +#21#3'Top'#2'h'#5'Width'#2'W'#7'Caption'#6#14'Multiple Stars'#7'OnClick'#7#14 -+ +'showlabelClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#12'showlabelNeb'#3'Tag'#2#4 -+ +#4'Left'#2#16#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'>'#7'Caption'#6#7'Neb' -+ +'ulae'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#12's' -+ +'howlabelSol'#3'Tag'#2#5#4'Left'#2#16#6'Height'#2#21#3'Top'#3#152#0#5'Width' -+ +#2'W'#7'Caption'#6#12'Solar System'#7'OnClick'#7#14'showlabelClick'#8'TabOrd' -+ +'er'#2#4#0#0#9'TCheckBox'#14'showlabelConst'#3'Tag'#2#6#4'Left'#2#16#6'Heigh' -+ +'t'#2#21#3'Top'#3#176#0#5'Width'#2'q'#7'Caption'#6#18'Constellation name'#7 -+ +'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#13'showlabel' -+ +'Misc'#3'Tag'#2#7#4'Left'#2#16#6'Height'#2#21#3'Top'#3#200#0#5'Width'#2'Q'#7 -+ +'Caption'#6#12'Other labels'#7'OnClick'#7#14'showlabelClick'#8'TabOrder'#2#6 -+ +#0#0#9'TCheckBox'#18'ShowLabelChartInfo'#3'Tag'#2#8#4'Left'#2#16#6'Height'#2 -+ +#21#3'Top'#3#224#0#5'Width'#2'i'#7'Caption'#6#17'Chart Information'#7'OnClic' -+ +'k'#7#14'showlabelClick'#8'TabOrder'#2#7#0#0#5'TEdit'#5'Edit1'#3'Tag'#2#1#4 -+ +'Left'#3#227#0#6'Height'#2#21#3'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#15'lab' -+ +'elmagChanged'#8'TabOrder'#2#8#0#0#7'TUpDown'#12'labelmagStar'#3'Tag'#2#1#4 -+ +'Left'#3#9#1#6'Height'#2#21#3'Top'#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit1' -+ +#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#9#4'Wrap'#8#0#0#5'TEdi' -+ +'t'#5'Edit2'#3'Tag'#2#2#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'L'#5'Width'#2 -+ +'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#10#0#0#7'TUpDown'#11'lab' -+ +'elmagVar'#3'Tag'#2#2#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17 -+ +#9'Associate'#7#5'Edit2'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2 -+ +#11#4'Wrap'#8#0#0#7'TUpDown'#12'labelmagMult'#3'Tag'#2#3#4'Left'#3#9#1#6'Hei' -+ +'ght'#2#21#3'Top'#2'd'#5'Width'#2#17#9'Associate'#7#5'Edit3'#3'Min'#2#0#3'Ma' -+ +'x'#2#10#8'Position'#2#1#8'TabOrder'#2#12#4'Wrap'#8#0#0#5'TEdit'#5'Edit3'#3 -+ +'Tag'#2#3#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'd'#5'Width'#2'&'#8'OnChang' -+ +'e'#7#15'labelmagChanged'#8'TabOrder'#2#13#0#0#7'TUpDown'#11'labelmagNeb'#3 -+ +'Tag'#2#4#4'Left'#3#9#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2#17#9'Associate' -+ +#7#5'Edit4'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1#8'TabOrder'#2#14#4'Wrap'#8 -+ +#0#0#5'TEdit'#5'Edit4'#3'Tag'#2#4#4'Left'#3#227#0#6'Height'#2#21#3'Top'#2'|' -+ +#5'Width'#2'&'#8'OnChange'#7#15'labelmagChanged'#8'TabOrder'#2#15#0#0#7'TUpD' -+ +'own'#11'labelmagSol'#3'Tag'#2#5#4'Left'#3#9#1#6'Height'#2#21#3'Top'#3#148#0 -+ +#5'Width'#2#17#9'Associate'#7#5'Edit5'#3'Min'#2#0#3'Max'#2#10#8'Position'#2#1 -+ +#8'TabOrder'#2#16#4'Wrap'#8#0#0#5'TEdit'#5'Edit5'#3'Tag'#2#5#4'Left'#3#227#0 -+ +#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2'&'#8'OnChange'#7#15'labelmagChange' -+ +'d'#8'TabOrder'#2#17#0#0#5'TEdit'#5'Edit6'#3'Tag'#2#1#4'Left'#3'k'#1#6'Heigh' -+ +'t'#2#21#3'Top'#2'4'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabO' -+ +'rder'#2#18#0#0#7'TUpDown'#13'labelSizeStar'#3'Tag'#2#1#4'Left'#3#145#1#6'He' -+ +'ight'#2#21#3'Top'#2'4'#5'Width'#2#17#9'Associate'#7#5'Edit6'#3'Min'#2#4#3'M' -+ +'ax'#2'0'#8'Position'#2#6#8'TabOrder'#2#19#4'Wrap'#8#0#0#5'TEdit'#5'Edit7'#3 -+ +'Tag'#2#2#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2'&'#8'OnChange' -+ +#7#16'labelsizeChanged'#8'TabOrder'#2#20#0#0#7'TUpDown'#12'labelsizeVar'#3'T' -+ +'ag'#2#2#4'Left'#3#145#1#6'Height'#2#21#3'Top'#2'L'#5'Width'#2#17#9'Associat' -+ +'e'#7#5'Edit7'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#21#4'Wra' -+ +'p'#8#0#0#5'TEdit'#5'Edit8'#3'Tag'#2#3#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#2 -+ +'d'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#22#0#0#7 -+ +'TUpDown'#13'labelsizeMult'#3'Tag'#2#3#4'Left'#3#145#1#6'Height'#2#21#3'Top' -+ +#2'd'#5'Width'#2#17#9'Associate'#7#5'Edit8'#3'Min'#2#4#3'Max'#2'0'#8'Positio' -+ +'n'#2#6#8'TabOrder'#2#23#4'Wrap'#8#0#0#5'TEdit'#5'Edit9'#3'Tag'#2#4#4'Left'#3 -+ +'k'#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2'&'#8'OnChange'#7#16'labelsizeCha' -+ +'nged'#8'TabOrder'#2#24#0#0#7'TUpDown'#12'labelsizeNeb'#3'Tag'#2#4#4'Left'#3 -+ +#145#1#6'Height'#2#21#3'Top'#2'|'#5'Width'#2#17#9'Associate'#7#5'Edit9'#3'Mi' -+ +'n'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#25#4'Wrap'#8#0#0#5'TEdit'#6 -+ +'Edit10'#3'Tag'#2#5#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#148#0#5'Width'#2 -+ +'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#26#0#0#7'TUpDown'#12'la' -+ +'belsizeSol'#3'Tag'#2#5#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#148#0#5'Widt' -+ +'h'#2#17#9'Associate'#7#6'Edit10'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'T' -+ +'abOrder'#2#27#4'Wrap'#8#0#0#5'TEdit'#6'Edit11'#3'Tag'#2#6#4'Left'#3'k'#1#6 -+ +'Height'#2#21#3'Top'#3#172#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' -+ +#8'TabOrder'#2#28#0#0#7'TUpDown'#14'labelsizeConst'#3'Tag'#2#6#4'Left'#3#145 -+ +#1#6'Height'#2#21#3'Top'#3#172#0#5'Width'#2#17#9'Associate'#7#6'Edit11'#3'Mi' -+ +'n'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2#29#4'Wrap'#8#0#0#5'TEdit'#6 -+ +'Edit12'#3'Tag'#2#7#4'Left'#3'k'#1#6'Height'#2#21#3'Top'#3#196#0#5'Width'#2 -+ ,'&'#8'OnChange'#7#16'labelsizeChanged'#8'TabOrder'#2#30#0#0#7'TUpDown'#13'la' -+ +'belsizeMisc'#3'Tag'#2#7#4'Left'#3#145#1#6'Height'#2#21#3'Top'#3#196#0#5'Wid' -+ +'th'#2#17#9'Associate'#7#6'Edit12'#3'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8 -+ +'TabOrder'#2#31#4'Wrap'#8#0#0#5'TEdit'#6'Edit13'#3'Tag'#2#8#4'Left'#3'k'#1#6 -+ +'Height'#2#21#3'Top'#3#220#0#5'Width'#2'&'#8'OnChange'#7#16'labelsizeChanged' -+ +#8'TabOrder'#2' '#0#0#7'TUpDown'#18'labelsizeChartInfo'#3'Tag'#2#8#4'Left'#3 -+ +#145#1#6'Height'#2#21#3'Top'#3#220#0#5'Width'#2#17#9'Associate'#7#6'Edit13'#3 -+ +'Min'#2#4#3'Max'#2'0'#8'Position'#2#6#8'TabOrder'#2'!'#4'Wrap'#8#0#0#0#9'TCh' -+ +'eckBox'#16'DrawAllStarLabel'#4'Left'#2#26#6'Height'#2#21#3'Top'#3#181#1#5'W' -+ +'idth'#3#179#0#7'Caption'#6'#Display labels for all star catalog'#7'OnClick' -+ +#7#21'DrawAllStarLabelClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'Button9'#4'Lef' -+ +'t'#3'e'#1#6'Height'#2#25#3'Top'#3#177#1#5'Width'#2'c'#7'Caption'#6#7'Defaul' -+ +'t'#7'OnClick'#7#12'Button9Click'#8'TabOrder'#2#6#0#0#9'TCheckBox'#9'ShowTit' -+ +'le'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#27#5'Width'#3#141#0#7'Caption'#6#26 -+ +'Show position in title bar'#7'OnClick'#7#14'ShowTitleClick'#8'TabOrder'#2#7 -+ +#0#0#0#9'TTabSheet'#5'Page7'#7'Caption'#6#5'Fonts'#12'ClientHeight'#3#217#1 -+ +#11'ClientWidth'#3#251#1#0#6'TBevel'#7'Bevel10'#4'Left'#2#8#6'Height'#3'I'#1 -+ +#3'Top'#2' '#5'Width'#3#137#1#5'Shape'#7#7'bsFrame'#0#0#6'TLabel'#8'Label121' -+ +#4'Left'#2#16#6'Height'#2#14#3'Top'#2'J'#5'Width'#2'R'#7'Caption'#6#16'Coord' -+ +'inates Grid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label122'#4'Left'#2#16#6'Hei' -+ +'ght'#2#14#3'Top'#2'('#5'Width'#2' '#7'Caption'#6#6'Object'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#8'Label123'#4'Left'#2#16#6'Height'#2#14#3'Top'#2's'#5'Width'#2 -+ +'!'#7'Caption'#6#6'Labels'#11'ParentColor'#8#0#0#6'TLabel'#8'Label124'#4'Lef' -+ +'t'#2#16#6'Height'#2#14#3'Top'#3#157#0#5'Width'#2'%'#7'Caption'#6#6'Legend' -+ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label125'#4'Left'#2#16#6'Height'#2#14#3'T' -+ +'op'#3#198#0#5'Width'#2'R'#7'Caption'#6#18'Information detail'#11'ParentColo' -+ +'r'#8#0#0#6'TLabel'#8'Label126'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#240#0#5 -+ +'Width'#2'0'#7'Caption'#6#11'Object list'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label127'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#26#1#5'Width'#2'C'#7'Caption' -+ +#6#14'Printer legend'#11'ParentColor'#8#0#0#6'TLabel'#8'Label128'#4'Left'#3 -+ +#192#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2#22#7'Caption'#6#4'Font'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#8'Label129'#4'Left'#3'X'#1#6'Height'#2#14#3'Top'#2 -+ +'('#5'Width'#2'!'#7'Caption'#6#6'Modify'#11'ParentColor'#8#0#0#12'TSpeedButt' -+ +'on'#12'SpeedButton1'#3'Tag'#2#1#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#2'E'#5 -+ +'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'B' -+ +'M'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0 -+ +#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#255#0#255#0#0#127#255#0#255#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191 -+ +#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#255#0#255#127#0#127#191#191#191#191#191 -+ ,#191#191#191#191#0#0#127#191#191#191#191#191#191#255#0#255#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191 -+ +#191#191#191#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127#0 -+ +#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 -+ +#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#255#0#0#255#0#0#255#0#0 -+ +#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255 -+ +#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255#255#255#0#255#255#0#255#255#0 -+ +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 -+ +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 -+ +#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0 -+ +#0#12'TSpeedButton'#12'SpeedButton2'#3'Tag'#2#2#4'Left'#3'`'#1#6'Height'#2#22 -+ +#3'Top'#2'n'#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0 -+ +#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24 -+ +#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127 -+ +#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0 -+ +#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#255#0#255#0#0#127#255#0#255#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127 -+ +#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#0#0#127#0#0#127#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0 -+ +#127#0#0#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#255#0#255#127#0#127#191#191 -+ +#191#191#191#191#191#191#191#0#0#127#191#191#191#191#191#191#255#0#255#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127 -+ ,#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0 -+ +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#255#0#0#255#0 -+ +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0 -+ +#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255#255#255#0#255#255#0 -+ +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 -+ +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 -+ +#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFo' -+ +'ntClick'#0#0#12'TSpeedButton'#12'SpeedButton3'#3'Tag'#2#3#4'Left'#3'`'#1#6 -+ +'Height'#2#22#3'Top'#3#152#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.' -+ +'Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0 -+ +#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -@@ -641,13 +763,13 @@ - +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0 -- ,#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 -+ +#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 - +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0 - +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ ,#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191 -@@ -671,57 +793,57 @@ - +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 - +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 - +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'On' -- +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton2'#3'Tag'#2 -- +#2#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#2'n'#5'Width'#2#23#5'Color'#7#9'clBt' -- +'nFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0 -- +'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0 -+ +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton4'#3'Tag'#2 -+ +#4#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#193#0#5'Width'#2#23#5'Color'#7#9'c' -+ +'lBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0 -+ +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255 -- +#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0#127 -- +#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191 -- +#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#255#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191 -- +#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127 -- +#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0 -+ +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 -+ +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127 -+ +#191#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0 -+ +#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ ,#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 -- +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 -+ +#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -@@ -733,7 +855,7 @@ - +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 - +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'Num' - +'Glyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedB' -- +'utton3'#3'Tag'#2#3#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#152#0#5'Width'#2 -+ +'utton5'#3'Tag'#2#5#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3#235#0#5'Width'#2 - +#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0 - +#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd' - +#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -@@ -769,13 +891,13 @@ - +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 - +#255#0#255#0#0#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191 -+ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0 -@@ -794,12 +916,12 @@ - +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 - +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 - +#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#12'TSpe' -- +'edButton'#12'SpeedButton4'#3'Tag'#2#4#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3 -- +#193#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230 -- +#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0 -- +#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +'edButton'#12'SpeedButton6'#3'Tag'#2#6#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3 -+ +#21#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4 -+ +#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0 -+ +#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191 -@@ -833,13 +955,13 @@ - +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#127 - +#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 - +#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -@@ -855,8 +977,8 @@ - +#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 - +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 - +#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0 -- +#0#12'TSpeedButton'#12'SpeedButton5'#3'Tag'#2#5#4'Left'#3'`'#1#6'Height'#2#22 -- +#3'Top'#3#235#0#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4 -+ +#0#12'TSpeedButton'#12'SpeedButton7'#3'Tag'#2#7#4'Left'#3'`'#1#6'Height'#2#22 -+ +#3'Top'#3'='#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#234#4 - +#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0 - +#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -@@ -897,13 +1019,13 @@ - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0 - +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -+ ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 - +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -@@ -916,237 +1038,115 @@ - +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 - +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 - +#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'OnClick'#7#15'SelectFo' -- +'ntClick'#0#0#12'TSpeedButton'#12'SpeedButton6'#3'Tag'#2#6#4'Left'#3'`'#1#6 -- +'Height'#2#22#3'Top'#3#21#1#5'Width'#2#23#5'Color'#7#9'clBtnFace'#10'Glyph.D' -- +'ata'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0 -- +#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0#255#0#0#127 -- +#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 -- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#0#0 -- +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 -- +#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0#127#127#0#127#191 -- +#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#255#0#255 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#255#0 -- +#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127#191#191#191#191 -- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0#127#0#0#127#0#0 -- +#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#127#0#127 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255 -- +#0#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0 -- +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255#0#0#0#255#255 -- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 -- +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 -- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'NumGlyphs'#2#0#7'On' -- +'Click'#7#15'SelectFontClick'#0#0#12'TSpeedButton'#12'SpeedButton7'#3'Tag'#2 -- +#7#4'Left'#3'`'#1#6'Height'#2#22#3'Top'#3'='#1#5'Width'#2#23#5'Color'#7#9'cl' -- +'BtnFace'#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0 -- +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#255#0#255#0#0#127#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#0#0#127#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#0#127#0#0#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#127#0#0#127#0#0#127#0#0#127#0#0#191#191#191#191#191#191#127#0 -- +#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#0#0#127#191 -- +#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#255#0#255#127#0#127#191#191#191#191#191#191#191#191#191#0#0#127 -- +#191#191#191#191#191#191#255#0#255#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191#255#0#255#0#0 -- +#127#0#0#127#0#0#127#0#0#127#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#127#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#127#0#127#127#0#127#127#0#127#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#127#0#127#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#127#0#127#255#0#255#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- ,#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#127 -- +#0#127#127#0#127#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191#191 -- +#191#191#191#191#191#191#191#191#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#255#255#255#0#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0 -- +#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#255#0#0#0#0#0#255#255#255 -- +#0#0#0#255#255#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0 -- +#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255 -- +#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#255#0#255#9'Num' -- +'Glyphs'#2#0#7'OnClick'#7#15'SelectFontClick'#0#0#6'TLabel'#8'Label235'#4'Le' -- +'ft'#2#16#6'Height'#2#14#3'Top'#3'H'#1#5'Width'#2'C'#7'Caption'#6#12'Greek s' -- +'ymbol'#11'ParentColor'#8#0#0#5'TEdit'#8'gridfont'#4'Left'#3#184#0#6'Height' -- +#2#21#3'Top'#2'A'#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'T' -- +'abStop'#8#8'TabOrder'#2#0#0#0#5'TEdit'#9'labelfont'#4'Left'#3#184#0#6'Heigh' -- +'t'#2#21#3'Top'#2'j'#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7 -- +'TabStop'#8#8'TabOrder'#2#1#0#0#5'TEdit'#10'legendfont'#4'Left'#3#184#0#6'He' -- +'ight'#2#21#3'Top'#3#148#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOn' -- +'ly'#9#7'TabStop'#8#8'TabOrder'#2#2#0#0#5'TEdit'#10'statusfont'#4'Left'#3#184 -- +#0#6'Height'#2#21#3'Top'#3#189#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8 -- +'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#3#0#0#5'TEdit'#8'listfont'#4'Left'#3 -- +#184#0#6'Height'#2#21#3'Top'#3#231#0#5'Width'#3#160#0#5'Color'#7#9'clBtnFace' -- +#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#7'prtfont'#4'Left'#3 -- +#184#0#6'Height'#2#21#3'Top'#3#17#1#5'Width'#3#160#0#5'Color'#7#9'clBtnFace' -- +#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#5#0#0#7'TButton'#7'Button1'#4'Left' -- +#3#184#0#6'Height'#2#25#3'Top'#3'x'#1#5'Width'#2'K'#25'BorderSpacing.InnerBo' -- +'rder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#16'DefaultFontClick'#8'TabOr' -- +'der'#2#6#0#0#5'TEdit'#8'symbfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3'9' -- +#1#5'Width'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'Tab' -- +'Order'#2#7#0#0#0#9'TTabSheet'#5'Page8'#7'Caption'#6#13'Finder circle'#12'Cl' -- +'ientHeight'#3#248#1#11'ClientWidth'#3#253#1#0#6'TLabel'#8'Label307'#4'Left' -- +#2'P'#6'Height'#2#14#3'Top'#2#8#5'Width'#3#147#0#7'Caption'#6#31'Finder circ' -- +'le (Eyepiece/Telrad)'#11'ParentColor'#8#0#0#9'TCheckBox'#3'cb1'#3'Tag'#2#1#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#2'W'#5'Width'#2'0'#7'Caption'#6#5'No. 1'#7 -- +'OnClick'#7#7'cbClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#3'cb2'#3'Tag'#2#2#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5'Width'#2'0'#7'Caption'#6#5'No. 2'#7 -- +'OnClick'#7#7'cbClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#3'cb3'#3'Tag'#2#3#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0#5'Width'#2'0'#7'Caption'#6#5'No. 3' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#3'cb4'#3'Tag'#2#4#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3#177#0#5'Width'#2'0'#7'Caption'#6#5'No. 4' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#3'cb5'#3'Tag'#2#5#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3#207#0#5'Width'#2'0'#7'Caption'#6#5'No. 5' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#3'cb6'#3'Tag'#2#6#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3#237#0#5'Width'#2'0'#7'Caption'#6#5'No. 6' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#3'cb7'#3'Tag'#2#7#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3#11#1#5'Width'#2'0'#7'Caption'#6#5'No. 7' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#3'cb8'#3'Tag'#2#8#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3')'#1#5'Width'#2'0'#7'Caption'#6#5'No. 8' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#7#0#0#9'TCheckBox'#3'cb9'#3'Tag'#2#9#4 -- +'Left'#2#24#6'Height'#2#21#3'Top'#3'G'#1#5'Width'#2'0'#7'Caption'#6#5'No. 9' -- +#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#4'cb10'#3'Tag'#2#10 -- +#4'Left'#2#24#6'Height'#2#21#3'Top'#3'e'#1#5'Width'#2'6'#7'Caption'#6#6'No. ' -- +'10'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#9#0#0#11'TStringGrid'#10'Circlegr' -- +'id'#4'Left'#2'_'#6'Height'#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#8'ColCount'#2 -- +#4#15'DefaultColWidth'#2'F'#16'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'Gr' -- +'idLineWidth'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'g' -- +'oVertLine'#10'goHorzLine'#9'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount' -- +#2#11#8'TabOrder'#2#10#16'TitleFont.Height'#2#245#13'OnSetEditText'#7#21'Cir' -- +'clegridSetEditText'#0#0#9'TCheckBox'#11'CenterMark1'#4'Left'#2#23#6'Height' -- +#2#21#3'Top'#3#149#1#5'Width'#3#129#0#7'Caption'#6#22'Mark the chart center ' -- +#7'OnClick'#7#16'CenterMark1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'Check' -- ,'Box1'#4'Left'#3'%'#1#6'Height'#2#21#3'Top'#3#149#1#5'Width'#2'M'#7'Caption' -- +#6#10'Show label'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#12#0#0#0#9'T' -- +'TabSheet'#5'Page9'#7'Caption'#6#16'Finder rectangle'#12'ClientHeight'#3#248 -- +#1#11'ClientWidth'#3#253#1#0#6'TLabel'#8'Label308'#4'Left'#2'P'#6'Height'#2 -- +#14#3'Top'#2#8#5'Width'#3#185#0#7'Caption'#6#31'Finder rectangle (CCD / Came' -- +'ra)'#11'ParentColor'#8#0#0#9'TCheckBox'#3'rb1'#3'Tag'#2#1#4'Left'#2#24#6'He' -- +'ight'#2#21#3'Top'#2'W'#5'Width'#2'5'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'r' -- +'bClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#3'rb2'#3'Tag'#2#2#4'Left'#2#24#6'H' -- +'eight'#2#21#3'Top'#2'u'#5'Width'#2'5'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7 -- +'rbClick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#3'rb3'#3'Tag'#2#3#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3#147#0#5'Width'#2'5'#7'Caption'#6#5'No. 3'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#3'rb4'#3'Tag'#2#4#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3#177#0#5'Width'#2'5'#7'Caption'#6#5'No. 4'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#3#0#0#9'TCheckBox'#3'rb5'#3'Tag'#2#5#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3#207#0#5'Width'#2'5'#7'Caption'#6#5'No. 5'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#4#0#0#9'TCheckBox'#3'rb6'#3'Tag'#2#6#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3#237#0#5'Width'#2'5'#7'Caption'#6#5'No. 6'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#5#0#0#9'TCheckBox'#3'rb7'#3'Tag'#2#7#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3#11#1#5'Width'#2'5'#7'Caption'#6#5'No. 7'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#6#0#0#9'TCheckBox'#3'rb8'#3'Tag'#2#8#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3')'#1#5'Width'#2'5'#7'Caption'#6#5'No. 8'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#7#0#0#9'TCheckBox'#3'rb9'#3'Tag'#2#9#4'Left'#2#24#6 -- +'Height'#2#21#3'Top'#3'G'#1#5'Width'#2'5'#7'Caption'#6#5'No. 9'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#8#0#0#9'TCheckBox'#4'rb10'#3'Tag'#2#10#4'Left'#2#24 -- +#6'Height'#2#21#3'Top'#3'e'#1#5'Width'#2'4'#7'Caption'#6#4'No10'#7'OnClick'#7 -- +#7'rbClick'#8'TabOrder'#2#9#0#0#11'TStringGrid'#13'RectangleGrid'#4'Left'#2 -- +'_'#6'Height'#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#15'DefaultColWidth'#2'<'#16 -- +'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11 -- +#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9'goE' -- +'diting'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'Title' -- +'Font.Height'#2#245#13'OnSetEditText'#7#24'RectangleGridSetEditText'#0#0#9'T' -- +'CheckBox'#11'CenterMark2'#4'Left'#2#24#6'Height'#2#21#3'Top'#3#157#1#5'Widt' -- +'h'#3#149#0#7'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMa' -- +'rk1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#3'-'#1#6'H' -- +'eight'#2#21#3'Top'#3#157#1#5'Width'#2'U'#7'Caption'#6#10'Show label'#7'OnCl' -- +'ick'#7#14'CheckBox2Click'#8'TabOrder'#2#12#0#0#0#0#0#6'TPanel'#6'Panel1'#4 -- +'Left'#2#0#6'Height'#2'2'#3'Top'#3#254#1#5'Width'#3#3#2#5'Align'#7#8'alBotto' -- +'m'#12'ClientHeight'#2'2'#11'ClientWidth'#3#3#2#8'TabOrder'#2#1#0#7'TButton' -- +#7'Button2'#4'Left'#3#195#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Ancho' -- +'rs'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'But' -- +'ton4'#4'Left'#3'+'#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11 -- +#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Appl' -- +'y'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4 -- +'Left'#3#152#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTo' -- +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 -- +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Lef' -- +'t'#2']'#6'Height'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'a' -- +'kRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3 -- +#0#0#0#11'TFontDialog'#11'FontDialog1'#11'Font.Height'#2#245#9'Font.Name'#6 -- +#13'MS Sans Serif'#11'MinFontSize'#2#0#11'MaxFontSize'#2#0#7'Options'#11#14 -- +'fdTrueTypeOnly'#9'fdEffects'#16'fdForceFontExist'#14'fdScalableOnly'#0#4'le' -- +'ft'#3#216#1#3'top'#2'@'#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7 -- +'clBlack'#20'CustomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080' -- +#6#13'ColorC=008000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800' -- +'080'#6#13'ColorG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'Color' -- +'J=0000FF'#6#13'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13 -- +'ColorN=FF00FF'#6#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6 -- +#13'ColorR=F0CAA6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#216#1 -- +#3'top'#2#8#0#0#0 -+ +'ntClick'#0#0#6'TLabel'#8'Label235'#4'Left'#2#16#6'Height'#2#14#3'Top'#3'H'#1 -+ +#5'Width'#2'C'#7'Caption'#6#12'Greek symbol'#11'ParentColor'#8#0#0#5'TEdit'#8 -+ +'gridfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#3#160#0#5'Col' -+ +'or'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#0#0#0#5'TEdit'#9 -+ +'labelfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2'j'#5'Width'#3#160#0#5'Co' -+ +'lor'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#1#0#0#5'TEdit' -+ +#10'legendfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#148#0#5'Width'#3#160 -+ +#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#2#0#0#5 -+ +'TEdit'#10'statusfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#189#0#5'Width' -+ +#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#3#0 -+ +#0#5'TEdit'#8'listfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#231#0#5'Widt' -+ +'h'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2 -+ +#4#0#0#5'TEdit'#7'prtfont'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#3#17#1#5'Wi' -+ +'dth'#3#160#0#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder' -+ +#2#5#0#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'Height'#2#25#3'Top'#3'x'#1#5 -+ +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnC' -+ +'lick'#7#16'DefaultFontClick'#8'TabOrder'#2#6#0#0#5'TEdit'#8'symbfont'#4'Lef' -+ +'t'#3#184#0#6'Height'#2#21#3'Top'#3'9'#1#5'Width'#3#160#0#5'Color'#7#9'clBtn' -+ +'Face'#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2#7#0#0#0#9'TTabSheet'#5'Page8' -+ +#7'Caption'#6#13'Finder circle'#12'ClientHeight'#3#217#1#11'ClientWidth'#3 -+ +#251#1#0#6'TLabel'#8'Label307'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#8#5'Widt' -+ +'h'#3#147#0#7'Caption'#6#31'Finder circle (Eyepiece/Telrad)'#11'ParentColor' -+ +#8#0#0#9'TCheckBox'#3'cb1'#3'Tag'#2#1#4'Left'#2#24#6'Height'#2#21#3'Top'#2'W' -+ +#5'Width'#2'0'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#0 -+ +#0#0#9'TCheckBox'#3'cb2'#3'Tag'#2#2#4'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5 -+ +'Width'#2'0'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#1#0 -+ +#0#9'TCheckBox'#3'cb3'#3'Tag'#2#3#4'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0 -+ +#5'Width'#2'0'#7'Caption'#6#5'No. 3'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2#2 -+ +#0#0#9'TCheckBox'#3'cb4'#3'Tag'#2#4#4'Left'#2#24#6'Height'#2#21#3'Top'#3#177 -+ +#0#5'Width'#2'0'#7'Caption'#6#5'No. 4'#7'OnClick'#7#7'cbClick'#8'TabOrder'#2 -+ +#3#0#0#9'TCheckBox'#3'cb5'#3'Tag'#2#5#4'Left'#2#24#6'Height'#2#21#3'Top'#3 -+ +#207#0#5'Width'#2'0'#7'Caption'#6#5'No. 5'#7'OnClick'#7#7'cbClick'#8'TabOrde' -+ +'r'#2#4#0#0#9'TCheckBox'#3'cb6'#3'Tag'#2#6#4'Left'#2#24#6'Height'#2#21#3'Top' -+ +#3#237#0#5'Width'#2'0'#7'Caption'#6#5'No. 6'#7'OnClick'#7#7'cbClick'#8'TabOr' -+ +'der'#2#5#0#0#9'TCheckBox'#3'cb7'#3'Tag'#2#7#4'Left'#2#24#6'Height'#2#21#3'T' -+ +'op'#3#11#1#5'Width'#2'0'#7'Caption'#6#5'No. 7'#7'OnClick'#7#7'cbClick'#8'Ta' -+ +'bOrder'#2#6#0#0#9'TCheckBox'#3'cb8'#3'Tag'#2#8#4'Left'#2#24#6'Height'#2#21#3 -+ +'Top'#3')'#1#5'Width'#2'0'#7'Caption'#6#5'No. 8'#7'OnClick'#7#7'cbClick'#8'T' -+ +'abOrder'#2#7#0#0#9'TCheckBox'#3'cb9'#3'Tag'#2#9#4'Left'#2#24#6'Height'#2#21 -+ +#3'Top'#3'G'#1#5'Width'#2'0'#7'Caption'#6#5'No. 9'#7'OnClick'#7#7'cbClick'#8 -+ +'TabOrder'#2#8#0#0#9'TCheckBox'#4'cb10'#3'Tag'#2#10#4'Left'#2#24#6'Height'#2 -+ +#21#3'Top'#3'e'#1#5'Width'#2'6'#7'Caption'#6#6'No. 10'#7'OnClick'#7#7'cbClic' -+ +'k'#8'TabOrder'#2#9#0#0#11'TStringGrid'#10'Circlegrid'#4'Left'#2'_'#6'Height' -+ +#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#8'ColCount'#2#4#15'DefaultColWidth'#2'F' -+ +#16'DefaultRowHeight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options' -+ +#11#15'goFixedVertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9 -+ +'goEditing'#18'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'Ti' -+ +'tleFont.Height'#2#245#13'OnSetEditText'#7#21'CirclegridSetEditText'#0#0#9'T' -+ +'CheckBox'#11'CenterMark1'#4'Left'#2#23#6'Height'#2#21#3'Top'#3#149#1#5'Widt' -+ +'h'#3#129#0#7'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMa' -+ +'rk1Click'#8'TabOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#3'%'#1#6'H' -+ ,'eight'#2#21#3'Top'#3#149#1#5'Width'#2'M'#7'Caption'#6#10'Show label'#7'OnCl' -+ +'ick'#7#14'CheckBox1Click'#8'TabOrder'#2#12#0#0#0#9'TTabSheet'#5'Page9'#7'Ca' -+ +'ption'#6#16'Finder rectangle'#12'ClientHeight'#3#217#1#11'ClientWidth'#3#251 -+ +#1#0#6'TLabel'#8'Label308'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#8#5'Width'#3 -+ +#185#0#7'Caption'#6#31'Finder rectangle (CCD / Camera)'#11'ParentColor'#8#0#0 -+ +#9'TCheckBox'#3'rb1'#3'Tag'#2#1#4'Left'#2#24#6'Height'#2#21#3'Top'#2'W'#5'Wi' -+ +'dth'#2'5'#7'Caption'#6#5'No. 1'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#0#0#0 -+ +#9'TCheckBox'#3'rb2'#3'Tag'#2#2#4'Left'#2#24#6'Height'#2#21#3'Top'#2'u'#5'Wi' -+ +'dth'#2'5'#7'Caption'#6#5'No. 2'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#1#0#0 -+ +#9'TCheckBox'#3'rb3'#3'Tag'#2#3#4'Left'#2#24#6'Height'#2#21#3'Top'#3#147#0#5 -+ +'Width'#2'5'#7'Caption'#6#5'No. 3'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#2#0 -+ +#0#9'TCheckBox'#3'rb4'#3'Tag'#2#4#4'Left'#2#24#6'Height'#2#21#3'Top'#3#177#0 -+ +#5'Width'#2'5'#7'Caption'#6#5'No. 4'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2#3 -+ +#0#0#9'TCheckBox'#3'rb5'#3'Tag'#2#5#4'Left'#2#24#6'Height'#2#21#3'Top'#3#207 -+ +#0#5'Width'#2'5'#7'Caption'#6#5'No. 5'#7'OnClick'#7#7'rbClick'#8'TabOrder'#2 -+ +#4#0#0#9'TCheckBox'#3'rb6'#3'Tag'#2#6#4'Left'#2#24#6'Height'#2#21#3'Top'#3 -+ +#237#0#5'Width'#2'5'#7'Caption'#6#5'No. 6'#7'OnClick'#7#7'rbClick'#8'TabOrde' -+ +'r'#2#5#0#0#9'TCheckBox'#3'rb7'#3'Tag'#2#7#4'Left'#2#24#6'Height'#2#21#3'Top' -+ +#3#11#1#5'Width'#2'5'#7'Caption'#6#5'No. 7'#7'OnClick'#7#7'rbClick'#8'TabOrd' -+ +'er'#2#6#0#0#9'TCheckBox'#3'rb8'#3'Tag'#2#8#4'Left'#2#24#6'Height'#2#21#3'To' -+ +'p'#3')'#1#5'Width'#2'5'#7'Caption'#6#5'No. 8'#7'OnClick'#7#7'rbClick'#8'Tab' -+ +'Order'#2#7#0#0#9'TCheckBox'#3'rb9'#3'Tag'#2#9#4'Left'#2#24#6'Height'#2#21#3 -+ +'Top'#3'G'#1#5'Width'#2'5'#7'Caption'#6#5'No. 9'#7'OnClick'#7#7'rbClick'#8'T' -+ +'abOrder'#2#8#0#0#9'TCheckBox'#4'rb10'#3'Tag'#2#10#4'Left'#2#24#6'Height'#2 -+ +#21#3'Top'#3'e'#1#5'Width'#2'4'#7'Caption'#6#4'No10'#7'OnClick'#7#7'rbClick' -+ +#8'TabOrder'#2#9#0#0#11'TStringGrid'#13'RectangleGrid'#4'Left'#2'_'#6'Height' -+ +#3']'#1#3'Top'#2'2'#5'Width'#3'|'#1#15'DefaultColWidth'#2'<'#16'DefaultRowHe' -+ +'ight'#2#30#9'FixedCols'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedV' -+ +'ertLine'#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#9'goEditing'#18 -+ +'goAlwaysShowEditor'#0#8'RowCount'#2#11#8'TabOrder'#2#10#16'TitleFont.Height' -+ +#2#245#13'OnSetEditText'#7#24'RectangleGridSetEditText'#0#0#9'TCheckBox'#11 -+ +'CenterMark2'#4'Left'#2#24#6'Height'#2#21#3'Top'#3#157#1#5'Width'#3#149#0#7 -+ +'Caption'#6#22'Mark the chart center '#7'OnClick'#7#16'CenterMark1Click'#8'T' -+ +'abOrder'#2#11#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#3'-'#1#6'Height'#2#21#3 -+ +'Top'#3#157#1#5'Width'#2'U'#7'Caption'#6#10'Show label'#7'OnClick'#7#14'Chec' -+ +'kBox2Click'#8'TabOrder'#2#12#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'He' -+ +'ight'#2'2'#3'Top'#3#254#1#5'Width'#3#3#2#5'Align'#7#8'alBottom'#12'ClientHe' -+ +'ight'#2'2'#11'ClientWidth'#3#3#2#8'TabOrder'#2#1#0#7'TButton'#7'Button2'#4 -+ +'Left'#3#195#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTo' -+ +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Defa' -+ +'ult'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4'#4'Left' -+ +#3'+'#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTop'#7'ak' -+ +'Right'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick' -+ +#7#12'Button4Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button5'#4'Left'#3#152#1 -+ +#6'Height'#2#25#3'Top'#2#10#5'Width'#2'M'#7'Anchors'#11#5'akTop'#7'akRight'#0 -+ +#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'Mod' -+ +'alResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#2']'#6'Heig' -+ +'ht'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Ca' -+ +'ption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#0#11'TFo' -+ +'ntDialog'#11'FontDialog1'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans S' -+ +'erif'#11'MinFontSize'#2#0#11'MaxFontSize'#2#0#7'Options'#11#14'fdTrueTypeOn' -+ +'ly'#9'fdEffects'#16'fdForceFontExist'#14'fdScalableOnly'#0#4'left'#3#216#1#3 -+ +'top'#2'@'#0#0#12'TColorDialog'#12'ColorDialog1'#5'Color'#7#7'clBlack'#20'Cu' -+ +'stomColors.Strings'#1#6#13'ColorA=000000'#6#13'ColorB=000080'#6#13'ColorC=0' -+ +'08000'#6#13'ColorD=008080'#6#13'ColorE=800000'#6#13'ColorF=800080'#6#13'Col' -+ +'orG=808000'#6#13'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'ColorJ=0000FF'#6#13 -+ +'ColorK=00FF00'#6#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6 -+ +#13'ColorO=FFFF00'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6#13'ColorR=F0CAA' -+ +'6'#6#13'ColorS=F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#216#1#3'top'#2#8#0#0 -+ +#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_internet.lfm skychart_3.2_up/skychart/pu_config_internet.lfm ---- skychart_3.2/skychart/pu_config_internet.lfm 2010-10-04 12:38:56.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_internet.lfm 2011-03-09 15:18:57.116095932 +0100 -@@ -1,7 +1,7 @@ - object f_config_internet: Tf_config_internet -- Left = 559 -+ Left = 516 - Height = 484 -- Top = 88 -+ Top = 82 - Width = 482 - ActiveControl = MainPanel - BorderIcons = [biSystemMenu] -@@ -14,7 +14,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 434 -@@ -34,13 +34,12 @@ - ActivePage = Page1 - Align = alClient - Anchors = [akLeft, akRight, akBottom] -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Proxy' -- ClientHeight = 430 -- ClientWidth = 478 -+ ClientHeight = 399 -+ ClientWidth = 476 - object GroupBox1: TGroupBox - Left = 20 - Height = 201 -@@ -52,9 +51,9 @@ - TabOrder = 0 - object httpproxy: TCheckBox - Left = 30 -- Height = 21 -+ Height = 22 - Top = 11 -- Width = 101 -+ Width = 108 - Caption = 'Use HTTP Proxy' - OnClick = httpproxyClick - TabOrder = 0 -@@ -67,43 +66,11 @@ - ClientHeight = 137 - ClientWidth = 378 - TabOrder = 1 -- object proxypass: TEdit -- Left = 123 -- Height = 21 -- Top = 98 -- Width = 90 -- OnChange = proxypassChange -- TabOrder = 0 -- end -- object proxyuser: TEdit -- Left = 123 -- Height = 21 -- Top = 57 -- Width = 90 -- OnChange = proxyuserChange -- TabOrder = 1 -- end -- object proxyport: TEdit -- Left = 307 -- Height = 21 -- Top = 13 -- Width = 40 -- OnChange = proxyportChange -- TabOrder = 2 -- end -- object proxyhost: TEdit -- Left = 123 -- Height = 21 -- Top = 13 -- Width = 90 -- OnChange = proxyhostChange -- TabOrder = 3 -- end - object Label5: TLabel - Left = 22 - Height = 14 - Top = 105 -- Width = 51 -+ Width = 53 - Caption = 'Password' - ParentColor = False - end -@@ -111,7 +78,7 @@ - Left = 22 - Height = 14 - Top = 61 -- Width = 54 -+ Width = 61 - Caption = 'User Name' - ParentColor = False - end -@@ -119,7 +86,7 @@ - Left = 227 - Height = 14 - Top = 17 -- Width = 51 -+ Width = 55 - Caption = 'Proxy port' - ParentColor = False - end -@@ -127,10 +94,42 @@ - Left = 22 - Height = 14 - Top = 17 -- Width = 53 -+ Width = 57 - Caption = 'Proxy host' - ParentColor = False - end -+ object proxypass: TEdit -+ Left = 123 -+ Height = 23 -+ Top = 98 -+ Width = 90 -+ OnChange = proxypassChange -+ TabOrder = 0 -+ end -+ object proxyuser: TEdit -+ Left = 123 -+ Height = 23 -+ Top = 57 -+ Width = 90 -+ OnChange = proxyuserChange -+ TabOrder = 1 -+ end -+ object proxyport: TEdit -+ Left = 307 -+ Height = 23 -+ Top = 13 -+ Width = 40 -+ OnChange = proxyportChange -+ TabOrder = 2 -+ end -+ object proxyhost: TEdit -+ Left = 123 -+ Height = 23 -+ Top = 13 -+ Width = 90 -+ OnChange = proxyhostChange -+ TabOrder = 3 -+ end - end - end - object GroupBox2: TGroupBox -@@ -146,22 +145,22 @@ - Left = 39 - Height = 14 - Top = 60 -- Width = 112 -+ Width = 121 - Caption = 'Anonymous password' - ParentColor = False - end - object ftppassive: TCheckBox - Left = 39 -- Height = 21 -+ Height = 22 - Top = 18 -- Width = 111 -+ Width = 120 - Caption = 'FTP Passive Mode' - OnClick = ftppassiveClick - TabOrder = 0 - end - object anonpass: TEdit - Left = 210 -- Height = 21 -+ Height = 23 - Top = 52 - Width = 144 - OnChange = anonpassChange -@@ -170,9 +169,9 @@ - end - object CheckBox1: TCheckBox - Left = 20 -- Height = 21 -+ Height = 22 - Top = 350 -- Width = 255 -+ Width = 287 - Caption = 'Ask confirmation before any Internet connection' - OnClick = CheckBox1Click - TabOrder = 2 -@@ -180,8 +179,8 @@ - end - object Page2: TTabSheet - Caption = 'Orbital Elements' -- ClientHeight = 430 -- ClientWidth = 478 -+ ClientHeight = 399 -+ ClientWidth = 476 - object Label6: TLabel - Left = 28 - Height = 14 -@@ -202,7 +201,7 @@ - Left = 16 - Height = 90 - Top = 48 -- Width = 438 -+ Width = 436 - Anchors = [akTop, akLeft, akRight] - OnExit = CometUrlListExit - TabOrder = 0 -@@ -211,7 +210,7 @@ - Left = 16 - Height = 90 - Top = 228 -- Width = 438 -+ Width = 436 - Anchors = [akTop, akLeft, akRight] - OnExit = AsteroidUrlListExit - TabOrder = 4 -@@ -319,8 +318,8 @@ - end - object Page3: TTabSheet - Caption = 'Online DSS' -- ClientHeight = 430 -- ClientWidth = 478 -+ ClientHeight = 399 -+ ClientWidth = 476 - object Label8: TLabel - Left = 20 - Height = 14 -@@ -333,7 +332,7 @@ - Left = 16 - Height = 324 - Top = 48 -- Width = 454 -+ Width = 452 - Anchors = [akTop, akLeft, akRight] - ColCount = 2 - DefaultColWidth = 120 -diff -ur skychart_3.2/skychart/pu_config_internet.lrs skychart_3.2_up/skychart/pu_config_internet.lrs ---- skychart_3.2/skychart/pu_config_internet.lrs 2010-10-04 12:38:56.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_internet.lrs 2011-03-09 15:18:57.152091512 +0100 -@@ -1,110 +1,110 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_internet','FORMDATA',[ -- 'TPF0'#18'Tf_config_internet'#17'f_config_internet'#4'Left'#3'/'#2#6'Height'#3 -- +#228#1#3'Top'#2'X'#5'Width'#3#226#1#13'ActiveControl'#7#9'MainPanel'#11'Bord' -+ 'TPF0'#18'Tf_config_internet'#17'f_config_internet'#4'Left'#3#4#2#6'Height'#3 -+ +#228#1#3'Top'#2'R'#5'Width'#3#226#1#13'ActiveControl'#7#9'MainPanel'#11'Bord' - +'erIcons'#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7'Caption' - +#6#8'Internet'#12'ClientHeight'#3#228#1#11'ClientWidth'#3#226#1#11'Font.Heig' - +'ht'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestro' -- +'y'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6 -- +'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3#226 -- +#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#178#1 -- +#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl' -- +#12'PageControl1'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3#226#1 -- +#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7 -- +'akRight'#8'akBottom'#0#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TT' -- +'abSheet'#5'Page1'#7'Caption'#6#5'Proxy'#12'ClientHeight'#3#174#1#11'ClientW' -- +'idth'#3#222#1#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#20#6'Height'#3#201#0#3 -- +'Top'#2#12#5'Width'#3#145#1#7'Caption'#6#10'HTTP Proxy'#12'ClientHeight'#3 -- +#186#0#11'ClientWidth'#3#141#1#8'TabOrder'#2#0#0#9'TCheckBox'#9'httpproxy'#4 -- +'Left'#2#30#6'Height'#2#21#3'Top'#2#11#5'Width'#2'e'#7'Caption'#6#14'Use HTT' -- +'P Proxy'#7'OnClick'#7#14'httpproxyClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Pa' -- +'nel2'#4'Left'#2#16#6'Height'#3#137#0#3'Top'#2'('#5'Width'#3'z'#1#12'ClientH' -- +'eight'#3#137#0#11'ClientWidth'#3'z'#1#8'TabOrder'#2#1#0#5'TEdit'#9'proxypas' -- +'s'#4'Left'#2'{'#6'Height'#2#21#3'Top'#2'b'#5'Width'#2'Z'#8'OnChange'#7#15'p' -- +'roxypassChange'#8'TabOrder'#2#0#0#0#5'TEdit'#9'proxyuser'#4'Left'#2'{'#6'He' -- +'ight'#2#21#3'Top'#2'9'#5'Width'#2'Z'#8'OnChange'#7#15'proxyuserChange'#8'Ta' -- +'bOrder'#2#1#0#0#5'TEdit'#9'proxyport'#4'Left'#3'3'#1#6'Height'#2#21#3'Top'#2 -- +#13#5'Width'#2'('#8'OnChange'#7#15'proxyportChange'#8'TabOrder'#2#2#0#0#5'TE' -- +'dit'#9'proxyhost'#4'Left'#2'{'#6'Height'#2#21#3'Top'#2#13#5'Width'#2'Z'#8'O' -- +'nChange'#7#15'proxyhostChange'#8'TabOrder'#2#3#0#0#6'TLabel'#6'Label5'#4'Le' -- +'ft'#2#22#6'Height'#2#14#3'Top'#2'i'#5'Width'#2'3'#7'Caption'#6#8'Password' -- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#22#6'Height'#2#14#3'Top' -- +#2'='#5'Width'#2'6'#7'Caption'#6#9'User Name'#11'ParentColor'#8#0#0#6'TLabel' -- +#6'Label3'#4'Left'#3#227#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'3'#7'Captio' -- +'n'#6#10'Proxy port'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#22#6 -- +'Height'#2#14#3'Top'#2#17#5'Width'#2'5'#7'Caption'#6#10'Proxy host'#11'Paren' -- +'tColor'#8#0#0#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#20#6'Height'#2'x'#3'T' -- +'op'#3#222#0#5'Width'#3#145#1#7'Caption'#6#4'FTP '#12'ClientHeight'#2'i'#11 -- +'ClientWidth'#3#141#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2''''#6 -- +'Height'#2#14#3'Top'#2'<'#5'Width'#2'p'#7'Caption'#6#18'Anonymous password' -- +#11'ParentColor'#8#0#0#9'TCheckBox'#10'ftppassive'#4'Left'#2''''#6'Height'#2 -- +#21#3'Top'#2#18#5'Width'#2'o'#7'Caption'#6#16'FTP Passive Mode'#7'OnClick'#7 -- +#15'ftppassiveClick'#8'TabOrder'#2#0#0#0#5'TEdit'#8'anonpass'#4'Left'#3#210#0 -- +#6'Height'#2#21#3'Top'#2'4'#5'Width'#3#144#0#8'OnChange'#7#14'anonpassChange' -- +#8'TabOrder'#2#1#0#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#20#6'Height'#2#21 -- +#3'Top'#3'^'#1#5'Width'#3#255#0#7'Caption'#6'/Ask confirmation before any In' -- +'ternet connection'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#2#0#0#0#9 -- +'TTabSheet'#5'Page2'#7'Caption'#6#16'Orbital Elements'#12'ClientHeight'#3#174 -- +#1#11'ClientWidth'#3#222#1#0#6'TLabel'#6'Label6'#4'Left'#2#28#6'Height'#2#14 -- +#3'Top'#2#23#5'Width'#3#235#0#7'Caption'#6'/Comet elements in MPC format (on' -- +'e URL by line) '#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#28#6'H' -- +'eight'#2#14#3'Top'#3#196#0#5'Width'#3#243#0#7'Caption'#6'1Asteroid elements' -- +' in MPC format (one URL by line)'#11'ParentColor'#8#0#0#5'TMemo'#12'CometUr' -- +'lList'#4'Left'#2#16#6'Height'#2'Z'#3'Top'#2'0'#5'Width'#3#182#1#7'Anchors' -- +#11#5'akTop'#6'akLeft'#7'akRight'#0#6'OnExit'#7#16'CometUrlListExit'#8'TabOr' -- +'der'#2#0#0#0#5'TMemo'#15'AsteroidUrlList'#4'Left'#2#16#6'Height'#2'Z'#3'Top' -- +#3#228#0#5'Width'#3#182#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#6'On' -- +'Exit'#7#19'AsteroidUrlListExit'#8'TabOrder'#2#4#0#0#7'TButton'#10'comdefaul' -- +'t'#4'Left'#3's'#1#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpac' -- +'ing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7#15'comdefaultClic' -- +'k'#8'TabOrder'#2#3#0#0#7'TButton'#10'astdefault'#4'Left'#3's'#1#6'Height'#2 -- +#25#3'Top'#3'F'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption' -- +#6#7'Default'#7'OnClick'#7#15'astdefaultClick'#8'TabOrder'#2#8#0#0#7'TButton' -- +#9'brightneo'#4'Left'#3#151#0#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2'x'#25 -- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#18'Bright + NEO + TNO'#7'OnClic' -- +'k'#7#14'brightneoClick'#8'TabOrder'#2#7#0#0#7'TButton'#6'mpcorb'#4'Left'#3 -- +#151#0#6'Height'#2#25#3'Top'#3'f'#1#5'Width'#2'x'#25'BorderSpacing.InnerBord' -- ,'er'#2#4#7'Caption'#6#14'MPCORB > 70Mb!'#7'OnClick'#7#11'mpcorbClick'#8'TabO' -- +'rder'#2#5#0#0#7'TButton'#7'comhttp'#4'Left'#3#19#1#6'Height'#2#25#3'Top'#3 -- +#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'MPC Ht' -- +'tp'#7'OnClick'#7#12'comhttpClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'comftp'#4 -- +'Left'#3#178#0#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.' -- +'InnerBorder'#2#4#7'Caption'#6#7'MPC Ftp'#7'OnClick'#7#11'comftpClick'#8'Tab' -- +'Order'#2#1#7'Visible'#8#0#0#7'TButton'#6'astcdc'#4'Left'#2#30#6'Height'#2#25 -- +#3'Top'#3'F'#1#5'Width'#2'j'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#10'First 5000'#7'OnClick'#7#11'astcdcClick'#8'TabOrder'#2#6#0#0#7'TButton'#7 -- +'Button4'#4'Left'#2'>'#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'['#7'Caption' -- +#6#13'astro.cz HTTP'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#9#7'Visible' -- +#8#0#0#7'TButton'#7'Button5'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'd'#1#5'Wid' -- +'th'#2'j'#7'Caption'#6#16'astro.cz > 70MB!'#7'OnClick'#7#12'Button5Click'#8 -- +'TabOrder'#2#10#7'Visible'#8#0#0#7'TButton'#9'astcdcneo'#4'Left'#3#27#1#6'He' -- +'ight'#2#25#3'Top'#3'f'#1#5'Width'#3#163#0#7'Caption'#6#22'First 5000 + NEO ' -- +'+ TNO'#7'OnClick'#7#14'astcdcneoClick'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5 -- +'Page3'#7'Caption'#6#10'Online DSS'#12'ClientHeight'#3#174#1#11'ClientWidth' -- +#3#222#1#0#6'TLabel'#6'Label8'#4'Left'#2#20#6'Height'#2#14#3'Top'#2#19#5'Wid' -- +'th'#3#135#0#7'Caption'#6#23'Online pictures servers'#11'ParentColor'#8#0#0 -- +#11'TStringGrid'#11'DSSpictures'#4'Left'#2#16#6'Height'#3'D'#1#3'Top'#2'0'#5 -- +'Width'#3#198#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'ColCount'#2#2 -- +#15'DefaultColWidth'#2'x'#9'FixedCols'#2#0#7'Options'#11#15'goFixedVertLine' -- +#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#13'goRangeSelect'#11'goCo' -- +'lSizing'#9'goEditing'#18'goAlwaysShowEditor'#14'goSmoothScroll'#0#8'RowCoun' -- +'t'#2#11#8'TabOrder'#2#0#16'TitleFont.Height'#2#245#13'OnEditingDone'#7#22'D' -- +'SSpicturesEditingDone'#0#0#7'TButton'#10'DefaultDSS'#4'Left'#3#138#1#6'Heig' -- +'ht'#2#25#3'Top'#3'u'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Ca' -- +'ption'#6#7'Default'#7'OnClick'#7#15'DefaultDSSClick'#8'TabOrder'#2#1#0#0#0#0 -- +#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#178#1#5'Width'#3 -- +#226#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#226#1#8 -- +'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#187#0#6'Height'#2#25#3'Top' -- +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' -- +'erBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrde' -- +'r'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#29#1#6'Height'#2#25#3'Top'#2#12#5 -- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' -- +'r'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0 -- +#0#7'TButton'#7'Button3'#4'Left'#3#127#1#6'Height'#2#25#3'Top'#2#12#5'Width' -- +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6 -- +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7 -- +'TButton'#7'Button6'#4'Left'#2'Y'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7 -- +'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Butt' -- +'on6Click'#8'TabOrder'#2#3#0#0#0#0 -+ +'y'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#8'0.9.28.2'#0 -+ +#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3 -+ +#226#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3 -+ +#178#1#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageC' -+ +'ontrol'#12'PageControl1'#4'Left'#2#0#6'Height'#3#178#1#3'Top'#2#0#5'Width'#3 -+ +#226#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLe' -+ +'ft'#7'akRight'#8'akBottom'#0#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet' -+ +#5'Page1'#7'Caption'#6#5'Proxy'#12'ClientHeight'#3#143#1#11'ClientWidth'#3 -+ +#220#1#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#20#6'Height'#3#201#0#3'Top'#2#12 -+ +#5'Width'#3#145#1#7'Caption'#6#10'HTTP Proxy'#12'ClientHeight'#3#186#0#11'Cl' -+ +'ientWidth'#3#141#1#8'TabOrder'#2#0#0#9'TCheckBox'#9'httpproxy'#4'Left'#2#30 -+ +#6'Height'#2#22#3'Top'#2#11#5'Width'#2'l'#7'Caption'#6#14'Use HTTP Proxy'#7 -+ +'OnClick'#7#14'httpproxyClick'#8'TabOrder'#2#0#0#0#6'TPanel'#6'Panel2'#4'Lef' -+ +'t'#2#16#6'Height'#3#137#0#3'Top'#2'('#5'Width'#3'z'#1#12'ClientHeight'#3#137 -+ +#0#11'ClientWidth'#3'z'#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label5'#4'Left'#2#22 -+ +#6'Height'#2#14#3'Top'#2'i'#5'Width'#2'5'#7'Caption'#6#8'Password'#11'Parent' -+ +'Color'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#22#6'Height'#2#14#3'Top'#2'='#5 -+ +'Width'#2'='#7'Caption'#6#9'User Name'#11'ParentColor'#8#0#0#6'TLabel'#6'Lab' -+ +'el3'#4'Left'#3#227#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'7'#7'Caption'#6 -+ +#10'Proxy port'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#22#6'Hei' -+ +'ght'#2#14#3'Top'#2#17#5'Width'#2'9'#7'Caption'#6#10'Proxy host'#11'ParentCo' -+ +'lor'#8#0#0#5'TEdit'#9'proxypass'#4'Left'#2'{'#6'Height'#2#23#3'Top'#2'b'#5 -+ +'Width'#2'Z'#8'OnChange'#7#15'proxypassChange'#8'TabOrder'#2#0#0#0#5'TEdit'#9 -+ +'proxyuser'#4'Left'#2'{'#6'Height'#2#23#3'Top'#2'9'#5'Width'#2'Z'#8'OnChange' -+ +#7#15'proxyuserChange'#8'TabOrder'#2#1#0#0#5'TEdit'#9'proxyport'#4'Left'#3'3' -+ +#1#6'Height'#2#23#3'Top'#2#13#5'Width'#2'('#8'OnChange'#7#15'proxyportChange' -+ +#8'TabOrder'#2#2#0#0#5'TEdit'#9'proxyhost'#4'Left'#2'{'#6'Height'#2#23#3'Top' -+ +#2#13#5'Width'#2'Z'#8'OnChange'#7#15'proxyhostChange'#8'TabOrder'#2#3#0#0#0#0 -+ +#9'TGroupBox'#9'GroupBox2'#4'Left'#2#20#6'Height'#2'x'#3'Top'#3#222#0#5'Widt' -+ +'h'#3#145#1#7'Caption'#6#4'FTP '#12'ClientHeight'#2'i'#11'ClientWidth'#3#141 -+ +#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label1'#4'Left'#2''''#6'Height'#2#14#3'Top' -+ +#2'<'#5'Width'#2'y'#7'Caption'#6#18'Anonymous password'#11'ParentColor'#8#0#0 -+ +#9'TCheckBox'#10'ftppassive'#4'Left'#2''''#6'Height'#2#22#3'Top'#2#18#5'Widt' -+ +'h'#2'x'#7'Caption'#6#16'FTP Passive Mode'#7'OnClick'#7#15'ftppassiveClick'#8 -+ +'TabOrder'#2#0#0#0#5'TEdit'#8'anonpass'#4'Left'#3#210#0#6'Height'#2#23#3'Top' -+ +#2'4'#5'Width'#3#144#0#8'OnChange'#7#14'anonpassChange'#8'TabOrder'#2#1#0#0#0 -+ +#9'TCheckBox'#9'CheckBox1'#4'Left'#2#20#6'Height'#2#22#3'Top'#3'^'#1#5'Width' -+ +#3#31#1#7'Caption'#6'/Ask confirmation before any Internet connection'#7'OnC' -+ +'lick'#7#14'CheckBox1Click'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7'Ca' -+ +'ption'#6#16'Orbital Elements'#12'ClientHeight'#3#143#1#11'ClientWidth'#3#220 -+ +#1#0#6'TLabel'#6'Label6'#4'Left'#2#28#6'Height'#2#14#3'Top'#2#23#5'Width'#3 -+ +#235#0#7'Caption'#6'/Comet elements in MPC format (one URL by line) '#11'Par' -+ +'entColor'#8#0#0#6'TLabel'#6'Label7'#4'Left'#2#28#6'Height'#2#14#3'Top'#3#196 -+ +#0#5'Width'#3#243#0#7'Caption'#6'1Asteroid elements in MPC format (one URL b' -+ +'y line)'#11'ParentColor'#8#0#0#5'TMemo'#12'CometUrlList'#4'Left'#2#16#6'Hei' -+ +'ght'#2'Z'#3'Top'#2'0'#5'Width'#3#180#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'a' -+ +'kRight'#0#6'OnExit'#7#16'CometUrlListExit'#8'TabOrder'#2#0#0#0#5'TMemo'#15 -+ +'AsteroidUrlList'#4'Left'#2#16#6'Height'#2'Z'#3'Top'#3#228#0#5'Width'#3#180#1 -+ +#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#6'OnExit'#7#19'AsteroidUrlLis' -+ +'tExit'#8'TabOrder'#2#4#0#0#7'TButton'#10'comdefault'#4'Left'#3's'#1#6'Heigh' -+ +'t'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Ca' -+ +'ption'#6#7'Default'#7'OnClick'#7#15'comdefaultClick'#8'TabOrder'#2#3#0#0#7 -+ +'TButton'#10'astdefault'#4'Left'#3's'#1#6'Height'#2#25#3'Top'#3'F'#1#5'Width' -+ +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick'#7 -+ +#15'astdefaultClick'#8'TabOrder'#2#8#0#0#7'TButton'#9'brightneo'#4'Left'#3 -+ +#151#0#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2'x'#25'BorderSpacing.InnerBord' -+ +'er'#2#4#7'Caption'#6#18'Bright + NEO + TNO'#7'OnClick'#7#14'brightneoClick' -+ +#8'TabOrder'#2#7#0#0#7'TButton'#6'mpcorb'#4'Left'#3#151#0#6'Height'#2#25#3'T' -+ +'op'#3'f'#1#5'Width'#2'x'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14 -+ ,'MPCORB > 70Mb!'#7'OnClick'#7#11'mpcorbClick'#8'TabOrder'#2#5#0#0#7'TButton' -+ +#7'comhttp'#4'Left'#3#19#1#6'Height'#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'Bo' -+ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#8'MPC Http'#7'OnClick'#7#12'comht' -+ +'tpClick'#8'TabOrder'#2#2#0#0#7'TButton'#6'comftp'#4'Left'#3#178#0#6'Height' -+ +#2#25#3'Top'#3#150#0#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Capti' -+ +'on'#6#7'MPC Ftp'#7'OnClick'#7#11'comftpClick'#8'TabOrder'#2#1#7'Visible'#8#0 -+ +#0#7'TButton'#6'astcdc'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'F'#1#5'Width'#2 -+ +'j'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#10'First 5000'#7'OnClick' -+ +#7#11'astcdcClick'#8'TabOrder'#2#6#0#0#7'TButton'#7'Button4'#4'Left'#2'>'#6 -+ +'Height'#2#25#3'Top'#3#150#0#5'Width'#2'['#7'Caption'#6#13'astro.cz HTTP'#7 -+ +'OnClick'#7#12'Button4Click'#8'TabOrder'#2#9#7'Visible'#8#0#0#7'TButton'#7'B' -+ +'utton5'#4'Left'#2#30#6'Height'#2#25#3'Top'#3'd'#1#5'Width'#2'j'#7'Caption'#6 -+ +#16'astro.cz > 70MB!'#7'OnClick'#7#12'Button5Click'#8'TabOrder'#2#10#7'Visib' -+ +'le'#8#0#0#7'TButton'#9'astcdcneo'#4'Left'#3#27#1#6'Height'#2#25#3'Top'#3'f' -+ +#1#5'Width'#3#163#0#7'Caption'#6#22'First 5000 + NEO + TNO'#7'OnClick'#7#14 -+ +'astcdcneoClick'#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#10 -+ +'Online DSS'#12'ClientHeight'#3#143#1#11'ClientWidth'#3#220#1#0#6'TLabel'#6 -+ +'Label8'#4'Left'#2#20#6'Height'#2#14#3'Top'#2#19#5'Width'#3#135#0#7'Caption' -+ +#6#23'Online pictures servers'#11'ParentColor'#8#0#0#11'TStringGrid'#11'DSSp' -+ +'ictures'#4'Left'#2#16#6'Height'#3'D'#1#3'Top'#2'0'#5'Width'#3#196#1#7'Ancho' -+ +'rs'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'ColCount'#2#2#15'DefaultColWidth'#2 -+ +'x'#9'FixedCols'#2#0#7'Options'#11#15'goFixedVertLine'#15'goFixedHorzLine'#10 -+ +'goVertLine'#10'goHorzLine'#13'goRangeSelect'#11'goColSizing'#9'goEditing'#18 -+ +'goAlwaysShowEditor'#14'goSmoothScroll'#0#8'RowCount'#2#11#8'TabOrder'#2#0#16 -+ +'TitleFont.Height'#2#245#13'OnEditingDone'#7#22'DSSpicturesEditingDone'#0#0#7 -+ +'TButton'#10'DefaultDSS'#4'Left'#3#138#1#6'Height'#2#25#3'Top'#3'u'#1#5'Widt' -+ +'h'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Default'#7'OnClick' -+ +#7#15'DefaultDSSClick'#8'TabOrder'#2#1#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left' -+ +#2#0#6'Height'#2'2'#3'Top'#3#178#1#5'Width'#3#226#1#5'Align'#7#8'alBottom'#12 -+ +'ClientHeight'#2'2'#11'ClientWidth'#3#226#1#8'TabOrder'#2#1#0#7'TButton'#7'B' -+ +'utton1'#4'Left'#3#187#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' -+ +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'O' -+ +'K'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' -+ +'2'#4'Left'#3#29#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 -+ +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply' -+ +#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'L' -+ +'eft'#3#127#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop' -+ +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'C' -+ +'ancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left' -+ +#2'Y'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRi' -+ +'ght'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0 -+ +#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config.lrs skychart_3.2_up/skychart/pu_config.lrs ---- skychart_3.2/skychart/pu_config.lrs 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config.lrs 2011-03-09 15:18:23.151272234 +0100 -@@ -1,268 +1,268 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tf_config','FORMDATA',[ -- 'TPF0'#9'Tf_config'#8'f_config'#4'Left'#3't'#1#6'Height'#3';'#2#3'Top'#2'o'#5 -- +'Width'#3#228#2#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#12'bsToolWin' -- +'dow'#7'Caption'#6#13'Configuration'#12'ClientHeight'#3';'#2#11'ClientWidth' -- +#3#228#2#11'Font.Height'#2#245#9'Icon.Data'#10#194#16#0#0#190#16#0#0#0#0#1#0 -- +#1#0' '#0#0#1#0' '#0#168#16#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0' '#0 -- +#0#0#0#0#0#16#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'222'#255'JJJ'#255'JJJ'#255 -- +'JJJ'#255'>>>'#255'222'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 -- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'&' -- +'&&'#255'222'#255'222'#255'>>>'#255'VVV'#255'bbb'#255'nnn'#255'nnn'#255'bbb' -- +#255'bbb'#255'bbb'#255'VVV'#255#0#0#0#255#0#0#0#255#0#0#0#255#26#26#26#255'V' -- +'VV'#255'bbb'#255'VVV'#255'>>>'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255'&&&'#255'>>>'#255'&&&'#255#14#14#14#255'&&&'#255'nnn'#255 -- +#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 -- +'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'JJJ'#255'nnn'#255#146 -- +#146#146#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170#255 -- +#170#170#170#255#146#146#146#255'>>>'#255#0#0#0#255#0#0#0#255#14#14#14#255'J' -- +'JJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' -- +#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 -- +#182#182#182#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 -- +#255#170#170#170#255#170#170#170#255#164#160#160#255#164#160#160#255#164#160 -- +#160#255#146#146#146#255#134#134#134#255#146#146#146#255#164#160#160#255#146 -- +#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255 -- +#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255 -- +'nnn'#255'bbb'#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170 -- +#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#164#160#160#255 -- +#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 -- +#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146 -- +#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128#255#128 -- +#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 -- +#255#255#255#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170#170#170#255 -- +#170#170#170#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 -- +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146 -- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' -- +#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 -- +'VVV'#255'VVV'#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 -- +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164 -- +#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146#146#255 -- +#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128 -- +#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'b' -- +'bb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255#164#160#160 -- +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 -- +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146 -- +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255 -- +#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zz' -- +'z'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -- +#255'VVV'#255'VVV'#255'JJJ'#255#164#160#160#255#164#160#160#255#164#160#160 -- +#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146 -- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -- +#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255 -- ,#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb' -- +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255#164#160 -- +#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146 -- +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255 -- +#164#160#160#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134 -- +#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn' -- +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 -- +'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 -- +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146 -- +#146#146#255#164#160#160#255#255#255#255#255#194#194#194#255#164#160#160#255 -- +#146#146#146#255#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 -- +'nnn'#255'nnn'#255'k'#255#255#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -- +#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146 -- +#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 -- +#146#255#134#134#134#255#134#134#134#255#146#146#146#255#230#230#230#255#242 -- +#242#242#255#194#194#194#255#170#170#170#255#164#160#160#255#134#134#134#255 -- +'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb' -- +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255#146#146 -- +#146#255#146#146#146#255#146#146#146#255#134#134#134#255#242#242#242#255#146 -- +#146#146#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134#134#255 -- +#164#160#160#255#242#242#242#255#255#255#255#255#218#218#218#255#182#182#182 -- +#255#164#160#160#255#134#134#134#255'zzz'#255'nnn'#255'nnn'#255'bbb'#255'bbb' -- +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255 -- +'JJJ'#255'JJJ'#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134 -- +#134#255#134#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128 -- +#128#128#255#134#134#134#255#146#146#146#255#194#194#194#255#255#255#255#255 -- +#255#255#255#255#230#230#230#255#192#192#192#255#164#160#160#255#146#146#146 -- +#255'zzz'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 -- +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255#134#134#134#255#134 -- +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255#128#128#128#255 -- +#128#128#128#255#128#128#128#255'zzz'#255#128#128#128#255#134#134#134#255#164 -- +#160#160#255#230#230#230#255#242#242#242#255#255#255#255#255#230#230#230#255 -- +#206#206#206#255#170#170#170#255#146#146#146#255'zzz'#255'nnn'#255'bbb'#255 -- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>' -- +#255'>>>'#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -- +#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255#128 -- +#128#128#255#164#160#160#255#230#230#230#255#230#230#230#255#242#242#242#255 -- +#230#230#230#255#206#206#206#255#182#182#182#255#164#160#160#255#128#128#128 -- +#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 -- +#0#254#254#255'JJJ'#255'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255 -- +'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'zzz'#255#128#128#128 -- +#255#194#194#194#255#218#218#218#255#206#206#206#255#230#230#230#255#230#230 -- +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'nnn' -- +#255'bbb'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 -- +'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn' -- +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255#128#128#128#255#206#206#206 -- +#255#218#218#218#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230 -- +#230#255#206#206#206#255#170#170#170#255#146#146#146#255'nnn'#255'bbb'#255'J' -- +'JJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'nnn'#255'n' -- +'nn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz' -- +#255'nnn'#255'bbb'#255'bbb'#255'nnn'#255#164#160#160#255#182#182#182#255#194 -- +#194#194#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 -- +#218#218#218#255#182#182#182#255#146#146#146#255'zzz'#255'bbb'#255'JJJ'#255 -- +'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn' -- +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz'#255#0#254#254#255'nnn' -- +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255#192#192#192#255#182#182#182#255#170 -- +#170#170#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 -- +#218#218#218#255#192#192#192#255#164#160#160#255'zzz'#255'bbb'#255'JJJ'#255 -- +'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn'#255'nnn' -- +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 -- +'bbb'#255'bbb'#255'VVV'#255'zzz'#255#164#160#160#255#194#194#194#255#164#160 -- +#160#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255#218 -- +#218#218#255#192#192#192#255#164#160#160#255#128#128#128#255'bbb'#255'JJJ' -- +#255'>>>'#255'P'#0'2'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bb' -- ,'b'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -- +#255'VVV'#255'VVV'#255'VVV'#255#164#160#160#255#134#134#134#255#170#170#170 -- +#255#164#160#160#255#194#194#194#255#218#218#218#255#230#230#230#255#230#230 -- +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'bbb' -- +#255'JJJ'#255'>>>'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' -- +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 -- +'VVV'#255'VVV'#255'VVV'#255'bbb'#255#158#158#158#255#164#160#160#255#134#134 -- +#134#255#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218 -- +#218#218#255#206#206#206#255#194#194#194#255#170#170#170#255#134#134#134#255 -- +'nnn'#255'JJJ'#255'>>>'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' -- +#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 -- +'JJJ'#255'JJJ'#255'JJJ'#255#134#134#134#255'nnn'#255#164#160#160#255'nnn'#255 -- +#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218#218#218 -- +#255#206#206#206#255#192#192#192#255#170#170#170#255#146#146#146#255'nnn'#255 -- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255#218#218#218 -- +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 -- +'JJJ'#255'JJJ'#255'JJJ'#255#146#146#146#255'bbb'#255#134#134#134#255'nnn'#255 -- +#134#134#134#255#170#170#170#255#192#192#192#255#206#206#206#255#206#206#206 -- +#255#194#194#194#255#182#182#182#255#170#170#170#255#146#146#146#255'nnn'#255 -- +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV' -- +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 -- +'>>>'#255'bbb'#255'nnn'#255'zzz'#255'bbb'#255'bbb'#255#128#128#128#255#164 -- +#160#160#255#182#182#182#255#194#194#194#255#192#192#192#255#192#192#192#255 -- +#182#182#182#255#164#160#160#255#146#146#146#255'VVV'#255'VVV'#255'VVV'#255 -- +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ' -- +#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255#134#134 -- +#134#255'>>>'#255#134#134#134#255'JJJ'#255'VVV'#255'zzz'#255#158#158#158#255 -- +#170#170#170#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 -- +#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'J' -- +'JJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>' -- +#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'JJJ'#255'nnn'#255'JJJ'#255'nnn' -- +#255'>>>'#255'VVV'#255'nnn'#255#146#146#146#255#164#160#160#255#170#170#170 -- +#255#170#170#170#255#164#160#160#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ' -- +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255 -- +'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2' -- +#255'P'#0'2'#255'nnn'#255'>>>'#255'nnn'#255'>>>'#255'222'#255'JJJ'#255'nnn' -- +#255#134#134#134#255#158#158#158#255#164#160#160#255#164#160#160#255#164#160 -- +#160#255#255#255#255#255#255#255#255#255#255#255#255#192#255#255#240#0#224 -- +#252#0#0#0'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'O' -- +'nClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormD' -- +'estroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Pa' -- +'nel2'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#18#2#5'Width'#3#228#2#5'Align'#7#8 -- +'alBottom'#12'ClientHeight'#2')'#11'ClientWidth'#3#228#2#8'TabOrder'#2#0#0#9 -- +'TCheckBox'#8'Applyall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#12#5'Width'#3 -- +#148#0#7'Caption'#6#25'Apply Change To All Chart'#7'Checked'#9#5'State'#7#9 -- +'cbChecked'#8'TabOrder'#2#0#0#0#7'TButton'#5'OKBtn'#4'Left'#3#14#1#6'Height' -- +#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#7'TButton'#5'App' -- +'ly'#4'Left'#3'f'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing' -- +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#10'ApplyClick'#8'TabOr' -- +'der'#2#2#0#0#7'TButton'#9'CancelBtn'#4'Left'#3#190#1#6'Height'#2#25#3'Top'#2 -- +#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 -- +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#3#0#0#7'TButton'#7'HelpBtn'#4'Lef' -- +'t'#3#22#2#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBor' -- +'der'#2#4#7'Caption'#6#5'&Help'#7'OnClick'#7#12'HelpBtnClick'#8'TabOrder'#2#4 -- +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#3 -- +#232#0#5'Align'#7#6'alLeft'#12'ClientHeight'#3#18#2#11'ClientWidth'#3#232#0#8 -- +'TabOrder'#2#1#0#9'TTreeView'#9'TreeView1'#4'Left'#2#1#6'Height'#3#232#1#3'T' -- +'op'#2#1#5'Width'#3#230#0#5'Align'#7#8'alClient'#10'AutoExpand'#9#17'Default' -- +'ItemHeight'#2#15#14'ExpandSignType'#7#10'tvestArrow'#13'HideSelection'#8#8 -- +'HotTrack'#9#6'Indent'#2#19#8'ReadOnly'#9#16'RightClickSelect'#9#9'RowSelect' -- +#9#10'ScrollBars'#7#6'ssNone'#8'SortType'#7#6'stBoth'#8'TabOrder'#2#0#8'OnCh' -- ,'ange'#7#15'TreeView1Change'#7'Options'#11#13'tvoAutoExpand'#17'tvoAutoItemH' -- +'eight'#11'tvoHotTrack'#21'tvoKeepCollapsedNodes'#11'tvoReadOnly'#19'tvoRigh' -- +'tClickSelect'#12'tvoRowSelect'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoSh' -- +'owRoot'#11'tvoToolTips'#0#10'Items.Data'#10#194#7#0#0#249#255#255#255#2#0#9 -- +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#0#0#0#0#2#0#0#0#0#0#0#0#1#12#0#0#0'1-' -- +' Date/Time'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 -- +#0#12#0#0#0'1- Date/Time'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#18#0#0#0'2- Time Simulation'#255#255#255#255#255#255#255#255#160#169'uA'#0 -- +#0#0#0#2#0#0#0#0#0#0#0#1#14#0#0#0'2- Observatory'#0#0#0#0#0#0#0#0#255#255#255 -- +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'1- Observatory'#0#0#0#0#0#0#0 -- +#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Horizon'#0#0 -- +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#6#0#0#0#0#0#0#0#1#21#0#0#0'3- Chart, Coordi' -- +'nates'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#21 -- +#0#0#0'1- Chart, Coordinates'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#18#0#0#0'2- Field of vision'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#13#0#0#0'3- Projection'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#16#0#0#0'4- Object Filter'#255#255#255#255#255#255#255#255#160 -- +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#15#0#0#0'5- Grid Spacing'#0#0#0#0#0#0#0#0 -- +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'6- Object List'#0 -- +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#13#0#0#0'4- Catalogues' -- +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#13#0#0#0 -- +'1- Catalogues'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0 -- +#0#0#12#0#0#0'2- CdC Stars'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0 -- +#0#0#0#0#0#0#0#0#14#0#0#0'3- CdC Nebulae'#0#0#0#0#0#0#0#0#255#255#255#255#255 -- +#255#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Obsolete'#0#0#0#0#0#0#0#0#160#169 -- +'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#15#0#0#0'5- Solar System'#0#0#0#0#0#0#0#0#255 -- +#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#15#0#0#0'1- Solar System'#0#0 -- +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Planets'#0#0#0 -- +#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'3- Comets'#0#0#0#0#0 -- +#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#12#0#0#0'4- Asteroids'#0#0#0#0#0 -- +#0#0#0#160#169'uA'#0#0#0#0#9#0#0#0#0#0#0#0#1#10#0#0#0'6- Display'#0#0#0#0#0#0 -- +#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'1- Display'#0 -- +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#17#0#0#0'2- Display col' -- +'our'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0 -- +#0#0'3- Deep sky object colour'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 -- +#255#0#0#0#0#0#0#0#0#0#24#0#0#0'4- Sky background colour'#0#0#0#0#0#0#0#0#160 -- +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'5- Lines'#0#0#0#0#0#0#0#0#160#169 -- +'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'6- Labels'#0#0#0#0#0#0#0#0#160#169'uA' -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'7- Fonts'#0#0#0#0#0#0#0#0#255#255#255#255 -- +#255#255#255#255#0#0#0#0#0#0#0#0#0#27#0#0#0'8- Finder circle (Eyepiece)'#0#0 -- +#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0#0#0'9- F' -- +'inder rectangle (CCD)'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#3#0#0#0#0#0#0#0#1 -- +#11#0#0#0'7- Pictures'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 -- +#0#0#0#0#0#0#9#0#0#0'1- Object'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 -- +#255#0#0#0#0#0#0#0#0#0#13#0#0#0'2- Background'#0#0#0#0#0#0#0#0#255#255#255 -- +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'3- DSS RealSky'#255#255#255 -- +#255#255#255#255#255#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#9#0#0#0'8- System' -- +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#9#0#0#0'1' -- +'- System'#255#255#255#255#255#255#255#255#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#9#0#0#0'2- Server'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 -- +#0#0#0#0#0#0#12#0#0#0'3- Telescope'#0#0#0#0#0#0#0#0#255#255#255#255#255#255 -- +#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Language'#0#0#0#0#0#0#0#0#255#255#255 -- +#255#255#255#255#255#3#0#0#0#0#0#0#0#1#11#0#0#0'9- Internet'#0#0#0#0#0#0#0#0 -- +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'1- Proxy'#0#0#0#0 -- +#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#19#0#0#0'2- Orbit' -- +'al Elements'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 -- +#0#22#0#0#0'3- Online DSS pictures'#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'He' -- +'ight'#2'('#3'Top'#3#233#1#5'Width'#3#230#0#5'Align'#7#8'alBottom'#12'Client' -- +'Height'#2'('#11'ClientWidth'#3#230#0#8'TabOrder'#2#1#0#7'TButton'#8'previou' -- +'s'#4'Left'#2'?'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akL' -- +'eft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'<'#7'On' -- +'Click'#7#13'previousClick'#8'TabOrder'#2#0#0#0#7'TButton'#4'next'#4'Left'#2 -- +'o'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akLeft'#8'akBott' -- +'om'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'>'#7'OnClick'#7#9'ne' -- ,'xtClick'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel4'#4'Left'#3#237#0#6'Heig' -- +'ht'#3#18#2#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientHeig' -- +'ht'#3#18#2#11'ClientWidth'#3#247#1#8'TabOrder'#2#2#0#9'TMultiDoc'#9'MultiDo' -- +'c1'#4'Left'#2#1#6'Height'#3#16#2#3'Top'#2#1#5'Width'#3#245#1#9'Maximized'#9 -- +#11'BorderWidth'#2#3#11'TitleHeight'#2#12#13'KeepLastChild'#8#19'WireframeMo' -- +'veResize'#8#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#5'Color'#7#7 -- +'clBlack'#11'ParentColor'#8#8'TabOrder'#2#0#0#0#0#9'TSplitter'#9'Splitter1'#4 -- +'Left'#3#232#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#2#5#7'Beveled'#9#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tf_config','FORMDATA',[ -+ 'TPF0'#9'Tf_config'#8'f_config'#4'Left'#3't'#1#6'Height'#3';'#2#3'Top'#2'o'#5 -+ +'Width'#3#228#2#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#12'bsToolWin' -+ +'dow'#7'Caption'#6#13'Configuration'#12'ClientHeight'#3';'#2#11'ClientWidth' -+ +#3#228#2#11'Font.Height'#2#245#9'Icon.Data'#10#194#16#0#0#190#16#0#0#0#0#1#0 -+ +#1#0' '#0#0#1#0' '#0#168#16#0#0#22#0#0#0'('#0#0#0' '#0#0#0'@'#0#0#0#1#0' '#0 -+ +#0#0#0#0#0#16#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'222'#255'JJJ'#255'JJJ'#255 -+ +'JJJ'#255'>>>'#255'222'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 -+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255'&' -+ +'&&'#255'222'#255'222'#255'>>>'#255'VVV'#255'bbb'#255'nnn'#255'nnn'#255'bbb' -+ +#255'bbb'#255'bbb'#255'VVV'#255#0#0#0#255#0#0#0#255#0#0#0#255#26#26#26#255'V' -+ +'VV'#255'bbb'#255'VVV'#255'>>>'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255'&&&'#255'>>>'#255'&&&'#255#14#14#14#255'&&&'#255'nnn'#255 -+ +#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 -+ +'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'JJJ'#255'nnn'#255#146 -+ +#146#146#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170#255 -+ +#170#170#170#255#146#146#146#255'>>>'#255#0#0#0#255#0#0#0#255#14#14#14#255'J' -+ +'JJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -+ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' -+ +#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 -+ +#182#182#182#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 -+ +#255#170#170#170#255#170#170#170#255#164#160#160#255#164#160#160#255#164#160 -+ +#160#255#146#146#146#255#134#134#134#255#146#146#146#255#164#160#160#255#146 -+ +#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255 -+ +#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255 -+ +'nnn'#255'bbb'#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170 -+ +#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#164#160#160#255 -+ +#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 -+ +#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146 -+ +#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128#255#128 -+ +#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 -+ +#255#255#255#255'bbb'#255'VVV'#255'VVV'#255#170#170#170#255#170#170#170#255 -+ +#170#170#170#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160 -+ +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146 -+ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -+ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zzz' -+ +#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255 -+ +'VVV'#255'VVV'#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 -+ +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164 -+ +#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146#146#146#255 -+ +#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134#255#128#128#128 -+ +#255#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'b' -+ +'bb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255#164#160#160 -+ +#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160#160#255#164#160 -+ +#160#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146 -+ +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134#134#134#255 -+ +#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255'zzz'#255'zz' -+ +'z'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -+ +#255'VVV'#255'VVV'#255'JJJ'#255#164#160#160#255#164#160#160#255#164#160#160 -+ +#255#164#160#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146 -+ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#134 -+ +#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255 -+ ,#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb' -+ +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255#164#160 -+ +#160#255#164#160#160#255#164#160#160#255#146#146#146#255#146#146#146#255#146 -+ +#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255 -+ +#164#160#160#255#146#146#146#255#146#146#146#255#134#134#134#255#134#134#134 -+ +#255#128#128#128#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn' -+ +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 -+ +'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 -+ +#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146 -+ +#146#146#255#164#160#160#255#255#255#255#255#194#194#194#255#164#160#160#255 -+ +#146#146#146#255#134#134#134#255#128#128#128#255'zzz'#255'zzz'#255'nnn'#255 -+ +'nnn'#255'nnn'#255'k'#255#255#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -+ +#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255#146#146#146#255#146#146#146 -+ +#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146#146#255#146#146 -+ +#146#255#134#134#134#255#134#134#134#255#146#146#146#255#230#230#230#255#242 -+ +#242#242#255#194#194#194#255#170#170#170#255#164#160#160#255#134#134#134#255 -+ +'zzz'#255'zzz'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255'bbb' -+ +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255#146#146 -+ +#146#255#146#146#146#255#146#146#146#255#134#134#134#255#242#242#242#255#146 -+ +#146#146#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134#134#255 -+ +#164#160#160#255#242#242#242#255#255#255#255#255#218#218#218#255#182#182#182 -+ +#255#164#160#160#255#134#134#134#255'zzz'#255'nnn'#255'nnn'#255'bbb'#255'bbb' -+ +#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255 -+ +'JJJ'#255'JJJ'#255#134#134#134#255#134#134#134#255#134#134#134#255#134#134 -+ +#134#255#134#134#134#255#134#134#134#255#134#134#134#255#128#128#128#255#128 -+ +#128#128#255#134#134#134#255#146#146#146#255#194#194#194#255#255#255#255#255 -+ +#255#255#255#255#230#230#230#255#192#192#192#255#164#160#160#255#146#146#146 -+ +#255'zzz'#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255 -+ +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255#134#134#134#255#134 -+ +#134#134#255#134#134#134#255#128#128#128#255#128#128#128#255#128#128#128#255 -+ +#128#128#128#255#128#128#128#255'zzz'#255#128#128#128#255#134#134#134#255#164 -+ +#160#160#255#230#230#230#255#242#242#242#255#255#255#255#255#230#230#230#255 -+ +#206#206#206#255#170#170#170#255#146#146#146#255'zzz'#255'nnn'#255'bbb'#255 -+ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>' -+ +#255'>>>'#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -+ +#128#128#128#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255#128 -+ +#128#128#255#164#160#160#255#230#230#230#255#230#230#230#255#242#242#242#255 -+ +#230#230#230#255#206#206#206#255#182#182#182#255#164#160#160#255#128#128#128 -+ +#255'nnn'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 -+ +#0#254#254#255'JJJ'#255'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255 -+ +'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn'#255'zzz'#255#128#128#128 -+ +#255#194#194#194#255#218#218#218#255#206#206#206#255#230#230#230#255#230#230 -+ +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'nnn' -+ +#255'bbb'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 -+ +'>>>'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'zzz'#255'nnn'#255'nnn' -+ +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255#128#128#128#255#206#206#206 -+ +#255#218#218#218#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230 -+ +#230#255#206#206#206#255#170#170#170#255#146#146#146#255'nnn'#255'bbb'#255'J' -+ +'JJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'nnn'#255'n' -+ +'nn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz' -+ +#255'nnn'#255'bbb'#255'bbb'#255'nnn'#255#164#160#160#255#182#182#182#255#194 -+ +#194#194#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 -+ +#218#218#218#255#182#182#182#255#146#146#146#255'zzz'#255'bbb'#255'JJJ'#255 -+ +'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn' -+ +#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255'zzz'#255#0#254#254#255'nnn' -+ +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255#192#192#192#255#182#182#182#255#170 -+ +#170#170#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255 -+ +#218#218#218#255#192#192#192#255#164#160#160#255'zzz'#255'bbb'#255'JJJ'#255 -+ +'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2'#255'nnn'#255'nnn'#255'nnn'#255'nnn' -+ +#255'nnn'#255'bbb'#255'bbb'#255'bbb'#255'nnn'#255'nnn'#255'nnn'#255'bbb'#255 -+ +'bbb'#255'bbb'#255'VVV'#255'zzz'#255#164#160#160#255#194#194#194#255#164#160 -+ +#160#255#206#206#206#255#230#230#230#255#242#242#242#255#230#230#230#255#218 -+ +#218#218#255#192#192#192#255#164#160#160#255#128#128#128#255'bbb'#255'JJJ' -+ +#255'>>>'#255'P'#0'2'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bb' -+ ,'b'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV' -+ +#255'VVV'#255'VVV'#255'VVV'#255#164#160#160#255#134#134#134#255#170#170#170 -+ +#255#164#160#160#255#194#194#194#255#218#218#218#255#230#230#230#255#230#230 -+ +#230#255#218#218#218#255#194#194#194#255#164#160#160#255#134#134#134#255'bbb' -+ +#255'JJJ'#255'>>>'#255'P'#0#25#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' -+ +#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 -+ +'VVV'#255'VVV'#255'VVV'#255'bbb'#255#158#158#158#255#164#160#160#255#134#134 -+ +#134#255#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218 -+ +#218#218#255#206#206#206#255#194#194#194#255#170#170#170#255#134#134#134#255 -+ +'nnn'#255'JJJ'#255'>>>'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb'#255'bbb' -+ +#255'bbb'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255 -+ +'JJJ'#255'JJJ'#255'JJJ'#255#134#134#134#255'nnn'#255#164#160#160#255'nnn'#255 -+ +#146#146#146#255#182#182#182#255#206#206#206#255#218#218#218#255#218#218#218 -+ +#255#206#206#206#255#192#192#192#255#170#170#170#255#146#146#146#255'nnn'#255 -+ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255#218#218#218 -+ +#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255 -+ +'JJJ'#255'JJJ'#255'JJJ'#255#146#146#146#255'bbb'#255#134#134#134#255'nnn'#255 -+ +#134#134#134#255#170#170#170#255#192#192#192#255#206#206#206#255#206#206#206 -+ +#255#194#194#194#255#182#182#182#255#170#170#170#255#146#146#146#255'nnn'#255 -+ +'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV'#255'VVV' -+ +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255 -+ +'>>>'#255'bbb'#255'nnn'#255'zzz'#255'bbb'#255'bbb'#255#128#128#128#255#164 -+ +#160#160#255#182#182#182#255#194#194#194#255#192#192#192#255#192#192#192#255 -+ +#182#182#182#255#164#160#160#255#146#146#146#255'VVV'#255'VVV'#255'VVV'#255 -+ +'VVV'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ' -+ +#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255#134#134 -+ +#134#255'>>>'#255#134#134#134#255'JJJ'#255'VVV'#255'zzz'#255#158#158#158#255 -+ +#170#170#170#255#182#182#182#255#182#182#182#255#182#182#182#255#170#170#170 -+ +#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'J' -+ +'JJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255'>>>' -+ +#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'JJJ'#255'nnn'#255'JJJ'#255'nnn' -+ +#255'>>>'#255'VVV'#255'nnn'#255#146#146#146#255#164#160#160#255#170#170#170 -+ +#255#170#170#170#255#164#160#160#255#164#160#160#255'JJJ'#255'JJJ'#255'JJJ' -+ +#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'JJJ'#255'>>>'#255'>>>'#255 -+ +'>>>'#255'>>>'#255'>>>'#255'>>>'#255'>>>'#255'P'#0'2'#255'P'#0'2'#255'P'#0'2' -+ +#255'P'#0'2'#255'nnn'#255'>>>'#255'nnn'#255'>>>'#255'222'#255'JJJ'#255'nnn' -+ +#255#134#134#134#255#158#158#158#255#164#160#160#255#164#160#160#255#164#160 -+ +#160#255#255#255#255#255#255#255#255#255#255#255#255#192#255#255#240#0#224 -+ +#252#0#0#0'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'O' -+ +'nClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormD' -+ +'estroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Pa' -+ +'nel2'#4'Left'#2#0#6'Height'#2')'#3'Top'#3#18#2#5'Width'#3#228#2#5'Align'#7#8 -+ +'alBottom'#12'ClientHeight'#2')'#11'ClientWidth'#3#228#2#8'TabOrder'#2#0#0#9 -+ +'TCheckBox'#8'Applyall'#4'Left'#2#16#6'Height'#2#21#3'Top'#2#12#5'Width'#3 -+ +#148#0#7'Caption'#6#25'Apply Change To All Chart'#7'Checked'#9#5'State'#7#9 -+ +'cbChecked'#8'TabOrder'#2#0#0#0#7'TButton'#5'OKBtn'#4'Left'#3#14#1#6'Height' -+ +#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -+ +#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#7'TButton'#5'App' -+ +'ly'#4'Left'#3'f'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing' -+ +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#10'ApplyClick'#8'TabOr' -+ +'der'#2#2#0#0#7'TButton'#9'CancelBtn'#4'Left'#3#190#1#6'Height'#2#25#3'Top'#2 -+ +#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6 -+ +'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#3#0#0#7'TButton'#7'HelpBtn'#4'Lef' -+ +'t'#3#22#2#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBor' -+ +'der'#2#4#7'Caption'#6#5'&Help'#7'OnClick'#7#12'HelpBtnClick'#8'TabOrder'#2#4 -+ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#3 -+ +#232#0#5'Align'#7#6'alLeft'#12'ClientHeight'#3#18#2#11'ClientWidth'#3#232#0#8 -+ +'TabOrder'#2#1#0#9'TTreeView'#9'TreeView1'#4'Left'#2#1#6'Height'#3#232#1#3'T' -+ +'op'#2#1#5'Width'#3#230#0#5'Align'#7#8'alClient'#10'AutoExpand'#9#17'Default' -+ +'ItemHeight'#2#15#14'ExpandSignType'#7#10'tvestArrow'#13'HideSelection'#8#8 -+ +'HotTrack'#9#6'Indent'#2#19#8'ReadOnly'#9#16'RightClickSelect'#9#9'RowSelect' -+ +#9#10'ScrollBars'#7#6'ssNone'#8'SortType'#7#6'stBoth'#8'TabOrder'#2#0#8'OnCh' -+ ,'ange'#7#15'TreeView1Change'#7'Options'#11#13'tvoAutoExpand'#17'tvoAutoItemH' -+ +'eight'#11'tvoHotTrack'#21'tvoKeepCollapsedNodes'#11'tvoReadOnly'#19'tvoRigh' -+ +'tClickSelect'#12'tvoRowSelect'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoSh' -+ +'owRoot'#11'tvoToolTips'#0#10'Items.Data'#10#194#7#0#0#249#255#255#255#2#0#9 -+ +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#0#0#0#0#2#0#0#0#0#0#0#0#1#12#0#0#0'1-' -+ +' Date/Time'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 -+ +#0#12#0#0#0'1- Date/Time'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#18#0#0#0'2- Time Simulation'#255#255#255#255#255#255#255#255#160#169'uA'#0 -+ +#0#0#0#2#0#0#0#0#0#0#0#1#14#0#0#0'2- Observatory'#0#0#0#0#0#0#0#0#255#255#255 -+ +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'1- Observatory'#0#0#0#0#0#0#0 -+ +#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Horizon'#0#0 -+ +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#6#0#0#0#0#0#0#0#1#21#0#0#0'3- Chart, Coordi' -+ +'nates'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#21 -+ +#0#0#0'1- Chart, Coordinates'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#18#0#0#0'2- Field of vision'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#13#0#0#0'3- Projection'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#16#0#0#0'4- Object Filter'#255#255#255#255#255#255#255#255#160 -+ +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#15#0#0#0'5- Grid Spacing'#0#0#0#0#0#0#0#0 -+ +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'6- Object List'#0 -+ +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#13#0#0#0'4- Catalogues' -+ +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#13#0#0#0 -+ +'1- Catalogues'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0 -+ +#0#0#12#0#0#0'2- CdC Stars'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0 -+ +#0#0#0#0#0#0#0#0#14#0#0#0'3- CdC Nebulae'#0#0#0#0#0#0#0#0#255#255#255#255#255 -+ +#255#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Obsolete'#0#0#0#0#0#0#0#0#160#169 -+ +'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#15#0#0#0'5- Solar System'#0#0#0#0#0#0#0#0#255 -+ +#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#15#0#0#0'1- Solar System'#0#0 -+ +#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#10#0#0#0'2- Planets'#0#0#0 -+ +#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'3- Comets'#0#0#0#0#0 -+ +#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#12#0#0#0'4- Asteroids'#0#0#0#0#0 -+ +#0#0#0#160#169'uA'#0#0#0#0#9#0#0#0#0#0#0#0#1#10#0#0#0'6- Display'#0#0#0#0#0#0 -+ +#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#10#0#0#0'1- Display'#0 -+ +#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#17#0#0#0'2- Display col' -+ +'our'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0 -+ +#0#0'3- Deep sky object colour'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 -+ +#255#0#0#0#0#0#0#0#0#0#24#0#0#0'4- Sky background colour'#0#0#0#0#0#0#0#0#160 -+ +#169'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'5- Lines'#0#0#0#0#0#0#0#0#160#169 -+ +'uA'#0#0#0#0#0#0#0#0#0#0#0#0#0#9#0#0#0'6- Labels'#0#0#0#0#0#0#0#0#160#169'uA' -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#8#0#0#0'7- Fonts'#0#0#0#0#0#0#0#0#255#255#255#255 -+ +#255#255#255#255#0#0#0#0#0#0#0#0#0#27#0#0#0'8- Finder circle (Eyepiece)'#0#0 -+ +#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#25#0#0#0'9- F' -+ +'inder rectangle (CCD)'#0#0#0#0#0#0#0#0#160#169'uA'#0#0#0#0#3#0#0#0#0#0#0#0#1 -+ +#11#0#0#0'7- Pictures'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 -+ +#0#0#0#0#0#0#9#0#0#0'1- Object'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255 -+ +#255#0#0#0#0#0#0#0#0#0#13#0#0#0'2- Background'#0#0#0#0#0#0#0#0#255#255#255 -+ +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#14#0#0#0'3- DSS RealSky'#255#255#255 -+ +#255#255#255#255#255#160#169'uA'#0#0#0#0#4#0#0#0#0#0#0#0#1#9#0#0#0'8- System' -+ +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#9#0#0#0'1' -+ +'- System'#255#255#255#255#255#255#255#255#160#169'uA'#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#9#0#0#0'2- Server'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0 -+ +#0#0#0#0#0#0#12#0#0#0'3- Telescope'#0#0#0#0#0#0#0#0#255#255#255#255#255#255 -+ +#255#255#0#0#0#0#0#0#0#0#0#11#0#0#0'4- Language'#0#0#0#0#0#0#0#0#255#255#255 -+ +#255#255#255#255#255#3#0#0#0#0#0#0#0#1#11#0#0#0'9- Internet'#0#0#0#0#0#0#0#0 -+ +#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'1- Proxy'#0#0#0#0 -+ +#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0#0#19#0#0#0'2- Orbit' -+ +'al Elements'#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#0#0#0#0#0#0#0#0 -+ +#0#22#0#0#0'3- Online DSS pictures'#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'He' -+ +'ight'#2'('#3'Top'#3#233#1#5'Width'#3#230#0#5'Align'#7#8'alBottom'#12'Client' -+ +'Height'#2'('#11'ClientWidth'#3#230#0#8'TabOrder'#2#1#0#7'TButton'#8'previou' -+ +'s'#4'Left'#2'?'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akL' -+ +'eft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'<'#7'On' -+ +'Click'#7#13'previousClick'#8'TabOrder'#2#0#0#0#7'TButton'#4'next'#4'Left'#2 -+ +'o'#6'Height'#2#25#3'Top'#2#9#5'Width'#2#25#7'Anchors'#11#6'akLeft'#8'akBott' -+ +'om'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'>'#7'OnClick'#7#9'ne' -+ ,'xtClick'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#6'Panel4'#4'Left'#3#237#0#6'Heig' -+ +'ht'#3#18#2#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientHeig' -+ +'ht'#3#18#2#11'ClientWidth'#3#247#1#8'TabOrder'#2#2#0#9'TMultiDoc'#9'MultiDo' -+ +'c1'#4'Left'#2#1#6'Height'#3#16#2#3'Top'#2#1#5'Width'#3#245#1#9'Maximized'#9 -+ +#11'BorderWidth'#2#3#11'TitleHeight'#2#12#13'KeepLastChild'#8#19'WireframeMo' -+ +'veResize'#8#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#5'Color'#7#7 -+ +'clBlack'#11'ParentColor'#8#8'TabOrder'#2#0#0#0#0#9'TSplitter'#9'Splitter1'#4 -+ +'Left'#3#232#0#6'Height'#3#18#2#3'Top'#2#0#5'Width'#2#5#7'Beveled'#9#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_config_observatory.lfm skychart_3.2_up/skychart/pu_config_observatory.lfm ---- skychart_3.2/skychart/pu_config_observatory.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_observatory.lfm 2011-03-09 15:18:57.153091389 +0100 -@@ -1,7 +1,7 @@ - object f_config_observatory: Tf_config_observatory -- Left = 965 -+ Left = 503 - Height = 605 -- Top = 108 -+ Top = 104 - Width = 481 - ActiveControl = MainPanel - BorderIcons = [biSystemMenu] -@@ -16,7 +16,7 @@ - OnDestroy = FormDestroy - OnShow = FormShow - Position = poScreenCenter -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 553 -@@ -34,13 +34,12 @@ - Width = 480 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Observatory' -- ClientHeight = 547 -- ClientWidth = 476 -+ ClientHeight = 516 -+ ClientWidth = 474 - object Memo1: TMemo - Left = 8 - Height = 141 -@@ -140,13 +139,13 @@ - Left = 422 - Height = 14 - Top = 35 -- Width = 23 -+ Width = 21 - Caption = 'Km.' - ParentColor = False - end - object citylist: TComboBox - Left = 8 -- Height = 23 -+ Height = 27 - Top = 31 - Width = 233 - AutoComplete = True -@@ -169,7 +168,7 @@ - end - object countrylist: TComboBox - Left = 8 -- Height = 25 -+ Height = 31 - Top = 1 - Width = 234 - DropDownCount = 10 -@@ -180,7 +179,7 @@ - end - object cityfilter: TEdit - Left = 248 -- Height = 21 -+ Height = 23 - Top = 1 - Width = 104 - OnKeyDown = cityfilterKeyDown -@@ -219,7 +218,7 @@ - object LocCode: TEdit - Cursor = crHandPoint - Left = 8 -- Height = 21 -+ Height = 23 - Hint = 'Designation Code' - Top = 60 - Width = 80 -@@ -242,14 +241,14 @@ - end - object vicinityrangeEdit: TEdit - Left = 339 -- Height = 21 -+ Height = 23 - Top = 33 - Width = 56 - TabOrder = 9 - end - object vicinityrange: TUpDown - Left = 395 -- Height = 21 -+ Height = 23 - Top = 33 - Width = 17 - Associate = vicinityrangeEdit -@@ -273,7 +272,7 @@ - Left = 4 - Height = 14 - Top = 4 -- Width = 42 -+ Width = 41 - Caption = 'Degree' - ParentColor = False - end -@@ -281,7 +280,7 @@ - Left = 48 - Height = 14 - Top = 4 -- Width = 24 -+ Width = 23 - Caption = 'Min.' - ParentColor = False - end -@@ -289,13 +288,13 @@ - Left = 80 - Height = 14 - Top = 4 -- Width = 26 -+ Width = 24 - Caption = 'Sec.' - ParentColor = False - end - object hemis: TComboBox - Left = 112 -- Height = 23 -+ Height = 27 - Top = 19 - Width = 65 - AutoCompleteText = [cbactSearchAscending] -@@ -311,7 +310,7 @@ - end - object latdeg: TLongEdit - Left = 4 -- Height = 21 -+ Height = 23 - Hint = '0..90' - Top = 20 - Width = 33 -@@ -325,7 +324,7 @@ - end - object latmin: TLongEdit - Left = 48 -- Height = 21 -+ Height = 23 - Hint = '0..59' - Top = 20 - Width = 25 -@@ -339,7 +338,7 @@ - end - object latsec: TLongEdit - Left = 80 -- Height = 21 -+ Height = 23 - Hint = '0..59' - Top = 20 - Width = 25 -@@ -365,7 +364,7 @@ - Left = 4 - Height = 14 - Top = 4 -- Width = 42 -+ Width = 41 - Caption = 'Degree' - ParentColor = False - end -@@ -373,7 +372,7 @@ - Left = 48 - Height = 14 - Top = 4 -- Width = 24 -+ Width = 23 - Caption = 'Min.' - ParentColor = False - end -@@ -381,13 +380,13 @@ - Left = 80 - Height = 14 - Top = 4 -- Width = 26 -+ Width = 24 - Caption = 'Sec.' - ParentColor = False - end - object long: TComboBox - Left = 112 -- Height = 23 -+ Height = 27 - Top = 19 - Width = 65 - AutoCompleteText = [cbactSearchAscending] -@@ -403,7 +402,7 @@ - end - object longdeg: TLongEdit - Left = 4 -- Height = 21 -+ Height = 23 - Hint = '0..180' - Top = 20 - Width = 33 -@@ -417,7 +416,7 @@ - end - object longmin: TLongEdit - Left = 48 -- Height = 21 -+ Height = 23 - Hint = '0..59' - Top = 20 - Width = 25 -@@ -431,7 +430,7 @@ - end - object longsec: TLongEdit - Left = 80 -- Height = 21 -+ Height = 23 - Hint = '0..59' - Top = 20 - Width = 25 -@@ -457,13 +456,13 @@ - Left = 8 - Height = 14 - Top = 4 -- Width = 40 -+ Width = 38 - Caption = 'Meters' - ParentColor = False - end - object altmeter: TFloatEdit - Left = 4 -- Height = 21 -+ Height = 23 - Hint = '-500..15000' - Top = 20 - Width = 65 -@@ -490,7 +489,7 @@ - TabOrder = 4 - object TZComboBox: TComboBox - Left = 8 -- Height = 25 -+ Height = 31 - Top = 23 - Width = 433 - ItemHeight = 0 -@@ -500,9 +499,9 @@ - end - object CountryTZ: TCheckBox - Left = 8 -- Height = 21 -+ Height = 22 - Top = 1 -- Width = 125 -+ Width = 123 - Caption = 'Country Timezone' - Checked = True - OnChange = CountryTZChange -@@ -513,8 +512,8 @@ - end - object Page2: TTabSheet - Caption = 'Horizon' -- ClientHeight = 547 -- ClientWidth = 476 -+ ClientHeight = 516 -+ ClientWidth = 474 - object GroupBox2: TGroupBox - Left = 8 - Height = 89 -@@ -570,7 +569,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 2 - OnChange = horizonfileChange - end -diff -ur skychart_3.2/skychart/pu_config_observatory.lrs skychart_3.2_up/skychart/pu_config_observatory.lrs ---- skychart_3.2/skychart/pu_config_observatory.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_observatory.lrs 2011-03-09 15:18:57.138093231 +0100 -@@ -1,188 +1,187 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_observatory','FORMDATA',[ -- 'TPF0'#21'Tf_config_observatory'#20'f_config_observatory'#4'Left'#3#197#3#6'H' -- +'eight'#3']'#2#3'Top'#2'l'#5'Width'#3#225#1#13'ActiveControl'#7#9'MainPanel' -+ 'TPF0'#21'Tf_config_observatory'#20'f_config_observatory'#4'Left'#3#247#1#6'H' -+ +'eight'#3']'#2#3'Top'#2'h'#5'Width'#3#225#1#13'ActiveControl'#7#9'MainPanel' - +#11'BorderIcons'#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7 - +'Caption'#6#11'Observatory'#28'ChildSizing.LeftRightSpacing'#3#13#2#12'Clien' - +'tHeight'#3']'#2#11'ClientWidth'#3#225#1#11'Font.Height'#2#245#7'OnClose'#7#9 - +'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'On' -- +'Show'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9' -- +'.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3')'#2#3'Top'#2#8#5'Wid' -- +'th'#3#226#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#12'Cl' -- +'ientHeight'#3')'#2#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2#0 -- +#0#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3''''#2#3'Top'#2#1 -- +#5'Width'#3#224#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTab' -- +'s'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#11 -- +'Observatory'#12'ClientHeight'#3'#'#2#11'ClientWidth'#3#220#1#0#5'TMemo'#5'M' -- +'emo1'#4'Left'#2#8#6'Height'#3#141#0#3'Top'#2'i'#5'Width'#3#193#1#8'TabOrder' -- +#2#7#7'TabStop'#8#7'Visible'#8#0#0#7'TButton'#5'Obszp'#4'Left'#2#3#6'Height' -- +#2#25#3'Top'#3'%'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' -- +'n'#6#1'+'#7'OnClick'#7#10'ObszpClick'#8'TabOrder'#2#8#0#0#7'TButton'#5'Obsz' -- +'m'#4'Left'#2#3#6'Height'#2#25#3'Top'#3'M'#1#5'Width'#2')'#25'BorderSpacing.' -- +'InnerBorder'#2#4#7'Caption'#6#1'-'#7'OnClick'#7#10'ObszmClick'#8'TabOrder'#2 -- +#6#0#0#7'TButton'#6'Obsmap'#4'Left'#2'-'#6'Height'#2#25#3'Top'#3#227#1#5'Wid' -- +'th'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Load'#7'OnClick'#7 -- +#11'ObsmapClick'#8'TabOrder'#2#10#0#0#10'TZoomImage'#10'ZoomImage1'#6'Cursor' -- +#7#7'crCross'#4'Left'#2'/'#6'Height'#3#200#0#3'Top'#3#5#1#5'Width'#3#144#1#17 -- +'Canvas.AutoRedraw'#8#18'Canvas.Brush.Color'#7#7'clBlack'#18'Canvas.Font.Hei' -- +'ght'#2#245#4'Zoom'#5#0#0#0#0#0#0#0#200#3'@'#7'ZoomMin'#5#0#0#0#0#0#0#0#200#3 -- +'@'#7'ZoomMax'#5#0#0#0#0#0#0#0#208#3'@'#7'Xcentre'#2#0#7'Ycentre'#2#0#9'OnMo' -- +'useUp'#7#17'ZoomImage1MouseUp'#7'OnPaint'#7#15'ZoomImage1Paint'#11'OnPosCha' -- +'nge'#7#19'ZoomImage1PosChange'#0#0#10'TScrollBar'#10'HScrollBar'#4'Left'#2 -- +'/'#6'Height'#2#15#3'Top'#3#206#1#5'Width'#3#144#1#8'PageSize'#2#1#8'TabOrde' -- +'r'#2#11#7'TabStop'#8#8'OnChange'#7#16'HScrollBarChange'#0#0#10'TScrollBar' -- +#10'VScrollBar'#4'Left'#3#192#1#6'Height'#2#16#3'Top'#3#5#1#5'Width'#2#15#4 -- +'Kind'#7#10'sbVertical'#8'PageSize'#2#1#8'TabOrder'#2#5#7'TabStop'#8#8'OnCha' -- +'nge'#7#16'VScrollBarChange'#0#0#9'TGroupBox'#7'obsname'#4'Left'#2#8#6'Heigh' -- +'t'#2'i'#3'Top'#2#255#5'Width'#3#193#1#7'Caption'#6#20'Observatory Database' -- +#12'ClientHeight'#2'Z'#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#6'TLabel'#6 -- +'Label2'#4'Left'#3':'#1#6'Height'#2#14#3'Top'#2'#'#5'Width'#2#18#7'Caption'#6 -- +#3'+/-'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#166#1#6'Height'#2 -- +#14#3'Top'#2'#'#5'Width'#2#23#7'Caption'#6#3'Km.'#11'ParentColor'#8#0#0#9'TC' -- +'omboBox'#8'citylist'#4'Left'#2#8#6'Height'#2#23#3'Top'#2#31#5'Width'#3#233#0 -- +#12'AutoComplete'#9#16'AutoCompleteText'#11#12'cbactEnabled'#22'cbactEndOfLi' -- +'neComplete'#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#14 -- +'citylistChange'#8'OnSelect'#7#14'citylistChange'#8'TabOrder'#2#3#4'Text'#6#3 -- +'...'#0#0#7'TButton'#10'citysearch'#4'Left'#3'm'#1#6'Height'#2#25#3'Top'#2#1 -- +#5'Width'#2'L'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Search'#7'On' -- +'Click'#7#15'citysearchClick'#8'TabOrder'#2#2#0#0#9'TComboBox'#11'countrylis' -- +'t'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#1#5'Width'#3#234#0#13'DropDownCount' -- +#2#10#10'ItemHeight'#2#0#8'OnSelect'#7#17'countrylistChange'#5'Style'#7#14'c' -- +'sDropDownList'#8'TabOrder'#2#0#0#0#5'TEdit'#10'cityfilter'#4'Left'#3#248#0#6 -- +'Height'#2#21#3'Top'#2#1#5'Width'#2'h'#9'OnKeyDown'#7#17'cityfilterKeyDown'#8 -- +'TabOrder'#2#1#0#0#7'TButton'#12'downloadcity'#4'Left'#3#249#0#6'Height'#2#25 -- +#3'Top'#2'<'#5'Width'#3#192#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#24'Download country details'#7'OnClick'#7#17'downloadcityClick'#8'TabOrder' -- +#2#7#0#0#7'TButton'#7'updcity'#4'Left'#2']'#6'Height'#2#25#3'Top'#2'<'#5'Wid' -- +'th'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Update'#7'OnClick' -- +#7#12'updcityClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'delcity'#4'Left'#3#169#0 -- +#6'Height'#2#25#3'Top'#2'<'#5'Width'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#6'Delete'#7'OnClick'#7#12'delcityClick'#8'TabOrder'#2#6#0#0#5'TE' -- +'dit'#7'LocCode'#6'Cursor'#7#11'crHandPoint'#4'Left'#2#8#6'Height'#2#21#4'Hi' -- +'nt'#6#16'Designation Code'#3'Top'#2'<'#5'Width'#2'P'#5'Color'#7#9'clBtnFace' -- +#7'OnClick'#7#12'LocCodeClick'#14'ParentShowHint'#8#8'ReadOnly'#9#8'ShowHint' -- +#9#8'TabOrder'#2#8#0#0#7'TButton'#8'vicinity'#4'Left'#3#248#0#6'Height'#2#25 -- +#3'Top'#2#31#5'Width'#2'<'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8 -- +'Vicinity'#7'OnClick'#7#13'vicinityClick'#8'TabOrder'#2#4#0#0#5'TEdit'#17'vi' -- ,'cinityrangeEdit'#4'Left'#3'S'#1#6'Height'#2#21#3'Top'#2'!'#5'Width'#2'8'#8 -- +'TabOrder'#2#9#0#0#7'TUpDown'#13'vicinityrange'#4'Left'#3#139#1#6'Height'#2 -- +#21#3'Top'#2'!'#5'Width'#2#17#9'Associate'#7#17'vicinityrangeEdit'#3'Min'#2#0 -- +#3'Max'#3#244#1#8'Position'#2#10#8'TabOrder'#2#10#4'Wrap'#8#0#0#0#9'TGroupBo' -- +'x'#8'Latitude'#4'Left'#2#8#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Ca' -- +'ption'#6#8'Latitude'#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrd' -- +'er'#2#1#0#6'TLabel'#7'Label58'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Widt' -- +'h'#2'*'#7'Caption'#6#6'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label59'#4 -- +'Left'#2'0'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Min.'#11 -- +'ParentColor'#8#0#0#6'TLabel'#7'Label60'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2 -- +#4#5'Width'#2#26#7'Caption'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#5'h' -- +'emis'#4'Left'#2'p'#6'Height'#2#23#3'Top'#2#19#5'Width'#2'A'#16'AutoComplete' -- +'Text'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13 -- +'Items.Strings'#1#6#5'North'#6#5'South'#0#8'OnChange'#7#12'latdegChange'#8'T' -- +'abOrder'#2#3#4'Text'#6#5'North'#0#0#9'TLongEdit'#6'latdeg'#4'Left'#2#4#6'He' -- +'ight'#2#21#4'Hint'#6#5'0..90'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#2#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#2 -- +'Z'#6'OnExit'#7#12'latdegChange'#0#0#9'TLongEdit'#6'latmin'#4'Left'#2'0'#6'H' -- +'eight'#2#21#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2 -- +';'#6'OnExit'#7#12'latdegChange'#0#0#9'TLongEdit'#6'latsec'#4'Left'#2'P'#6'H' -- +'eight'#2#21#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2 -- +';'#6'OnExit'#7#12'latdegChange'#0#0#0#9'TGroupBox'#9'Longitude'#4'Left'#3 -- +#192#0#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Caption'#6#9'Longitude' -- +#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrder'#2#2#0#6'TLabel'#7 -- +'Label61'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Width'#2'*'#7'Caption'#6#6 -- +'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label62'#4'Left'#2'0'#6'Height'#2 -- +#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Min.'#11'ParentColor'#8#0#0#6'TL' -- +'abel'#7'Label63'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#26#7'Cap' -- +'tion'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#4'long'#4'Left'#2'p'#6'H' -- +'eight'#2#23#3'Top'#2#19#5'Width'#2'A'#16'AutoCompleteText'#11#20'cbactSearc' -- +'hAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#4'W' -- +'est'#6#4'East'#0#8'OnChange'#7#13'longdegChange'#8'TabOrder'#2#3#4'Text'#6#4 -- +'East'#0#0#9'TLongEdit'#7'longdeg'#4'Left'#2#4#6'Height'#2#21#4'Hint'#6#6'0.' -- +'.180'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#4#14'ParentShowHint'#8#8'Sho' -- +'wHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#3#180#0#6'OnExit'#7#13'lo' -- +'ngdegChange'#0#0#9'TLongEdit'#7'longmin'#4'Left'#2'0'#6'Height'#2#21#4'Hint' -+ +'Show'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#8'0.9' -+ +'.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height'#3')'#2#3'Top'#2#8#5'W' -+ +'idth'#3#226#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#12 -+ +'ClientHeight'#3')'#2#11'ClientWidth'#3#226#1#11'ParentColor'#8#8'TabOrder'#2 -+ +#0#0#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3''''#2#3'Top'#2 -+ +#1#5'Width'#3#224#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIn' -+ +'dex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#11'Observator' -+ +'y'#12'ClientHeight'#3#4#2#11'ClientWidth'#3#218#1#0#5'TMemo'#5'Memo1'#4'Lef' -+ +'t'#2#8#6'Height'#3#141#0#3'Top'#2'i'#5'Width'#3#193#1#8'TabOrder'#2#7#7'Tab' -+ +'Stop'#8#7'Visible'#8#0#0#7'TButton'#5'Obszp'#4'Left'#2#3#6'Height'#2#25#3'T' -+ +'op'#3'%'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#1'+' -+ +#7'OnClick'#7#10'ObszpClick'#8'TabOrder'#2#8#0#0#7'TButton'#5'Obszm'#4'Left' -+ +#2#3#6'Height'#2#25#3'Top'#3'M'#1#5'Width'#2')'#25'BorderSpacing.InnerBorder' -+ +#2#4#7'Caption'#6#1'-'#7'OnClick'#7#10'ObszmClick'#8'TabOrder'#2#6#0#0#7'TBu' -+ +'tton'#6'Obsmap'#4'Left'#2'-'#6'Height'#2#25#3'Top'#3#227#1#5'Width'#2'n'#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'Load'#7'OnClick'#7#11'ObsmapC' -+ +'lick'#8'TabOrder'#2#10#0#0#10'TZoomImage'#10'ZoomImage1'#6'Cursor'#7#7'crCr' -+ +'oss'#4'Left'#2'/'#6'Height'#3#200#0#3'Top'#3#5#1#5'Width'#3#144#1#17'Canvas' -+ +'.AutoRedraw'#8#18'Canvas.Brush.Color'#7#7'clBlack'#18'Canvas.Font.Height'#2 -+ +#245#4'Zoom'#5#0#0#0#0#0#0#0#200#3'@'#7'ZoomMin'#5#0#0#0#0#0#0#0#200#3'@'#7 -+ +'ZoomMax'#5#0#0#0#0#0#0#0#208#3'@'#7'Xcentre'#2#0#7'Ycentre'#2#0#9'OnMouseUp' -+ +#7#17'ZoomImage1MouseUp'#7'OnPaint'#7#15'ZoomImage1Paint'#11'OnPosChange'#7 -+ +#19'ZoomImage1PosChange'#0#0#10'TScrollBar'#10'HScrollBar'#4'Left'#2'/'#6'He' -+ +'ight'#2#15#3'Top'#3#206#1#5'Width'#3#144#1#8'PageSize'#2#1#8'TabOrder'#2#11 -+ +#7'TabStop'#8#8'OnChange'#7#16'HScrollBarChange'#0#0#10'TScrollBar'#10'VScro' -+ +'llBar'#4'Left'#3#192#1#6'Height'#2#16#3'Top'#3#5#1#5'Width'#2#15#4'Kind'#7 -+ +#10'sbVertical'#8'PageSize'#2#1#8'TabOrder'#2#5#7'TabStop'#8#8'OnChange'#7#16 -+ +'VScrollBarChange'#0#0#9'TGroupBox'#7'obsname'#4'Left'#2#8#6'Height'#2'i'#3 -+ +'Top'#2#255#5'Width'#3#193#1#7'Caption'#6#20'Observatory Database'#12'Client' -+ +'Height'#2'Z'#11'ClientWidth'#3#189#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label2'#4 -+ +'Left'#3':'#1#6'Height'#2#14#3'Top'#2'#'#5'Width'#2#18#7'Caption'#6#3'+/-'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#166#1#6'Height'#2#14#3'Top' -+ +#2'#'#5'Width'#2#21#7'Caption'#6#3'Km.'#11'ParentColor'#8#0#0#9'TComboBox'#8 -+ +'citylist'#4'Left'#2#8#6'Height'#2#27#3'Top'#2#31#5'Width'#3#233#0#12'AutoCo' -+ +'mplete'#9#16'AutoCompleteText'#11#12'cbactEnabled'#22'cbactEndOfLineComplet' -+ +'e'#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#14'citylistC' -+ +'hange'#8'OnSelect'#7#14'citylistChange'#8'TabOrder'#2#3#4'Text'#6#3'...'#0#0 -+ +#7'TButton'#10'citysearch'#4'Left'#3'm'#1#6'Height'#2#25#3'Top'#2#1#5'Width' -+ +#2'L'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Search'#7'OnClick'#7 -+ +#15'citysearchClick'#8'TabOrder'#2#2#0#0#9'TComboBox'#11'countrylist'#4'Left' -+ +#2#8#6'Height'#2#31#3'Top'#2#1#5'Width'#3#234#0#13'DropDownCount'#2#10#10'It' -+ +'emHeight'#2#0#8'OnSelect'#7#17'countrylistChange'#5'Style'#7#14'csDropDownL' -+ +'ist'#8'TabOrder'#2#0#0#0#5'TEdit'#10'cityfilter'#4'Left'#3#248#0#6'Height'#2 -+ +#23#3'Top'#2#1#5'Width'#2'h'#9'OnKeyDown'#7#17'cityfilterKeyDown'#8'TabOrder' -+ +#2#1#0#0#7'TButton'#12'downloadcity'#4'Left'#3#249#0#6'Height'#2#25#3'Top'#2 -+ +'<'#5'Width'#3#192#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#24'Downl' -+ +'oad country details'#7'OnClick'#7#17'downloadcityClick'#8'TabOrder'#2#7#0#0 -+ +#7'TButton'#7'updcity'#4'Left'#2']'#6'Height'#2#25#3'Top'#2'<'#5'Width'#2'H' -+ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Update'#7'OnClick'#7#12'up' -+ +'dcityClick'#8'TabOrder'#2#5#0#0#7'TButton'#7'delcity'#4'Left'#3#169#0#6'Hei' -+ +'ght'#2#25#3'Top'#2'<'#5'Width'#2'H'#25'BorderSpacing.InnerBorder'#2#4#7'Cap' -+ +'tion'#6#6'Delete'#7'OnClick'#7#12'delcityClick'#8'TabOrder'#2#6#0#0#5'TEdit' -+ +#7'LocCode'#6'Cursor'#7#11'crHandPoint'#4'Left'#2#8#6'Height'#2#23#4'Hint'#6 -+ +#16'Designation Code'#3'Top'#2'<'#5'Width'#2'P'#5'Color'#7#9'clBtnFace'#7'On' -+ +'Click'#7#12'LocCodeClick'#14'ParentShowHint'#8#8'ReadOnly'#9#8'ShowHint'#9#8 -+ +'TabOrder'#2#8#0#0#7'TButton'#8'vicinity'#4'Left'#3#248#0#6'Height'#2#25#3'T' -+ +'op'#2#31#5'Width'#2'<'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Vic' -+ +'inity'#7'OnClick'#7#13'vicinityClick'#8'TabOrder'#2#4#0#0#5'TEdit'#17'vicin' -+ ,'ityrangeEdit'#4'Left'#3'S'#1#6'Height'#2#23#3'Top'#2'!'#5'Width'#2'8'#8'Tab' -+ +'Order'#2#9#0#0#7'TUpDown'#13'vicinityrange'#4'Left'#3#139#1#6'Height'#2#23#3 -+ +'Top'#2'!'#5'Width'#2#17#9'Associate'#7#17'vicinityrangeEdit'#3'Min'#2#0#3'M' -+ +'ax'#3#244#1#8'Position'#2#10#8'TabOrder'#2#10#4'Wrap'#8#0#0#0#9'TGroupBox'#8 -+ +'Latitude'#4'Left'#2#8#6'Height'#2'D'#3'Top'#2'm'#5'Width'#3#185#0#7'Caption' -+ +#6#8'Latitude'#12'ClientHeight'#2'5'#11'ClientWidth'#3#181#0#8'TabOrder'#2#1 -+ +#0#6'TLabel'#7'Label58'#4'Left'#2#4#6'Height'#2#14#3'Top'#2#4#5'Width'#2')'#7 -+ +'Caption'#6#6'Degree'#11'ParentColor'#8#0#0#6'TLabel'#7'Label59'#4'Left'#2'0' -+ +#6'Height'#2#14#3'Top'#2#4#5'Width'#2#23#7'Caption'#6#4'Min.'#11'ParentColor' -+ +#8#0#0#6'TLabel'#7'Label60'#4'Left'#2'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2 -+ +#24#7'Caption'#6#4'Sec.'#11'ParentColor'#8#0#0#9'TComboBox'#5'hemis'#4'Left' -+ +#2'p'#6'Height'#2#27#3'Top'#2#19#5'Width'#2'A'#16'AutoCompleteText'#11#20'cb' -+ +'actSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings' -+ +#1#6#5'North'#6#5'South'#0#8'OnChange'#7#12'latdegChange'#8'TabOrder'#2#3#4 -+ +'Text'#6#5'North'#0#0#9'TLongEdit'#6'latdeg'#4'Left'#2#4#6'Height'#2#23#4'Hi' -+ +'nt'#6#5'0..90'#3'Top'#2#20#5'Width'#2'!'#9'MaxLength'#2#2#14'ParentShowHint' -+ +#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Value'#2#0#8'MaxValue'#2'Z'#6'OnExit'#7#12 -+ +'latdegChange'#0#0#9'TLongEdit'#6'latmin'#4'Left'#2'0'#6'Height'#2#23#4'Hint' - +#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 -- +'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'lo' -- +'ngdegChange'#0#0#9'TLongEdit'#7'longsec'#4'Left'#2'P'#6'Height'#2#21#4'Hint' -- +#6#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 -- +'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'lo' -- +'ngdegChange'#0#0#0#9'TGroupBox'#8'Altitude'#4'Left'#3'x'#1#6'Height'#2'D'#3 -- +'Top'#2'm'#5'Width'#2'Q'#7'Caption'#6#8'Altitude'#12'ClientHeight'#2'5'#11'C' -- +'lientWidth'#2'M'#8'TabOrder'#2#3#0#6'TLabel'#7'Label70'#4'Left'#2#8#6'Heigh' -- +'t'#2#14#3'Top'#2#4#5'Width'#2'('#7'Caption'#6#6'Meters'#11'ParentColor'#8#0 -- +#0#10'TFloatEdit'#8'altmeter'#4'Left'#2#4#6'Height'#2#21#4'Hint'#6#11'-500..' -- +'15000'#3'Top'#2#20#5'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOr' -- +'der'#2#0#8'OnChange'#7#14'altmeterChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -- +'Decimals'#2#0#8'MinValue'#5#0#0#0#0#0#0#0#250#7#192#8'MaxValue'#5#0#0#0#0#0 -- +#0'`'#234#12'@'#6'Digits'#2#5#11'NumericType'#7#7'ntFixed'#0#0#0#9'TGroupBox' -- +#8'timezone'#4'Left'#2#8#6'Height'#2'I'#3'Top'#3#181#0#5'Width'#3#193#1#7'Ca' -- +'ption'#6#9'Time Zone'#12'ClientHeight'#2':'#11'ClientWidth'#3#189#1#8'TabOr' -- +'der'#2#4#0#9'TComboBox'#10'TZComboBox'#4'Left'#2#8#6'Height'#2#25#3'Top'#2 -- +#23#5'Width'#3#177#1#10'ItemHeight'#2#0#8'OnChange'#7#16'TZComboBoxChange'#5 -- +'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#9'TCheckBox'#9'CountryTZ'#4 -- +'Left'#2#8#6'Height'#2#21#3'Top'#2#1#5'Width'#2'}'#7'Caption'#6#16'Country T' -- +'imezone'#7'Checked'#9#8'OnChange'#7#15'CountryTZChange'#5'State'#7#9'cbChec' -- +'ked'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#7'Horizon' -- +#12'ClientHeight'#3'#'#2#11'ClientWidth'#3#220#1#0#9'TGroupBox'#9'GroupBox2' -- +#4'Left'#2#8#6'Height'#2'Y'#3'Top'#3#142#0#5'Width'#3#201#1#7'Caption'#6'(Wa' -- +'nt to track an object before it rise ?'#12'ClientHeight'#2'J'#11'ClientWidt' -- +'h'#3#197#1#8'TabOrder'#2#1#0#9'TCheckBox'#13'horizonopaque'#4'Left'#2#13#6 -- ,'Height'#2#21#3'Top'#2#24#5'Width'#3#198#0#7'Caption'#6#29'Show Object below' -- +' the horizon'#7'OnClick'#7#18'horizonopaqueClick'#8'TabOrder'#2#0#0#0#0#9'T' -- +'GroupBox'#9'GroupBox1'#4'Left'#2#8#6'Height'#2'y'#3'Top'#2#14#5'Width'#3#201 -- +#1#7'Caption'#6#13'Local Horizon'#12'ClientHeight'#2'j'#11'ClientWidth'#3#197 -- +#1#8'TabOrder'#2#0#0#6'TLabel'#6'hor_l1'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 -- +'@'#5'Width'#3#147#0#7'Caption'#6#26'Local Horizon File Name : '#11'ParentCo' -- +'lor'#8#0#0#9'TCheckBox'#14'displayhorizon'#4'Left'#2#13#6'Height'#2#21#3'To' -- +'p'#2#16#5'Width'#3#185#0#7'Caption'#6#30'Display the local horizon line'#7 -- +'OnClick'#7#19'displayhorizonClick'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#11 -- +'horizonfile'#4'Left'#3#197#0#6'Height'#2#21#3'Top'#2'8'#5'Width'#3#208#0#13 -- +'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidt' -- +'h'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#2#8'OnChange'#7#17 -- +'horizonfileChange'#0#0#9'TCheckBox'#11'fillhorizon'#4'Left'#3#221#0#6'Heigh' -- +'t'#2#21#3'Top'#2#16#5'Width'#3#141#0#7'Caption'#6#23'Fill with horizon colo' -- +'r'#7'OnClick'#7#16'fillhorizonClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#9'G' -- +'roupBox3'#4'Left'#2#8#6'Height'#2'y'#3'Top'#3#238#0#5'Width'#3#201#1#7'Capt' -- +'ion'#6'!Depression of the visible horizon'#12'ClientHeight'#2'j'#11'ClientW' -- +'idth'#3#197#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2 -- +'0'#3'Top'#2#16#5'Width'#3#159#1#8'AutoSize'#8#7'Caption'#6'|You live on a b' -- +'ig mountain near the ocean shore and you like to observe the distorded imag' -- +'e of the object below the horizon.'#11'ParentColor'#8#8'WordWrap'#9#0#0#9'T' -- +'CheckBox'#17'horizondepression'#4'Left'#2#13#6'Height'#2#21#3'Top'#2'H'#5'W' -- +'idth'#3#7#1#7'Caption'#6'(Draw the apparent depressed horizon line'#7'OnCli' -- +'ck'#7#22'horizondepressionClick'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#10'refr' -- +'action'#4'Left'#2#8#6'Height'#2'P'#3'Top'#3'n'#1#5'Width'#3#201#1#7'Caption' -- +#6#22'Atmospheric Refraction'#12'ClientHeight'#2'A'#11'ClientWidth'#3#197#1#8 -- +'TabOrder'#2#3#0#6'TLabel'#7'Label82'#4'Left'#2'-'#6'Height'#2#14#3'Top'#2#7 -- +#5'Width'#2'k'#7'Caption'#6#19'Pressure (millibar)'#11'ParentColor'#8#0#0#6 -- +'TLabel'#7'Label83'#4'Left'#3#245#0#6'Height'#2#14#3'Top'#2#7#5'Width'#2#127 -- +#7'Caption'#6#21'Temperature (Celsius)'#11'ParentColor'#8#0#0#10'TFloatEdit' -- +#8'pressure'#4'Left'#2'-'#6'Height'#2#21#4'Hint'#6#7'0..1500'#3'Top'#2#21#5 -- +'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7 -- +#14'pressureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#0#8'MinValu' -- +'e'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#128#187#9'@'#11'NumericT' -- +'ype'#7#7'ntFixed'#0#0#10'TFloatEdit'#11'temperature'#4'Left'#3#245#0#6'Heig' -- +'ht'#2#21#4'Hint'#6#9'-100..100'#3'Top'#2#21#5'Width'#2'A'#14'ParentShowHint' -- +#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#17'temperatureChange'#5'Value' -- +#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#200#5#192#8'MaxValue'#5#0 -- +#0#0#0#0#0#0#200#5'@'#11'NumericType'#7#7'ntFixed'#0#0#0#0#0#0#6'TPanel'#6'P' -- +'anel1'#4'Left'#2#1#6'Height'#2'2'#3'Top'#3'1'#2#5'Width'#3#225#1#7'Anchors' -- +#11#6'akLeft'#7'akRight'#8'akBottom'#0#12'ClientHeight'#2'2'#11'ClientWidth' -- +#3#225#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#169#0#6'Height'#2 -- +#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderS' -- +'pacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1 -- +#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#17#1#6'Height'#2#25#3'T' -- +'op'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing' -- +'.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'Tab' -- +'Order'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'y'#1#6'Height'#2#25#3'Top'#2 -- +#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inner' -- +'Border'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrd' -- +'er'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'G'#6'Height'#2#25#3'Top'#2#10#5 -- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnCl' -- +'ick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#15'TDownloadDialog'#15'Downlo' -- +'adDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9#15'ConfirmDownload'#9#4'left' -- +#3#128#0#3'top'#3'('#1#0#0#11'TOpenDialog'#11'OpenDialog1'#11'FilterIndex'#2 -- +#0#4'left'#3#128#0#3'top'#3'h'#1#0#0#0 -+ +'ShowHint'#9#8'TabOrder'#2#1#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#12'la' -+ +'tdegChange'#0#0#9'TLongEdit'#6'latsec'#4'Left'#2'P'#6'Height'#2#23#4'Hint'#6 -+ +#5'0..59'#3'Top'#2#20#5'Width'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8 -+ +'ShowHint'#9#8'TabOrder'#2#2#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#12'la' -+ +'tdegChange'#0#0#0#9'TGroupBox'#9'Longitude'#4'Left'#3#192#0#6'Height'#2'D'#3 -+ +'Top'#2'm'#5'Width'#3#185#0#7'Caption'#6#9'Longitude'#12'ClientHeight'#2'5' -+ +#11'ClientWidth'#3#181#0#8'TabOrder'#2#2#0#6'TLabel'#7'Label61'#4'Left'#2#4#6 -+ +'Height'#2#14#3'Top'#2#4#5'Width'#2')'#7'Caption'#6#6'Degree'#11'ParentColor' -+ +#8#0#0#6'TLabel'#7'Label62'#4'Left'#2'0'#6'Height'#2#14#3'Top'#2#4#5'Width'#2 -+ +#23#7'Caption'#6#4'Min.'#11'ParentColor'#8#0#0#6'TLabel'#7'Label63'#4'Left'#2 -+ +'P'#6'Height'#2#14#3'Top'#2#4#5'Width'#2#24#7'Caption'#6#4'Sec.'#11'ParentCo' -+ +'lor'#8#0#0#9'TComboBox'#4'long'#4'Left'#2'p'#6'Height'#2#27#3'Top'#2#19#5'W' -+ +'idth'#2'A'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight' -+ +#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#4'West'#6#4'East'#0#8'OnChange'#7 -+ +#13'longdegChange'#8'TabOrder'#2#3#4'Text'#6#4'East'#0#0#9'TLongEdit'#7'long' -+ +'deg'#4'Left'#2#4#6'Height'#2#23#4'Hint'#6#6'0..180'#3'Top'#2#20#5'Width'#2 -+ +'!'#9'MaxLength'#2#4#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#5'Va' -+ +'lue'#2#0#8'MaxValue'#3#180#0#6'OnExit'#7#13'longdegChange'#0#0#9'TLongEdit' -+ +#7'longmin'#4'Left'#2'0'#6'Height'#2#23#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Wid' -+ +'th'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1 -+ +#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'longdegChange'#0#0#9'TLongEdit' -+ +#7'longsec'#4'Left'#2'P'#6'Height'#2#23#4'Hint'#6#5'0..59'#3'Top'#2#20#5'Wid' -+ +'th'#2#25#9'MaxLength'#2#2#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 -+ +#5'Value'#2#0#8'MaxValue'#2';'#6'OnExit'#7#13'longdegChange'#0#0#0#9'TGroupB' -+ +'ox'#8'Altitude'#4'Left'#3'x'#1#6'Height'#2'D'#3'Top'#2'm'#5'Width'#2'Q'#7'C' -+ +'aption'#6#8'Altitude'#12'ClientHeight'#2'5'#11'ClientWidth'#2'M'#8'TabOrder' -+ +#2#3#0#6'TLabel'#7'Label70'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#4#5'Width'#2 -+ +'&'#7'Caption'#6#6'Meters'#11'ParentColor'#8#0#0#10'TFloatEdit'#8'altmeter'#4 -+ +'Left'#2#4#6'Height'#2#23#4'Hint'#6#11'-500..15000'#3'Top'#2#20#5'Width'#2'A' -+ +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#8'OnChange'#7#14'altmete' -+ +'rChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#0#8'MinValue'#5#0#0#0 -+ +#0#0#0#0#250#7#192#8'MaxValue'#5#0#0#0#0#0#0'`'#234#12'@'#6'Digits'#2#5#11'N' -+ +'umericType'#7#7'ntFixed'#0#0#0#9'TGroupBox'#8'timezone'#4'Left'#2#8#6'Heigh' -+ +'t'#2'I'#3'Top'#3#181#0#5'Width'#3#193#1#7'Caption'#6#9'Time Zone'#12'Client' -+ +'Height'#2':'#11'ClientWidth'#3#189#1#8'TabOrder'#2#4#0#9'TComboBox'#10'TZCo' -+ +'mboBox'#4'Left'#2#8#6'Height'#2#31#3'Top'#2#23#5'Width'#3#177#1#10'ItemHeig' -+ +'ht'#2#0#8'OnChange'#7#16'TZComboBoxChange'#5'Style'#7#14'csDropDownList'#8 -+ +'TabOrder'#2#0#0#0#9'TCheckBox'#9'CountryTZ'#4'Left'#2#8#6'Height'#2#22#3'To' -+ +'p'#2#1#5'Width'#2'{'#7'Caption'#6#16'Country Timezone'#7'Checked'#9#8'OnCha' -+ +'nge'#7#15'CountryTZChange'#5'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#0#0#9 -+ +'TTabSheet'#5'Page2'#7'Caption'#6#7'Horizon'#12'ClientHeight'#3#4#2#11'Clien' -+ +'tWidth'#3#218#1#0#9'TGroupBox'#9'GroupBox2'#4'Left'#2#8#6'Height'#2'Y'#3'To' -+ +'p'#3#142#0#5'Width'#3#201#1#7'Caption'#6'(Want to track an object before it' -+ +' rise ?'#12'ClientHeight'#2'J'#11'ClientWidth'#3#197#1#8'TabOrder'#2#1#0#9 -+ +'TCheckBox'#13'horizonopaque'#4'Left'#2#13#6'Height'#2#21#3'Top'#2#24#5'Widt' -+ ,'h'#3#198#0#7'Caption'#6#29'Show Object below the horizon'#7'OnClick'#7#18'h' -+ +'orizonopaqueClick'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 -+ +#8#6'Height'#2'y'#3'Top'#2#14#5'Width'#3#201#1#7'Caption'#6#13'Local Horizon' -+ +#12'ClientHeight'#2'j'#11'ClientWidth'#3#197#1#8'TabOrder'#2#0#0#6'TLabel'#6 -+ +'hor_l1'#4'Left'#2#13#6'Height'#2#14#3'Top'#2'@'#5'Width'#3#147#0#7'Caption' -+ +#6#26'Local Horizon File Name : '#11'ParentColor'#8#0#0#9'TCheckBox'#14'disp' -+ +'layhorizon'#4'Left'#2#13#6'Height'#2#21#3'Top'#2#16#5'Width'#3#185#0#7'Capt' -+ +'ion'#6#30'Display the local horizon line'#7'OnClick'#7#19'displayhorizonCli' -+ +'ck'#8'TabOrder'#2#0#0#0#13'TFileNameEdit'#11'horizonfile'#4'Left'#3#197#0#6 -+ +'Height'#2#21#3'Top'#2'8'#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterI' -+ +'ndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Tab' -+ +'Order'#2#2#8'OnChange'#7#17'horizonfileChange'#0#0#9'TCheckBox'#11'fillhori' -+ +'zon'#4'Left'#3#221#0#6'Height'#2#21#3'Top'#2#16#5'Width'#3#141#0#7'Caption' -+ +#6#23'Fill with horizon color'#7'OnClick'#7#16'fillhorizonClick'#8'TabOrder' -+ +#2#1#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#8#6'Height'#2'y'#3'Top'#3#238 -+ +#0#5'Width'#3#201#1#7'Caption'#6'!Depression of the visible horizon'#12'Clie' -+ +'ntHeight'#2'j'#11'ClientWidth'#3#197#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1' -+ +#4'Left'#2#13#6'Height'#2'0'#3'Top'#2#16#5'Width'#3#159#1#8'AutoSize'#8#7'Ca' -+ +'ption'#6'|You live on a big mountain near the ocean shore and you like to o' -+ +'bserve the distorded image of the object below the horizon.'#11'ParentColor' -+ +#8#8'WordWrap'#9#0#0#9'TCheckBox'#17'horizondepression'#4'Left'#2#13#6'Heigh' -+ +'t'#2#21#3'Top'#2'H'#5'Width'#3#7#1#7'Caption'#6'(Draw the apparent depresse' -+ +'d horizon line'#7'OnClick'#7#22'horizondepressionClick'#8'TabOrder'#2#0#0#0 -+ +#0#9'TGroupBox'#10'refraction'#4'Left'#2#8#6'Height'#2'P'#3'Top'#3'n'#1#5'Wi' -+ +'dth'#3#201#1#7'Caption'#6#22'Atmospheric Refraction'#12'ClientHeight'#2'A' -+ +#11'ClientWidth'#3#197#1#8'TabOrder'#2#3#0#6'TLabel'#7'Label82'#4'Left'#2'-' -+ +#6'Height'#2#14#3'Top'#2#7#5'Width'#2'k'#7'Caption'#6#19'Pressure (millibar)' -+ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label83'#4'Left'#3#245#0#6'Height'#2#14#3 -+ +'Top'#2#7#5'Width'#2#127#7'Caption'#6#21'Temperature (Celsius)'#11'ParentCol' -+ +'or'#8#0#0#10'TFloatEdit'#8'pressure'#4'Left'#2'-'#6'Height'#2#21#4'Hint'#6#7 -+ +'0..1500'#3'Top'#2#21#5'Width'#2'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'Tab' -+ +'Order'#2#0#8'OnChange'#7#14'pressureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +'Decimals'#2#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0 -+ +#128#187#9'@'#11'NumericType'#7#7'ntFixed'#0#0#10'TFloatEdit'#11'temperature' -+ +#4'Left'#3#245#0#6'Height'#2#21#4'Hint'#6#9'-100..100'#3'Top'#2#21#5'Width'#2 -+ +'A'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#17'temp' -+ +'eratureChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0 -+ +#200#5#192#8'MaxValue'#5#0#0#0#0#0#0#0#200#5'@'#11'NumericType'#7#7'ntFixed' -+ +#0#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#1#6'Height'#2'2'#3'Top'#3'1'#2#5 -+ +'Width'#3#225#1#7'Anchors'#11#6'akLeft'#7'akRight'#8'akBottom'#0#12'ClientHe' -+ +'ight'#2'2'#11'ClientWidth'#3#225#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4 -+ +'Left'#3#169#0#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTo' -+ +'p'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Defa' -+ +'ult'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left' -+ +#3#17#1#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'ak' -+ +'Right'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick' -+ +#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'y'#1 -+ +#6'Height'#2#25#3'Top'#2#10#5'Width'#2'S'#7'Anchors'#11#5'akTop'#7'akRight'#0 -+ +#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'Mod' -+ +'alResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'G'#6'Heig' -+ +'ht'#2#25#3'Top'#2#10#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Ca' -+ +'ption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#15'TDo' -+ +'wnloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9#15'Co' -+ +'nfirmDownload'#9#4'left'#3#128#0#3'top'#3'('#1#0#0#11'TOpenDialog'#11'OpenD' -+ +'ialog1'#11'FilterIndex'#2#0#4'left'#3#128#0#3'top'#3'h'#1#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_pictures.lfm skychart_3.2_up/skychart/pu_config_pictures.lfm ---- skychart_3.2/skychart/pu_config_pictures.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_pictures.lfm 2011-03-09 15:18:57.143092617 +0100 -@@ -1,5 +1,5 @@ - object f_config_pictures: Tf_config_pictures -- Left = 732 -+ Left = 483 - Height = 535 - Top = 127 - Width = 513 -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 485 -@@ -31,19 +31,18 @@ - Width = 511 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - OnPageChanged = PageControl1PageChanged - object Page1: TTabSheet - Caption = 'Objects' -- ClientHeight = 479 -- ClientWidth = 507 -+ ClientHeight = 448 -+ ClientWidth = 505 - object Label50: TLabel - Left = 2 - Height = 14 - Top = 2 -- Width = 200 -+ Width = 193 - Caption = 'Display image of cataloged objects' - ParentColor = False - end -@@ -51,7 +50,7 @@ - Left = 15 - Height = 14 - Top = 46 -- Width = 91 -+ Width = 87 - Caption = 'Image Directory' - ParentColor = False - end -@@ -163,30 +162,29 @@ - end - object ShowImagesBox: TCheckBox - Left = 31 -- Height = 21 -+ Height = 22 - Top = 375 -- Width = 215 -+ Width = 207 - Caption = 'Show object pictures on the chart' - OnClick = ShowImagesBoxClick - TabOrder = 3 - end - object imgpath: TDirectoryEdit - Left = 150 -- Height = 21 -+ Height = 23 - Top = 39 - Width = 264 - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - OnChange = imgpathChange - end - end - object Page2: TTabSheet - Caption = 'Background' -- ClientHeight = 479 -- ClientWidth = 507 -+ ClientHeight = 448 -+ ClientWidth = 505 - object Label270: TLabel - Left = 0 - Height = 14 -@@ -289,15 +287,14 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - OnChange = backimgChange - end - end - object Page3: TTabSheet - Caption = 'DSS - Realsky' -- ClientHeight = 479 -- ClientWidth = 507 -+ ClientHeight = 448 -+ ClientWidth = 505 - object GroupBox3: TGroupBox - Left = 1 - Height = 355 -diff -ur skychart_3.2/skychart/pu_config_pictures.lrs skychart_3.2_up/skychart/pu_config_pictures.lrs ---- skychart_3.2/skychart/pu_config_pictures.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_pictures.lrs 2011-03-09 15:18:57.114096178 +0100 -@@ -1,132 +1,132 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_pictures','FORMDATA',[ -- 'TPF0'#18'Tf_config_pictures'#17'f_config_pictures'#4'Left'#3#220#2#6'Height' -+ 'TPF0'#18'Tf_config_pictures'#17'f_config_pictures'#4'Left'#3#227#1#6'Height' - +#3#23#2#3'Top'#2#127#5'Width'#3#1#2#13'ActiveControl'#7#9'MainPanel'#11'Bord' - +'erStyle'#7#12'bsToolWindow'#7'Caption'#6#8'Pictures'#12'ClientHeight'#3#23#2 - +#11'ClientWidth'#3#1#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnC' - +'reate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormSh' -- +'ow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Heigh' -- +'t'#3#229#1#3'Top'#2#0#5'Width'#3#1#2#5'Align'#7#8'alClient'#12'ClientHeight' -- +#3#229#1#11'ClientWidth'#3#1#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageC' -- +'ontrol'#12'PageControl1'#4'Left'#2#1#6'Height'#3#227#1#3'Top'#2#1#5'Width'#3 -- +#255#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'TabI' -- +'ndex'#2#0#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0 -- +#9'TTabSheet'#5'Page1'#7'Caption'#6#7'Objects'#12'ClientHeight'#3#223#1#11'C' -- +'lientWidth'#3#251#1#0#6'TLabel'#7'Label50'#4'Left'#2#2#6'Height'#2#14#3'Top' -- +#2#2#5'Width'#3#200#0#7'Caption'#6'"Display image of cataloged objects'#11'P' -- +'arentColor'#8#0#0#6'TLabel'#8'Label264'#4'Left'#2#15#6'Height'#2#14#3'Top'#2 -- +'.'#5'Width'#2'['#7'Caption'#6#15'Image Directory'#11'ParentColor'#8#0#0#6'T' -- +'Label'#7'nimages'#4'Left'#2'='#6'Height'#2'5'#3'Top'#2'P'#5'Width'#3'a'#1#8 -- +'AutoSize'#8#7'Caption'#6#7'nimages'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'T' -- +'Panel'#13'ProgressPanel'#4'Left'#2#8#6'Height'#2'Y'#3'Top'#2'E'#5'Width'#3 -- +#153#1#12'ClientHeight'#2'Y'#11'ClientWidth'#3#153#1#8'TabOrder'#2#4#7'Visib' -- +'le'#8#0#6'TLabel'#11'ProgressCat'#4'Left'#3#187#0#6'Height'#2#14#3'Top'#2#8 -- +#5'Width'#2'!'#7'Caption'#6#5'Other'#11'ParentColor'#8#0#0#12'TProgressBar' -- +#12'ProgressBar1'#4'Left'#2#24#6'Height'#2#17#3'Top'#2'('#5'Width'#3'i'#1#8 -- +'TabOrder'#2#0#0#0#0#7'TButton'#10'ScanImages'#4'Left'#3#133#0#6'Height'#2#25 -- +#3'Top'#3#133#0#5'Width'#3#156#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption' -- +#6#14'Scan directory'#7'OnClick'#7#15'ScanImagesClick'#8'TabOrder'#2#1#0#0#6 -- +'TPanel'#7'Panel11'#4'Left'#2#16#6'Height'#3#183#0#3'Top'#3#168#0#5'Width'#3 -- +#145#1#12'ClientHeight'#3#183#0#11'ClientWidth'#3#145#1#8'TabOrder'#2#2#0#6 -- +'TLabel'#8'Label266'#4'Left'#2' '#6'Height'#2#14#3'Top'#2' '#5'Width'#2'>'#7 -- +'Caption'#6#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label268'#4'Lef' -- +'t'#2'('#6'Height'#2#14#3'Top'#2'`'#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11 -- +'ParentColor'#8#0#0#9'TTrackBar'#9'ImgLumBar'#4'Left'#2'x'#6'Height'#2'-'#3 -- +'Top'#2#24#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnCh' -- +'ange'#7#15'ImgLumBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0 -- +#0#0#9'TTrackBar'#14'ImgContrastBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2'X' -- +#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#20 -- +'ImgContrastBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#7 -- +'TButton'#8'ResetLum'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#3#147#0#5'Width' -- +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Reset'#7'OnClick'#7#13 -- +'ResetLumClick'#8'TabOrder'#2#2#0#0#0#9'TCheckBox'#13'ShowImagesBox'#4'Left' -- +#2#31#6'Height'#2#21#3'Top'#3'w'#1#5'Width'#3#215#0#7'Caption'#6'!Show objec' -- +'t pictures on the chart'#7'OnClick'#7#18'ShowImagesBoxClick'#8'TabOrder'#2#3 -- +#0#0#14'TDirectoryEdit'#7'imgpath'#4'Left'#3#150#0#6'Height'#2#21#3'Top'#2 -- +''''#5'Width'#3#8#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9 -- +'MaxLength'#2#0#8'TabOrder'#2#0#8'OnChange'#7#13'imgpathChange'#0#0#0#9'TTab' -- +'Sheet'#5'Page2'#7'Caption'#6#10'Background'#12'ClientHeight'#3#223#1#11'Cli' -- +'entWidth'#3#251#1#0#6'TLabel'#8'Label270'#4'Left'#2#0#6'Height'#2#14#3'Top' -- +#2#0#5'Width'#2'o'#7'Caption'#6#18'Background Picture'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label271'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#22#5'Width'#2'/'#7 -- +'Caption'#6#9'FITS File'#11'ParentColor'#8#0#0#6'TLabel'#11'backimginfo'#4'L' -- +'eft'#2#8#6'Height'#2#14#3'Top'#2'/'#5'Width'#2#9#7'Caption'#6#2' '#11'Pare' -- +'ntColor'#8#0#0#6'TImage'#6'Image1'#4'Left'#2#0#6'Height'#3'9'#1#3'Top'#2'{' -- +#5'Width'#3#225#1#7'Stretch'#9#0#0#9'TCheckBox'#11'ShowBackImg'#4'Left'#2#8#6 -- +'Height'#2#21#3'Top'#2'P'#5'Width'#2'z'#7'Caption'#6#17'Show this picture'#7 -- +'OnClick'#7#16'ShowBackImgClick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel1'#4'L' -- +'eft'#3#176#0#6'Height'#2'0'#3'Top'#2'C'#5'Width'#3'1'#1#12'ClientHeight'#2 -- +'0'#11'ClientWidth'#3'1'#1#8'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2'6' -- +#6'Height'#2#14#3'Top'#2#6#5'Width'#2'>'#7'Caption'#6#10'Luminosity'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#6 -- +#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11'ParentColor'#8#0#0#9'TTrackBar'#10 -- +'ImgLumBar2'#4'Left'#2#8#6'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequ' -- +'ency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#16'ImgLumBar2Change'#8'Pag' -- +'eSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0#0#0#9'TTrackBar'#15'ImgContrastB' -- +'ar2'#4'Left'#3#152#0#6'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequenc' -- ,'y'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#21'ImgContrastBar2Change'#8'P' -- +'ageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#0#13'TFileNameEdit'#7'back' -- +'img'#4'Left'#2'_'#6'Height'#2#21#3'Top'#2#15#5'Width'#3'h'#1#13'DialogOptio' -- +'ns'#11#0#6'Filter'#6#16'FITS Files|*.fit'#11'FilterIndex'#2#0#15'HideDirect' -- +'ories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder' -- +#2#0#8'OnChange'#7#13'backimgChange'#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6 -- +#13'DSS - Realsky'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#251#1#0#9'TGro' -- +'upBox'#9'GroupBox3'#4'Left'#2#1#6'Height'#3'c'#1#3'Top'#2'e'#5'Width'#3#225 -- +#1#7'Caption'#6#9'RealSky'#194#174#12'ClientHeight'#3'T'#1#11'ClientWidth'#3 -- +#221#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label72'#4'Left'#2#8#6'Height'#2#14#3'T' -- +'op'#2'd'#5'Width'#2'L'#7'Caption'#6#15'Auxiliary files'#11'ParentColor'#8#0 -- +#0#6'TLabel'#7'Label73'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#152#0#5'Width'#2 -- +'g'#7'Caption'#6#17'Data Files, CDrom'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' -- +'el74'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#196#0#5'Width'#2'Q'#7'Caption'#6 -- +#14'temporary file'#11'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#3#160 -- +#1#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2'"'#7'Caption'#6#6'pixels'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#7'Label77'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#3 -- +'4'#1#5'Width'#2'*'#7'Caption'#6#6'MBytes'#11'ParentColor'#8#0#0#5'TEdit'#10 -- +'realskydir'#4'Left'#3#196#0#6'Height'#2#21#3'Top'#2'\'#5'Width'#3#169#0#8'O' -- +'nChange'#7#16'realskydirChange'#8'TabOrder'#2#3#4'Text'#6#12'cat\RealSky\'#0 -- +#0#5'TEdit'#12'realskydrive'#4'Left'#3#196#0#6'Height'#2#21#3'Top'#3#144#0#5 -- +'Width'#3#169#0#8'OnChange'#7#18'realskydriveChange'#8'TabOrder'#2#4#4'Text' -- +#6#3'X:\'#0#0#5'TEdit'#11'realskyfile'#4'Left'#3#196#0#6'Height'#2#21#3'Top' -- +#3#188#0#5'Width'#3#169#0#8'OnChange'#7#17'realskyfileChange'#8'TabOrder'#2#5 -- +#4'Text'#6#16'images\$TEMP.FIT'#0#0#9'TCheckBox'#12'RealSkyNorth'#4'Left'#2#8 -- +#6'Height'#2#21#3'Top'#2#26#5'Width'#2'f'#7'Caption'#6#13'RealSky North'#7'O' -- +'nClick'#7#17'RealSkyNorthClick'#8'TabOrder'#2#0#0#0#9'TCheckBox'#12'RealSky' -- +'South'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'>'#5'Width'#2'h'#7'Caption'#6#13 -- +'RealSky South'#7'OnClick'#7#17'RealSkySouthClick'#8'TabOrder'#2#1#0#0#9'TCh' -- +'eckBox'#8'DSS102CD'#4'Left'#3#184#0#6'Height'#2#21#3'Top'#2#26#5'Width'#2'\' -- +#7'Caption'#6#10'102 CD DSS'#7'OnClick'#7#13'DSS102CDClick'#8'TabOrder'#2#2#0 -- +#0#9'TCheckBox'#12'usesubsample'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#16#1#5 -- +'Width'#3#245#0#7'Caption'#6'&Use subsampling to limit image size to'#7'Chec' -- +'ked'#9#7'OnClick'#7#17'usesubsampleClick'#5'State'#7#9'cbChecked'#8'TabOrde' -- +'r'#2#7#0#0#9'TCheckBox'#8'reallist'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#240 -- +#0#5'Width'#3#142#0#7'Caption'#6#22'Select plate from list'#7'Checked'#9#7'O' -- +'nClick'#7#13'reallistClick'#5'State'#7#9'cbChecked'#8'TabOrder'#2#6#0#0#9'T' -- +'LongEdit'#10'realskymax'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#3#12#1#5'Widt' -- +'h'#2'A'#8'TabOrder'#2#8#8'OnChange'#7#16'realskymaxChange'#5'Value'#2#0#0#0 -- +#9'TLongEdit'#9'realskymb'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#3'0'#1#5'Wid' -- +'th'#2'A'#5'Color'#7#9'clBtnFace'#8'ReadOnly'#9#8'TabOrder'#2#9#5'Value'#2#0 -- +#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#1#6'Height'#2'U'#3'Top'#2#8#5'Wid' -- +'th'#3#225#1#7'Caption'#6#10'Online DSS'#12'ClientHeight'#2'F'#11'ClientWidt' -- +'h'#3#221#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'OnlineDSS'#4'Left'#2#8#6'Height' -- +#2#21#3'Top'#2#20#5'Width'#3#220#0#7'Caption'#6'!Use online DSS instead of R' -- +'ealSky'#8'OnChange'#7#15'OnlineDSSChange'#8'TabOrder'#2#0#0#0#9'TComboBox' -- +#13'OnlineDSSList'#4'Left'#3'$'#1#6'Height'#2#23#3'Top'#2#20#5'Width'#3#176#0 -- +#10'ItemHeight'#2#0#8'OnSelect'#7#19'OnlineDSSListChange'#8'TabOrder'#2#1#4 -- +'Text'#6#13'OnlineDSSList'#0#0#0#0#0#0#6'TPanel'#6'Panel2'#4'Left'#2#0#6'Hei' -- +'ght'#2'2'#3'Top'#3#229#1#5'Width'#3#1#2#5'Align'#7#8'alBottom'#12'ClientHei' -- +'ght'#2'2'#11'ClientWidth'#3#1#2#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'L' -- +'eft'#3#216#0#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop' -- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default' -- +#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'8' -- +#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight' -- +#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'B' -- +'utton2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#152#1#6'He' -- +'ight'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25 -- +'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalR' -- +'esult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#2'x'#6'Height' -- +#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Captio' -- +'n'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2#3#0#0#0#6'TTimer' -- +#11'ImageTimer1'#7'Enabled'#8#8'Interval'#3#244#1#7'OnTimer'#7#16'ImageTimer' -- +'1Timer'#4'left'#3#208#1#3'top'#2#24#0#0#0 -+ +'ow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Hei' -+ +'ght'#3#229#1#3'Top'#2#0#5'Width'#3#1#2#5'Align'#7#8'alClient'#12'ClientHeig' -+ +'ht'#3#229#1#11'ClientWidth'#3#1#2#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TP' -+ +'ageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#227#1#3'Top'#2#1#5'Wid' -+ +'th'#3#255#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex'#2#0 -+ +#8'TabOrder'#2#0#13'OnPageChanged'#7#23'PageControl1PageChanged'#0#9'TTabShe' -+ +'et'#5'Page1'#7'Caption'#6#7'Objects'#12'ClientHeight'#3#192#1#11'ClientWidt' -+ +'h'#3#249#1#0#6'TLabel'#7'Label50'#4'Left'#2#2#6'Height'#2#14#3'Top'#2#2#5'W' -+ +'idth'#3#193#0#7'Caption'#6'"Display image of cataloged objects'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#8'Label264'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'.'#5 -+ +'Width'#2'W'#7'Caption'#6#15'Image Directory'#11'ParentColor'#8#0#0#6'TLabel' -+ +#7'nimages'#4'Left'#2'='#6'Height'#2'5'#3'Top'#2'P'#5'Width'#3'a'#1#8'AutoSi' -+ +'ze'#8#7'Caption'#6#7'nimages'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TPanel' -+ +#13'ProgressPanel'#4'Left'#2#8#6'Height'#2'Y'#3'Top'#2'E'#5'Width'#3#153#1#12 -+ +'ClientHeight'#2'Y'#11'ClientWidth'#3#153#1#8'TabOrder'#2#4#7'Visible'#8#0#6 -+ +'TLabel'#11'ProgressCat'#4'Left'#3#187#0#6'Height'#2#14#3'Top'#2#8#5'Width'#2 -+ +'!'#7'Caption'#6#5'Other'#11'ParentColor'#8#0#0#12'TProgressBar'#12'Progress' -+ +'Bar1'#4'Left'#2#24#6'Height'#2#17#3'Top'#2'('#5'Width'#3'i'#1#8'TabOrder'#2 -+ +#0#0#0#0#7'TButton'#10'ScanImages'#4'Left'#3#133#0#6'Height'#2#25#3'Top'#3 -+ +#133#0#5'Width'#3#156#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#14'Sc' -+ +'an directory'#7'OnClick'#7#15'ScanImagesClick'#8'TabOrder'#2#1#0#0#6'TPanel' -+ +#7'Panel11'#4'Left'#2#16#6'Height'#3#183#0#3'Top'#3#168#0#5'Width'#3#145#1#12 -+ +'ClientHeight'#3#183#0#11'ClientWidth'#3#145#1#8'TabOrder'#2#2#0#6'TLabel'#8 -+ +'Label266'#4'Left'#2' '#6'Height'#2#14#3'Top'#2' '#5'Width'#2'>'#7'Caption'#6 -+ +#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label268'#4'Left'#2'('#6'H' -+ +'eight'#2#14#3'Top'#2'`'#5'Width'#2'2'#7'Caption'#6#8'Contrast'#11'ParentCol' -+ +'or'#8#0#0#9'TTrackBar'#9'ImgLumBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2#24 -+ +#5'Width'#3#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#15 -+ +'ImgLumBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#0#0#0#9'TTra' -+ +'ckBar'#14'ImgContrastBar'#4'Left'#2'x'#6'Height'#2'-'#3'Top'#2'X'#5'Width'#3 -+ +#222#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2#156#8'OnChange'#7#20'ImgContras' -+ +'tBarChange'#8'PageSize'#2#5#8'Position'#2#0#8'TabOrder'#2#1#0#0#7'TButton'#8 -+ +'ResetLum'#4'Left'#3#191#0#6'Height'#2#25#3'Top'#3#147#0#5'Width'#2'K'#25'Bo' -+ +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Reset'#7'OnClick'#7#13'ResetLum' -+ +'Click'#8'TabOrder'#2#2#0#0#0#9'TCheckBox'#13'ShowImagesBox'#4'Left'#2#31#6 -+ +'Height'#2#22#3'Top'#3'w'#1#5'Width'#3#207#0#7'Caption'#6'!Show object pictu' -+ +'res on the chart'#7'OnClick'#7#18'ShowImagesBoxClick'#8'TabOrder'#2#3#0#0#14 -+ +'TDirectoryEdit'#7'imgpath'#4'Left'#3#150#0#6'Height'#2#23#3'Top'#2''''#5'Wi' -+ +'dth'#3#8#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrde' -+ +'r'#2#0#8'OnChange'#7#13'imgpathChange'#0#0#0#9'TTabSheet'#5'Page2'#7'Captio' -+ +'n'#6#10'Background'#12'ClientHeight'#3#192#1#11'ClientWidth'#3#249#1#0#6'TL' -+ +'abel'#8'Label270'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'o'#7'Cap' -+ +'tion'#6#18'Background Picture'#11'ParentColor'#8#0#0#6'TLabel'#8'Label271'#4 -+ +'Left'#2#8#6'Height'#2#14#3'Top'#2#22#5'Width'#2'/'#7'Caption'#6#9'FITS File' -+ +#11'ParentColor'#8#0#0#6'TLabel'#11'backimginfo'#4'Left'#2#8#6'Height'#2#14#3 -+ +'Top'#2'/'#5'Width'#2#9#7'Caption'#6#2' '#11'ParentColor'#8#0#0#6'TImage'#6 -+ +'Image1'#4'Left'#2#0#6'Height'#3'9'#1#3'Top'#2'{'#5'Width'#3#225#1#7'Stretch' -+ +#9#0#0#9'TCheckBox'#11'ShowBackImg'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'P'#5 -+ +'Width'#2'z'#7'Caption'#6#17'Show this picture'#7'OnClick'#7#16'ShowBackImgC' -+ +'lick'#8'TabOrder'#2#1#0#0#6'TPanel'#6'Panel1'#4'Left'#3#176#0#6'Height'#2'0' -+ +#3'Top'#2'C'#5'Width'#3'1'#1#12'ClientHeight'#2'0'#11'ClientWidth'#3'1'#1#8 -+ +'TabOrder'#2#2#0#6'TLabel'#6'Label1'#4'Left'#2'6'#6'Height'#2#14#3'Top'#2#6#5 -+ +'Width'#2'>'#7'Caption'#6#10'Luminosity'#11'ParentColor'#8#0#0#6'TLabel'#6'L' -+ +'abel2'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#6#5'Width'#2'2'#7'Caption'#6 -+ +#8'Contrast'#11'ParentColor'#8#0#0#9'TTrackBar'#10'ImgLumBar2'#4'Left'#2#8#6 -+ +'Height'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequency'#2#5#3'Max'#2'd'#3'Mi' -+ +'n'#2#156#8'OnChange'#7#16'ImgLumBar2Change'#8'PageSize'#2#5#8'Position'#2#0 -+ +#8'TabOrder'#2#0#0#0#9'TTrackBar'#15'ImgContrastBar2'#4'Left'#3#152#0#6'Heig' -+ +'ht'#2#27#3'Top'#2#20#5'Width'#3#140#0#9'Frequency'#2#5#3'Max'#2'd'#3'Min'#2 -+ ,#156#8'OnChange'#7#21'ImgContrastBar2Change'#8'PageSize'#2#5#8'Position'#2#0 -+ +#8'TabOrder'#2#1#0#0#0#13'TFileNameEdit'#7'backimg'#4'Left'#2'_'#6'Height'#2 -+ +#21#3'Top'#2#15#5'Width'#3'h'#1#13'DialogOptions'#11#0#6'Filter'#6#16'FITS F' -+ +'iles|*.fit'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9 -+ +'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#13'backimgChange'#0#0#0#9'TTab' -+ +'Sheet'#5'Page3'#7'Caption'#6#13'DSS - Realsky'#12'ClientHeight'#3#192#1#11 -+ +'ClientWidth'#3#249#1#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#1#6'Height'#3'c' -+ +#1#3'Top'#2'e'#5'Width'#3#225#1#7'Caption'#6#9'RealSky'#194#174#12'ClientHei' -+ +'ght'#3'T'#1#11'ClientWidth'#3#221#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label72'#4 -+ +'Left'#2#8#6'Height'#2#14#3'Top'#2'd'#5'Width'#2'L'#7'Caption'#6#15'Auxiliar' -+ +'y files'#11'ParentColor'#8#0#0#6'TLabel'#7'Label73'#4'Left'#2#8#6'Height'#2 -+ +#14#3'Top'#3#152#0#5'Width'#2'g'#7'Caption'#6#17'Data Files, CDrom'#11'Paren' -+ +'tColor'#8#0#0#6'TLabel'#7'Label74'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#196#0 -+ +#5'Width'#2'Q'#7'Caption'#6#14'temporary file'#11'ParentColor'#8#0#0#6'TLabe' -+ +'l'#7'Label75'#4'Left'#3#160#1#6'Height'#2#14#3'Top'#3#16#1#5'Width'#2'"'#7 -+ +'Caption'#6#6'pixels'#11'ParentColor'#8#0#0#6'TLabel'#7'Label77'#4'Left'#3 -+ +#160#1#6'Height'#2#14#3'Top'#3'4'#1#5'Width'#2'*'#7'Caption'#6#6'MBytes'#11 -+ +'ParentColor'#8#0#0#5'TEdit'#10'realskydir'#4'Left'#3#196#0#6'Height'#2#21#3 -+ +'Top'#2'\'#5'Width'#3#169#0#8'OnChange'#7#16'realskydirChange'#8'TabOrder'#2 -+ +#3#4'Text'#6#12'cat\RealSky\'#0#0#5'TEdit'#12'realskydrive'#4'Left'#3#196#0#6 -+ +'Height'#2#21#3'Top'#3#144#0#5'Width'#3#169#0#8'OnChange'#7#18'realskydriveC' -+ +'hange'#8'TabOrder'#2#4#4'Text'#6#3'X:\'#0#0#5'TEdit'#11'realskyfile'#4'Left' -+ +#3#196#0#6'Height'#2#21#3'Top'#3#188#0#5'Width'#3#169#0#8'OnChange'#7#17'rea' -+ +'lskyfileChange'#8'TabOrder'#2#5#4'Text'#6#16'images\$TEMP.FIT'#0#0#9'TCheck' -+ +'Box'#12'RealSkyNorth'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#26#5'Width'#2'f'#7 -+ +'Caption'#6#13'RealSky North'#7'OnClick'#7#17'RealSkyNorthClick'#8'TabOrder' -+ +#2#0#0#0#9'TCheckBox'#12'RealSkySouth'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'>' -+ +#5'Width'#2'h'#7'Caption'#6#13'RealSky South'#7'OnClick'#7#17'RealSkySouthCl' -+ +'ick'#8'TabOrder'#2#1#0#0#9'TCheckBox'#8'DSS102CD'#4'Left'#3#184#0#6'Height' -+ +#2#21#3'Top'#2#26#5'Width'#2'\'#7'Caption'#6#10'102 CD DSS'#7'OnClick'#7#13 -+ +'DSS102CDClick'#8'TabOrder'#2#2#0#0#9'TCheckBox'#12'usesubsample'#4'Left'#2#8 -+ +#6'Height'#2#21#3'Top'#3#16#1#5'Width'#3#245#0#7'Caption'#6'&Use subsampling' -+ +' to limit image size to'#7'Checked'#9#7'OnClick'#7#17'usesubsampleClick'#5 -+ +'State'#7#9'cbChecked'#8'TabOrder'#2#7#0#0#9'TCheckBox'#8'reallist'#4'Left'#2 -+ +#8#6'Height'#2#21#3'Top'#3#240#0#5'Width'#3#142#0#7'Caption'#6#22'Select pla' -+ +'te from list'#7'Checked'#9#7'OnClick'#7#13'reallistClick'#5'State'#7#9'cbCh' -+ +'ecked'#8'TabOrder'#2#6#0#0#9'TLongEdit'#10'realskymax'#4'Left'#3'P'#1#6'Hei' -+ +'ght'#2#21#3'Top'#3#12#1#5'Width'#2'A'#8'TabOrder'#2#8#8'OnChange'#7#16'real' -+ +'skymaxChange'#5'Value'#2#0#0#0#9'TLongEdit'#9'realskymb'#4'Left'#3'P'#1#6'H' -+ +'eight'#2#21#3'Top'#3'0'#1#5'Width'#2'A'#5'Color'#7#9'clBtnFace'#8'ReadOnly' -+ +#9#8'TabOrder'#2#9#5'Value'#2#0#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#1#6 -+ +'Height'#2'U'#3'Top'#2#8#5'Width'#3#225#1#7'Caption'#6#10'Online DSS'#12'Cli' -+ +'entHeight'#2'F'#11'ClientWidth'#3#221#1#8'TabOrder'#2#1#0#9'TCheckBox'#9'On' -+ +'lineDSS'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#20#5'Width'#3#220#0#7'Caption' -+ +#6'!Use online DSS instead of RealSky'#8'OnChange'#7#15'OnlineDSSChange'#8'T' -+ +'abOrder'#2#0#0#0#9'TComboBox'#13'OnlineDSSList'#4'Left'#3'$'#1#6'Height'#2 -+ +#23#3'Top'#2#20#5'Width'#3#176#0#10'ItemHeight'#2#0#8'OnSelect'#7#19'OnlineD' -+ +'SSListChange'#8'TabOrder'#2#1#4'Text'#6#13'OnlineDSSList'#0#0#0#0#0#0#6'TPa' -+ +'nel'#6'Panel2'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#229#1#5'Width'#3#1#2#5'A' -+ +'lign'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#1#2#8'TabOrder' -+ +#2#1#0#7'TButton'#7'Button1'#4'Left'#3#216#0#6'Height'#2#25#3'Top'#2#11#5'Wi' -+ +'dth'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder' -+ +#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0 -+ +#7'TButton'#7'Button2'#4'Left'#3'8'#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2 -+ +'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7 -+ +'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TBu' -+ +'tton'#7'Button3'#4'Left'#3#152#1#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7 -+ +'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cance' -+ +'l'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButt' -+ +'on'#7'Button4'#4'Left'#2'x'#6'Height'#2#25#3'Top'#2#11#5'Width'#2'K'#7'Anch' -+ +'ors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4C' -+ +'lick'#8'TabOrder'#2#3#0#0#0#6'TTimer'#11'ImageTimer1'#7'Enabled'#8#8'Interv' -+ +'al'#3#244#1#7'OnTimer'#7#16'ImageTimer1Timer'#4'left'#3#208#1#3'top'#2#24#0 -+ +#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_solsys.lfm skychart_3.2_up/skychart/pu_config_solsys.lfm ---- skychart_3.2/skychart/pu_config_solsys.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_solsys.lfm 2011-03-09 15:18:57.149091880 +0100 -@@ -1,9 +1,9 @@ - object f_config_solsys: Tf_config_solsys -- Left = 709 -+ Left = 488 - Height = 536 -- Top = 72 -+ Top = 69 - Width = 503 -- ActiveControl = planetdir -+ ActiveControl = MainPanel - BorderStyle = bsToolWindow - Caption = 'Solar System' - ClientHeight = 536 -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 486 -@@ -31,18 +31,17 @@ - Width = 501 - ActivePage = Page1 - Align = alClient -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Page1' -- ClientHeight = 480 -- ClientWidth = 497 -+ ClientHeight = 449 -+ ClientWidth = 495 - object Label12: TLabel - Left = 7 - Height = 14 - Top = 17 -- Width = 122 -+ Width = 114 - Caption = 'Solar System Setting' - ParentColor = False - end -@@ -50,7 +49,7 @@ - Left = 40 - Height = 14 - Top = 64 -- Width = 64 -+ Width = 61 - Caption = 'Data Files :' - ParentColor = False - end -@@ -58,7 +57,7 @@ - Left = 62 - Height = 14 - Top = 280 -- Width = 336 -+ Width = 326 - Caption = 'Uncheck to avoid double labeling with minor planet 134340' - ParentColor = False - end -@@ -89,21 +88,20 @@ - end - object planetdir: TDirectoryEdit - Left = 182 -- Height = 21 -+ Height = 23 - Top = 55 - Width = 224 - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - OnChange = PlanetDirChange - end - object CheckBoxPluto: TCheckBox - Left = 40 -- Height = 21 -+ Height = 22 - Top = 248 -- Width = 119 -+ Width = 114 - Caption = 'Pluto is a planet.' - OnChange = CheckBoxPlutoChange - TabOrder = 2 -@@ -111,8 +109,8 @@ - end - object Page2: TTabSheet - Caption = 'Page2' -- ClientHeight = 480 -- ClientWidth = 497 -+ ClientHeight = 449 -+ ClientWidth = 495 - object Label5: TLabel - Left = 0 - Height = 14 -@@ -324,6 +322,14 @@ - ClientHeight = 65 - ClientWidth = 329 - TabOrder = 7 -+ object LabelXplanetBox: TLabel -+ Left = 15 -+ Height = 14 -+ Top = 2 -+ Width = 82 -+ Caption = 'LabelXplanetBox' -+ ParentColor = False -+ end - object XplanetBtn: TBitBtn - Left = 286 - Height = 26 -@@ -390,20 +396,12 @@ - OnClick = UseXplanetClick - TabOrder = 2 - end -- object LabelXplanetBox: TLabel -- Left = 15 -- Height = 14 -- Top = 2 -- Width = 82 -- Caption = 'LabelXplanetBox' -- ParentColor = False -- end - end - end - object Page3: TTabSheet - Caption = 'Page3' -- ClientHeight = 480 -- ClientWidth = 497 -+ ClientHeight = 449 -+ ClientWidth = 495 - object ComPageControl: TPageControl - Left = -3 - Height = 429 -@@ -414,8 +412,8 @@ - TabOrder = 0 - object comsetting: TTabSheet - Caption = 'General Setting' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 3 - object GroupBox13: TGroupBox - Left = 9 -@@ -532,8 +530,8 @@ - end - object comload: TTabSheet - Caption = 'Load MPC File' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 1 - object Label232: TLabel - Left = 15 -@@ -563,8 +561,8 @@ - TabOrder = 1 - object TabSheet1: TTabSheet - Caption = 'Load MPC format file' -- ClientHeight = 75 -- ClientWidth = 432 -+ ClientHeight = 69 -+ ClientWidth = 430 - object Label2: TLabel - Left = 13 - Height = 14 -@@ -586,8 +584,8 @@ - end - object TabSheet2: TTabSheet - Caption = 'Or use a local file :' -- ClientHeight = 75 -- ClientWidth = 432 -+ ClientHeight = 69 -+ ClientWidth = 430 - object comfile: TFileNameEdit - Left = 13 - Height = 20 -@@ -599,7 +597,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - end - object Loadcom: TButton -@@ -617,8 +614,8 @@ - end - object comdelete: TTabSheet - Caption = 'Data Maintenance' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 3 - object Label238: TLabel - Left = 8 -@@ -699,8 +696,8 @@ - end - object Addsinglecom: TTabSheet - Caption = 'Add' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 4 - object Label241: TLabel - Left = 8 -@@ -927,8 +924,8 @@ - end - object Page4: TTabSheet - Caption = 'Page4' -- ClientHeight = 480 -- ClientWidth = 497 -+ ClientHeight = 449 -+ ClientWidth = 495 - object AstPageControl: TPageControl - Left = 0 - Height = 429 -@@ -939,8 +936,8 @@ - TabOrder = 0 - object astsetting: TTabSheet - Caption = 'General Setting' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 3 - object GroupBox9: TGroupBox - Left = 9 -@@ -1057,8 +1054,8 @@ - end - object astload: TTabSheet - Caption = 'Load MPC File' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 1 - object Label206: TLabel - Left = 8 -@@ -1144,8 +1141,8 @@ - TabOrder = 2 - object TabSheet3: TTabSheet - Caption = 'Load MPC format file' -- ClientHeight = 67 -- ClientWidth = 437 -+ ClientHeight = 61 -+ ClientWidth = 435 - object Label1: TLabel - Left = 22 - Height = 14 -@@ -1167,8 +1164,8 @@ - end - object TabSheet4: TTabSheet - Caption = 'Or use a local file :' -- ClientHeight = 67 -- ClientWidth = 437 -+ ClientHeight = 61 -+ ClientWidth = 435 - object mpcfile: TFileNameEdit - Left = 14 - Height = 21 -@@ -1180,7 +1177,6 @@ - HideDirectories = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - end - object LoadMPC: TButton -@@ -1198,8 +1194,8 @@ - end - object astprepare: TTabSheet - Caption = 'Prepare Monthly Data' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 2 - object Label210: TLabel - Left = 8 -@@ -1291,8 +1287,8 @@ - end - object astdelete: TTabSheet - Caption = 'Data Maintenance' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 3 - object Label211: TLabel - Left = 8 -@@ -1416,8 +1412,8 @@ - end - object AddsingleAst: TTabSheet - Caption = 'Add' -- ClientHeight = 400 -- ClientWidth = 477 -+ ClientHeight = 394 -+ ClientWidth = 475 - ImageIndex = 4 - object Label217: TLabel - Left = 8 -diff -ur skychart_3.2/skychart/pu_config_solsys.lrs skychart_3.2_up/skychart/pu_config_solsys.lrs ---- skychart_3.2/skychart/pu_config_solsys.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_solsys.lrs 2011-03-09 15:18:57.117095809 +0100 -@@ -1,473 +1,472 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_solsys','FORMDATA',[ -- 'TPF0'#16'Tf_config_solsys'#15'f_config_solsys'#4'Left'#3#197#2#6'Height'#3#24 -- +#2#3'Top'#2'H'#5'Width'#3#247#1#13'ActiveControl'#7#9'planetdir'#11'BorderSt' -+ 'TPF0'#16'Tf_config_solsys'#15'f_config_solsys'#4'Left'#3#232#1#6'Height'#3#24 -+ +#2#3'Top'#2'E'#5'Width'#3#247#1#13'ActiveControl'#7#9'MainPanel'#11'BorderSt' - +'yle'#7#12'bsToolWindow'#7'Caption'#6#12'Solar System'#12'ClientHeight'#3#24 - +#2#11'ClientWidth'#3#247#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8 - +'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'For' -- +'mShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'He' -- +'ight'#3#230#1#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'ClientH' -- +'eight'#3#230#1#11'ClientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#0#0 -+ +'mShow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6 -+ +'Height'#3#230#1#3'Top'#2#0#5'Width'#3#247#1#5'Align'#7#8'alClient'#12'Clien' -+ +'tHeight'#3#230#1#11'ClientWidth'#3#247#1#11'ParentColor'#8#8'TabOrder'#2#0#0 - +#12'TPageControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#228#1#3'Top'#2#1#5 -- +'Width'#3#245#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'ShowTabs' -- +#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Pa' -- +'ge1'#12'ClientHeight'#3#224#1#11'ClientWidth'#3#241#1#0#6'TLabel'#7'Label12' -- +#4'Left'#2#7#6'Height'#2#14#3'Top'#2#17#5'Width'#2'z'#7'Caption'#6#20'Solar ' -- +'System Setting'#11'ParentColor'#8#0#0#6'TLabel'#8'Label131'#4'Left'#2'('#6 -- +'Height'#2#14#3'Top'#2'@'#5'Width'#2'@'#7'Caption'#6#12'Data Files :'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#24 -- +#1#5'Width'#3'P'#1#7'Caption'#6'9Uncheck to avoid double labeling with minor' -- +' planet 134340'#11'ParentColor'#8#0#0#11'TRadioGroup'#11'PlaParalaxe'#4'Lef' -- +'t'#2'('#6'Height'#2'Q'#3'Top'#2'x'#5'Width'#3#134#1#8'AutoFill'#9#7'Caption' -- +#6#8'Position'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' -- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' -- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' -- +'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' -- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' -- +'tom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWid' -- +'th'#3#130#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Geocentric'#6#11'TopoCe' -- +'ntric'#0#7'OnClick'#7#16'PlaParalaxeClick'#8'TabOrder'#2#1#0#0#14'TDirector' -- +'yEdit'#9'planetdir'#4'Left'#3#182#0#6'Height'#2#21#3'Top'#2'7'#5'Width'#3 -- +#224#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 -- +#0#8'TabOrder'#2#0#8'OnChange'#7#15'PlanetDirChange'#0#0#9'TCheckBox'#13'Che' -- +'ckBoxPluto'#4'Left'#2'('#6'Height'#2#21#3'Top'#3#248#0#5'Width'#2'w'#7'Capt' -- +'ion'#6#18'Pluto is a planet.'#8'OnChange'#7#19'CheckBoxPlutoChange'#8'TabOr' -- +'der'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight' -- +#3#224#1#11'ClientWidth'#3#241#1#0#6'TLabel'#6'Label5'#4'Left'#2#0#6'Height' -- +#2#14#3'Top'#2#17#5'Width'#2'H'#7'Caption'#6#15'Planets Setting'#11'ParentCo' -- +'lor'#8#0#0#6'TLabel'#7'Label89'#4'Left'#2'.'#6'Height'#2#14#3'Top'#3'P'#1#5 -- +'Width'#2'n'#7'Caption'#6#23'Jupiter GRS longitude :'#11'ParentColor'#8#0#0#6 -- +'TLabel'#7'Label53'#4'Left'#3#191#0#6'Height'#2#14#3'Top'#2#21#5'Width'#2'd' -- +#7'Caption'#6#21'Computation Plugin : '#11'ParentColor'#8#7'Visible'#8#0#0#6 -- +'TLabel'#10'XplanetMsg'#4'Left'#2'.'#6'Height'#2#1#3'Top'#3#236#0#5'Width'#2 -- +#1#11'ParentColor'#8#0#0#9'TCheckBox'#9'PlanetBox'#4'Left'#2'#'#6'Height'#2 -- +#21#4'Hint'#6'*Planetary Ephemerides (Chapront+ 1996)'#3'Top'#2'0'#5'Wid' -- +'th'#3#146#0#11'HelpContext'#2'k'#7'Caption'#6#24'Show Planet on the Chart'#7 -- +'Checked'#9#7'OnClick'#7#14'PlanetBoxClick'#14'ParentShowHint'#8#8'ShowHint' -- +#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#10'PlanetMode' -- +#4'Left'#2'('#6'Height'#3#145#0#3'Top'#2'P'#5'Width'#3'I'#1#8'AutoFill'#9#7 -- +'Caption'#6#14'Draw Planet As'#28'ChildSizing.LeftRightSpacing'#2#6#28'Child' -- +'Sizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomo' -- +'genousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildR' -- +'esize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing' -- +'.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftTo' -- +'RightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#3 -- +#130#0#11'ClientWidth'#3'E'#1#13'Items.Strings'#1#6#4'Star'#6#17'Line mode d' -- +'rawing'#6#16'Realistics image'#6#6'Symbol'#0#7'OnClick'#7#15'PlanetModeClic' -- +'k'#8'TabOrder'#2#1#0#0#9'TCheckBox'#10'PlanetBox3'#4'Left'#2'('#6'Height'#2 -- +#21#3'Top'#3'x'#1#5'Width'#3#209#0#7'Caption'#6'#Show Earth Shadow (Lunar e' -- +'clipses)'#7'OnClick'#7#15'PlanetBox3Click'#8'TabOrder'#2#4#0#0#10'TFloatEdi' -- +'t'#3'GRS'#4'Left'#3#206#0#6'Height'#2#21#4'Hint'#6#6'0..360'#3'Top'#3'H'#1#5 -- +'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7 -- +#9'GRSChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0 -- +#0#8'MaxValue'#5#0#0#0#0#0#0#0#180#7'@'#0#0#7'TBitBtn'#8'BitBtn37'#4'Left'#3 -- +#22#1#6'Height'#2#28#4'Hint'#6'!Get recent measurement from JUPOS'#3'Top'#3 -- +'E'#1#5'Width'#2' '#25'BorderSpacing.InnerBorder'#2#2#10'Glyph.Data'#10':'#9 -- +#0#0'6'#9#0#0'BM6'#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' '#0 -- ,#0#0#0#0#0#9#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'"'#0#0#0#0#0#0#0#0 -- +#0#0#0#1#0#0#0#1#0#0#0#1#0#0#0#192#6#0#0#128#9#0#0#0#0#0#0#0#0#0#0#0#128#0#0 -- +#1#1#8#0#0#7#0#0#26#4#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 -+ +'Width'#3#245#1#10'ActivePage'#7#5'Page1'#5'Align'#7#8'alClient'#8'TabIndex' -+ +#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'Client' -+ +'Height'#3#193#1#11'ClientWidth'#3#239#1#0#6'TLabel'#7'Label12'#4'Left'#2#7#6 -+ +'Height'#2#14#3'Top'#2#17#5'Width'#2'r'#7'Caption'#6#20'Solar System Setting' -+ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label131'#4'Left'#2'('#6'Height'#2#14#3'T' -+ +'op'#2'@'#5'Width'#2'='#7'Caption'#6#12'Data Files :'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#6'Label3'#4'Left'#2'>'#6'Height'#2#14#3'Top'#3#24#1#5'Width'#3'F'#1 -+ +#7'Caption'#6'9Uncheck to avoid double labeling with minor planet 134340'#11 -+ +'ParentColor'#8#0#0#11'TRadioGroup'#11'PlaParalaxe'#4'Left'#2'('#6'Height'#2 -+ +'Q'#3'Top'#2'x'#5'Width'#3#134#1#8'AutoFill'#9#7'Caption'#6#8'Position'#28'C' -+ +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' -+ +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' -+ +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' -+ +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' -+ +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' -+ +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'B'#11'ClientWidth'#3#130#1#7'Col' -+ +'umns'#2#2#13'Items.Strings'#1#6#10'Geocentric'#6#11'TopoCentric'#0#7'OnClic' -+ +'k'#7#16'PlaParalaxeClick'#8'TabOrder'#2#1#0#0#14'TDirectoryEdit'#9'planetdi' -+ +'r'#4'Left'#3#182#0#6'Height'#2#23#3'Top'#2'7'#5'Width'#3#224#0#10'ShowHidde' -+ +'n'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#15 -+ +'PlanetDirChange'#0#0#9'TCheckBox'#13'CheckBoxPluto'#4'Left'#2'('#6'Height'#2 -+ +#22#3'Top'#3#248#0#5'Width'#2'r'#7'Caption'#6#18'Pluto is a planet.'#8'OnCha' -+ +'nge'#7#19'CheckBoxPlutoChange'#8'TabOrder'#2#2#0#0#0#9'TTabSheet'#5'Page2'#7 -+ +'Caption'#6#5'Page2'#12'ClientHeight'#3#193#1#11'ClientWidth'#3#239#1#0#6'TL' -+ +'abel'#6'Label5'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#17#5'Width'#2'H'#7'Capt' -+ +'ion'#6#15'Planets Setting'#11'ParentColor'#8#0#0#6'TLabel'#7'Label89'#4'Lef' -+ +'t'#2'.'#6'Height'#2#14#3'Top'#3'P'#1#5'Width'#2'n'#7'Caption'#6#23'Jupiter ' -+ +'GRS longitude :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label53'#4'Left'#3#191#0 -+ +#6'Height'#2#14#3'Top'#2#21#5'Width'#2'd'#7'Caption'#6#21'Computation Plugin' -+ +' : '#11'ParentColor'#8#7'Visible'#8#0#0#6'TLabel'#10'XplanetMsg'#4'Left'#2 -+ +'.'#6'Height'#2#1#3'Top'#3#236#0#5'Width'#2#1#11'ParentColor'#8#0#0#9'TCheck' -+ +'Box'#9'PlanetBox'#4'Left'#2'#'#6'Height'#2#21#4'Hint'#6'*Planetary Ephemeri' -+ +'des (Chapront+ 1996)'#3'Top'#2'0'#5'Width'#3#146#0#11'HelpContext'#2'k' -+ +#7'Caption'#6#24'Show Planet on the Chart'#7'Checked'#9#7'OnClick'#7#14'Plan' -+ +'etBoxClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'State'#7#9'cbChecked'#8'Ta' -+ +'bOrder'#2#0#0#0#11'TRadioGroup'#10'PlanetMode'#4'Left'#2'('#6'Height'#3#145 -+ +#0#3'Top'#2'P'#5'Width'#3'I'#1#8'AutoFill'#9#7'Caption'#6#14'Draw Planet As' -+ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 -+ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' -+ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' -+ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' -+ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' -+ +'zing.ControlsPerLine'#2#1#12'ClientHeight'#3#130#0#11'ClientWidth'#3'E'#1#13 -+ +'Items.Strings'#1#6#4'Star'#6#17'Line mode drawing'#6#16'Realistics image'#6 -+ +#6'Symbol'#0#7'OnClick'#7#15'PlanetModeClick'#8'TabOrder'#2#1#0#0#9'TCheckBo' -+ +'x'#10'PlanetBox3'#4'Left'#2'('#6'Height'#2#21#3'Top'#3'x'#1#5'Width'#3#209#0 -+ +#7'Caption'#6'#Show Earth Shadow (Lunar eclipses)'#7'OnClick'#7#15'PlanetBo' -+ +'x3Click'#8'TabOrder'#2#4#0#0#10'TFloatEdit'#3'GRS'#4'Left'#3#206#0#6'Height' -+ +#2#21#4'Hint'#6#6'0..360'#3'Top'#3'H'#1#5'Width'#2')'#14'ParentShowHint'#8#8 -+ +'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#9'GRSChange'#5'Value'#5#0#0#0#0#0 -+ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#180 -+ +#7'@'#0#0#7'TBitBtn'#8'BitBtn37'#4'Left'#3#22#1#6'Height'#2#28#4'Hint'#6'!Ge' -+ +'t recent measurement from JUPOS'#3'Top'#3'E'#1#5'Width'#2' '#25'BorderSpaci' -+ +'ng.InnerBorder'#2#2#10'Glyph.Data'#10':'#9#0#0'6'#9#0#0'BM6'#9#0#0#0#0#0#0 -+ +'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' '#0#0#0#0#0#0#9#0#0'd'#0#0#0'd'#0#0 -+ ,#0#0#0#0#0#0#0#0#0#0#0#0#0'"'#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#1#0#0#0#1#0#0#0 -+ +#192#6#0#0#128#9#0#0#0#0#0#0#0#0#0#0#0#128#0#0#1#1#8#0#0#7#0#0#26#4#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 - +#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 -- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'EGH' -- +#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 -- +#132#1#1#255#134#10#10#255#142#26#26#255#143'))'#255#142'99'#255#143';9'#255 -- +#140'))'#255#141#25#25#255#134#9#8#255#132#0#0#255#132#0#0#255#132#0#0#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'lop'#0#132#0#0#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#134#13#13#255#143'99'#255 -- +#148'gg'#255#150#127'{'#255#143#132'{'#255#141#134#127#255#142#135#127#255 -- +#141#133#127#255#148#127'{'#255#149'cc'#255#143'11'#255#134#9#9#255#132#0#0 -- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'EGH'#0'_bc'#0#132#0#0 -- +#255#132#0#0#255#132#0#0#255#132#1#1#255#140'##'#255#151'gc'#255#140#134#127 -- +#255#134#133#127#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{' -- +#255#132#132'{'#255#132#132'{'#255#135#134#127#255#148#134#127#255#149'_^' -- +#255#142#28#28#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'ehi'#0'P' -- +#127#143#0#132#0#0#255#132#0#0#255#132#1#1#255#141''''''#255#157#127#127#255 -- +#158#156#150#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143 -- +#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150 -- +#143#255#151#150#143#255#157#157#148#255#165'ww'#255#143#29#29#255#132#0#0 -- +#255#132#0#0#255#132#0#0#255'_bc'#0'W]['#0#132#0#0#255#132#0#0#255#141#25#25 -- +#255#157'{{'#255#181#181#175#255#189#189#189#255#191#191#189#255#191#191#189 -- +#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191 -- +#189#255#191#191#189#255#191#191#189#255#191#191#189#255#189#189#189#255#181 -- +#175#173#255#156'ss'#255#141#21#21#255#132#0#0#255#132#0#0#255'Cfr'#0'X[['#0 -- +#132#0#0#255#133#7#7#255#151'WW'#255#127'{w'#255'wws'#255'wws'#255'wws'#255 -- +'wws'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w' -- +#255'{{w'#255'wws'#255#132'{{'#255#151'OO'#255#133#4#4#255#132#0#0#255'PaX'#0 -- +'\_`'#0#132#0#0#255#142'##'#255#150#135#134#255#165#165#158#255#156#156#156 -- +#255'ss'#134#255'ss'#132#255#158#158#159#255#165#165#159#255#165#165#159#255 -- +#165#165#159#255#165#165#159#255#165#165#159#255#167#167#165#255#167#167#165 -- +#255#165#165#167#255#173#173#167#255#175#175#175#255#167#167#165#255#159#135 -- +#134#255#143#28#28#255#132#0#0#255'X[['#0'UXY'#0#132#2#2#255#135';;'#255'GC?' -- +#255'11+'#255'//+'#255'!!#'#255'!!#'#255'//)'#255'11+'#255'33+'#255'33+'#255 -- +'31+'#255';;5'#255'gg_'#255'sso'#255'cc_'#255'kkg'#255'ggc'#255'993'#255'ZRN' -- +#255#141'55'#255#132#0#0#255'Y\]'#0#191#217#221#0#133#6#6#255#142'WV'#255'WV' -- +'O'#255'JJB'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'JJB' -- +#255'GFB'#255'gcZ'#255#183#181#175#255#167#167#165#255'ZVS'#255'FC9'#255'GG?' -- +#255'GGC'#255'c^Z'#255#151'WW'#255#133#3#3#255'UXY'#0'<NS'#0#135#12#12#255 -- +#167#127#127#255#191#191#191#255#191#191#191#255#198#198#191#255#198#198#191 -- +#255#198#198#191#255#198#198#191#255#198#198#191#255#198#198#191#255#191#191 -- +#191#255#191#189#189#255#189#181#173#255#189#175#175#255#191#191#191#255#191 -- +#191#189#255#175#165#165#255#167#165#157#255#183#183#181#255#189#183#183#255 -- +#157'gg'#255#133#5#5#255#148#187#197#0'NPQ'#0#134#11#11#255#165'{{'#255#173 -- +#173#173#255#175#175#175#255#175#175#175#255#175#175#175#255#175#175#175#255 -- +#181#181#181#255#183#183#183#255#181#181#183#255#181#181#183#255#181#181#183 -- +#255#183#183#183#255#183#181#181#255#183#183#181#255#183#183#183#255#183#183 -- +#183#255#181#181#181#255#183#183#183#255#181#175#175#255#156'gg'#255#133#5#5 -- +#255'Ak'#128#0'QST'#0#133#5#5#255#134'NN'#255'CB='#255'33+'#255'33+'#255'33+' -- +#255'775'#255'SRo'#255'Z_'#157#255'sw'#150#255#132#133#134#255'{{w'#255'{{w' -- +#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255#133#135#133#255 -- +#151'[Z'#255#132#3#3#255'NPQ'#0'`ab'#0#132#1#1#255#142'99'#255'[SO'#255'GGB' -- +#255'FFC'#255'GGC'#255'VWg'#255'BG'#199#255'/5'#223#255'CJ'#215#255'ss'#148 -- +#255'cc^'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'^^Z'#255 -- +'{oo'#255#143'11'#255#132#0#0#255'cef'#0'?q'#148#0#132#0#0#255#141#25#25#255 -- +#158#134#134#255#181#181#183#255#189#189#183#255#189#189#189#255#181#183#191 -- +#255'ow'#206#255'NS'#215#255'cg'#206#255#175#173#198#255#189#189#189#255#189 -- +#189#189#255#189#189#189#255#191#191#189#255#189#189#189#255#189#189#189#255 -- +#189#189#183#255#183#183#183#255#165#132#132#255#141#20#20#255#132#0#0#255'`' -- +'ab'#0'5EP'#0#132#0#0#255#132#4#4#255#148'JJ'#255#142#135#133#255'{{{'#255 -- +#127#127'{'#255'{{{'#255'ww{'#255'oow'#255'ss{'#255'{{{'#255#127#127'{'#255 -- ,#135#135#132#255#183#183#181#255#150#150#148#255'{{{'#255#127#127'{'#255'{{{' -- +#255#149#133#132#255#148'BB'#255#132#2#2#255#132#0#0#255'=s'#151#0'wyz'#0#132 -- +#0#0#255#132#0#0#255#135#15#15#255#142'WW'#255#158#151#150#255#156#156#158 -- +#255#142#142#143#255#148#148#141#255'{{w'#255#167#167#165#255#173#173#175#255 -- +#173#173#175#255#175#175#175#255#189#189#191#255#165#165#167#255#141#141#133 -- +#255#173#173#167#255#158#151#150#255#149'RR'#255#134#9#9#255#132#0#0#255#132 -- +#0#0#255'5H]'#0'|'#127#128#0#132#0#0#255#132#0#0#255#132#0#0#255#135#16#16 -- +#255#156'cc'#255#149#141#142#255#134#133#127#255#133#133#127#255'wwo'#255#148 -- +#148#141#255#149#149#143#255#149#149#143#255#149#149#142#255#149#149#142#255 -- +#142#142#140#255#134#133#127#255#158#151#148#255#159'__'#255#140#16#16#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255'wyz'#0'{~~'#0#132#0#0#255#132#0#0#255 -- +#132#0#0#255#132#0#0#255#135#15#15#255#149'KJ'#255#149'{w'#255#141#133#127 -- +#255#133#132#127#255#135#135'{'#255#132#132'{'#255#132#132'{'#255#132#132'{' -- +#255#134#133#127#255#140#135#133#255#148'{w'#255#149'CB'#255#134#10#10#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#130#133#133#0'V^\'#0#132#0#0 -- +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#4#4#255#143'!!'#255 -- +#150'KJ'#255#149'gg'#255#141'ws'#255#142'ws'#255#143'ws'#255#148'ww'#255#151 -- +'gc'#255#151'KJ'#255#142#26#26#255#132#3#3#255#132#0#0#255#132#0#0#255#132#0 -- +#0#255#132#0#0#255#132#0#0#255'{~~'#0#140#142#143#0#132#0#0#255#132#0#0#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#2#2#255#134 -- +#9#9#255#135#21#21#255#135#24#24#255#140#24#24#255#140#21#21#255#133#8#8#255 -- +#132#2#2#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 -- +#0#0#255#132#0#0#255'Phm'#0'Z[['#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0 -- +#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 - +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 -- +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#138 -- +#140#141#0#158#160#160#0#156#158#158#0#129#131#131#0'fhh'#0'Z[['#0'Z[['#0'Z[' -- +'['#0'Z[['#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0 -- +'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[['#0'Z[['#0'Z[['#0#9'NumGlyphs'#2#0#7'OnClick' -- +#7#13'BitBtn37Click'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#5 -- +'TEdit'#5'Edit2'#4'Left'#3'M'#1#6'Height'#2#21#3'Top'#2#17#5'Width'#2'd'#8'T' -- +'abOrder'#2#6#7'Visible'#8#0#0#9'TCheckBox'#17'TransparentPlanet'#4'Left'#2 -- +'('#6'Height'#2#21#3'Top'#3#161#1#5'Width'#3#193#0#7'Caption'#6'#Transparent' -- +' line mode (occultation)'#7'OnClick'#7#22'TransparentPlanetClick'#8'TabOrde' -- +'r'#2#5#0#0#6'TPanel'#10'XplanetBox'#4'Left'#2'('#6'Height'#2'A'#3'Top'#3#232 -- +#0#5'Width'#3'I'#1#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'A'#11'Clien' -- +'tWidth'#3'I'#1#8'TabOrder'#2#7#0#7'TBitBtn'#10'XplanetBtn'#4'Left'#3#30#1#6 -- +'Height'#2#26#3'Top'#2#24#5'Width'#2#26#25'BorderSpacing.InnerBorder'#2#2#10 -- +'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0 -- +#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#1#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#1 -- +#0#0#0#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#0#0#0#0#1#0#0#0#1#0#0#0 -- +#0#0#0#0#1#255#255#0#8#0#0#0#21#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#4#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 -- +#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127 -+ +#132#0#0#255#132#0#0#255#132#0#0#255#0#0#0#0'EGH'#0#132#0#0#255#132#0#0#255 -+ +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#1#1#255#134#10#10#255 -+ +#142#26#26#255#143'))'#255#142'99'#255#143';9'#255#140'))'#255#141#25#25#255 -+ +#134#9#8#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 -+ +#0#0#255#132#0#0#255#0#0#0#0'lop'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0 -+ +#0#255#132#0#0#255#134#13#13#255#143'99'#255#148'gg'#255#150#127'{'#255#143 -+ +#132'{'#255#141#134#127#255#142#135#127#255#141#133#127#255#148#127'{'#255 -+ +#149'cc'#255#143'11'#255#134#9#9#255#132#0#0#255#132#0#0#255#132#0#0#255#132 -+ +#0#0#255#132#0#0#255'EGH'#0'_bc'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#1 -+ +#1#255#140'##'#255#151'gc'#255#140#134#127#255#134#133#127#255#132#132'{'#255 -+ +#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#132#132'{'#255 -+ +#135#134#127#255#148#134#127#255#149'_^'#255#142#28#28#255#132#0#0#255#132#0 -+ +#0#255#132#0#0#255#132#0#0#255'ehi'#0'P'#127#143#0#132#0#0#255#132#0#0#255 -+ +#132#1#1#255#141''''''#255#157#127#127#255#158#156#150#255#150#150#143#255 -+ +#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143#255#150#150#143 -+ +#255#150#150#143#255#150#150#143#255#150#150#143#255#151#150#143#255#157#157 -+ +#148#255#165'ww'#255#143#29#29#255#132#0#0#255#132#0#0#255#132#0#0#255'_bc'#0 -+ +'W]['#0#132#0#0#255#132#0#0#255#141#25#25#255#157'{{'#255#181#181#175#255#189 -+ +#189#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255 -+ +#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189#255#191#191#189 -+ +#255#191#191#189#255#189#189#189#255#181#175#173#255#156'ss'#255#141#21#21 -+ +#255#132#0#0#255#132#0#0#255'Cfr'#0'X[['#0#132#0#0#255#133#7#7#255#151'WW' -+ +#255#127'{w'#255'wws'#255'wws'#255'wws'#255'wws'#255'{{w'#255'{{w'#255'{{w' -+ +#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'wws'#255#132'{{' -+ +#255#151'OO'#255#133#4#4#255#132#0#0#255'PaX'#0'\_`'#0#132#0#0#255#142'##' -+ +#255#150#135#134#255#165#165#158#255#156#156#156#255'ss'#134#255'ss'#132#255 -+ +#158#158#159#255#165#165#159#255#165#165#159#255#165#165#159#255#165#165#159 -+ +#255#165#165#159#255#167#167#165#255#167#167#165#255#165#165#167#255#173#173 -+ +#167#255#175#175#175#255#167#167#165#255#159#135#134#255#143#28#28#255#132#0 -+ +#0#255'X[['#0'UXY'#0#132#2#2#255#135';;'#255'GC?'#255'11+'#255'//+'#255'!!#' -+ +#255'!!#'#255'//)'#255'11+'#255'33+'#255'33+'#255'31+'#255';;5'#255'gg_'#255 -+ +'sso'#255'cc_'#255'kkg'#255'ggc'#255'993'#255'ZRN'#255#141'55'#255#132#0#0 -+ +#255'Y\]'#0#191#217#221#0#133#6#6#255#142'WV'#255'WVO'#255'JJB'#255'KKC'#255 -+ +'KKC'#255'KKC'#255'KKC'#255'KKC'#255'KKC'#255'JJB'#255'GFB'#255'gcZ'#255#183 -+ +#181#175#255#167#167#165#255'ZVS'#255'FC9'#255'GG?'#255'GGC'#255'c^Z'#255#151 -+ +'WW'#255#133#3#3#255'UXY'#0'<NS'#0#135#12#12#255#167#127#127#255#191#191#191 -+ +#255#191#191#191#255#198#198#191#255#198#198#191#255#198#198#191#255#198#198 -+ +#191#255#198#198#191#255#198#198#191#255#191#191#191#255#191#189#189#255#189 -+ +#181#173#255#189#175#175#255#191#191#191#255#191#191#189#255#175#165#165#255 -+ +#167#165#157#255#183#183#181#255#189#183#183#255#157'gg'#255#133#5#5#255#148 -+ +#187#197#0'NPQ'#0#134#11#11#255#165'{{'#255#173#173#173#255#175#175#175#255 -+ +#175#175#175#255#175#175#175#255#175#175#175#255#181#181#181#255#183#183#183 -+ +#255#181#181#183#255#181#181#183#255#181#181#183#255#183#183#183#255#183#181 -+ +#181#255#183#183#181#255#183#183#183#255#183#183#183#255#181#181#181#255#183 -+ +#183#183#255#181#175#175#255#156'gg'#255#133#5#5#255'Ak'#128#0'QST'#0#133#5#5 -+ +#255#134'NN'#255'CB='#255'33+'#255'33+'#255'33+'#255'775'#255'SRo'#255'Z_' -+ +#157#255'sw'#150#255#132#133#134#255'{{w'#255'{{w'#255'{{w'#255'{{w'#255'{{w' -+ +#255'{{w'#255'{{w'#255'{{w'#255#133#135#133#255#151'[Z'#255#132#3#3#255'NPQ' -+ +#0'`ab'#0#132#1#1#255#142'99'#255'[SO'#255'GGB'#255'FFC'#255'GGC'#255'VWg' -+ +#255'BG'#199#255'/5'#223#255'CJ'#215#255'ss'#148#255'cc^'#255'__Z'#255'__Z' -+ +#255'__Z'#255'__Z'#255'__Z'#255'__Z'#255'^^Z'#255'{oo'#255#143'11'#255#132#0 -+ +#0#255'cef'#0'?q'#148#0#132#0#0#255#141#25#25#255#158#134#134#255#181#181#183 -+ +#255#189#189#183#255#189#189#189#255#181#183#191#255'ow'#206#255'NS'#215#255 -+ +'cg'#206#255#175#173#198#255#189#189#189#255#189#189#189#255#189#189#189#255 -+ +#191#191#189#255#189#189#189#255#189#189#189#255#189#189#183#255#183#183#183 -+ +#255#165#132#132#255#141#20#20#255#132#0#0#255'`ab'#0'5EP'#0#132#0#0#255#132 -+ +#4#4#255#148'JJ'#255#142#135#133#255'{{{'#255#127#127'{'#255'{{{'#255'ww{' -+ +#255'oow'#255'ss{'#255'{{{'#255#127#127'{'#255#135#135#132#255#183#183#181 -+ ,#255#150#150#148#255'{{{'#255#127#127'{'#255'{{{'#255#149#133#132#255#148'BB' -+ +#255#132#2#2#255#132#0#0#255'=s'#151#0'wyz'#0#132#0#0#255#132#0#0#255#135#15 -+ +#15#255#142'WW'#255#158#151#150#255#156#156#158#255#142#142#143#255#148#148 -+ +#141#255'{{w'#255#167#167#165#255#173#173#175#255#173#173#175#255#175#175#175 -+ +#255#189#189#191#255#165#165#167#255#141#141#133#255#173#173#167#255#158#151 -+ +#150#255#149'RR'#255#134#9#9#255#132#0#0#255#132#0#0#255'5H]'#0'|'#127#128#0 -+ +#132#0#0#255#132#0#0#255#132#0#0#255#135#16#16#255#156'cc'#255#149#141#142 -+ +#255#134#133#127#255#133#133#127#255'wwo'#255#148#148#141#255#149#149#143#255 -+ +#149#149#143#255#149#149#142#255#149#149#142#255#142#142#140#255#134#133#127 -+ +#255#158#151#148#255#159'__'#255#140#16#16#255#132#0#0#255#132#0#0#255#132#0 -+ +#0#255'wyz'#0'{~~'#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#135#15 -+ +#15#255#149'KJ'#255#149'{w'#255#141#133#127#255#133#132#127#255#135#135'{' -+ +#255#132#132'{'#255#132#132'{'#255#132#132'{'#255#134#133#127#255#140#135#133 -+ +#255#148'{w'#255#149'CB'#255#134#10#10#255#132#0#0#255#132#0#0#255#132#0#0 -+ +#255#132#0#0#255#130#133#133#0'V^\'#0#132#0#0#255#132#0#0#255#132#0#0#255#132 -+ +#0#0#255#132#0#0#255#132#4#4#255#143'!!'#255#150'KJ'#255#149'gg'#255#141'ws' -+ +#255#142'ws'#255#143'ws'#255#148'ww'#255#151'gc'#255#151'KJ'#255#142#26#26 -+ +#255#132#3#3#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 -+ +'{~~'#0#140#142#143#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 -+ +#255#132#0#0#255#132#0#0#255#132#2#2#255#134#9#9#255#135#21#21#255#135#24#24 -+ +#255#140#24#24#255#140#21#21#255#133#8#8#255#132#2#2#255#132#0#0#255#132#0#0 -+ +#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255'Phm'#0'Z[[' -+ +#0#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255 -+ +#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132 -+ +#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0#255#132#0#0 -+ +#255#132#0#0#255#132#0#0#255#132#0#0#255#138#140#141#0#158#160#160#0#156#158 -+ +#158#0#129#131#131#0'fhh'#0'Z[['#0'Z[['#0'Z[['#0'Z[['#0'Z[\'#0'Z[\'#0'Z[\'#0 -+ +'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[\'#0'Z[['#0 -+ +'Z[['#0'Z[['#0#9'NumGlyphs'#2#0#7'OnClick'#7#13'BitBtn37Click'#14'ParentShow' -+ +'Hint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#5'TEdit'#5'Edit2'#4'Left'#3'M'#1#6 -+ +'Height'#2#21#3'Top'#2#17#5'Width'#2'd'#8'TabOrder'#2#6#7'Visible'#8#0#0#9'T' -+ +'CheckBox'#17'TransparentPlanet'#4'Left'#2'('#6'Height'#2#21#3'Top'#3#161#1#5 -+ +'Width'#3#193#0#7'Caption'#6'#Transparent line mode (occultation)'#7'OnClick' -+ +#7#22'TransparentPlanetClick'#8'TabOrder'#2#5#0#0#6'TPanel'#10'XplanetBox'#4 -+ +'Left'#2'('#6'Height'#2'A'#3'Top'#3#232#0#5'Width'#3'I'#1#10'BevelOuter'#7#6 -+ +'bvNone'#12'ClientHeight'#2'A'#11'ClientWidth'#3'I'#1#8'TabOrder'#2#7#0#6'TL' -+ +'abel'#15'LabelXplanetBox'#4'Left'#2#15#6'Height'#2#14#3'Top'#2#2#5'Width'#2 -+ +'R'#7'Caption'#6#15'LabelXplanetBox'#11'ParentColor'#8#0#0#7'TBitBtn'#10'Xpl' -+ +'anetBtn'#4'Left'#3#30#1#6'Height'#2#26#3'Top'#2#24#5'Width'#2#26#25'BorderS' -+ +'pacing.InnerBorder'#2#2#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0 -+ +#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0 -+ +#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#1#0#0#0#1#0#0#0#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255 -+ +#0#0#0#0#0#1#0#0#0#1#0#0#0#0#0#0#0#1#255#255#0#8#0#0#0#21#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 -- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#0#0 -- +#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#0#0 -- +#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#1#0#0#255#255#255#0#0#0#0#0#255 -- +#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 -- +#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255 -- +#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#0#0#0#0#255#255#255#0 -- +#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#127#127#127 -- +#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#127#127#127#255#255#255#255 -- +#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255 -- +#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#127#127#127#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 -+ +#127#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 -+ +#127#255#255#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#1#0 -+ +#0#255#255#255#0#0#0#0#0#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0 -+ +#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127 -+ +#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255 -+ +#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0 -+ +#0#0#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0 -+ +#127#127#127#255#255#255#255#255#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0 -+ +#0#255#255#255#0#0#0#0#0#255#255#255#0#0#0#0#127#127#127#255#0#0#0#255#0#0#1 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 -- +#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127 -+ +#255#255#255#255#255#255#255#255#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 -- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 -- +#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#0#255#255 -- ,#255#255#255#255#255#0#255#255#255#255#255#255#255#127#127#127#255#0#0#0#0#0 -+ ,#127#127#255#127#127#127#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#127#127#127#255#0#255#255#255#255#255#255#255#0#255#255#255#255#255#255 -+ +#255#127#127#127#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#127#127#127#255#127#127#127#255#127#127#127 -+ +#255#127#127#127#255#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#0#0#0#0#0 -- +#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0 -+ +#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0 -- +#1#0#0#0#0#1#0#1#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6'Layout'#7#10'blGlyphTop'#6'Marg' -- +'in'#2#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'XplanetBtnClick'#8'TabOrder'#2#0#7 -- +'TabStop'#8#0#0#5'TEdit'#10'XplanetDir'#4'Left'#2'|'#6'Height'#2#21#3'Top'#2 -- +#25#5'Width'#3#156#0#8'OnChange'#7#16'XplanetDirChange'#8'TabOrder'#2#1#0#0#9 -- +'TCheckBox'#10'UseXplanet'#4'Left'#2#15#6'Height'#2#21#3'Top'#2#25#5'Width'#2 -- +'Q'#7'Caption'#6#11'Use Xplanet'#7'OnClick'#7#15'UseXplanetClick'#8'TabOrder' -- +#2#2#0#0#6'TLabel'#15'LabelXplanetBox'#4'Left'#2#15#6'Height'#2#14#3'Top'#2#2 -- +#5'Width'#2'R'#7'Caption'#6#15'LabelXplanetBox'#11'ParentColor'#8#0#0#0#0#9 -- +'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHeight'#3#224#1#11'Clien' -- +'tWidth'#3#241#1#0#12'TPageControl'#14'ComPageControl'#4'Left'#2#253#6'Heigh' -- +'t'#3#173#1#3'Top'#2#4#5'Width'#3#225#1#10'ActivePage'#7#10'comsetting'#8'Ta' -- +'bIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#10'comsetting'#7'Caption'#6#15'G' -- +'eneral Setting'#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIn' -- +'dex'#2#3#0#9'TGroupBox'#10'GroupBox13'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2 -- +#10#5'Width'#3#185#1#7'Caption'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1 -- +#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label154'#4'Left'#2' ' -- +#6'Height'#2'.'#3'Top'#3#162#0#5'Width'#3'.'#1#8'AutoSize'#8#7'Caption'#6'3D' -- +'o not take account of comet fainter than magnitude'#11'ParentColor'#8#8'Wor' -- +'dWrap'#9#0#0#6'TLabel'#8'Label216'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#239 -- +#0#5'Width'#2'G'#7'Caption'#6#10'Show comet'#11'ParentColor'#8#0#0#6'TLabel' -- +#8'Label231'#4'Left'#3#200#0#6'Height'#2'4'#3'Top'#3#239#0#5'Width'#3#191#0#8 -- +'AutoSize'#8#7'Caption'#6'!magnitude fainter than the stars.'#11'ParentColor' -- +#8#8'WordWrap'#9#0#0#10'TFloatEdit'#11'comlimitmag'#4'Left'#3'^'#1#6'Height' -- +#2#21#4'Hint'#6#5'0..99'#3'Top'#3#159#0#5'Width'#2')'#14'ParentShowHint'#8#8 -- +'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#17'comlimitmagChange'#5'Value'#5#0 -- +#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0 -- +#0#0#198#5'@'#0#0#9'TCheckBox'#7'showcom'#4'Left'#2' '#6'Height'#2#21#3'Top' -- +#2#14#5'Width'#3#173#0#7'Caption'#6#24'Show comets on the chart'#7'OnClick'#7 -- +#12'showcomClick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'comsymbol'#4'Left'#2 -- +#24#6'Height'#2'`'#3'Top'#2''''#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizin' -- +'g.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing' -- +'.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVe' -- +'rtical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 -- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' -- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' -- +'PerLine'#2#1#12'ClientHeight'#2'\'#11'ClientWidth'#3#133#1#5'Color'#7#9'clB' -- +'tnFace'#9'ItemIndex'#2#1#13'Items.Strings'#1#6'<Display as a symbol ' -- +' '#6'>Proportional to the tail length ' -- +' '#0#7'OnClick'#7#14'comsymbolClick'#11'ParentColor' -- +#8#8'TabOrder'#2#1#0#0#10'TFloatEdit'#10'commagdiff'#4'Left'#3#140#0#6'Heigh' -- +'t'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#234#0#5'Width'#2')'#14'ParentShowHint'#8 -- +#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#16'commagdiffChange'#5'Value'#5 -- +#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0 -- +#0#0#0#198#5'@'#0#0#0#7'TButton'#8'comdbset'#4'Left'#2#17#6'Height'#2#25#3'T' -- +'op'#3'f'#1#5'Width'#3#185#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#19'Database setting...'#7'OnClick'#7#13'comdbsetClick'#8'TabOrder'#2#1#7'Vi' -- +'sible'#8#0#0#0#9'TTabSheet'#7'comload'#7'Caption'#6#13'Load MPC File'#12'Cl' -- +'ientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#1#0#6'TLabel'#8 -- +'Label232'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'{'#5'Width'#2'?'#7'Caption'#6 -- +#9'Messages:'#11'ParentColor'#8#0#0#5'TMemo'#7'MemoCom'#4'Left'#2#8#6'Height' -- +#3#242#0#3'Top'#3#143#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBa' -- +'rs'#7#6'ssBoth'#8'TabOrder'#2#0#7'TabStop'#8#0#0#12'TPageControl'#15'ComPag' -- +'eControl1'#4'Left'#2#13#6'Height'#2'h'#3'Top'#2#11#5'Width'#3#180#1#10'Acti' -- +'vePage'#7#9'TabSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'Tab' -- ,'Sheet1'#7'Caption'#6#20'Load MPC format file'#12'ClientHeight'#2'K'#11'Clie' -- +'ntWidth'#3#176#1#0#6'TLabel'#6'Label2'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 -- +#27#5'Width'#3#189#0#7'Caption'#6' Download latest orbital elements'#11'Pare' -- +'ntColor'#8#0#0#7'TButton'#13'DownloadComet'#4'Left'#3'='#1#6'Height'#2#25#3 -- +'Top'#2#22#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Do' -- +'wnload'#7'OnClick'#7#18'DownloadCometClick'#8'TabOrder'#2#0#0#0#0#9'TTabShe' -- +'et'#9'TabSheet2'#7'Caption'#6#21'Or use a local file :'#12'ClientHeight'#2 -- +'K'#11'ClientWidth'#3#176#1#0#13'TFileNameEdit'#7'comfile'#4'Left'#2#13#6'He' -- +'ight'#2#20#3'Top'#2#24#5'Width'#3#9#1#13'DialogOptions'#11#0#6'Filter'#6'"C' -- +'omet Files|COM*.DAT|All Files|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8 -- +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#7 -- +'TButton'#7'Loadcom'#4'Left'#3'E'#1#6'Height'#2#25#3'Top'#2#22#5'Width'#2'a' -- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file'#7'OnClick'#7#12 -- +'LoadcomClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#9'comdelete'#7'Caption' -- +#6#16'Data Maintenance'#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10 -- +'ImageIndex'#2#3#0#6'TLabel'#8'Label238'#4'Left'#2#8#6'Height'#2#14#3'Top'#3 -- +#151#0#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGrou' -- +'pBox'#10'GroupBox16'#4'Left'#2#8#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1 -- +#7'Caption'#6#27'Delete MPC data selectively'#12'ClientHeight'#2'-'#11'Clien' -- +'tWidth'#3#181#1#8'TabOrder'#2#0#0#9'TComboBox'#11'comelemlist'#4'Left'#2#16 -- +#6'Height'#2#24#3'Top'#2#6#5'Width'#3#25#1#16'AutoCompleteText'#11#20'cbactS' -- +'earchAscending'#0#10'ItemHeight'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrd' -- +'er'#2#0#0#0#7'TButton'#6'DelCom'#4'Left'#3'H'#1#6'Height'#2#25#3'Top'#2#6#5 -- +'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnCl' -- +'ick'#7#11'DelComClick'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#10'GroupBox17'#4 -- +'Left'#2#8#6'Height'#2'?'#3'Top'#2'P'#5'Width'#3#185#1#7'Caption'#6#12'Quick' -- +' Delete'#12'ClientHeight'#2'0'#11'ClientWidth'#3#181#1#8'TabOrder'#2#1#0#6 -- +'TLabel'#8'Label239'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#16#5'Width'#3#173#0 -- +#7'Caption'#6'%Quickly delete all comet related data'#11'ParentColor'#8#0#0#7 -- +'TButton'#9'DelComAll'#4'Left'#3'H'#1#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K' -- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'De' -- +'lComAllClick'#8'TabOrder'#2#0#0#0#0#5'TMemo'#10'DelComMemo'#4'Left'#2#8#6'H' -- +'eight'#3#209#0#3'Top'#3#176#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'S' -- +'crollBars'#7#6'ssBoth'#8'TabOrder'#2#2#7'TabStop'#8#0#0#0#9'TTabSheet'#12'A' -- +'ddsinglecom'#7'Caption'#6#3'Add'#12'ClientHeight'#3#144#1#11'ClientWidth'#3 -- +#221#1#10'ImageIndex'#2#4#0#6'TLabel'#8'Label241'#4'Left'#2#8#6'Height'#2#14 -- +#3'Top'#2#8#5'Width'#3'&'#1#7'Caption'#6'>Add a single element to the databa' -- +'se. All field are mandatory.'#11'ParentColor'#8#0#0#6'TLabel'#8'Label242'#4 -- +'Left'#2#8#6'Height'#2#14#3'Top'#2'('#5'Width'#2'9'#7'Caption'#6#11'Designat' -- +'ion'#11'ParentColor'#8#0#0#6'TLabel'#8'Label243'#4'Left'#2#8#6'Height'#2#14 -- +#3'Top'#3#232#0#5'Width'#2'h'#7'Caption'#6#20'H absolute magnitude'#11'Paren' -- +'tColor'#8#0#0#6'TLabel'#8'Label244'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#3 -- +#232#0#5'Width'#2'Z'#7'Caption'#6#17'G slope parameter'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label245'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#3#168#0#5'Width' -- +#2'6'#7'Caption'#6#10'Epoch (JD)'#11'ParentColor'#8#0#0#6'TLabel'#8'Label246' -- +#4'Left'#3#160#0#6'Height'#2#14#3'Top'#2'('#5'Width'#2'G'#7'Caption'#6#15'Pe' -- +'rihelion date'#11'ParentColor'#8#0#0#6'TLabel'#8'Label247'#4'Left'#3#160#0#6 -- +'Height'#2#14#3'Top'#2'h'#5'Width'#2'n'#7'Caption'#6#22'Argument of periheli' -- +'on'#11'ParentColor'#8#0#0#6'TLabel'#8'Label248'#4'Left'#3'8'#1#6'Height'#2 -- +#14#3'Top'#2'h'#5'Width'#3#129#0#7'Caption'#6#24'Longitude ascending Node'#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label249'#4'Left'#2#8#6'Height'#2#14#3'Top'#3 -- +#168#0#5'Width'#2'0'#7'Caption'#6#11'Inclination'#11'ParentColor'#8#0#0#6'TL' -- +'abel'#8'Label250'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'9'#7'Ca' -- +'ption'#6#12'Eccentricity'#11'ParentColor'#8#0#0#6'TLabel'#8'Label251'#4'Lef' -- +'t'#3'8'#1#6'Height'#2#14#3'Top'#2'('#5'Width'#2'['#7'Caption'#6#19'Periheli' -- +'on distance'#11'ParentColor'#8#0#0#6'TLabel'#8'Label253'#4'Left'#3'8'#1#6'H' -- +'eight'#2#14#3'Top'#3#168#0#5'Width'#2''''#7'Caption'#6#7'Equinox'#11'Parent' -- +'Color'#8#0#0#6'TLabel'#8'Label254'#4'Left'#2#8#6'Height'#2#14#3'Top'#3'('#1 -- +#5'Width'#2#28#7'Caption'#6#4'Name'#11'ParentColor'#8#0#0#5'TEdit'#5'comid'#4 -- +'Left'#2#8#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'TabOrder'#2#0#0#0#5'TE' -- +'dit'#4'comh'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrd' -- +'er'#2#11#4'Text'#6#1'5'#0#0#5'TEdit'#4'comg'#4'Left'#3#160#0#6'Height'#2#21 -- +#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder'#2#12#4'Text'#6#2'10'#0#0#5'TEdit'#5 -- +'comep'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrd' -- ,'er'#2#9#0#0#5'TEdit'#7'comperi'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#128 -- +#0#5'Width'#2'd'#8'TabOrder'#2#6#4'Text'#6#3'0.0'#0#0#5'TEdit'#7'comnode'#4 -- +'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#7#4 -- +'Text'#6#3'0.0'#0#0#5'TEdit'#4'comi'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#192 -- +#0#5'Width'#2'd'#8'TabOrder'#2#8#4'Text'#6#3'0.0'#0#0#5'TEdit'#5'comec'#4'Le' -- +'ft'#2#8#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#5#4'Text' -- +#6#3'0.0'#0#0#5'TEdit'#4'comq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#2'@'#5'W' -- +'idth'#2'd'#8'TabOrder'#2#4#4'Text'#6#1'2'#0#0#5'TEdit'#6'comnam'#4'Left'#2#8 -- +#6'Height'#2#21#3'Top'#3'@'#1#5'Width'#3#1#1#8'TabOrder'#2#13#0#0#5'TEdit'#5 -- +'comeq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrde' -- +'r'#2#10#4'Text'#6#4'2000'#0#0#7'TButton'#6'AddCom'#4'Left'#3'8'#1#6'Height' -- +#2#25#3'Top'#3'@'#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Captio' -- +'n'#6#3'Add'#7'OnClick'#7#11'AddComClick'#8'TabOrder'#2#14#0#0#5'TEdit'#6'co' -- +'mt_y'#4'Left'#3#139#0#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'+'#8'TabOrder'#2 -- +#1#0#0#5'TEdit'#6'comt_m'#4'Left'#3#188#0#6'Height'#2#21#3'Top'#2'@'#5'Width' -- +#2#27#8'TabOrder'#2#2#0#0#5'TEdit'#6'comt_d'#4'Left'#3#221#0#6'Height'#2#21#3 -- +'Top'#2'@'#5'Width'#2'9'#8'TabOrder'#2#3#0#0#0#0#0#9'TTabSheet'#5'Page4'#7'C' -- +'aption'#6#5'Page4'#12'ClientHeight'#3#224#1#11'ClientWidth'#3#241#1#0#12'TP' -- +'ageControl'#14'AstPageControl'#4'Left'#2#0#6'Height'#3#173#1#3'Top'#2#4#5'W' -- +'idth'#3#225#1#10'ActivePage'#7#10'astsetting'#8'TabIndex'#2#0#8'TabOrder'#2 -- +#0#0#9'TTabSheet'#10'astsetting'#7'Caption'#6#15'General Setting'#12'ClientH' -- +'eight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#3#0#9'TGroupBox'#9 -- +'GroupBox9'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2#10#5'Width'#3#185#1#7'Capt' -- +'ion'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1#11'ClientWidth'#3#181#1#8 -- +'TabOrder'#2#0#0#6'TLabel'#8'Label203'#4'Left'#2#29#6'Height'#2','#3'Top'#3 -- +#172#0#5'Width'#3':'#1#8'AutoSize'#8#7'Caption'#6'6Do not take account of as' -- +'teroid fainter than magnitude'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' -- +#8'Label212'#4'Left'#2#29#6'Height'#2#14#3'Top'#3#244#0#5'Width'#2'S'#7'Capt' -- +'ion'#6#13'Show asteroid'#11'ParentColor'#8#0#0#6'TLabel'#8'Label213'#4'Left' -- +#3#218#0#6'Height'#2','#3'Top'#3#244#0#5'Width'#3#191#0#8'AutoSize'#8#7'Capt' -- +'ion'#6'!magnitude fainter than the stars.'#11'ParentColor'#8#8'WordWrap'#9#0 -- +#0#10'TFloatEdit'#11'astlimitmag'#4'Left'#3'm'#1#6'Height'#2#21#4'Hint'#6#5 -- +'0..99'#3'Top'#3#167#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' -- +'bOrder'#2#2#8'OnChange'#7#17'astlimitmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 -- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 -- +#9'TCheckBox'#7'showast'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#22#5'Width'#3 -- +#185#0#7'Caption'#6#27'Show asteroids on the chart'#7'OnClick'#7#12'showastC' -- +'lick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'astsymbol'#4'Left'#2#24#6'Heigh' -- +'t'#2'Y'#3'Top'#2'8'#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizing.LeftRight' -- +'Spacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHor' -- +'izontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24 -- +'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChi' -- +'lds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Lay' -- +'out'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1 -- +#12'ClientHeight'#2'U'#11'ClientWidth'#3#133#1#5'Color'#7#9'clBtnFace'#9'Ite' -- +'mIndex'#2#1#13'Items.Strings'#1#6'<Display as a symbol ' -- +' '#6'9Proportional to the magnitude ' -- +' '#0#7'OnClick'#7#14'astsymbolClick'#11'ParentColor'#8#8'TabOrder'#2#1 -- +#0#0#10'TFloatEdit'#10'astmagdiff'#4'Left'#3#161#0#6'Height'#2#21#4'Hint'#6#5 -- +'0..99'#3'Top'#3#239#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' -- +'bOrder'#2#3#8'OnChange'#7#16'astmagdiffChange'#5'Value'#5#0#0#0#0#0#0#0#0#0 -- +#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0 -- +#0#7'TButton'#8'astdbset'#4'Left'#2#17#6'Height'#2#25#3'Top'#3'^'#1#5'Width' -- +#3#194#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Database setting.' -- +'..'#7'OnClick'#7#13'astdbsetClick'#8'TabOrder'#2#1#7'Visible'#8#0#0#0#9'TTa' -- +'bSheet'#7'astload'#7'Caption'#6#13'Load MPC File'#12'ClientHeight'#3#144#1 -- +#11'ClientWidth'#3#221#1#10'ImageIndex'#2#1#0#6'TLabel'#8'Label206'#4'Left'#2 -- +#8#6'Height'#2#14#3'Top'#3#203#0#5'Width'#2'?'#7'Caption'#6#9'Messages:'#11 -- +'ParentColor'#8#0#0#5'TMemo'#7'MemoMPC'#4'Left'#2#8#6'Height'#3#174#0#3'Top' -- +#3#219#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth' -- +#8'TabOrder'#2#1#7'TabStop'#8#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#8#6'He' -- +'ight'#2'X'#3'Top'#2'k'#5'Width'#3#185#1#7'Caption'#6#7'Options'#12'ClientHe' -- +'ight'#2'I'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label215'#4 -- +'Left'#3#2#1#6'Height'#2#14#3'Top'#2'-'#5'Width'#3#129#0#7'Caption'#6#23'Ast' -- ,'eroids from the file'#11'ParentColor'#8#0#0#9'TCheckBox'#11'astnumbered'#4 -- +'Left'#2#20#6'Height'#2#21#3'Top'#2#6#5'Width'#3#168#0#7'Caption'#6#23'Only ' -- +'numbered asteroids'#8'TabOrder'#2#0#0#0#9'TCheckBox'#10'aststoperr'#4'Left' -- +#3#241#0#6'Height'#2#21#3'Top'#2#6#5'Width'#3#148#0#7'Caption'#6#22'Halt aft' -- +'er 1000 errors'#7'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#9 -- +'TCheckBox'#11'astlimitbox'#4'Left'#2#20#6'Height'#2#21#3'Top'#2''''#5'Width' -- +#3#130#0#7'Caption'#6#20'Load only the first '#8'TabOrder'#2#2#0#0#9'TLongEd' -- +'it'#8'astlimit'#4'Left'#3#197#0#6'Height'#2#21#4'Hint'#6#9'0..999999'#3'Top' -- +#2''''#5'Width'#2'1'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#5'Va' -- +'lue'#3#136#19#8'MaxValue'#4'?B'#15#0#0#0#0#12'TPageControl'#15'AstPageContr' -- +'ol2'#4'Left'#2#8#6'Height'#2'`'#3'Top'#2#3#5'Width'#3#185#1#10'ActivePage'#7 -- +#9'TabSheet3'#8'TabIndex'#2#0#8'TabOrder'#2#2#0#9'TTabSheet'#9'TabSheet3'#7 -- +'Caption'#6#20'Load MPC format file'#12'ClientHeight'#2'C'#11'ClientWidth'#3 -- +#181#1#0#6'TLabel'#6'Label1'#4'Left'#2#22#6'Height'#2#14#3'Top'#2#24#5'Width' -- +#3#189#0#7'Caption'#6' Download latest orbital elements'#11'ParentColor'#8#0 -- +#0#7'TButton'#16'DownloadAsteroid'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#19 -- +#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Download'#7 -- +'OnClick'#7#21'DownloadAsteroidClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#9'T' -- +'abSheet4'#7'Caption'#6#21'Or use a local file :'#12'ClientHeight'#2'C'#11'C' -- +'lientWidth'#3#181#1#0#13'TFileNameEdit'#7'mpcfile'#4'Left'#2#14#6'Height'#2 -- +#21#3'Top'#2#21#5'Width'#3#232#0#13'DialogOptions'#11#0#6'Filter'#6'&MPCORB ' -- +'Files|MPCORB*.DAT|All Files|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8 -- +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#7 -- +'TButton'#7'LoadMPC'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#19#5'Width'#2'a' -- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file'#7'OnClick'#7#12 -- +'LoadMPCClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#10'astprepare'#7'Capti' -- +'on'#6#20'Prepare Monthly Data'#12'ClientHeight'#3#144#1#11'ClientWidth'#3 -- +#221#1#10'ImageIndex'#2#2#0#6'TLabel'#8'Label210'#4'Left'#2#8#6'Height'#2#14 -- +#3'Top'#2'm'#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9 -- +'TGroupBox'#9'GroupBox8'#4'Left'#2#8#6'Height'#2'^'#3'Top'#2#7#5'Width'#3#185 -- +#1#7'Caption'#6#13'Prepare data '#12'ClientHeight'#2'O'#11'ClientWidth'#3#181 -- +#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label7'#4'Left'#2#9#6'Height'#2#14#3'Top'#2 -- +#13#5'Width'#2'8'#7'Caption'#6#11'Start Month'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#8'Label207'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'2'#5'Width'#2'S'#7'Capti' -- +'on'#6#15'Number of Month'#11'ParentColor'#8#0#0#7'TButton'#10'AstCompute'#4 -- +'Left'#3#25#1#6'Height'#2#25#3'Top'#2'*'#5'Width'#2'K'#25'BorderSpacing.Inne' -- +'rBorder'#2#4#7'Caption'#6#7'Compute'#7'OnClick'#7#15'AstComputeClick'#8'Tab' -- +'Order'#2#2#0#0#5'TEdit'#13'aststrtdate_y'#4'Left'#3#177#0#6'Height'#2#21#3 -- +'Top'#2#5#5'Width'#2'B'#8'TabOrder'#2#0#0#0#5'TEdit'#13'aststrtdate_m'#4'Lef' -- +'t'#3#1#1#6'Height'#2#21#3'Top'#2#5#5'Width'#2' '#8'TabOrder'#2#1#0#0#7'TUpD' -- +'own'#11'astnummonth'#4'Left'#3#225#0#6'Height'#2#21#3'Top'#2'.'#5'Width'#2 -- +#17#9'Associate'#7#15'astnummonthEdit'#3'Min'#2#2#3'Max'#2#12#8'Position'#2#2 -- +#8'TabOrder'#2#3#4'Wrap'#8#0#0#5'TEdit'#15'astnummonthEdit'#4'Left'#3#177#0#6 -- +'Height'#2#21#3'Top'#2'.'#5'Width'#2'0'#8'TabOrder'#2#4#0#0#0#5'TMemo'#11'pr' -- +'epastmemo'#4'Left'#2#8#6'Height'#3#244#0#3'Top'#3#133#0#5'Width'#3#185#1#5 -- +'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#1#7'TabStop' -- +#8#0#0#0#9'TTabSheet'#9'astdelete'#7'Caption'#6#16'Data Maintenance'#12'Clie' -- +'ntHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#3#0#6'TLabel'#8 -- +'Label211'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#184#0#5'Width'#2'6'#7'Caption' -- +#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox10'#4'Left'#2#8 -- +#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27'Delete MPC data' -- +' selectively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0 -- +#0#9'TComboBox'#11'astelemlist'#4'Left'#2#16#6'Height'#2#24#3'Top'#2#14#5'Wi' -- +'dth'#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeigh' -- +'t'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TButton'#6'delas' -- +'t'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#25'BorderSpacing' -- +'.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'delastClick'#8'Tab' -- +'Order'#2#1#0#0#0#9'TGroupBox'#10'GroupBox11'#4'Left'#2#8#6'Height'#2'1'#3'T' -- +'op'#3#128#0#5'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'ClientHeight' -- +#2'"'#11'ClientWidth'#3#181#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label209'#4'Left' -- +#2#12#6'Height'#2#14#3'Top'#2#8#5'Width'#3#183#0#7'Caption'#6'(Quickly delet' -- +'e all asteroid related data'#11'ParentColor'#8#0#0#7'TButton'#9'delallast'#4 -- +'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#25'BorderSpacing.Inner' -- +'Border'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'delallastClick'#8'TabOrd' -- ,'er'#2#0#0#0#0#5'TMemo'#10'delastMemo'#4'Left'#2#8#6'Height'#3#177#0#3'Top'#3 -- +#208#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8 -- +'TabOrder'#2#2#7'TabStop'#8#0#0#9'TGroupBox'#10'GroupBox12'#4'Left'#2#8#6'He' -- +'ight'#2'9'#3'Top'#2'H'#5'Width'#3#185#1#7'Caption'#6#20'Delete Monthly data' -- +' '#12'ClientHeight'#2'*'#11'ClientWidth'#3#181#1#8'TabOrder'#2#1#0#6'TLabel' -- +#8'Label214'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#12#5'Width'#3#149#0#7'Capt' -- +'ion'#6#31'Delete Monthly data older than '#11'ParentColor'#8#0#0#7'TButton' -- +#10'deldateast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'K'#25'Bo' -- +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#15'deldate' -- +'astClick'#8'TabOrder'#2#2#0#0#5'TEdit'#12'astdeldate_y'#4'Left'#3#1#1#6'Hei' -- +'ght'#2#21#3'Top'#2#8#5'Width'#2'0'#8'TabOrder'#2#0#4'Text'#6#4'2007'#0#0#5 -- +'TEdit'#12'astdeldate_m'#4'Left'#3'9'#1#6'Height'#2#21#3'Top'#2#8#5'Width'#2 -- +#24#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#12'AddsingleAst'#7'Caption'#6#3'Add' -- +#12'ClientHeight'#3#144#1#11'ClientWidth'#3#221#1#10'ImageIndex'#2#4#0#6'TLa' -- +'bel'#8'Label217'#4'Left'#2#8#6'Height'#2#15#3'Top'#2#8#5'Width'#3#130#1#7'C' -- +'aption'#6'>Add a single element to the database. All field are mandatory.' -- +#11'ParentColor'#8#0#0#6'TLabel'#8'Label218'#4'Left'#2#8#6'Height'#2#15#3'To' -- +'p'#2'('#5'Width'#2'L'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0#6 -- +'TLabel'#8'Label219'#4'Left'#3#160#0#6'Height'#2#15#3'Top'#2'('#5'Width'#3 -+ +#0#0#0#0#1#0#0#0#0#0#0#0#0#0#0#1#0#0#0#0#1#0#1#0#0#0#1#0#0#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6'L' -+ +'ayout'#7#10'blGlyphTop'#6'Margin'#2#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'Xpla' -+ +'netBtnClick'#8'TabOrder'#2#0#7'TabStop'#8#0#0#5'TEdit'#10'XplanetDir'#4'Lef' -+ +'t'#2'|'#6'Height'#2#21#3'Top'#2#25#5'Width'#3#156#0#8'OnChange'#7#16'Xplane' -+ +'tDirChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#10'UseXplanet'#4'Left'#2#15#6 -+ +'Height'#2#21#3'Top'#2#25#5'Width'#2'Q'#7'Caption'#6#11'Use Xplanet'#7'OnCli' -+ +'ck'#7#15'UseXplanetClick'#8'TabOrder'#2#2#0#0#0#0#9'TTabSheet'#5'Page3'#7'C' -+ +'aption'#6#5'Page3'#12'ClientHeight'#3#193#1#11'ClientWidth'#3#239#1#0#12'TP' -+ +'ageControl'#14'ComPageControl'#4'Left'#2#253#6'Height'#3#173#1#3'Top'#2#4#5 -+ +'Width'#3#225#1#10'ActivePage'#7#10'comsetting'#8'TabIndex'#2#0#8'TabOrder'#2 -+ +#0#0#9'TTabSheet'#10'comsetting'#7'Caption'#6#15'General Setting'#12'ClientH' -+ +'eight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0#9'TGroupBox'#10 -+ +'GroupBox13'#4'Left'#2#9#6'Height'#3'<'#1#3'Top'#2#10#5'Width'#3#185#1#7'Cap' -+ +'tion'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1#11'ClientWidth'#3#181#1#8 -+ +'TabOrder'#2#0#0#6'TLabel'#8'Label154'#4'Left'#2' '#6'Height'#2'.'#3'Top'#3 -+ +#162#0#5'Width'#3'.'#1#8'AutoSize'#8#7'Caption'#6'3Do not take account of co' -+ +'met fainter than magnitude'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#8 -+ +'Label216'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#239#0#5'Width'#2'G'#7'Captio' -+ +'n'#6#10'Show comet'#11'ParentColor'#8#0#0#6'TLabel'#8'Label231'#4'Left'#3 -+ +#200#0#6'Height'#2'4'#3'Top'#3#239#0#5'Width'#3#191#0#8'AutoSize'#8#7'Captio' -+ +'n'#6'!magnitude fainter than the stars.'#11'ParentColor'#8#8'WordWrap'#9#0#0 -+ +#10'TFloatEdit'#11'comlimitmag'#4'Left'#3'^'#1#6'Height'#2#21#4'Hint'#6#5'0.' -+ +'.99'#3'Top'#3#159#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' -+ +'rder'#2#2#8'OnChange'#7#17'comlimitmagChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -+ +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#9 -+ +'TCheckBox'#7'showcom'#4'Left'#2' '#6'Height'#2#21#3'Top'#2#14#5'Width'#3#173 -+ +#0#7'Caption'#6#24'Show comets on the chart'#7'OnClick'#7#12'showcomClick'#8 -+ +'TabOrder'#2#0#0#0#11'TRadioGroup'#9'comsymbol'#4'Left'#2#24#6'Height'#2'`'#3 -+ +'Top'#2''''#5'Width'#3#137#1#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2 -+ +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 -+ +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' -+ +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' -+ +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 -+ +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'Clien' -+ +'tHeight'#2'\'#11'ClientWidth'#3#133#1#5'Color'#7#9'clBtnFace'#9'ItemIndex'#2 -+ +#1#13'Items.Strings'#1#6'<Display as a symbol ' -+ +' '#6'>Proportional to the tail length ' -+ +' '#0#7'OnClick'#7#14'comsymbolClick'#11'ParentColor'#8#8'TabOrder'#2#1#0#0 -+ +#10'TFloatEdit'#10'commagdiff'#4'Left'#3#140#0#6'Height'#2#21#4'Hint'#6#5'0.' -+ +'.99'#3'Top'#3#234#0#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabO' -+ +'rder'#2#3#8'OnChange'#7#16'commagdiffChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0 -+ +#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#198#5'@'#0#0#0 -+ +#7'TButton'#8'comdbset'#4'Left'#2#17#6'Height'#2#25#3'Top'#3'f'#1#5'Width'#3 -+ +#185#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'Database setting...' -+ +#7'OnClick'#7#13'comdbsetClick'#8'TabOrder'#2#1#7'Visible'#8#0#0#0#9'TTabShe' -+ +'et'#7'comload'#7'Caption'#6#13'Load MPC File'#12'ClientHeight'#3#138#1#11'C' -+ +'lientWidth'#3#219#1#10'ImageIndex'#2#1#0#6'TLabel'#8'Label232'#4'Left'#2#15 -+ +#6'Height'#2#14#3'Top'#2'{'#5'Width'#2'?'#7'Caption'#6#9'Messages:'#11'Paren' -+ +'tColor'#8#0#0#5'TMemo'#7'MemoCom'#4'Left'#2#8#6'Height'#3#242#0#3'Top'#3#143 -+ +#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'Tab' -+ +'Order'#2#0#7'TabStop'#8#0#0#12'TPageControl'#15'ComPageControl1'#4'Left'#2 -+ +#13#6'Height'#2'h'#3'Top'#2#11#5'Width'#3#180#1#10'ActivePage'#7#9'TabSheet1' -+ +#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Caption'#6#20 -+ ,'Load MPC format file'#12'ClientHeight'#2'E'#11'ClientWidth'#3#174#1#0#6'TLa' -+ +'bel'#6'Label2'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#27#5'Width'#3#189#0#7'C' -+ +'aption'#6' Download latest orbital elements'#11'ParentColor'#8#0#0#7'TButto' -+ +'n'#13'DownloadComet'#4'Left'#3'='#1#6'Height'#2#25#3'Top'#2#22#5'Width'#2'a' -+ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Download'#7'OnClick'#7#18 -+ +'DownloadCometClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Capti' -+ +'on'#6#21'Or use a local file :'#12'ClientHeight'#2'E'#11'ClientWidth'#3#174 -+ +#1#0#13'TFileNameEdit'#7'comfile'#4'Left'#2#13#6'Height'#2#20#3'Top'#2#24#5 -+ +'Width'#3#9#1#13'DialogOptions'#11#0#6'Filter'#6'"Comet Files|COM*.DAT|All F' -+ +'iles|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9 -+ +'NumGlyphs'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Loadcom'#4'Left'#3'E'#1#6'H' -+ +'eight'#2#25#3'Top'#2#22#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'C' -+ +'aption'#6#9'Load file'#7'OnClick'#7#12'LoadcomClick'#8'TabOrder'#2#1#0#0#0#0 -+ +#0#9'TTabSheet'#9'comdelete'#7'Caption'#6#16'Data Maintenance'#12'ClientHeig' -+ +'ht'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0#6'TLabel'#8'Label2' -+ +'38'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#151#0#5'Width'#2'6'#7'Caption'#6#9 -+ +'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox16'#4'Left'#2#8#6 -+ +'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27'Delete MPC data s' -+ +'electively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0 -+ +#9'TComboBox'#11'comelemlist'#4'Left'#2#16#6'Height'#2#24#3'Top'#2#6#5'Width' -+ +#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0 -+ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TButton'#6'DelCom'#4'Le' -+ +'ft'#3'H'#1#6'Height'#2#25#3'Top'#2#6#5'Width'#2'K'#25'BorderSpacing.InnerBo' -+ +'rder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'DelComClick'#8'TabOrder'#2 -+ +#1#0#0#0#9'TGroupBox'#10'GroupBox17'#4'Left'#2#8#6'Height'#2'?'#3'Top'#2'P'#5 -+ +'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'ClientHeight'#2'0'#11'Clien' -+ +'tWidth'#3#181#1#8'TabOrder'#2#1#0#6'TLabel'#8'Label239'#4'Left'#2#12#6'Heig' -+ +'ht'#2#14#3'Top'#2#16#5'Width'#3#173#0#7'Caption'#6'%Quickly delete all come' -+ +'t related data'#11'ParentColor'#8#0#0#7'TButton'#9'DelComAll'#4'Left'#3'H'#1 -+ +#6'Height'#2#25#3'Top'#2#8#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 -+ +'Caption'#6#6'Delete'#7'OnClick'#7#14'DelComAllClick'#8'TabOrder'#2#0#0#0#0#5 -+ +'TMemo'#10'DelComMemo'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#3#176#0#5'Width' -+ +#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#2#7 -+ +'TabStop'#8#0#0#0#9'TTabSheet'#12'Addsinglecom'#7'Caption'#6#3'Add'#12'Clien' -+ +'tHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#4#0#6'TLabel'#8'L' -+ +'abel241'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8#5'Width'#3'&'#1#7'Caption'#6 -+ +'>Add a single element to the database. All field are mandatory.'#11'ParentC' -+ +'olor'#8#0#0#6'TLabel'#8'Label242'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'('#5 -+ +'Width'#2'9'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label243'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2'h'#7'Caption' -+ +#6#20'H absolute magnitude'#11'ParentColor'#8#0#0#6'TLabel'#8'Label244'#4'Le' -+ +'ft'#3#160#0#6'Height'#2#14#3'Top'#3#232#0#5'Width'#2'Z'#7'Caption'#6#17'G s' -+ +'lope parameter'#11'ParentColor'#8#0#0#6'TLabel'#8'Label245'#4'Left'#3#160#0 -+ +#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'6'#7'Caption'#6#10'Epoch (JD)'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#8'Label246'#4'Left'#3#160#0#6'Height'#2#14#3'T' -+ +'op'#2'('#5'Width'#2'G'#7'Caption'#6#15'Perihelion date'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#8'Label247'#4'Left'#3#160#0#6'Height'#2#14#3'Top'#2'h'#5'Width' -+ +#2'n'#7'Caption'#6#22'Argument of perihelion'#11'ParentColor'#8#0#0#6'TLabel' -+ +#8'Label248'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2'h'#5'Width'#3#129#0#7'Ca' -+ +'ption'#6#24'Longitude ascending Node'#11'ParentColor'#8#0#0#6'TLabel'#8'Lab' -+ +'el249'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'0'#7'Caption'#6 -+ +#11'Inclination'#11'ParentColor'#8#0#0#6'TLabel'#8'Label250'#4'Left'#2#8#6'H' -+ +'eight'#2#14#3'Top'#2'h'#5'Width'#2'9'#7'Caption'#6#12'Eccentricity'#11'Pare' -+ +'ntColor'#8#0#0#6'TLabel'#8'Label251'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#2 -+ +'('#5'Width'#2'['#7'Caption'#6#19'Perihelion distance'#11'ParentColor'#8#0#0 -+ +#6'TLabel'#8'Label253'#4'Left'#3'8'#1#6'Height'#2#14#3'Top'#3#168#0#5'Width' -+ +#2''''#7'Caption'#6#7'Equinox'#11'ParentColor'#8#0#0#6'TLabel'#8'Label254'#4 -+ +'Left'#2#8#6'Height'#2#14#3'Top'#3'('#1#5'Width'#2#28#7'Caption'#6#4'Name'#11 -+ +'ParentColor'#8#0#0#5'TEdit'#5'comid'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'@' -+ +#5'Width'#2'd'#8'TabOrder'#2#0#0#0#5'TEdit'#4'comh'#4'Left'#2#8#6'Height'#2 -+ +#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder'#2#11#4'Text'#6#1'5'#0#0#5'TEdit'#4 -+ +'comg'#4'Left'#3#160#0#6'Height'#2#21#3'Top'#3#0#1#5'Width'#2'd'#8'TabOrder' -+ +#2#12#4'Text'#6#2'10'#0#0#5'TEdit'#5'comep'#4'Left'#3#160#0#6'Height'#2#21#3 -+ +'Top'#3#192#0#5'Width'#2'd'#8'TabOrder'#2#9#0#0#5'TEdit'#7'comperi'#4'Left'#3 -+ ,#160#0#6'Height'#2#21#3'Top'#3#128#0#5'Width'#2'd'#8'TabOrder'#2#6#4'Text'#6 -+ +#3'0.0'#0#0#5'TEdit'#7'comnode'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3#128#0 -+ +#5'Width'#2'd'#8'TabOrder'#2#7#4'Text'#6#3'0.0'#0#0#5'TEdit'#4'comi'#4'Left' -+ +#2#8#6'Height'#2#21#3'Top'#3#192#0#5'Width'#2'd'#8'TabOrder'#2#8#4'Text'#6#3 -+ +'0.0'#0#0#5'TEdit'#5'comec'#4'Left'#2#8#6'Height'#2#21#3'Top'#3#128#0#5'Widt' -+ +'h'#2'd'#8'TabOrder'#2#5#4'Text'#6#3'0.0'#0#0#5'TEdit'#4'comq'#4'Left'#3'8'#1 -+ +#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'TabOrder'#2#4#4'Text'#6#1'2'#0#0 -+ +#5'TEdit'#6'comnam'#4'Left'#2#8#6'Height'#2#21#3'Top'#3'@'#1#5'Width'#3#1#1#8 -+ +'TabOrder'#2#13#0#0#5'TEdit'#5'comeq'#4'Left'#3'8'#1#6'Height'#2#21#3'Top'#3 -+ +#192#0#5'Width'#2'd'#8'TabOrder'#2#10#4'Text'#6#4'2000'#0#0#7'TButton'#6'Add' -+ +'Com'#4'Left'#3'8'#1#6'Height'#2#25#3'Top'#3'@'#1#5'Width'#2'K'#25'BorderSpa' -+ +'cing.InnerBorder'#2#4#7'Caption'#6#3'Add'#7'OnClick'#7#11'AddComClick'#8'Ta' -+ +'bOrder'#2#14#0#0#5'TEdit'#6'comt_y'#4'Left'#3#139#0#6'Height'#2#21#3'Top'#2 -+ +'@'#5'Width'#2'+'#8'TabOrder'#2#1#0#0#5'TEdit'#6'comt_m'#4'Left'#3#188#0#6'H' -+ +'eight'#2#21#3'Top'#2'@'#5'Width'#2#27#8'TabOrder'#2#2#0#0#5'TEdit'#6'comt_d' -+ +#4'Left'#3#221#0#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'9'#8'TabOrder'#2#3#0#0 -+ +#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3#193#1 -+ +#11'ClientWidth'#3#239#1#0#12'TPageControl'#14'AstPageControl'#4'Left'#2#0#6 -+ +'Height'#3#173#1#3'Top'#2#4#5'Width'#3#225#1#10'ActivePage'#7#10'astsetting' -+ +#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#10'astsetting'#7'Caption'#6 -+ +#15'General Setting'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'Ima' -+ +'geIndex'#2#3#0#9'TGroupBox'#9'GroupBox9'#4'Left'#2#9#6'Height'#3'<'#1#3'Top' -+ +#2#10#5'Width'#3#185#1#7'Caption'#6#13'Chart Setting'#12'ClientHeight'#3'-'#1 -+ +#11'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#8'Label203'#4'Left'#2#29 -+ +#6'Height'#2','#3'Top'#3#172#0#5'Width'#3':'#1#8'AutoSize'#8#7'Caption'#6'6D' -+ +'o not take account of asteroid fainter than magnitude'#11'ParentColor'#8#8 -+ +'WordWrap'#9#0#0#6'TLabel'#8'Label212'#4'Left'#2#29#6'Height'#2#14#3'Top'#3 -+ +#244#0#5'Width'#2'S'#7'Caption'#6#13'Show asteroid'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#8'Label213'#4'Left'#3#218#0#6'Height'#2','#3'Top'#3#244#0#5'Width'#3 -+ +#191#0#8'AutoSize'#8#7'Caption'#6'!magnitude fainter than the stars.'#11'Par' -+ +'entColor'#8#8'WordWrap'#9#0#0#10'TFloatEdit'#11'astlimitmag'#4'Left'#3'm'#1 -+ +#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#167#0#5'Width'#2')'#14'ParentSho' -+ +'wHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#8'OnChange'#7#17'astlimitmagChange'#5 -+ +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5 -+ +#0#0#0#0#0#0#0#198#5'@'#0#0#9'TCheckBox'#7'showast'#4'Left'#2' '#6'Height'#2 -+ +#21#3'Top'#2#22#5'Width'#3#185#0#7'Caption'#6#27'Show asteroids on the chart' -+ +#7'OnClick'#7#12'showastClick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#9'astsymb' -+ +'ol'#4'Left'#2#24#6'Height'#2'Y'#3'Top'#2'8'#5'Width'#3#137#1#8'AutoFill'#9 -+ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 -+ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' -+ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' -+ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' -+ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' -+ +'zing.ControlsPerLine'#2#1#12'ClientHeight'#2'U'#11'ClientWidth'#3#133#1#5'C' -+ +'olor'#7#9'clBtnFace'#9'ItemIndex'#2#1#13'Items.Strings'#1#6'<Display as a s' -+ +'ymbol '#6'9Proportional to the magn' -+ +'itude '#0#7'OnClick'#7#14'astsymbolClick'#11'Par' -+ +'entColor'#8#8'TabOrder'#2#1#0#0#10'TFloatEdit'#10'astmagdiff'#4'Left'#3#161 -+ +#0#6'Height'#2#21#4'Hint'#6#5'0..99'#3'Top'#3#239#0#5'Width'#2')'#14'ParentS' -+ +'howHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#8'OnChange'#7#16'astmagdiffChange' -+ +#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue' -+ +#5#0#0#0#0#0#0#0#198#5'@'#0#0#0#7'TButton'#8'astdbset'#4'Left'#2#17#6'Height' -+ +#2#25#3'Top'#3'^'#1#5'Width'#3#194#0#25'BorderSpacing.InnerBorder'#2#4#7'Cap' -+ +'tion'#6#19'Database setting...'#7'OnClick'#7#13'astdbsetClick'#8'TabOrder'#2 -+ +#1#7'Visible'#8#0#0#0#9'TTabSheet'#7'astload'#7'Caption'#6#13'Load MPC File' -+ +#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#1#0#6'TLa' -+ +'bel'#8'Label206'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#203#0#5'Width'#2'?'#7 -+ +'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#5'TMemo'#7'MemoMPC'#4'Left'#2 -+ +#8#6'Height'#3#174#0#3'Top'#3#219#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace' -+ +#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#1#7'TabStop'#8#0#0#9'TGroupBox'#9 -+ +'GroupBox1'#4'Left'#2#8#6'Height'#2'X'#3'Top'#2'k'#5'Width'#3#185#1#7'Captio' -+ +'n'#6#7'Options'#12'ClientHeight'#2'I'#11'ClientWidth'#3#181#1#8'TabOrder'#2 -+ +#0#0#6'TLabel'#8'Label215'#4'Left'#3#2#1#6'Height'#2#14#3'Top'#2'-'#5'Width' -+ +#3#129#0#7'Caption'#6#23'Asteroids from the file'#11'ParentColor'#8#0#0#9'TC' -+ ,'heckBox'#11'astnumbered'#4'Left'#2#20#6'Height'#2#21#3'Top'#2#6#5'Width'#3 -+ +#168#0#7'Caption'#6#23'Only numbered asteroids'#8'TabOrder'#2#0#0#0#9'TCheck' -+ +'Box'#10'aststoperr'#4'Left'#3#241#0#6'Height'#2#21#3'Top'#2#6#5'Width'#3#148 -+ +#0#7'Caption'#6#22'Halt after 1000 errors'#7'Checked'#9#5'State'#7#9'cbCheck' -+ +'ed'#8'TabOrder'#2#1#0#0#9'TCheckBox'#11'astlimitbox'#4'Left'#2#20#6'Height' -+ +#2#21#3'Top'#2''''#5'Width'#3#130#0#7'Caption'#6#20'Load only the first '#8 -+ +'TabOrder'#2#2#0#0#9'TLongEdit'#8'astlimit'#4'Left'#3#197#0#6'Height'#2#21#4 -+ +'Hint'#6#9'0..999999'#3'Top'#2''''#5'Width'#2'1'#14'ParentShowHint'#8#8'Show' -+ +'Hint'#9#8'TabOrder'#2#3#5'Value'#3#136#19#8'MaxValue'#4'?B'#15#0#0#0#0#12'T' -+ +'PageControl'#15'AstPageControl2'#4'Left'#2#8#6'Height'#2'`'#3'Top'#2#3#5'Wi' -+ +'dth'#3#185#1#10'ActivePage'#7#9'TabSheet3'#8'TabIndex'#2#0#8'TabOrder'#2#2#0 -+ +#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#20'Load MPC format file'#12'ClientHe' -+ +'ight'#2'='#11'ClientWidth'#3#179#1#0#6'TLabel'#6'Label1'#4'Left'#2#22#6'Hei' -+ +'ght'#2#14#3'Top'#2#24#5'Width'#3#189#0#7'Caption'#6' Download latest orbita' -+ +'l elements'#11'ParentColor'#8#0#0#7'TButton'#16'DownloadAsteroid'#4'Left'#3 -+ +'.'#1#6'Height'#2#25#3'Top'#2#19#5'Width'#2'a'#25'BorderSpacing.InnerBorder' -+ +#2#4#7'Caption'#6#8'Download'#7'OnClick'#7#21'DownloadAsteroidClick'#8'TabOr' -+ +'der'#2#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#21'Or use a local fil' -+ +'e :'#12'ClientHeight'#2'='#11'ClientWidth'#3#179#1#0#13'TFileNameEdit'#7'mp' -+ +'cfile'#4'Left'#2#14#6'Height'#2#21#3'Top'#2#21#5'Width'#3#232#0#13'DialogOp' -+ +'tions'#11#0#6'Filter'#6'&MPCORB Files|MPCORB*.DAT|All Files|*.*'#11'FilterI' -+ +'ndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'Tab' -+ +'Order'#2#0#0#0#7'TButton'#7'LoadMPC'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2 -+ +#19#5'Width'#2'a'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'Load file' -+ +#7'OnClick'#7#12'LoadMPCClick'#8'TabOrder'#2#1#0#0#0#0#0#9'TTabSheet'#10'ast' -+ +'prepare'#7'Caption'#6#20'Prepare Monthly Data'#12'ClientHeight'#3#138#1#11 -+ +'ClientWidth'#3#219#1#10'ImageIndex'#2#2#0#6'TLabel'#8'Label210'#4'Left'#2#8 -+ +#6'Height'#2#14#3'Top'#2'm'#5'Width'#2'6'#7'Caption'#6#9'Messages:'#11'Paren' -+ +'tColor'#8#0#0#9'TGroupBox'#9'GroupBox8'#4'Left'#2#8#6'Height'#2'^'#3'Top'#2 -+ +#7#5'Width'#3#185#1#7'Caption'#6#13'Prepare data '#12'ClientHeight'#2'O'#11 -+ +'ClientWidth'#3#181#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label7'#4'Left'#2#9#6'He' -+ +'ight'#2#14#3'Top'#2#13#5'Width'#2'8'#7'Caption'#6#11'Start Month'#11'Parent' -+ +'Color'#8#0#0#6'TLabel'#8'Label207'#4'Left'#2#9#6'Height'#2#14#3'Top'#2'2'#5 -+ +'Width'#2'S'#7'Caption'#6#15'Number of Month'#11'ParentColor'#8#0#0#7'TButto' -+ +'n'#10'AstCompute'#4'Left'#3#25#1#6'Height'#2#25#3'Top'#2'*'#5'Width'#2'K'#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'Compute'#7'OnClick'#7#15'AstC' -+ +'omputeClick'#8'TabOrder'#2#2#0#0#5'TEdit'#13'aststrtdate_y'#4'Left'#3#177#0 -+ +#6'Height'#2#21#3'Top'#2#5#5'Width'#2'B'#8'TabOrder'#2#0#0#0#5'TEdit'#13'ast' -+ +'strtdate_m'#4'Left'#3#1#1#6'Height'#2#21#3'Top'#2#5#5'Width'#2' '#8'TabOrde' -+ +'r'#2#1#0#0#7'TUpDown'#11'astnummonth'#4'Left'#3#225#0#6'Height'#2#21#3'Top' -+ +#2'.'#5'Width'#2#17#9'Associate'#7#15'astnummonthEdit'#3'Min'#2#2#3'Max'#2#12 -+ +#8'Position'#2#2#8'TabOrder'#2#3#4'Wrap'#8#0#0#5'TEdit'#15'astnummonthEdit'#4 -+ +'Left'#3#177#0#6'Height'#2#21#3'Top'#2'.'#5'Width'#2'0'#8'TabOrder'#2#4#0#0#0 -+ +#5'TMemo'#11'prepastmemo'#4'Left'#2#8#6'Height'#3#244#0#3'Top'#3#133#0#5'Wid' -+ +'th'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2 -+ +#1#7'TabStop'#8#0#0#0#9'TTabSheet'#9'astdelete'#7'Caption'#6#16'Data Mainten' -+ +'ance'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#3#0 -+ +#6'TLabel'#8'Label211'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#184#0#5'Width'#2 -+ +'6'#7'Caption'#6#9'Messages:'#11'ParentColor'#8#0#0#9'TGroupBox'#10'GroupBox' -+ +'10'#4'Left'#2#8#6'Height'#2'<'#3'Top'#2#10#5'Width'#3#185#1#7'Caption'#6#27 -+ +'Delete MPC data selectively'#12'ClientHeight'#2'-'#11'ClientWidth'#3#181#1#8 -+ +'TabOrder'#2#0#0#9'TComboBox'#11'astelemlist'#4'Left'#2#16#6'Height'#2#24#3 -+ +'Top'#2#14#5'Width'#3#25#1#16'AutoCompleteText'#11#20'cbactSearchAscending'#0 -+ +#10'ItemHeight'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#7'TBut' -+ +'ton'#6'delast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#25'B' -+ +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#11'delast' -+ +'Click'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'#10'GroupBox11'#4'Left'#2#8#6'Heig' -+ +'ht'#2'1'#3'Top'#3#128#0#5'Width'#3#185#1#7'Caption'#6#12'Quick Delete'#12'C' -+ +'lientHeight'#2'"'#11'ClientWidth'#3#181#1#8'TabOrder'#2#3#0#6'TLabel'#8'Lab' -+ +'el209'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#8#5'Width'#3#183#0#7'Caption'#6 -+ +'(Quickly delete all asteroid related data'#11'ParentColor'#8#0#0#7'TButton' -+ +#9'delallast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#0#5'Width'#2'K'#25'Bord' -+ +'erSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7#14'delallast' -+ +'Click'#8'TabOrder'#2#0#0#0#0#5'TMemo'#10'delastMemo'#4'Left'#2#8#6'Height'#3 -+ ,#177#0#3'Top'#3#208#0#5'Width'#3#185#1#5'Color'#7#9'clBtnFace'#10'ScrollBars' -+ +#7#6'ssBoth'#8'TabOrder'#2#2#7'TabStop'#8#0#0#9'TGroupBox'#10'GroupBox12'#4 -+ +'Left'#2#8#6'Height'#2'9'#3'Top'#2'H'#5'Width'#3#185#1#7'Caption'#6#20'Delet' -+ +'e Monthly data '#12'ClientHeight'#2'*'#11'ClientWidth'#3#181#1#8'TabOrder'#2 -+ +#1#0#6'TLabel'#8'Label214'#4'Left'#2#12#6'Height'#2#14#3'Top'#2#12#5'Width'#3 -+ +#149#0#7'Caption'#6#31'Delete Monthly data older than '#11'ParentColor'#8#0#0 -+ +#7'TButton'#10'deldateast'#4'Left'#3'\'#1#6'Height'#2#25#3'Top'#2#4#5'Width' -+ +#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Delete'#7'OnClick'#7 -+ +#15'deldateastClick'#8'TabOrder'#2#2#0#0#5'TEdit'#12'astdeldate_y'#4'Left'#3 -+ +#1#1#6'Height'#2#21#3'Top'#2#8#5'Width'#2'0'#8'TabOrder'#2#0#4'Text'#6#4'200' -+ +'7'#0#0#5'TEdit'#12'astdeldate_m'#4'Left'#3'9'#1#6'Height'#2#21#3'Top'#2#8#5 -+ +'Width'#2#24#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#12'AddsingleAst'#7'Caption' -+ +#6#3'Add'#12'ClientHeight'#3#138#1#11'ClientWidth'#3#219#1#10'ImageIndex'#2#4 -+ +#0#6'TLabel'#8'Label217'#4'Left'#2#8#6'Height'#2#15#3'Top'#2#8#5'Width'#3#130 -+ +#1#7'Caption'#6'>Add a single element to the database. All field are mandato' -+ +'ry.'#11'ParentColor'#8#0#0#6'TLabel'#8'Label218'#4'Left'#2#8#6'Height'#2#15 -+ +#3'Top'#2'('#5'Width'#2'L'#7'Caption'#6#11'Designation'#11'ParentColor'#8#0#0 -+ +#6'TLabel'#8'Label219'#4'Left'#3#160#0#6'Height'#2#15#3'Top'#2'('#5'Width'#3 - +#136#0#7'Caption'#6#20'H absolute magnitude'#11'ParentColor'#8#0#0#6'TLabel' - +#8'Label220'#4'Left'#3'8'#1#6'Height'#2#15#3'Top'#2'('#5'Width'#2'w'#7'Capti' - +'on'#6#17'G slope parameter'#11'ParentColor'#8#0#0#6'TLabel'#8'Label221'#4'L' -@@ -513,8 +512,8 @@ - +#3#230#1#5'Width'#3#247#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'Cl' - +'ientWidth'#3#247#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#212#0#6 - +'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0 -- ,#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalR' -- +'esult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'4'#1#6'Heigh' -+ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalR' -+ ,'esult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'4'#1#6'Heigh' - +'t'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'Bo' - +'rderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2C' - +'lick'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3#149#1#6'Height'#2 -diff -ur skychart_3.2/skychart/pu_config_system.lfm skychart_3.2_up/skychart/pu_config_system.lfm ---- skychart_3.2/skychart/pu_config_system.lfm 2010-10-02 15:18:28.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_system.lfm 2011-03-09 15:18:57.109096792 +0100 -@@ -1,7 +1,7 @@ - object f_config_system: Tf_config_system -- Left = 534 -+ Left = 526 - Height = 532 -- Top = 127 -+ Top = 123 - Width = 490 - ActiveControl = MainPanel - BorderStyle = bsToolWindow -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 482 -@@ -31,13 +31,20 @@ - Width = 488 - ActivePage = Page3 - Align = alClient -- ShowTabs = False - TabIndex = 2 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Page1' -- ClientHeight = 476 -- ClientWidth = 484 -+ ClientHeight = 445 -+ ClientWidth = 482 -+ object Label153: TLabel -+ Left = 0 -+ Height = 14 -+ Top = 0 -+ Width = 73 -+ Caption = 'System Setting' -+ ParentColor = False -+ end - object SqliteBox: TPanel - Left = 17 - Height = 97 -@@ -46,17 +53,6 @@ - ClientHeight = 97 - ClientWidth = 452 - TabOrder = 4 -- object dbnamesqlite: TEdit -- Left = 125 -- Height = 21 -- Top = 32 -- Width = 281 -- Color = clBtnFace -- OnChange = dbnamesqliteChange -- ReadOnly = True -- TabOrder = 0 -- Text = 'dbnamesqlite' -- end - object Label1: TLabel - Left = 13 - Height = 15 -@@ -74,14 +70,17 @@ - Caption = 'SqliteBoxLabel' - ParentColor = False - end -- end -- object Label153: TLabel -- Left = 0 -- Height = 14 -- Top = 0 -- Width = 73 -- Caption = 'System Setting' -- ParentColor = False -+ object dbnamesqlite: TEdit -+ Left = 125 -+ Height = 21 -+ Top = 32 -+ Width = 281 -+ Color = clBtnFace -+ OnChange = dbnamesqliteChange -+ ReadOnly = True -+ TabOrder = 0 -+ Text = 'dbnamesqlite' -+ end - end - object GroupBoxDir: TGroupBox - Left = 16 -@@ -118,7 +117,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 0 - OnChange = prgdirChange - end -@@ -130,7 +128,6 @@ - ShowHidden = False - ButtonWidth = 23 - NumGlyphs = 1 -- MaxLength = 0 - TabOrder = 1 - OnChange = persdirChange - end -@@ -277,52 +274,6 @@ - ClientHeight = 97 - ClientWidth = 452 - TabOrder = 5 -- object dbpass: TEdit -- Left = 348 -- Height = 21 -- Top = 64 -- Width = 100 -- EchoMode = emPassword -- OnChange = dbpassChange -- PasswordChar = '*' -- TabOrder = 0 -- Text = 'dbpass' -- end -- object dbuser: TEdit -- Left = 125 -- Height = 21 -- Top = 64 -- Width = 100 -- OnChange = dbuserChange -- TabOrder = 1 -- Text = 'dbuser' -- end -- object dbhost: TEdit -- Left = 250 -- Height = 21 -- Top = 24 -- Width = 65 -- OnChange = dbhostChange -- TabOrder = 2 -- Text = 'dbhost' -- end -- object dbport: TLongEdit -- Left = 391 -- Height = 21 -- Top = 24 -- Width = 57 -- TabOrder = 3 -- OnChange = dbportChange -- Value = 0 -- end -- object dbname: TEdit -- Left = 80 -- Height = 21 -- Top = 24 -- Width = 65 -- OnChange = dbnameChange -- TabOrder = 4 -- end - object Label133: TLabel - Left = 274 - Height = 15 -@@ -373,12 +324,58 @@ - Caption = 'MysqlBoxLabel' - ParentColor = False - end -+ object dbpass: TEdit -+ Left = 348 -+ Height = 21 -+ Top = 64 -+ Width = 100 -+ EchoMode = emPassword -+ OnChange = dbpassChange -+ PasswordChar = '*' -+ TabOrder = 0 -+ Text = 'dbpass' -+ end -+ object dbuser: TEdit -+ Left = 125 -+ Height = 21 -+ Top = 64 -+ Width = 100 -+ OnChange = dbuserChange -+ TabOrder = 1 -+ Text = 'dbuser' -+ end -+ object dbhost: TEdit -+ Left = 250 -+ Height = 21 -+ Top = 24 -+ Width = 65 -+ OnChange = dbhostChange -+ TabOrder = 2 -+ Text = 'dbhost' -+ end -+ object dbport: TLongEdit -+ Left = 391 -+ Height = 21 -+ Top = 24 -+ Width = 57 -+ TabOrder = 3 -+ OnChange = dbportChange -+ Value = 0 -+ end -+ object dbname: TEdit -+ Left = 80 -+ Height = 21 -+ Top = 24 -+ Width = 65 -+ OnChange = dbnameChange -+ TabOrder = 4 -+ end - end - end - object Page2: TTabSheet - Caption = 'Page2' -- ClientHeight = 476 -- ClientWidth = 484 -+ ClientHeight = 445 -+ ClientWidth = 482 - object GroupBox3: TGroupBox - Left = 16 - Height = 249 -@@ -444,8 +441,16 @@ - end - object Page3: TTabSheet - Caption = 'Page3' -- ClientHeight = 476 -- ClientWidth = 484 -+ ClientHeight = 445 -+ ClientWidth = 482 -+ object Label13: TLabel -+ Left = 0 -+ Height = 14 -+ Top = 0 -+ Width = 86 -+ Caption = 'Telescope Setting' -+ ParentColor = False -+ end - object ASCOMPanel: TPanel - Left = 8 - Height = 328 -@@ -473,22 +478,11 @@ - ClientHeight = 328 - ClientWidth = 450 - TabOrder = 3 -- object telescopepluginlist: TComboBox -- Left = 144 -- Height = 24 -- Top = 42 -- Width = 145 -- AutoCompleteText = [cbactSearchAscending] -- ItemHeight = 0 -- OnChange = telescopepluginlistChange -- Style = csDropDownList -- TabOrder = 0 -- end - object Label155: TLabel - Left = 24 - Height = 14 - Top = 46 -- Width = 84 -+ Width = 95 - Caption = 'Telescope Plugin ' - ParentColor = False - end -@@ -496,10 +490,21 @@ - Left = 25 - Height = 14 - Top = 11 -- Width = 104 -+ Width = 119 - Caption = 'TelescopePluginLabel' - ParentColor = False - end -+ object telescopepluginlist: TComboBox -+ Left = 144 -+ Height = 31 -+ Top = 42 -+ Width = 145 -+ AutoCompleteText = [cbactSearchAscending] -+ ItemHeight = 0 -+ OnChange = telescopepluginlistChange -+ Style = csDropDownList -+ TabOrder = 0 -+ end - end - object TelescopeManual: TPanel - Left = 8 -@@ -509,6 +514,24 @@ - ClientHeight = 330 - ClientWidth = 450 - TabOrder = 1 -+ object Label7: TLabel -+ Left = 24 -+ Height = 62 -+ Top = 32 -+ Width = 361 -+ AutoSize = False -+ Caption = 'Set how the mount move on each axis when you turn the driving knob.'#13#10'Then the Telescope button show you the turns you must do to go from one object to another.' -+ ParentColor = False -+ WordWrap = True -+ end -+ object TelescopeManualLabel: TLabel -+ Left = 24 -+ Height = 14 -+ Top = 6 -+ Width = 126 -+ Caption = 'TelescopeManualLabel' -+ ParentColor = False -+ end - object ManualMountType: TRadioGroup - Left = 24 - Height = 41 -@@ -545,7 +568,7 @@ - Left = 16 - Height = 14 - Top = 16 -- Width = 79 -+ Width = 88 - Caption = 'Right Ascension' - ParentColor = False - end -@@ -553,7 +576,7 @@ - Left = 16 - Height = 14 - Top = 93 -- Width = 53 -+ Width = 63 - Caption = 'Declination' - ParentColor = False - end -@@ -561,7 +584,7 @@ - Left = 240 - Height = 14 - Top = 16 -- Width = 57 -+ Width = 64 - Caption = 'turns / hour' - ParentColor = False - end -@@ -569,13 +592,13 @@ - Left = 240 - Height = 14 - Top = 93 -- Width = 69 -+ Width = 78 - Caption = 'turns / degree' - ParentColor = False - end - object TurnsRa: TFloatEdit - Left = 128 -- Height = 21 -+ Height = 23 - Top = 11 - Width = 81 - ParentShowHint = False -@@ -587,7 +610,7 @@ - end - object TurnsDec: TFloatEdit - Left = 128 -- Height = 21 -+ Height = 23 - Top = 88 - Width = 81 - ParentShowHint = False -@@ -599,18 +622,18 @@ - end - object RevertTurnsRa: TCheckBox - Left = 128 -- Height = 21 -+ Height = 22 - Top = 40 -- Width = 98 -+ Width = 106 - Caption = 'Revert RA knob' - OnClick = TurnsRaChange - TabOrder = 2 - end - object RevertTurnDec: TCheckBox - Left = 128 -- Height = 21 -+ Height = 22 - Top = 120 -- Width = 104 -+ Width = 114 - Caption = 'Revert DEC knob' - OnClick = TurnsDecChange - TabOrder = 3 -@@ -628,7 +651,7 @@ - Left = 16 - Height = 14 - Top = 16 -- Width = 40 -+ Width = 45 - Caption = 'Azimuth' - ParentColor = False - end -@@ -636,7 +659,7 @@ - Left = 16 - Height = 14 - Top = 93 -- Width = 37 -+ Width = 43 - Caption = 'Altitude' - ParentColor = False - end -@@ -644,7 +667,7 @@ - Left = 240 - Height = 14 - Top = 16 -- Width = 69 -+ Width = 78 - Caption = 'turns / degree' - ParentColor = False - end -@@ -652,13 +675,13 @@ - Left = 240 - Height = 14 - Top = 93 -- Width = 69 -+ Width = 78 - Caption = 'turns / degree' - ParentColor = False - end - object TurnsAz: TFloatEdit - Left = 128 -- Height = 21 -+ Height = 23 - Top = 11 - Width = 81 - ParentShowHint = False -@@ -670,7 +693,7 @@ - end - object TurnsAlt: TFloatEdit - Left = 128 -- Height = 21 -+ Height = 23 - Top = 88 - Width = 81 - ParentShowHint = False -@@ -682,41 +705,23 @@ - end - object RevertTurnsAz: TCheckBox - Left = 128 -- Height = 21 -+ Height = 22 - Top = 40 -- Width = 97 -+ Width = 105 - Caption = 'Revert Az knob' - OnClick = TurnsAzChange - TabOrder = 1 - end - object RevertTurnsAlt: TCheckBox - Left = 128 -- Height = 21 -+ Height = 22 - Top = 120 -- Width = 96 -+ Width = 106 - Caption = 'Revert Alt knob' - OnClick = TurnsAltChange - TabOrder = 3 - end - end -- object Label7: TLabel -- Left = 24 -- Height = 62 -- Top = 32 -- Width = 361 -- AutoSize = False -- Caption = 'Set how the mount move on each axis when you turn the driving knob.'#13#10'Then the Telescope button show you the turns you must do to go from one object to another.' -- ParentColor = False -- WordWrap = True -- end -- object TelescopeManualLabel: TLabel -- Left = 24 -- Height = 14 -- Top = 6 -- Width = 110 -- Caption = 'TelescopeManualLabel' -- ParentColor = False -- end - end - object INDI: TPanel - Left = 8 -@@ -726,9 +731,73 @@ - ClientHeight = 328 - ClientWidth = 450 - TabOrder = 2 -+ object Label2: TLabel -+ Left = 8 -+ Height = 14 -+ Top = 224 -+ Width = 133 -+ Caption = 'Control Panel command ' -+ ParentColor = False -+ end -+ object Label261: TLabel -+ Left = 8 -+ Height = 14 -+ Top = 180 -+ Width = 65 -+ Caption = 'Device Port ' -+ ParentColor = False -+ end -+ object Label260: TLabel -+ Left = 231 -+ Height = 14 -+ Top = 104 -+ Width = 83 -+ Caption = 'Telescope type' -+ ParentColor = False -+ end -+ object Label259: TLabel -+ Left = 231 -+ Height = 14 -+ Top = 136 -+ Width = 67 -+ Caption = 'Driver name' -+ ParentColor = False -+ end -+ object Label258: TLabel -+ Left = 8 -+ Height = 14 -+ Top = 104 -+ Width = 96 -+ Caption = 'Server command ' -+ ParentColor = False -+ end -+ object Label130: TLabel -+ Left = 231 -+ Height = 14 -+ Top = 28 -+ Width = 84 -+ Caption = 'INDI server Port' -+ ParentColor = False -+ end -+ object Label75: TLabel -+ Left = 8 -+ Height = 14 -+ Top = 28 -+ Width = 92 -+ Caption = 'INDI Server Host ' -+ ParentColor = False -+ end -+ object INDILabel: TLabel -+ Left = 8 -+ Height = 14 -+ Top = 7 -+ Width = 53 -+ Caption = 'INDILabel' -+ ParentColor = False -+ end - object PanelCmd: TEdit - Left = 176 -- Height = 21 -+ Height = 23 - Top = 220 - Width = 257 - OnChange = PanelCmdChange -@@ -736,7 +805,7 @@ - end - object IndiPort: TComboBox - Left = 120 -- Height = 24 -+ Height = 31 - Top = 176 - Width = 185 - AutoCompleteText = [cbactSearchAscending] -@@ -757,7 +826,7 @@ - end - object IndiDev: TComboBox - Left = 336 -- Height = 24 -+ Height = 31 - Top = 100 - Width = 100 - AutoCompleteText = [cbactSearchAscending] -@@ -768,7 +837,7 @@ - end - object IndiDriver: TEdit - Left = 336 -- Height = 21 -+ Height = 23 - Top = 132 - Width = 100 - Enabled = False -@@ -777,7 +846,7 @@ - end - object IndiServerCmd: TEdit - Left = 120 -- Height = 21 -+ Height = 23 - Top = 100 - Width = 100 - OnChange = IndiServerCmdChange -@@ -785,16 +854,16 @@ - end - object IndiAutostart: TCheckBox - Left = 8 -- Height = 21 -+ Height = 22 - Top = 64 -- Width = 286 -+ Width = 322 - Caption = 'Automatically start a local server if not already running' - OnClick = IndiAutostartClick - TabOrder = 5 - end - object IndiServerPort: TEdit - Left = 336 -- Height = 21 -+ Height = 23 - Top = 24 - Width = 97 - OnChange = IndiServerPortChange -@@ -802,84 +871,12 @@ - end - object IndiServerHost: TEdit - Left = 120 -- Height = 21 -+ Height = 23 - Top = 24 - Width = 100 - OnChange = IndiServerHostChange - TabOrder = 7 - end -- object Label2: TLabel -- Left = 8 -- Height = 14 -- Top = 224 -- Width = 116 -- Caption = 'Control Panel command ' -- ParentColor = False -- end -- object Label261: TLabel -- Left = 8 -- Height = 14 -- Top = 180 -- Width = 59 -- Caption = 'Device Port ' -- ParentColor = False -- end -- object Label260: TLabel -- Left = 231 -- Height = 14 -- Top = 104 -- Width = 74 -- Caption = 'Telescope type' -- ParentColor = False -- end -- object Label259: TLabel -- Left = 231 -- Height = 14 -- Top = 136 -- Width = 59 -- Caption = 'Driver name' -- ParentColor = False -- end -- object Label258: TLabel -- Left = 8 -- Height = 14 -- Top = 104 -- Width = 86 -- Caption = 'Server command ' -- ParentColor = False -- end -- object Label130: TLabel -- Left = 231 -- Height = 14 -- Top = 28 -- Width = 76 -- Caption = 'INDI server Port' -- ParentColor = False -- end -- object Label75: TLabel -- Left = 8 -- Height = 14 -- Top = 28 -- Width = 83 -- Caption = 'INDI Server Host ' -- ParentColor = False -- end -- object INDILabel: TLabel -- Left = 8 -- Height = 14 -- Top = 7 -- Width = 45 -- Caption = 'INDILabel' -- ParentColor = False -- end -- end -- object Label13: TLabel -- Left = 0 -- Height = 14 -- Top = 0 -- Width = 86 -- Caption = 'Telescope Setting' -- ParentColor = False - end - object TelescopeSelect: TRadioGroup - Left = 8 -@@ -911,8 +908,8 @@ - end - object Page4: TTabSheet - Caption = 'Page4' -- ClientHeight = 476 -- ClientWidth = 484 -+ ClientHeight = 445 -+ ClientWidth = 482 - object Label14: TLabel - Left = 19 - Height = 14 -diff -ur skychart_3.2/skychart/pu_config_system.lrs skychart_3.2_up/skychart/pu_config_system.lrs ---- skychart_3.2/skychart/pu_config_system.lrs 2010-10-02 15:18:28.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_system.lrs 2011-03-09 15:18:57.145092371 +0100 -@@ -1,250 +1,249 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_system','FORMDATA',[ -- 'TPF0'#16'Tf_config_system'#15'f_config_system'#4'Left'#3#22#2#6'Height'#3#20 -- +#2#3'Top'#2#127#5'Width'#3#234#1#13'ActiveControl'#7#9'MainPanel'#11'BorderS' -- +'tyle'#7#12'bsToolWindow'#7'Caption'#6#6'System'#12'ClientHeight'#3#20#2#11 -- +'ClientWidth'#3#234#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCr' -- +'eate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormSho' -- +'w'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' -+ 'TPF0'#16'Tf_config_system'#15'f_config_system'#4'Left'#3#14#2#6'Height'#3#20 -+ +#2#3'Top'#2'{'#5'Width'#3#234#1#13'ActiveControl'#7#9'MainPanel'#11'BorderSt' -+ +'yle'#7#12'bsToolWindow'#7'Caption'#6#6'System'#12'ClientHeight'#3#20#2#11'C' -+ +'lientWidth'#3#234#1#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCre' -+ +'ate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestroy'#6'OnShow'#7#8'FormShow' -+ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#9'MainPanel'#4'Left'#2#0#6'Height' - +#3#226#1#3'Top'#2#0#5'Width'#3#234#1#5'Align'#7#8'alClient'#12'ClientHeight' - +#3#226#1#11'ClientWidth'#3#234#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPag' - +'eControl'#12'PageControl1'#4'Left'#2#1#6'Height'#3#224#1#3'Top'#2#1#5'Width' -- +#3#232#1#10'ActivePage'#7#5'Page3'#5'Align'#7#8'alClient'#8'ShowTabs'#8#8'Ta' -- +'bIndex'#2#2#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12 -- +'ClientHeight'#3#220#1#11'ClientWidth'#3#228#1#0#6'TPanel'#9'SqliteBox'#4'Le' -- +'ft'#2#17#6'Height'#2'a'#3'Top'#2'5'#5'Width'#3#196#1#12'ClientHeight'#2'a' -- +#11'ClientWidth'#3#196#1#8'TabOrder'#2#4#0#5'TEdit'#12'dbnamesqlite'#4'Left' -- +#2'}'#6'Height'#2#21#3'Top'#2' '#5'Width'#3#25#1#5'Color'#7#9'clBtnFace'#8'O' -- +'nChange'#7#18'dbnamesqliteChange'#8'ReadOnly'#9#8'TabOrder'#2#0#4'Text'#6#12 -- +'dbnamesqlite'#0#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2#15#3'Top'#2 -- +'$'#5'Width'#2'm'#8'AutoSize'#8#7'Caption'#6#15'Database file: '#11'ParentCo' -- +'lor'#8#0#0#6'TLabel'#14'SqliteBoxLabel'#4'Left'#2#13#6'Height'#2#14#3'Top'#2 -- +#12#5'Width'#2'H'#7'Caption'#6#14'SqliteBoxLabel'#11'ParentColor'#8#0#0#0#6 -- +'TLabel'#8'Label153'#4'Left'#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'I'#7'C' -- +'aption'#6#14'System Setting'#11'ParentColor'#8#0#0#9'TGroupBox'#11'GroupBox' -- +'Dir'#4'Left'#2#16#6'Height'#2'['#3'Top'#3#11#1#5'Width'#3#197#1#7'Caption'#6 -- +#9'Directory'#12'ClientHeight'#2'L'#11'ClientWidth'#3#193#1#8'TabOrder'#2#2#0 -- +#6'TLabel'#8'Label156'#4'Left'#2#13#6'Height'#2#15#3'Top'#2#8#5'Width'#3#161 -- +#0#8'AutoSize'#8#7'Caption'#6#13'Program Data '#11'ParentColor'#8#0#0#6'TLab' -- +'el'#8'Label157'#4'Left'#2#14#6'Height'#2#15#3'Top'#2'/'#5'Width'#3#161#0#8 -- +'AutoSize'#8#7'Caption'#6#13'Personal data'#11'ParentColor'#8#0#0#14'TDirect' -- +'oryEdit'#6'prgdir'#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2#3#5'Width'#3#240 -- +#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8 -- +'TabOrder'#2#0#8'OnChange'#7#12'prgdirChange'#0#0#14'TDirectoryEdit'#7'persd' -- +'ir'#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2'*'#5'Width'#3#240#0#10'ShowHidd' -- +'en'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1 -- +#8'OnChange'#7#13'persdirChange'#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#16 -- +#6'Height'#2'b'#3'Top'#3#155#0#5'Width'#3#197#1#12'ClientHeight'#2'^'#11'Cli' -- +'entWidth'#3#193#1#8'TabOrder'#2#1#0#7'TButton'#5'chkdb'#4'Left'#2#16#6'Heig' -- +'ht'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Capt' -- +'ion'#6#5'Check'#7'OnClick'#7#10'chkdbClick'#8'TabOrder'#2#0#0#0#7'TButton'#5 -- +'credb'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSp' -- +'acing.InnerBorder'#2#4#7'Caption'#6#15'Create Database'#7'OnClick'#7#10'cre' -- +'dbClick'#8'TabOrder'#2#1#0#0#7'TButton'#6'dropdb'#4'Left'#3'='#1#6'Height'#2 -- +#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#13'Drop Database'#7'OnClick'#7#11'dropdbClick'#8'TabOrder'#2#2#0#0#7'TButto' -- +'n'#7'CometDB'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25'B' -- +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Comet Setting'#7'OnClick'#7#12 -- +'CometDBClick'#8'TabOrder'#2#4#7'Visible'#8#0#0#7'TButton'#5'AstDB'#4'Left'#2 -- +#16#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2 -- +#4#7'Caption'#6#16'Asteroid Setting'#7'OnClick'#7#10'AstDBClick'#8'TabOrder' -- +#2#3#7'Visible'#8#0#0#0#11'TRadioGroup'#11'DBtypeGroup'#4'Left'#3#174#0#6'He' -- +'ight'#2'0'#3'Top'#2#3#5'Width'#3''''#1#8'AutoFill'#9#7'Caption'#6#13'Databa' -- +'se Type'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpaci' -- +'ng'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 -- +'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.' -- +'ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14 -- +'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom' -- +#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'ClientWidth'#3 -- +'#'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#6'SQLite'#6#5'My' -- +'SQL'#0#7'OnClick'#7#16'DBtypeGroupClick'#14'ParentShowHint'#8#8'ShowHint'#9 -- +#8'TabOrder'#2#0#0#0#9'TGroupBox'#13'GroupBoxLinux'#4'Left'#2#17#6'Height'#2 -- +'\'#3'Top'#3'o'#1#5'Width'#3#196#1#7'Caption'#6#19'Desktop environment'#12'C' -- +'lientHeight'#2'M'#11'ClientWidth'#3#192#1#8'TabOrder'#2#3#0#6'TLabel'#7'Lab' -- +'el12'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2#8#5'Width'#2'i'#7'Caption'#6 -- +#18'URL launch command'#11'ParentColor'#8#0#0#9'TComboBox'#15'LinuxDesktopBo' -- +'x'#4'Left'#2#20#6'Height'#2#23#3'Top'#2'!'#5'Width'#2'f'#16'AutoCompleteTex' -- ,'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#9'ItemIndex'#2#1#13'Ite' -- +'ms.Strings'#1#6#11'FreeDesktop'#6#3'KDE'#6#5'GNOME'#6#5'Other'#0#8'OnSelect' -- +#7#21'LinuxDesktopBoxChange'#8'TabOrder'#2#0#4'Text'#6#3'KDE'#0#0#5'TEdit'#8 -- +'LinuxCmd'#4'Left'#3#204#0#6'Height'#2#21#3'Top'#2'!'#5'Width'#3#194#0#8'OnC' -- +'hange'#7#14'LinuxCmdChange'#8'TabOrder'#2#1#4'Text'#6#8'LinuxCmd'#0#0#0#6'T' -- +'Panel'#8'MysqlBox'#4'Left'#2#17#6'Height'#2'a'#3'Top'#2'5'#5'Width'#3#196#1 -- +#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8'TabOrder'#2#5#0#5'TEdit'#6 -- +'dbpass'#4'Left'#3'\'#1#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'EchoMode' -- +#7#10'emPassword'#8'OnChange'#7#12'dbpassChange'#12'PasswordChar'#6#1'*'#8'T' -- +'abOrder'#2#0#4'Text'#6#6'dbpass'#0#0#5'TEdit'#6'dbuser'#4'Left'#2'}'#6'Heig' -- +'ht'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'OnChange'#7#12'dbuserChange'#8'TabOrde' -- +'r'#2#1#4'Text'#6#6'dbuser'#0#0#5'TEdit'#6'dbhost'#4'Left'#3#250#0#6'Height' -- +#2#21#3'Top'#2#24#5'Width'#2'A'#8'OnChange'#7#12'dbhostChange'#8'TabOrder'#2 -- +#2#4'Text'#6#6'dbhost'#0#0#9'TLongEdit'#6'dbport'#4'Left'#3#135#1#6'Height'#2 -- +#21#3'Top'#2#24#5'Width'#2'9'#8'TabOrder'#2#3#8'OnChange'#7#12'dbportChange' -- +#5'Value'#2#0#0#0#5'TEdit'#6'dbname'#4'Left'#2'P'#6'Height'#2#21#3'Top'#2#24 -- +#5'Width'#2'A'#8'OnChange'#7#12'dbnameChange'#8'TabOrder'#2#4#0#0#6'TLabel'#8 -- +'Label133'#4'Left'#3#18#1#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'Q'#8'AutoSiz' -- +'e'#8#7'Caption'#6#8'Password'#11'ParentColor'#8#0#0#6'TLabel'#7'Label86'#4 -- +'Left'#2#16#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'j'#8'AutoSize'#8#7'Caption' -- +#6#7'Userid:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label85'#4'Left'#3'j'#1#6'He' -- +'ight'#2#14#3'Top'#2#28#5'Width'#2#23#7'Caption'#6#5'Port:'#11'ParentColor'#8 -- +#0#0#6'TLabel'#7'Label84'#4'Left'#3#178#0#6'Height'#2#14#3'Top'#2#28#5'Width' -- +#2'8'#7'Caption'#6#10'Host Name:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label77' -- +#4'Left'#2#16#6'Height'#2#14#3'Top'#2#28#5'Width'#2'0'#7'Caption'#6#8'DB Nam' -- +'e:'#11'ParentColor'#8#0#0#6'TLabel'#13'MysqlBoxLabel'#4'Left'#2#16#6'Height' -- +#2#14#3'Top'#2#3#5'Width'#2'J'#7'Caption'#6#13'MysqlBoxLabel'#11'ParentColor' -- +#8#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5'Page2'#12'ClientHeight'#3#220 -- +#1#11'ClientWidth'#3#228#1#0#9'TGroupBox'#9'GroupBox3'#4'Left'#2#16#6'Height' -- +#3#249#0#3'Top'#2#8#5'Width'#3#137#1#7'Caption'#6#13'TCP/IP Server'#12'Clien' -- +'tHeight'#3#234#0#11'ClientWidth'#3#133#1#8'TabOrder'#2#0#0#6'TLabel'#7'Labe' -- +'l54'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|'#5'Width'#2'a'#7'Caption'#6#21 -- +'Server IP Interface :'#11'ParentColor'#8#0#0#6'TLabel'#7'Label55'#4'Left'#2 -- +#16#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'I'#7'Caption'#6#16'Server IP Po' -- +'rt :'#11'ParentColor'#8#0#0#9'TCheckBox'#11'UseIPserver'#4'Left'#2#16#6'Hei' -- +'ght'#2#21#3'Top'#2' '#5'Width'#2'o'#7'Caption'#6#17'Use TCP/IP Server'#7'On' -- +'Click'#7#16'UseIPserverClick'#8'TabOrder'#2#0#0#0#5'TEdit'#6'ipaddr'#4'Left' -- +#3#144#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'd'#8'OnChange'#7#12'ipaddrCha' -- +'nge'#8'TabOrder'#2#2#4'Text'#6#9'127.0.0.1'#0#0#5'TEdit'#6'ipport'#4'Left'#3 -- +#144#0#6'Height'#2#21#3'Top'#3#164#0#5'Width'#2'd'#8'OnChange'#7#12'ipportCh' -- +'ange'#8'TabOrder'#2#3#4'Text'#6#4'3292'#0#0#9'TCheckBox'#9'keepalive'#4'Lef' -- +'t'#2#16#6'Height'#2#21#3'Top'#2'H'#5'Width'#3#160#0#7'Caption'#6#28'Client ' -- +'Connection Keep Alive'#7'OnClick'#7#14'keepaliveClick'#8'TabOrder'#2#1#0#0#0 -- +#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'ClientHeight'#3#220#1#11'C' -- +'lientWidth'#3#228#1#0#6'TPanel'#10'ASCOMPanel'#4'Left'#2#8#6'Height'#3'H'#1 -- +#3'Top'#2'e'#5'Width'#3#196#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#196#1 -- +#8'TabOrder'#2#4#0#6'TLabel'#10'ASCOMLabel'#4'Left'#2#21#6'Height'#3#232#0#3 -- +'Top'#2#24#5'Width'#3#145#1#8'AutoSize'#8#7'Caption'#6#10'ASCOMLabel'#11'Par' -- +'entColor'#8#8'WordWrap'#9#0#0#0#6'TPanel'#15'TelescopePlugin'#4'Left'#2#8#6 -- +'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientHeight'#3'H'#1#11'Clie' -- +'ntWidth'#3#194#1#8'TabOrder'#2#3#0#9'TComboBox'#19'telescopepluginlist'#4'L' -- +'eft'#3#144#0#6'Height'#2#24#3'Top'#2'*'#5'Width'#3#145#0#16'AutoCompleteTex' -- +'t'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#25'telesc' -- +'opepluginlistChange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#6'TL' -- +'abel'#8'Label155'#4'Left'#2#24#6'Height'#2#14#3'Top'#2'.'#5'Width'#2'T'#7'C' -- +'aption'#6#17'Telescope Plugin '#11'ParentColor'#8#0#0#6'TLabel'#20'Telescop' -- +'ePluginLabel'#4'Left'#2#25#6'Height'#2#14#3'Top'#2#11#5'Width'#2'h'#7'Capti' -- +'on'#6#20'TelescopePluginLabel'#11'ParentColor'#8#0#0#0#6'TPanel'#15'Telesco' -- +'peManual'#4'Left'#2#8#6'Height'#3'J'#1#3'Top'#2'e'#5'Width'#3#194#1#12'Clie' -- +'ntHeight'#3'J'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#1#0#11'TRadioGroup' -- +#15'ManualMountType'#4'Left'#2#24#6'Height'#2')'#3'Top'#2']'#5'Width'#3'i'#1 -- +#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' -- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' -- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' -- ,'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' -- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' -- +'tom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'%'#11'ClientWid' -- +'th'#3'e'#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Equatorial'#6#8'Alt / Az' -- +#0#7'OnClick'#7#20'ManualMountTypeClick'#8'TabOrder'#2#0#0#0#6'TPanel'#15'Eq' -- +'uatorialMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Width'#3'i'#1 -- +#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#0#6'TLabel' -- +#6'Label3'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'O'#7'Caption'#6 -- +#15'Right Ascension'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4'Left'#2#16#6 -- +'Height'#2#14#3'Top'#2']'#5'Width'#2'5'#7'Caption'#6#11'Declination'#11'Pare' -- +'ntColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2 -- +#16#5'Width'#2'9'#7'Caption'#6#12'turns / hour'#11'ParentColor'#8#0#0#6'TLab' -- +'el'#6'Label6'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'E'#7'Ca' -- +'ption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'TurnsRa' -- +#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2#11#5'Width'#2'Q'#14'ParentShowHint' -- +#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsRaChange'#5'Value'#5#0#0#0#0#0#0#0#0 -- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 -- +#10'TFloatEdit'#8'TurnsDec'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'X'#5'Wid' -- +'th'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#1#8'OnChange'#7#14'TurnsDecChan' -- +'ge'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxV' -- +'alue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsRa'#4'Left'#3#128 -- +#0#6'Height'#2#21#3'Top'#2'('#5'Width'#2'b'#7'Caption'#6#14'Revert RA knob'#7 -- +'OnClick'#7#13'TurnsRaChange'#8'TabOrder'#2#2#0#0#9'TCheckBox'#13'RevertTurn' -- +'Dec'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'h'#7'Caption'#6 -- +#15'Revert DEC knob'#7'OnClick'#7#14'TurnsDecChange'#8'TabOrder'#2#3#0#0#0#6 -- +'TPanel'#10'AltAzMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Widt' -- +'h'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#2#0 -- +#6'TLabel'#6'Label8'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'('#7 -- +'Caption'#6#7'Azimuth'#11'ParentColor'#8#0#0#6'TLabel'#6'Label9'#4'Left'#2#16 -- +#6'Height'#2#14#3'Top'#2']'#5'Width'#2'%'#7'Caption'#6#8'Altitude'#11'Parent' -- +'Color'#8#0#0#6'TLabel'#7'Label10'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2#16 -- +#5'Width'#2'E'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#7'Label11'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'E'#7'Ca' -- +'ption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'TurnsAz' -- +#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2#11#5'Width'#2'Q'#14'ParentShowHint' -- +#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsAzChange'#5'Value'#5#0#0#0#0#0#0#0#0 -- +#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0 -- +#10'TFloatEdit'#8'TurnsAlt'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'X'#5'Wid' -- +'th'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#2#8'OnChange'#7#14'TurnsAltChan' -- +'ge'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxV' -- +'alue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsAz'#4'Left'#3#128 -- +#0#6'Height'#2#21#3'Top'#2'('#5'Width'#2'a'#7'Caption'#6#14'Revert Az knob'#7 -- +'OnClick'#7#13'TurnsAzChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#14'RevertTurn' -- +'sAlt'#4'Left'#3#128#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'`'#7'Caption'#6 -- +#15'Revert Alt knob'#7'OnClick'#7#14'TurnsAltChange'#8'TabOrder'#2#3#0#0#0#6 -- +'TLabel'#6'Label7'#4'Left'#2#24#6'Height'#2'>'#3'Top'#2' '#5'Width'#3'i'#1#8 -- +'AutoSize'#8#7'Caption'#6#159'Set how the mount move on each axis when you t' -- +'urn the driving knob.'#13#10'Then the Telescope button show you the turns y' -- +'ou must do to go from one object to another.'#11'ParentColor'#8#8'WordWrap' -- +#9#0#0#6'TLabel'#20'TelescopeManualLabel'#4'Left'#2#24#6'Height'#2#14#3'Top' -- +#2#6#5'Width'#2'n'#7'Caption'#6#20'TelescopeManualLabel'#11'ParentColor'#8#0 -- +#0#0#6'TPanel'#4'INDI'#4'Left'#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3 -- +#194#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#2#0#5'T' -- +'Edit'#8'PanelCmd'#4'Left'#3#176#0#6'Height'#2#21#3'Top'#3#220#0#5'Width'#3#1 -- +#1#8'OnChange'#7#14'PanelCmdChange'#8'TabOrder'#2#0#0#0#9'TComboBox'#8'IndiP' -- +'ort'#4'Left'#2'x'#6'Height'#2#24#3'Top'#3#176#0#5'Width'#3#185#0#16'AutoCom' -- +'pleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#13'Items.String' -- +'s'#1#6#4'COM1'#6#4'COM2'#6#4'COM3'#6#4'COM4'#6#4'COM5'#6#4'COM6'#6#4'COM7'#6 -- +#4'COM8'#0#8'OnSelect'#7#14'IndiPortChange'#5'Style'#7#14'csDropDownList'#8 -- +'TabOrder'#2#1#0#0#9'TComboBox'#7'IndiDev'#4'Left'#3'P'#1#6'Height'#2#24#3'T' -- +'op'#2'd'#5'Width'#2'd'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10 -- +'ItemHeight'#2#0#8'OnSelect'#7#13'IndiDevChange'#5'Style'#7#14'csDropDownLis' -- +'t'#8'TabOrder'#2#2#0#0#5'TEdit'#10'IndiDriver'#4'Left'#3'P'#1#6'Height'#2#21 -- +#3'Top'#3#132#0#5'Width'#2'd'#7'Enabled'#8#8'OnChange'#7#16'IndiDriverChange' -- ,#8'TabOrder'#2#3#0#0#5'TEdit'#13'IndiServerCmd'#4'Left'#2'x'#6'Height'#2#21#3 -- +'Top'#2'd'#5'Width'#2'd'#8'OnChange'#7#19'IndiServerCmdChange'#8'TabOrder'#2 -- +#4#0#0#9'TCheckBox'#13'IndiAutostart'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'@' -- +#5'Width'#3#30#1#7'Caption'#6'9Automatically start a local server if not alr' -- +'eady running'#7'OnClick'#7#18'IndiAutostartClick'#8'TabOrder'#2#5#0#0#5'TEd' -- +'it'#14'IndiServerPort'#4'Left'#3'P'#1#6'Height'#2#21#3'Top'#2#24#5'Width'#2 -- +'a'#8'OnChange'#7#20'IndiServerPortChange'#8'TabOrder'#2#6#0#0#5'TEdit'#14'I' -- +'ndiServerHost'#4'Left'#2'x'#6'Height'#2#21#3'Top'#2#24#5'Width'#2'd'#8'OnCh' -- +'ange'#7#20'IndiServerHostChange'#8'TabOrder'#2#7#0#0#6'TLabel'#6'Label2'#4 -- +'Left'#2#8#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2't'#7'Caption'#6#22'Contr' -- +'ol Panel command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label261'#4'Left'#2#8#6 -- +'Height'#2#14#3'Top'#3#180#0#5'Width'#2';'#7'Caption'#6#12'Device Port '#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label260'#4'Left'#3#231#0#6'Height'#2#14#3'T' -- +'op'#2'h'#5'Width'#2'J'#7'Caption'#6#14'Telescope type'#11'ParentColor'#8#0#0 -- +#6'TLabel'#8'Label259'#4'Left'#3#231#0#6'Height'#2#14#3'Top'#3#136#0#5'Width' -- +#2';'#7'Caption'#6#11'Driver name'#11'ParentColor'#8#0#0#6'TLabel'#8'Label25' -- +'8'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'V'#7'Caption'#6#15'Ser' -- +'ver command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label130'#4'Left'#3#231#0#6 -- +'Height'#2#14#3'Top'#2#28#5'Width'#2'L'#7'Caption'#6#16'INDI server Port'#11 -- +'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#2#8#6'Height'#2#14#3'Top'#2 -- +#28#5'Width'#2'S'#7'Caption'#6#17'INDI Server Host '#11'ParentColor'#8#0#0#6 -- +'TLabel'#9'INDILabel'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#7#5'Width'#2'-'#7 -- +'Caption'#6#9'INDILabel'#11'ParentColor'#8#0#0#0#6'TLabel'#7'Label13'#4'Left' -+ +#3#232#1#10'ActivePage'#7#5'Page3'#5'Align'#7#8'alClient'#8'TabIndex'#2#2#8 -+ +'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7'Caption'#6#5'Page1'#12'ClientHeight' -+ +#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#8'Label153'#4'Left'#2#0#6'Heigh' -+ +'t'#2#14#3'Top'#2#0#5'Width'#2'I'#7'Caption'#6#14'System Setting'#11'ParentC' -+ +'olor'#8#0#0#6'TPanel'#9'SqliteBox'#4'Left'#2#17#6'Height'#2'a'#3'Top'#2'5'#5 -+ +'Width'#3#196#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8'TabOrder'#2#4 -+ +#0#6'TLabel'#6'Label1'#4'Left'#2#13#6'Height'#2#15#3'Top'#2'$'#5'Width'#2'm' -+ +#8'AutoSize'#8#7'Caption'#6#15'Database file: '#11'ParentColor'#8#0#0#6'TLab' -+ +'el'#14'SqliteBoxLabel'#4'Left'#2#13#6'Height'#2#14#3'Top'#2#12#5'Width'#2'H' -+ +#7'Caption'#6#14'SqliteBoxLabel'#11'ParentColor'#8#0#0#5'TEdit'#12'dbnamesql' -+ +'ite'#4'Left'#2'}'#6'Height'#2#21#3'Top'#2' '#5'Width'#3#25#1#5'Color'#7#9'c' -+ +'lBtnFace'#8'OnChange'#7#18'dbnamesqliteChange'#8'ReadOnly'#9#8'TabOrder'#2#0 -+ +#4'Text'#6#12'dbnamesqlite'#0#0#0#9'TGroupBox'#11'GroupBoxDir'#4'Left'#2#16#6 -+ +'Height'#2'['#3'Top'#3#11#1#5'Width'#3#197#1#7'Caption'#6#9'Directory'#12'Cl' -+ +'ientHeight'#2'L'#11'ClientWidth'#3#193#1#8'TabOrder'#2#2#0#6'TLabel'#8'Labe' -+ +'l156'#4'Left'#2#13#6'Height'#2#15#3'Top'#2#8#5'Width'#3#161#0#8'AutoSize'#8 -+ +#7'Caption'#6#13'Program Data '#11'ParentColor'#8#0#0#6'TLabel'#8'Label157'#4 -+ +'Left'#2#14#6'Height'#2#15#3'Top'#2'/'#5'Width'#3#161#0#8'AutoSize'#8#7'Capt' -+ +'ion'#6#13'Personal data'#11'ParentColor'#8#0#0#14'TDirectoryEdit'#6'prgdir' -+ +#4'Left'#3#179#0#6'Height'#2#21#3'Top'#2#3#5'Width'#3#240#0#10'ShowHidden'#8 -+ +#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#0#8'OnChange'#7#12'prgd' -+ +'irChange'#0#0#14'TDirectoryEdit'#7'persdir'#4'Left'#3#179#0#6'Height'#2#21#3 -+ +'Top'#2'*'#5'Width'#3#240#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'NumGlyph' -+ +'s'#2#1#8'TabOrder'#2#1#8'OnChange'#7#13'persdirChange'#0#0#0#9'TGroupBox'#9 -+ +'GroupBox1'#4'Left'#2#16#6'Height'#2'b'#3'Top'#3#155#0#5'Width'#3#197#1#12'C' -+ +'lientHeight'#2'^'#11'ClientWidth'#3#193#1#8'TabOrder'#2#1#0#7'TButton'#5'ch' -+ +'kdb'#4'Left'#2#16#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing' -+ +'.InnerBorder'#2#4#7'Caption'#6#5'Check'#7'OnClick'#7#10'chkdbClick'#8'TabOr' -+ +'der'#2#0#0#0#7'TButton'#5'credb'#4'Left'#3#168#0#6'Height'#2#25#3'Top'#2#16 -+ +#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#15'Create Data' -+ +'base'#7'OnClick'#7#10'credbClick'#8'TabOrder'#2#1#0#0#7'TButton'#6'dropdb'#4 -+ +'Left'#3'='#1#6'Height'#2#25#3'Top'#2#16#5'Width'#2'n'#25'BorderSpacing.Inne' -+ +'rBorder'#2#4#7'Caption'#6#13'Drop Database'#7'OnClick'#7#11'dropdbClick'#8 -+ +'TabOrder'#2#2#0#0#7'TButton'#7'CometDB'#4'Left'#3#168#0#6'Height'#2#25#3'To' -+ +'p'#2'0'#5'Width'#2'n'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'Com' -+ +'et Setting'#7'OnClick'#7#12'CometDBClick'#8'TabOrder'#2#4#7'Visible'#8#0#0#7 -+ +'TButton'#5'AstDB'#4'Left'#2#16#6'Height'#2#25#3'Top'#2'0'#5'Width'#2'n'#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#16'Asteroid Setting'#7'OnClick' -+ +#7#10'AstDBClick'#8'TabOrder'#2#3#7'Visible'#8#0#0#0#11'TRadioGroup'#11'DBty' -+ +'peGroup'#4'Left'#3#174#0#6'Height'#2'0'#3'Top'#2#3#5'Width'#3''''#1#8'AutoF' -+ +'ill'#9#7'Caption'#6#13'Database Type'#28'ChildSizing.LeftRightSpacing'#2#6 -+ +#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24 -+ +'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenou' -+ +'sChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'Chil' -+ +'dSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cc' -+ +'lLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientH' -+ +'eight'#2'!'#11'ClientWidth'#3'#'#1#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items' -+ +'.Strings'#1#6#6'SQLite'#6#5'MySQL'#0#7'OnClick'#7#16'DBtypeGroupClick'#14'P' -+ +'arentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#0#0#0#9'TGroupBox'#13'GroupBox' -+ +'Linux'#4'Left'#2#17#6'Height'#2'\'#3'Top'#3'o'#1#5'Width'#3#196#1#7'Caption' -+ +#6#19'Desktop environment'#12'ClientHeight'#2'M'#11'ClientWidth'#3#192#1#8'T' -+ +'abOrder'#2#3#0#6'TLabel'#7'Label12'#4'Left'#3#203#0#6'Height'#2#14#3'Top'#2 -+ +#8#5'Width'#2'i'#7'Caption'#6#18'URL launch command'#11'ParentColor'#8#0#0#9 -+ +'TComboBox'#15'LinuxDesktopBox'#4'Left'#2#20#6'Height'#2#23#3'Top'#2'!'#5'Wi' -+ +'dth'#2'f'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeight' -+ ,#2#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11'FreeDesktop'#6#3'KDE'#6#5'GNO' -+ +'ME'#6#5'Other'#0#8'OnSelect'#7#21'LinuxDesktopBoxChange'#8'TabOrder'#2#0#4 -+ +'Text'#6#3'KDE'#0#0#5'TEdit'#8'LinuxCmd'#4'Left'#3#204#0#6'Height'#2#21#3'To' -+ +'p'#2'!'#5'Width'#3#194#0#8'OnChange'#7#14'LinuxCmdChange'#8'TabOrder'#2#1#4 -+ +'Text'#6#8'LinuxCmd'#0#0#0#6'TPanel'#8'MysqlBox'#4'Left'#2#17#6'Height'#2'a' -+ +#3'Top'#2'5'#5'Width'#3#196#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#196#1#8 -+ +'TabOrder'#2#5#0#6'TLabel'#8'Label133'#4'Left'#3#18#1#6'Height'#2#15#3'Top'#2 -+ +'D'#5'Width'#2'Q'#8'AutoSize'#8#7'Caption'#6#8'Password'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#7'Label86'#4'Left'#2#16#6'Height'#2#15#3'Top'#2'D'#5'Width'#2'j' -+ +#8'AutoSize'#8#7'Caption'#6#7'Userid:'#11'ParentColor'#8#0#0#6'TLabel'#7'Lab' -+ +'el85'#4'Left'#3'j'#1#6'Height'#2#14#3'Top'#2#28#5'Width'#2#23#7'Caption'#6#5 -+ +'Port:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label84'#4'Left'#3#178#0#6'Height' -+ +#2#14#3'Top'#2#28#5'Width'#2'8'#7'Caption'#6#10'Host Name:'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#7'Label77'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#28#5'Width'#2 -+ +'0'#7'Caption'#6#8'DB Name:'#11'ParentColor'#8#0#0#6'TLabel'#13'MysqlBoxLabe' -+ +'l'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#3#5'Width'#2'J'#7'Caption'#6#13'Mys' -+ +'qlBoxLabel'#11'ParentColor'#8#0#0#5'TEdit'#6'dbpass'#4'Left'#3'\'#1#6'Heigh' -+ +'t'#2#21#3'Top'#2'@'#5'Width'#2'd'#8'EchoMode'#7#10'emPassword'#8'OnChange'#7 -+ +#12'dbpassChange'#12'PasswordChar'#6#1'*'#8'TabOrder'#2#0#4'Text'#6#6'dbpass' -+ +#0#0#5'TEdit'#6'dbuser'#4'Left'#2'}'#6'Height'#2#21#3'Top'#2'@'#5'Width'#2'd' -+ +#8'OnChange'#7#12'dbuserChange'#8'TabOrder'#2#1#4'Text'#6#6'dbuser'#0#0#5'TE' -+ +'dit'#6'dbhost'#4'Left'#3#250#0#6'Height'#2#21#3'Top'#2#24#5'Width'#2'A'#8'O' -+ +'nChange'#7#12'dbhostChange'#8'TabOrder'#2#2#4'Text'#6#6'dbhost'#0#0#9'TLong' -+ +'Edit'#6'dbport'#4'Left'#3#135#1#6'Height'#2#21#3'Top'#2#24#5'Width'#2'9'#8 -+ +'TabOrder'#2#3#8'OnChange'#7#12'dbportChange'#5'Value'#2#0#0#0#5'TEdit'#6'db' -+ +'name'#4'Left'#2'P'#6'Height'#2#21#3'Top'#2#24#5'Width'#2'A'#8'OnChange'#7#12 -+ +'dbnameChange'#8'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#5 -+ +'Page2'#12'ClientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#9'TGroupBox'#9'Gr' -+ +'oupBox3'#4'Left'#2#16#6'Height'#3#249#0#3'Top'#2#8#5'Width'#3#137#1#7'Capti' -+ +'on'#6#13'TCP/IP Server'#12'ClientHeight'#3#234#0#11'ClientWidth'#3#133#1#8 -+ +'TabOrder'#2#0#0#6'TLabel'#7'Label54'#4'Left'#2#16#6'Height'#2#14#3'Top'#2'|' -+ +#5'Width'#2'a'#7'Caption'#6#21'Server IP Interface :'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#7'Label55'#4'Left'#2#16#6'Height'#2#14#3'Top'#3#168#0#5'Width'#2'I' -+ +#7'Caption'#6#16'Server IP Port :'#11'ParentColor'#8#0#0#9'TCheckBox'#11'Use' -+ +'IPserver'#4'Left'#2#16#6'Height'#2#21#3'Top'#2' '#5'Width'#2'o'#7'Caption'#6 -+ +#17'Use TCP/IP Server'#7'OnClick'#7#16'UseIPserverClick'#8'TabOrder'#2#0#0#0 -+ +#5'TEdit'#6'ipaddr'#4'Left'#3#144#0#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'd' -+ +#8'OnChange'#7#12'ipaddrChange'#8'TabOrder'#2#2#4'Text'#6#9'127.0.0.1'#0#0#5 -+ +'TEdit'#6'ipport'#4'Left'#3#144#0#6'Height'#2#21#3'Top'#3#164#0#5'Width'#2'd' -+ +#8'OnChange'#7#12'ipportChange'#8'TabOrder'#2#3#4'Text'#6#4'3292'#0#0#9'TChe' -+ +'ckBox'#9'keepalive'#4'Left'#2#16#6'Height'#2#21#3'Top'#2'H'#5'Width'#3#160#0 -+ +#7'Caption'#6#28'Client Connection Keep Alive'#7'OnClick'#7#14'keepaliveClic' -+ +'k'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#5'Page3'#7'Caption'#6#5'Page3'#12'C' -+ +'lientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#7'Label13'#4'Left' - +#2#0#6'Height'#2#14#3'Top'#2#0#5'Width'#2'V'#7'Caption'#6#17'Telescope Setti' -- +'ng'#11'ParentColor'#8#0#0#11'TRadioGroup'#15'TelescopeSelect'#4'Left'#2#8#6 -- +'Height'#2'A'#3'Top'#2' '#5'Width'#3#194#1#8'AutoFill'#9#7'Caption'#6#15'Tel' -- +'escopeSelect'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottom' -- +'Spacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResiz' -- +'e'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildS' -- +'izing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical' -- +#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBot' -- +'tom'#27'ChildSizing.ControlsPerLine'#2#4#12'ClientHeight'#2'2'#11'ClientWid' -- +'th'#3#190#1#7'Columns'#2#4#13'Items.Strings'#1#6#4'INDI'#6#6'Manual'#6#10'C' -- +'DC plugin'#6#5'ASCOM'#0#7'OnClick'#7#20'TelescopeSelectClick'#8'TabOrder'#2 -- +#0#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4'#12'ClientHeight'#3#220#1 -- +#11'ClientWidth'#3#228#1#0#6'TLabel'#7'Label14'#4'Left'#2#19#6'Height'#2#14#3 -- +'Top'#2#24#5'Width'#2'o'#7'Caption'#6#18'Language selection'#11'ParentColor' -- +#8#0#0#9'TComboBox'#12'LanguageList'#4'Left'#2#17#6'Height'#2#25#3'Top'#2'R' -- +#5'Width'#3#4#1#10'ItemHeight'#2#0#8'OnSelect'#7#18'LanguageListSelect'#5'St' -- +'yle'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#0#0#6'TPanel'#6'Panel1'#4'L' -- +'eft'#2#0#6'Height'#2'2'#3'Top'#3#226#1#5'Width'#3#234#1#5'Align'#7#8'alBott' -- +'om'#12'ClientHeight'#2'2'#11'ClientWidth'#3#234#1#8'TabOrder'#2#1#0#7'TButt' -- +'on'#7'Button1'#4'Left'#3#206#0#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'A' -- +'nchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Captio' -- +'n'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7 -- +'Button2'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors' -- +#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'A' -- +'pply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0#0#7'TButton'#7'Button' -- +'3'#4'Left'#3#136#1#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5 -- +'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption' -- +#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4 -- +'Left'#2'u'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 -- +'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrder'#2 -- +#3#0#0#0#0 -+ +'ng'#11'ParentColor'#8#0#0#6'TPanel'#10'ASCOMPanel'#4'Left'#2#8#6'Height'#3 -+ +'H'#1#3'Top'#2'e'#5'Width'#3#196#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3 -+ +#196#1#8'TabOrder'#2#4#0#6'TLabel'#10'ASCOMLabel'#4'Left'#2#21#6'Height'#3 -+ +#232#0#3'Top'#2#24#5'Width'#3#145#1#8'AutoSize'#8#7'Caption'#6#10'ASCOMLabel' -+ +#11'ParentColor'#8#8'WordWrap'#9#0#0#0#6'TPanel'#15'TelescopePlugin'#4'Left' -+ +#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientHeight'#3'H'#1#11 -+ +'ClientWidth'#3#194#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label155'#4'Left'#2#24#6 -+ +'Height'#2#14#3'Top'#2'.'#5'Width'#2'_'#7'Caption'#6#17'Telescope Plugin '#11 -+ +'ParentColor'#8#0#0#6'TLabel'#20'TelescopePluginLabel'#4'Left'#2#25#6'Height' -+ +#2#14#3'Top'#2#11#5'Width'#2'w'#7'Caption'#6#20'TelescopePluginLabel'#11'Par' -+ +'entColor'#8#0#0#9'TComboBox'#19'telescopepluginlist'#4'Left'#3#144#0#6'Heig' -+ +'ht'#2#31#3'Top'#2'*'#5'Width'#3#145#0#16'AutoCompleteText'#11#20'cbactSearc' -+ +'hAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#25'telescopepluginlistChange' -+ +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#6'TPanel'#15'TelescopeM' -+ +'anual'#4'Left'#2#8#6'Height'#3'J'#1#3'Top'#2'e'#5'Width'#3#194#1#12'ClientH' -+ +'eight'#3'J'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#1#0#6'TLabel'#6'Label7' -+ +#4'Left'#2#24#6'Height'#2'>'#3'Top'#2' '#5'Width'#3'i'#1#8'AutoSize'#8#7'Cap' -+ +'tion'#6#159'Set how the mount move on each axis when you turn the driving k' -+ +'nob.'#13#10'Then the Telescope button show you the turns you must do to go ' -+ ,'from one object to another.'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel' -+ +#20'TelescopeManualLabel'#4'Left'#2#24#6'Height'#2#14#3'Top'#2#6#5'Width'#2 -+ +'~'#7'Caption'#6#20'TelescopeManualLabel'#11'ParentColor'#8#0#0#11'TRadioGro' -+ +'up'#15'ManualMountType'#4'Left'#2#24#6'Height'#2')'#3'Top'#2']'#5'Width'#3 -+ +'i'#1#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopB' -+ +'ottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChild' -+ +'Resize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'C' -+ +'hildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVert' -+ +'ical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTo' -+ +'pToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'%'#11'Cli' -+ +'entWidth'#3'e'#1#7'Columns'#2#2#13'Items.Strings'#1#6#10'Equatorial'#6#8'Al' -+ +'t / Az'#0#7'OnClick'#7#20'ManualMountTypeClick'#8'TabOrder'#2#0#0#0#6'TPane' -+ +'l'#15'EquatorialMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0#5'Widt' -+ +'h'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#0 -+ +#6'TLabel'#6'Label3'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2'X'#7 -+ +'Caption'#6#15'Right Ascension'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 -+ +'Left'#2#16#6'Height'#2#14#3'Top'#2']'#5'Width'#2'?'#7'Caption'#6#11'Declina' -+ +'tion'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#240#0#6'Height'#2 -+ +#14#3'Top'#2#16#5'Width'#2'@'#7'Caption'#6#12'turns / hour'#11'ParentColor'#8 -+ +#0#0#6'TLabel'#6'Label6'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width' -+ +#2'N'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7 -+ +'TurnsRa'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2#11#5'Width'#2'Q'#14'Parent' -+ +'ShowHint'#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsRaChange'#5'Value'#5#0#0#0 -+ +#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#10'TFloatEdit'#8'TurnsDec'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2 -+ +'X'#5'Width'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#1#8'OnChange'#7#14'Turn' -+ +'sDecChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0 -+ +#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsRa'#4'Left' -+ +#3#128#0#6'Height'#2#22#3'Top'#2'('#5'Width'#2'j'#7'Caption'#6#14'Revert RA ' -+ +'knob'#7'OnClick'#7#13'TurnsRaChange'#8'TabOrder'#2#2#0#0#9'TCheckBox'#13'Re' -+ +'vertTurnDec'#4'Left'#3#128#0#6'Height'#2#22#3'Top'#2'x'#5'Width'#2'r'#7'Cap' -+ +'tion'#6#15'Revert DEC knob'#7'OnClick'#7#14'TurnsDecChange'#8'TabOrder'#2#3 -+ +#0#0#0#6'TPanel'#10'AltAzMount'#4'Left'#2#24#6'Height'#3#161#0#3'Top'#3#148#0 -+ +#5'Width'#3'i'#1#12'ClientHeight'#3#161#0#11'ClientWidth'#3'i'#1#8'TabOrder' -+ +#2#2#0#6'TLabel'#6'Label8'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16#5'Width'#2 -+ +'-'#7'Caption'#6#7'Azimuth'#11'ParentColor'#8#0#0#6'TLabel'#6'Label9'#4'Left' -+ +#2#16#6'Height'#2#14#3'Top'#2']'#5'Width'#2'+'#7'Caption'#6#8'Altitude'#11'P' -+ +'arentColor'#8#0#0#6'TLabel'#7'Label10'#4'Left'#3#240#0#6'Height'#2#14#3'Top' -+ +#2#16#5'Width'#2'N'#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#7'Label11'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2']'#5'Width'#2'N' -+ +#7'Caption'#6#14'turns / degree'#11'ParentColor'#8#0#0#10'TFloatEdit'#7'Turn' -+ +'sAz'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2#11#5'Width'#2'Q'#14'ParentShow' -+ +'Hint'#8#8'TabOrder'#2#0#8'OnChange'#7#13'TurnsAzChange'#5'Value'#5#0#0#0#0#0 -+ +#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0 -+ +#0#0#0#10'TFloatEdit'#8'TurnsAlt'#4'Left'#3#128#0#6'Height'#2#23#3'Top'#2'X' -+ +#5'Width'#2'Q'#14'ParentShowHint'#8#8'TabOrder'#2#2#8'OnChange'#7#14'TurnsAl' -+ +'tChange'#5'Value'#5#0#0#0#0#0#0#0#0#0#0#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8 -+ +'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#0#0#9'TCheckBox'#13'RevertTurnsAz'#4'Left'#3 -+ +#128#0#6'Height'#2#22#3'Top'#2'('#5'Width'#2'i'#7'Caption'#6#14'Revert Az kn' -+ +'ob'#7'OnClick'#7#13'TurnsAzChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#14'Reve' -+ +'rtTurnsAlt'#4'Left'#3#128#0#6'Height'#2#22#3'Top'#2'x'#5'Width'#2'j'#7'Capt' -+ +'ion'#6#15'Revert Alt knob'#7'OnClick'#7#14'TurnsAltChange'#8'TabOrder'#2#3#0 -+ +#0#0#0#6'TPanel'#4'INDI'#4'Left'#2#8#6'Height'#3'H'#1#3'Top'#2'e'#5'Width'#3 -+ +#194#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#194#1#8'TabOrder'#2#2#0#6'T' -+ +'Label'#6'Label2'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#133#0 -+ +#7'Caption'#6#22'Control Panel command '#11'ParentColor'#8#0#0#6'TLabel'#8'L' -+ +'abel261'#4'Left'#2#8#6'Height'#2#14#3'Top'#3#180#0#5'Width'#2'A'#7'Caption' -+ +#6#12'Device Port '#11'ParentColor'#8#0#0#6'TLabel'#8'Label260'#4'Left'#3#231 -+ +#0#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'S'#7'Caption'#6#14'Telescope type' -+ +#11'ParentColor'#8#0#0#6'TLabel'#8'Label259'#4'Left'#3#231#0#6'Height'#2#14#3 -+ +'Top'#3#136#0#5'Width'#2'C'#7'Caption'#6#11'Driver name'#11'ParentColor'#8#0 -+ +#0#6'TLabel'#8'Label258'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'h'#5'Width'#2'`' -+ +#7'Caption'#6#15'Server command '#11'ParentColor'#8#0#0#6'TLabel'#8'Label130' -+ +#4'Left'#3#231#0#6'Height'#2#14#3'Top'#2#28#5'Width'#2'T'#7'Caption'#6#16'IN' -+ ,'DI server Port'#11'ParentColor'#8#0#0#6'TLabel'#7'Label75'#4'Left'#2#8#6'He' -+ +'ight'#2#14#3'Top'#2#28#5'Width'#2'\'#7'Caption'#6#17'INDI Server Host '#11 -+ +'ParentColor'#8#0#0#6'TLabel'#9'INDILabel'#4'Left'#2#8#6'Height'#2#14#3'Top' -+ +#2#7#5'Width'#2'5'#7'Caption'#6#9'INDILabel'#11'ParentColor'#8#0#0#5'TEdit'#8 -+ +'PanelCmd'#4'Left'#3#176#0#6'Height'#2#23#3'Top'#3#220#0#5'Width'#3#1#1#8'On' -+ +'Change'#7#14'PanelCmdChange'#8'TabOrder'#2#0#0#0#9'TComboBox'#8'IndiPort'#4 -+ +'Left'#2'x'#6'Height'#2#31#3'Top'#3#176#0#5'Width'#3#185#0#16'AutoCompleteTe' -+ +'xt'#11#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#13'Items.Strings'#1#6#4 -+ +'COM1'#6#4'COM2'#6#4'COM3'#6#4'COM4'#6#4'COM5'#6#4'COM6'#6#4'COM7'#6#4'COM8' -+ +#0#8'OnSelect'#7#14'IndiPortChange'#5'Style'#7#14'csDropDownList'#8'TabOrder' -+ +#2#1#0#0#9'TComboBox'#7'IndiDev'#4'Left'#3'P'#1#6'Height'#2#31#3'Top'#2'd'#5 -+ +'Width'#2'd'#16'AutoCompleteText'#11#20'cbactSearchAscending'#0#10'ItemHeigh' -+ +'t'#2#0#8'OnSelect'#7#13'IndiDevChange'#5'Style'#7#14'csDropDownList'#8'TabO' -+ +'rder'#2#2#0#0#5'TEdit'#10'IndiDriver'#4'Left'#3'P'#1#6'Height'#2#23#3'Top'#3 -+ +#132#0#5'Width'#2'd'#7'Enabled'#8#8'OnChange'#7#16'IndiDriverChange'#8'TabOr' -+ +'der'#2#3#0#0#5'TEdit'#13'IndiServerCmd'#4'Left'#2'x'#6'Height'#2#23#3'Top'#2 -+ +'d'#5'Width'#2'd'#8'OnChange'#7#19'IndiServerCmdChange'#8'TabOrder'#2#4#0#0#9 -+ +'TCheckBox'#13'IndiAutostart'#4'Left'#2#8#6'Height'#2#22#3'Top'#2'@'#5'Width' -+ +#3'B'#1#7'Caption'#6'9Automatically start a local server if not already runn' -+ +'ing'#7'OnClick'#7#18'IndiAutostartClick'#8'TabOrder'#2#5#0#0#5'TEdit'#14'In' -+ +'diServerPort'#4'Left'#3'P'#1#6'Height'#2#23#3'Top'#2#24#5'Width'#2'a'#8'OnC' -+ +'hange'#7#20'IndiServerPortChange'#8'TabOrder'#2#6#0#0#5'TEdit'#14'IndiServe' -+ +'rHost'#4'Left'#2'x'#6'Height'#2#23#3'Top'#2#24#5'Width'#2'd'#8'OnChange'#7 -+ +#20'IndiServerHostChange'#8'TabOrder'#2#7#0#0#0#11'TRadioGroup'#15'Telescope' -+ +'Select'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2' '#5'Width'#3#194#1#8'AutoFill' -+ +#9#7'Caption'#6#15'TelescopeSelect'#28'ChildSizing.LeftRightSpacing'#2#6#28 -+ +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' -+ +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' -+ +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' -+ +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' -+ +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#4#12'ClientHei' -+ +'ght'#2'2'#11'ClientWidth'#3#190#1#7'Columns'#2#4#13'Items.Strings'#1#6#4'IN' -+ +'DI'#6#6'Manual'#6#10'CDC plugin'#6#5'ASCOM'#0#7'OnClick'#7#20'TelescopeSele' -+ +'ctClick'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#5'Page4'#7'Caption'#6#5'Page4' -+ +#12'ClientHeight'#3#189#1#11'ClientWidth'#3#226#1#0#6'TLabel'#7'Label14'#4'L' -+ +'eft'#2#19#6'Height'#2#14#3'Top'#2#24#5'Width'#2'o'#7'Caption'#6#18'Language' -+ +' selection'#11'ParentColor'#8#0#0#9'TComboBox'#12'LanguageList'#4'Left'#2#17 -+ +#6'Height'#2#25#3'Top'#2'R'#5'Width'#3#4#1#10'ItemHeight'#2#0#8'OnSelect'#7 -+ +#18'LanguageListSelect'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#0#0 -+ +#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#226#1#5'Width'#3 -+ +#234#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3#234#1#8 -+ +'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#206#0#6'Height'#2#25#3'Top' -+ +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' -+ +'erBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8'TabOrde' -+ +'r'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3'.'#1#6'Height'#2#25#3'Top'#2#12#5 -+ +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' -+ +'r'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#0 -+ +#0#7'TButton'#7'Button3'#4'Left'#3#136#1#6'Height'#2#25#3'Top'#2#12#5'Width' -+ +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6 -+ +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7 -+ +'TButton'#7'Button4'#4'Left'#2'u'#6'Height'#2#25#3'Top'#2#12#5'Width'#2'K'#7 -+ +'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Butt' -+ +'on4Click'#8'TabOrder'#2#3#0#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_config_time.lfm skychart_3.2_up/skychart/pu_config_time.lfm ---- skychart_3.2/skychart/pu_config_time.lfm 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_time.lfm 2011-03-09 15:18:57.111096546 +0100 -@@ -1,7 +1,7 @@ - object f_config_time: Tf_config_time -- Left = 542 -+ Left = 512 - Height = 564 -- Top = 0 -+ Top = 25 - Width = 474 - ActiveControl = MainPanel - BorderIcons = [biSystemMenu] -@@ -14,7 +14,7 @@ - OnCreate = FormCreate - OnDestroy = FormDestroy - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object MainPanel: TPanel - Left = 0 - Height = 514 -@@ -34,26 +34,25 @@ - ActivePage = Page1 - Align = alClient - Anchors = [akLeft, akRight, akBottom] -- ShowTabs = False - TabIndex = 0 - TabOrder = 0 - object Page1: TTabSheet - Caption = 'Time' -- ClientHeight = 510 -- ClientWidth = 470 -+ ClientHeight = 479 -+ ClientWidth = 468 - object Label142: TLabel - Left = 286 - Height = 14 - Top = 62 -- Width = 50 -+ Width = 48 - Caption = 'Seconds' - ParentColor = False - end - object CheckBox2: TCheckBox - Left = 40 -- Height = 21 -+ Height = 22 - Top = 56 -- Width = 133 -+ Width = 128 - Caption = 'Auto-refresh every ' - OnClick = CheckBox2Click - TabOrder = 1 -@@ -71,7 +70,7 @@ - Left = 8 - Height = 14 - Top = 41 -- Width = 59 -+ Width = 54 - Caption = 'DT - UT : ' - ParentColor = False - end -@@ -87,7 +86,7 @@ - Left = 142 - Height = 14 - Top = 41 -- Width = 50 -+ Width = 48 - Caption = 'Seconds' - ParentColor = False - end -@@ -95,22 +94,22 @@ - Left = 8 - Height = 14 - Top = 16 -- Width = 258 -+ Width = 246 - Caption = 'Dynamic Time difference with Universal Time' - ParentColor = False - end - object CheckBox4: TCheckBox - Left = 8 -- Height = 21 -+ Height = 22 - Top = 70 -- Width = 164 -+ Width = 160 - Caption = 'Use another DT-UT value' - OnClick = CheckBox4Click - TabOrder = 0 - end - object dt_ut: TLongEdit - Left = 246 -- Height = 21 -+ Height = 23 - Hint = '-99999999..99999999' - Top = 70 - Width = 105 -@@ -126,7 +125,7 @@ - end - object LongEdit2: TLongEdit - Left = 230 -- Height = 21 -+ Height = 23 - Hint = '10..86400' - Top = 56 - Width = 41 -@@ -150,7 +149,7 @@ - Left = 8 - Height = 14 - Top = 68 -- Width = 29 -+ Width = 28 - Caption = 'Time' - ParentColor = False - end -@@ -166,7 +165,7 @@ - Left = 195 - Height = 14 - Top = 52 -- Width = 9 -+ Width = 8 - Caption = 'S' - ParentColor = False - end -@@ -222,7 +221,7 @@ - Left = 267 - Height = 14 - Top = 70 -- Width = 40 -+ Width = 41 - Caption = 'tzLabel' - ParentColor = False - end -@@ -252,7 +251,7 @@ - end - object JDEdit: TFloatEdit - Left = 56 -- Height = 21 -+ Height = 23 - Top = 108 - Width = 131 - TabOrder = 1 -@@ -350,7 +349,7 @@ - end - object d_yearEdit: TEdit - Left = 56 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 47 - OnChange = DateChange -@@ -358,7 +357,7 @@ - end - object d_year: TUpDown - Left = 103 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 13 - Associate = d_yearEdit -@@ -371,7 +370,7 @@ - end - object d_monthEdit: TEdit - Left = 127 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 47 - OnChange = DateChange -@@ -379,7 +378,7 @@ - end - object d_month: TUpDown - Left = 174 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 13 - Associate = d_monthEdit -@@ -392,7 +391,7 @@ - end - object d_dayEdit: TEdit - Left = 195 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 47 - OnChange = DateChange -@@ -400,7 +399,7 @@ - end - object d_day: TUpDown - Left = 242 -- Height = 21 -+ Height = 23 - Top = 22 - Width = 13 - Associate = d_dayEdit -@@ -413,7 +412,7 @@ - end - object t_hourEdit: TEdit - Left = 56 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 47 - OnChange = TimeChange -@@ -421,7 +420,7 @@ - end - object t_hour: TUpDown - Left = 103 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 13 - Associate = t_hourEdit -@@ -434,7 +433,7 @@ - end - object t_minEdit: TEdit - Left = 127 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 47 - OnChange = TimeChange -@@ -442,7 +441,7 @@ - end - object t_min: TUpDown - Left = 174 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 13 - Associate = t_minEdit -@@ -455,7 +454,7 @@ - end - object t_sec: TUpDown - Left = 242 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 13 - Associate = t_secEdit -@@ -468,7 +467,7 @@ - end - object t_secEdit: TEdit - Left = 195 -- Height = 21 -+ Height = 23 - Top = 65 - Width = 47 - OnChange = TimeChange -@@ -477,9 +476,9 @@ - end - object CheckBox1: TCheckBox - Left = 40 -- Height = 21 -+ Height = 22 - Top = 24 -- Width = 120 -+ Width = 114 - Caption = 'Use system time' - OnClick = CheckBox1Click - TabOrder = 0 -@@ -497,8 +496,8 @@ - end - object Page2: TTabSheet - Caption = 'Simulation' -- ClientHeight = 510 -- ClientWidth = 470 -+ ClientHeight = 479 -+ ClientWidth = 468 - object stepreset: TSpeedButton - Left = 220 - Height = 25 -@@ -609,9 +608,10 @@ - 'Asteroids' - 'Comets' - ) -- ItemHeight = 19 -+ ItemHeight = 0 - OnItemClick = SimObjItemClick - TabOrder = 0 -+ TopIndex = -1 - Data = { - 0C000000000000000000000000000000 - } -diff -ur skychart_3.2/skychart/pu_config_time.lrs skychart_3.2_up/skychart/pu_config_time.lrs ---- skychart_3.2/skychart/pu_config_time.lrs 2010-09-27 17:44:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_config_time.lrs 2011-03-09 15:18:57.146092248 +0100 -@@ -1,179 +1,179 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_config_time','FORMDATA',[ -- 'TPF0'#14'Tf_config_time'#13'f_config_time'#4'Left'#3#30#2#6'Height'#3'4'#2#3 -- +'Top'#2#0#5'Width'#3#218#1#13'ActiveControl'#7#9'MainPanel'#11'BorderIcons' -+ 'TPF0'#14'Tf_config_time'#13'f_config_time'#4'Left'#3#0#2#6'Height'#3'4'#2#3 -+ +'Top'#2#25#5'Width'#3#218#1#13'ActiveControl'#7#9'MainPanel'#11'BorderIcons' - +#11#12'biSystemMenu'#0#11'BorderStyle'#7#12'bsToolWindow'#7'Caption'#6#11'Da' - +'te / Time'#12'ClientHeight'#3'4'#2#11'ClientWidth'#3#218#1#11'Font.Height'#2 - +#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11 -- +'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel' -- +#9'MainPanel'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#5'Alig' -- +'n'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#2#2#11'Clien' -- +'tWidth'#3#218#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12'Pag' -- +'eControl1'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#10'Activ' -- +'ePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7'akRight' -- +#8'akBottom'#0#8'ShowTabs'#8#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5 -- +'Page1'#7'Caption'#6#4'Time'#12'ClientHeight'#3#254#1#11'ClientWidth'#3#214#1 -- +#0#6'TLabel'#8'Label142'#4'Left'#3#30#1#6'Height'#2#14#3'Top'#2'>'#5'Width'#2 -- +'2'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox2'#4 -- +'Left'#2'('#6'Height'#2#21#3'Top'#2'8'#5'Width'#3#133#0#7'Caption'#6#19'Auto' -- +'-refresh every '#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#1#0#0#6'TPan' -- +'el'#6'Panel8'#4'Left'#2' '#6'Height'#3#128#0#3'Top'#3''''#1#5'Width'#3#161#1 -- +#12'ClientHeight'#3#128#0#11'ClientWidth'#3#161#1#8'TabOrder'#2#4#7'Visible' -- +#8#0#6'TLabel'#8'Label135'#4'Left'#2#8#6'Height'#2#14#3'Top'#2')'#5'Width'#2 -- +';'#7'Caption'#6#11'DT - UT : '#11'ParentColor'#8#0#0#6'TLabel'#6'Tdt_Ut'#4 -- +'Left'#2'U'#6'Height'#2#14#3'Top'#2')'#5'Width'#2#29#7'Caption'#6#4'0000'#11 -- +'ParentColor'#8#0#0#6'TLabel'#8'Label136'#4'Left'#3#142#0#6'Height'#2#14#3'T' -- +'op'#2')'#5'Width'#2'2'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#6'TLab' -- +'el'#8'Label150'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#16#5'Width'#3#2#1#7'Cap' -- +'tion'#6'+Dynamic Time difference with Universal Time'#11'ParentColor'#8#0#0 -- +#9'TCheckBox'#9'CheckBox4'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'F'#5'Width'#3 -- +#164#0#7'Caption'#6#23'Use another DT-UT value'#7'OnClick'#7#14'CheckBox4Cli' -- +'ck'#8'TabOrder'#2#0#0#0#9'TLongEdit'#5'dt_ut'#4'Left'#3#246#0#6'Height'#2#21 -- +#4'Hint'#6#19'-99999999..99999999'#3'Top'#2'F'#5'Width'#2'i'#7'Enabled'#8#14 -- +'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'dt_utChang' -- +'e'#5'Value'#2#0#8'MinValue'#4#1#31#10#250#8'MaxValue'#4#255#224#245#5#0#0#0 -- +#9'TLongEdit'#9'LongEdit2'#4'Left'#3#230#0#6'Height'#2#21#4'Hint'#6#9'10..86' -- +'400'#3'Top'#2'8'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrde' -- +'r'#2#2#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#10#8'MinValue'#2#10#8'M' -- +'axValue'#4#128'Q'#1#0#0#0#6'TPanel'#6'Panel9'#4'Left'#2' '#6'Height'#3#160#0 -- +#3'Top'#2'W'#5'Width'#3#161#1#12'ClientHeight'#3#160#0#11'ClientWidth'#3#161 -- +#1#8'TabOrder'#2#3#0#6'TLabel'#8'Label137'#4'Left'#2#8#6'Height'#2#14#3'Top' -- +#2'D'#5'Width'#2#29#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#8'L' -- +'abel139'#4'Left'#2#127#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#10#7'Caption'#6 -- +#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label141'#4'Left'#3#195#0#6'Height'#2 -- +#14#3'Top'#2'4'#5'Width'#2#9#7'Caption'#6#1'S'#11'ParentColor'#8#0#0#6'TLabe' -- +'l'#8'Label138'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#9#7'Capti' -- +'on'#6#1'H'#11'ParentColor'#8#0#0#6'TLabel'#8'Label143'#4'Left'#2'8'#6'Heigh' -- +'t'#2#14#3'Top'#2#6#5'Width'#2#8#7'Caption'#6#1'Y'#11'ParentColor'#8#0#0#6'T' -- +'Label'#8'Label144'#4'Left'#2#127#6'Height'#2#14#3'Top'#2#6#5'Width'#2#10#7 -- +'Caption'#6#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label145'#4'Left'#3#196#0 -- +#6'Height'#2#14#3'Top'#2#6#5'Width'#2#9#7'Caption'#6#1'D'#11'ParentColor'#8#0 -- +#0#6'TLabel'#8'Label140'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#25#5'Width'#2#27 -- +#7'Caption'#6#4'Date'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2#8#6 -- +'Height'#2#14#3'Top'#2'o'#5'Width'#2#16#7'Caption'#6#3'JD:'#11'ParentColor'#8 -- +#0#0#6'TLabel'#7'tzLabel'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2'F'#5'Width' -- +#2'('#7'Caption'#6#7'tzLabel'#11'ParentColor'#8#0#0#11'TRadioGroup'#4'ADBC'#4 -- +'Left'#3#11#1#6'Height'#2''''#3'Top'#2#6#5'Width'#3#137#0#8'AutoFill'#9#28'C' -- +'hildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Ch' -- +'ildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.' -- +'EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizo' -- +'ntal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChil' -- +'ds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizi' -- +'ng.ControlsPerLine'#2#2#12'ClientHeight'#2'#'#11'ClientWidth'#3#133#0#7'Col' -- +'umns'#2#2#13'Items.Strings'#1#6#2'AD'#6#2'BC'#0#7'OnClick'#7#10'DateChange' -- +#8'TabOrder'#2#0#0#0#10'TFloatEdit'#6'JDEdit'#4'Left'#2'8'#6'Height'#2#21#3 -- +'Top'#2'l'#5'Width'#3#131#0#8'TabOrder'#2#1#8'OnChange'#7#12'JDEditChange'#5 -- +'Value'#5#0#0#0#0#0#0#0#0#0#0#8'Decimals'#2#6#8'MinValue'#5#0#0#0#0#0#0#0#0#0 -- ,#0#8'MaxValue'#5#0#0#0#0#0#0#0#0#0#0#6'Digits'#2#6#11'NumericType'#7#7'ntFix' -- +'ed'#0#0#7'TButton'#7'Button5'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'|'#5'W' -- +'idth'#2'-'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'0h'#7'OnClick'#7 -- +#12'Button5Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#3'W'#1#6 -- +'Height'#2#25#3'Top'#2'|'#5'Width'#2'='#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#5'0h UT'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#7'TBu' -- +'tton'#7'BitBtn4'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'^'#5'Width'#3#137#0 -- +#7'Caption'#6#18'Actual system time'#7'OnClick'#7#12'BitBtn4Click'#8'TabOrde' -- +'r'#2#4#0#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#190#0#6'Height'#2#30#3'Top'#2'g' -- +#5'Width'#2' '#10'Glyph.Data'#10'z'#5#0#0'v'#5#0#0'BMv'#5#0#0#0#0#0#0'6'#0#0 -- +#0'('#0#0#0#21#0#0#0#21#0#0#0#1#0#24#0#0#0#0#0'@'#5#0#0#194#30#0#0#194#30#0#0 -- +#0#0#0#0#0#0#0#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192#192#192#192#192 -+ +'FormDestroy'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPane' -+ +'l'#9'MainPanel'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#5'A' -+ +'lign'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#2#2#11'Cl' -+ +'ientWidth'#3#218#1#11'ParentColor'#8#8'TabOrder'#2#0#0#12'TPageControl'#12 -+ +'PageControl1'#4'Left'#2#0#6'Height'#3#2#2#3'Top'#2#0#5'Width'#3#218#1#10'Ac' -+ +'tivePage'#7#5'Page1'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#7'akRig' -+ +'ht'#8'akBottom'#0#8'TabIndex'#2#0#8'TabOrder'#2#0#0#9'TTabSheet'#5'Page1'#7 -+ +'Caption'#6#4'Time'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#212#1#0#6'TLa' -+ +'bel'#8'Label142'#4'Left'#3#30#1#6'Height'#2#14#3'Top'#2'>'#5'Width'#2'0'#7 -+ +'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#9'TCheckBox'#9'CheckBox2'#4'Lef' -+ +'t'#2'('#6'Height'#2#22#3'Top'#2'8'#5'Width'#3#128#0#7'Caption'#6#19'Auto-re' -+ +'fresh every '#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#1#0#0#6'TPanel' -+ +#6'Panel8'#4'Left'#2' '#6'Height'#3#128#0#3'Top'#3''''#1#5'Width'#3#161#1#12 -+ +'ClientHeight'#3#128#0#11'ClientWidth'#3#161#1#8'TabOrder'#2#4#7'Visible'#8#0 -+ +#6'TLabel'#8'Label135'#4'Left'#2#8#6'Height'#2#14#3'Top'#2')'#5'Width'#2'6'#7 -+ +'Caption'#6#11'DT - UT : '#11'ParentColor'#8#0#0#6'TLabel'#6'Tdt_Ut'#4'Left' -+ +#2'U'#6'Height'#2#14#3'Top'#2')'#5'Width'#2#29#7'Caption'#6#4'0000'#11'Paren' -+ +'tColor'#8#0#0#6'TLabel'#8'Label136'#4'Left'#3#142#0#6'Height'#2#14#3'Top'#2 -+ +')'#5'Width'#2'0'#7'Caption'#6#7'Seconds'#11'ParentColor'#8#0#0#6'TLabel'#8 -+ +'Label150'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#16#5'Width'#3#246#0#7'Caption' -+ +#6'+Dynamic Time difference with Universal Time'#11'ParentColor'#8#0#0#9'TCh' -+ +'eckBox'#9'CheckBox4'#4'Left'#2#8#6'Height'#2#22#3'Top'#2'F'#5'Width'#3#160#0 -+ +#7'Caption'#6#23'Use another DT-UT value'#7'OnClick'#7#14'CheckBox4Click'#8 -+ +'TabOrder'#2#0#0#0#9'TLongEdit'#5'dt_ut'#4'Left'#3#246#0#6'Height'#2#23#4'Hi' -+ +'nt'#6#19'-99999999..99999999'#3'Top'#2'F'#5'Width'#2'i'#7'Enabled'#8#14'Par' -+ +'entShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#8'OnChange'#7#11'dt_utChange'#5 -+ +'Value'#2#0#8'MinValue'#4#1#31#10#250#8'MaxValue'#4#255#224#245#5#0#0#0#9'TL' -+ +'ongEdit'#9'LongEdit2'#4'Left'#3#230#0#6'Height'#2#23#4'Hint'#6#9'10..86400' -+ +#3'Top'#2'8'#5'Width'#2')'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2 -+ +#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#10#8'MinValue'#2#10#8'MaxValue' -+ +#4#128'Q'#1#0#0#0#6'TPanel'#6'Panel9'#4'Left'#2' '#6'Height'#3#160#0#3'Top'#2 -+ +'W'#5'Width'#3#161#1#12'ClientHeight'#3#160#0#11'ClientWidth'#3#161#1#8'TabO' -+ +'rder'#2#3#0#6'TLabel'#8'Label137'#4'Left'#2#8#6'Height'#2#14#3'Top'#2'D'#5 -+ +'Width'#2#28#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#8'Label139' -+ +#4'Left'#2#127#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#10#7'Caption'#6#1'M'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#8'Label141'#4'Left'#3#195#0#6'Height'#2#14#3'T' -+ +'op'#2'4'#5'Width'#2#8#7'Caption'#6#1'S'#11'ParentColor'#8#0#0#6'TLabel'#8'L' -+ +'abel138'#4'Left'#2'8'#6'Height'#2#14#3'Top'#2'4'#5'Width'#2#9#7'Caption'#6#1 -+ +'H'#11'ParentColor'#8#0#0#6'TLabel'#8'Label143'#4'Left'#2'8'#6'Height'#2#14#3 -+ +'Top'#2#6#5'Width'#2#8#7'Caption'#6#1'Y'#11'ParentColor'#8#0#0#6'TLabel'#8'L' -+ +'abel144'#4'Left'#2#127#6'Height'#2#14#3'Top'#2#6#5'Width'#2#10#7'Caption'#6 -+ +#1'M'#11'ParentColor'#8#0#0#6'TLabel'#8'Label145'#4'Left'#3#196#0#6'Height'#2 -+ +#14#3'Top'#2#6#5'Width'#2#9#7'Caption'#6#1'D'#11'ParentColor'#8#0#0#6'TLabel' -+ +#8'Label140'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#25#5'Width'#2#27#7'Caption' -+ +#6#4'Date'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2 -+ +#14#3'Top'#2'o'#5'Width'#2#16#7'Caption'#6#3'JD:'#11'ParentColor'#8#0#0#6'TL' -+ +'abel'#7'tzLabel'#4'Left'#3#11#1#6'Height'#2#14#3'Top'#2'F'#5'Width'#2')'#7 -+ +'Caption'#6#7'tzLabel'#11'ParentColor'#8#0#0#11'TRadioGroup'#4'ADBC'#4'Left' -+ +#3#11#1#6'Height'#2''''#3'Top'#2#6#5'Width'#3#137#0#8'AutoFill'#9#28'ChildSi' -+ +'zing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSiz' -+ +'ing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.Enlarg' -+ +'eVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7 -+ +#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'C' -+ +'hildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Contr' -+ +'olsPerLine'#2#2#12'ClientHeight'#2'#'#11'ClientWidth'#3#133#0#7'Columns'#2#2 -+ +#13'Items.Strings'#1#6#2'AD'#6#2'BC'#0#7'OnClick'#7#10'DateChange'#8'TabOrde' -+ +'r'#2#0#0#0#10'TFloatEdit'#6'JDEdit'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'l' -+ +#5'Width'#3#131#0#8'TabOrder'#2#1#8'OnChange'#7#12'JDEditChange'#5'Value'#5#0 -+ +#0#0#0#0#0#0#0#0#0#8'Decimals'#2#6#8'MinValue'#5#0#0#0#0#0#0#0#0#0#0#8'MaxVa' -+ ,'lue'#5#0#0#0#0#0#0#0#0#0#0#6'Digits'#2#6#11'NumericType'#7#7'ntFixed'#0#0#7 -+ +'TButton'#7'Button5'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'|'#5'Width'#2'-' -+ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'0h'#7'OnClick'#7#12'Button' -+ +'5Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button6'#4'Left'#3'W'#1#6'Height'#2 -+ +#25#3'Top'#2'|'#5'Width'#2'='#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -+ +#5'0h UT'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#0#0#7'TButton'#7'Bit' -+ +'Btn4'#4'Left'#3#11#1#6'Height'#2#25#3'Top'#2'^'#5'Width'#3#137#0#7'Caption' -+ +#6#18'Actual system time'#7'OnClick'#7#12'BitBtn4Click'#8'TabOrder'#2#4#0#0#7 -+ +'TBitBtn'#7'BitBtn1'#4'Left'#3#190#0#6'Height'#2#30#3'Top'#2'g'#5'Width'#2' ' -+ +#10'Glyph.Data'#10'z'#5#0#0'v'#5#0#0'BMv'#5#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#21 -+ +#0#0#0#21#0#0#0#1#0#24#0#0#0#0#0'@'#5#0#0#194#30#0#0#194#30#0#0#0#0#0#0#0#0#0 -+ +#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#128#128#128#0 -+ +#192#192#192#192#192#192#192#192#192#0#192#192#192#128#128#128#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255 -- +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 -- +#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 -- +#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192 -- +#128#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 -- +#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192 -- +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192 -- +#192#192#0#192#192#192#128#128#128#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255 -- +#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255 -- +#192#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192 -- +#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255 -- +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 -- +#255#255#255#192#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255 -- +#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128 -- +#128#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#0#0#192#192#192#0 -- +#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255 -- +#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255 -+ +#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255 - +#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255 -- +#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192 -- +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192 -+ +#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 -+ +#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128 - +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255 -+ +#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255 -+ +#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192#192#0#192 -+ +#192#192#128#128#128#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#0 -+ +#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192 -+ +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#0#0 -+ +#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 -+ +#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#255#255#255#255#255#255 -+ +#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192 -+ +#192#192#0#0#255#0#0#255#192#192#192#255#255#255#255#255#255#192#192#192#255 - +#255#255#255#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#0#0#0#192#192#192#0#192#192#192#128 -+ +#128#128#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192 -+ +#192#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192 -+ +#255#255#255#255#255#255#192#192#192#255#255#255#255#255#255#0#0#0#192#192 -+ +#192#0#192#192#192#128#128#128#255#255#255#255#255#255#192#192#192#255#255 -+ +#255#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255 -+ +#255#255#255#192#192#192#255#255#255#255#255#255#192#192#192#255#255#255#255 -+ +#255#255#0#0#0#192#192#192#0#192#192#192#128#128#128#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#192#192#192#192#192#192#0#0#0#192#192#192#0#192#192#192#128#128#128#0 - +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 - +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 -- +#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0 -- +#128#128#0#128#128#0#128#128#255#255#255#255#255#255#255#255#255#255#255#255 -+ +#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0#128#128#0 -+ +#128#128#0#128#128#255#255#255#255#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 -- +#255#255#0#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128 -+ +#0#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#128#128#128#0 - +#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128 - +#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0#128#128#0 -- ,#128#128#0#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#0#0#0#0#0#0#0#0 -+ ,#128#128#0#128#128#0#0#0#192#192#192#0#192#192#192#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#192#192#192#0#192#192#192#192#192#192#192#192#192#192 -+ +#0#0#0#0#0#0#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192 -+ +#192#192#192#192#192#192#192#192#192#192#192#192#192#0#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -+ +#192#0#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 - +#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192#192 -- +#192#192#192#192#192#192#192#192#192#192#0#9'NumGlyphs'#2#0#7'OnClick'#7#12 -- +'BitBtn1Click'#8'TabOrder'#2#5#0#0#5'TEdit'#10'd_yearEdit'#4'Left'#2'8'#6'He' -- +'ight'#2#21#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8'TabOrde' -- +'r'#2#6#0#0#7'TUpDown'#6'd_year'#4'Left'#2'g'#6'Height'#2#21#3'Top'#2#22#5'W' -- +'idth'#2#13#9'Associate'#7#10'd_yearEdit'#3'Min'#2#0#3'Max'#3' N'#8'Position' -- +#2#0#8'TabOrder'#2#7#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#11'd_monthEdit'#4 -- +'Left'#2#127#6'Height'#2#21#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateC' -- +'hange'#8'TabOrder'#2#8#0#0#7'TUpDown'#7'd_month'#4'Left'#3#174#0#6'Height'#2 -- +#21#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#11'd_monthEdit'#3'Min'#2#1#3'Ma' -- +'x'#2#12#8'Position'#2#1#8'TabOrder'#2#9#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdi' -- +'t'#9'd_dayEdit'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2#22#5'Width'#2'/'#8 -- +'OnChange'#7#10'DateChange'#8'TabOrder'#2#10#0#0#7'TUpDown'#5'd_day'#4'Left' -- +#3#242#0#6'Height'#2#21#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#9'd_dayEdit' -- +#3'Min'#2#1#3'Max'#2#31#8'Position'#2#1#8'TabOrder'#2#11#9'Thousands'#8#4'Wr' -- +'ap'#8#0#0#5'TEdit'#10't_hourEdit'#4'Left'#2'8'#6'Height'#2#21#3'Top'#2'A'#5 -- +'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#12#0#0#7'TUpDown'#6 -- +'t_hour'#4'Left'#2'g'#6'Height'#2#21#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7 -- +#10't_hourEdit'#3'Min'#2#0#3'Max'#2#23#8'Position'#2#0#8'TabOrder'#2#13#9'Th' -- +'ousands'#8#4'Wrap'#8#0#0#5'TEdit'#9't_minEdit'#4'Left'#2#127#6'Height'#2#21 -- +#3'Top'#2'A'#5'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#14#0#0 -- +#7'TUpDown'#5't_min'#4'Left'#3#174#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#2#13 -- +#9'Associate'#7#9't_minEdit'#3'Min'#2#0#3'Max'#2';'#8'Position'#2#0#8'TabOrd' -- +'er'#2#15#9'Thousands'#8#4'Wrap'#8#0#0#7'TUpDown'#5't_sec'#4'Left'#3#242#0#6 -- +'Height'#2#21#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#9't_secEdit'#3'Min'#2 -- +#0#3'Max'#2';'#8'Position'#2#0#8'TabOrder'#2#16#9'Thousands'#8#4'Wrap'#8#0#0 -- +#5'TEdit'#9't_secEdit'#4'Left'#3#195#0#6'Height'#2#21#3'Top'#2'A'#5'Width'#2 -- +'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#17#0#0#0#9'TCheckBox'#9'Check' -- +'Box1'#4'Left'#2'('#6'Height'#2#21#3'Top'#2#24#5'Width'#2'x'#7'Caption'#6#15 -- +'Use system time'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#0#0#0#7'TBut' -- +'ton'#7'Button4'#4'Left'#2' '#6'Height'#2#25#3'Top'#3#255#0#5'Width'#2'w'#25 -- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#12'More Options'#7'OnClick'#7#12 -+ +#192#192#192#192#192#192#192#192#0#9'NumGlyphs'#2#0#7'OnClick'#7#12'BitBtn1C' -+ +'lick'#8'TabOrder'#2#5#0#0#5'TEdit'#10'd_yearEdit'#4'Left'#2'8'#6'Height'#2 -+ +#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8'TabOrder'#2#6#0 -+ +#0#7'TUpDown'#6'd_year'#4'Left'#2'g'#6'Height'#2#23#3'Top'#2#22#5'Width'#2#13 -+ +#9'Associate'#7#10'd_yearEdit'#3'Min'#2#0#3'Max'#3' N'#8'Position'#2#0#8'Tab' -+ +'Order'#2#7#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#11'd_monthEdit'#4'Left'#2 -+ +#127#6'Height'#2#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange'#7#10'DateChange'#8 -+ +'TabOrder'#2#8#0#0#7'TUpDown'#7'd_month'#4'Left'#3#174#0#6'Height'#2#23#3'To' -+ +'p'#2#22#5'Width'#2#13#9'Associate'#7#11'd_monthEdit'#3'Min'#2#1#3'Max'#2#12 -+ +#8'Position'#2#1#8'TabOrder'#2#9#9'Thousands'#8#4'Wrap'#8#0#0#5'TEdit'#9'd_d' -+ +'ayEdit'#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2#22#5'Width'#2'/'#8'OnChange' -+ +#7#10'DateChange'#8'TabOrder'#2#10#0#0#7'TUpDown'#5'd_day'#4'Left'#3#242#0#6 -+ +'Height'#2#23#3'Top'#2#22#5'Width'#2#13#9'Associate'#7#9'd_dayEdit'#3'Min'#2 -+ +#1#3'Max'#2#31#8'Position'#2#1#8'TabOrder'#2#11#9'Thousands'#8#4'Wrap'#8#0#0 -+ +#5'TEdit'#10't_hourEdit'#4'Left'#2'8'#6'Height'#2#23#3'Top'#2'A'#5'Width'#2 -+ +'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#12#0#0#7'TUpDown'#6't_hour'#4 -+ +'Left'#2'g'#6'Height'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#10't_hou' -+ +'rEdit'#3'Min'#2#0#3'Max'#2#23#8'Position'#2#0#8'TabOrder'#2#13#9'Thousands' -+ +#8#4'Wrap'#8#0#0#5'TEdit'#9't_minEdit'#4'Left'#2#127#6'Height'#2#23#3'Top'#2 -+ +'A'#5'Width'#2'/'#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#14#0#0#7'TUpDow' -+ +'n'#5't_min'#4'Left'#3#174#0#6'Height'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Asso' -+ +'ciate'#7#9't_minEdit'#3'Min'#2#0#3'Max'#2';'#8'Position'#2#0#8'TabOrder'#2 -+ +#15#9'Thousands'#8#4'Wrap'#8#0#0#7'TUpDown'#5't_sec'#4'Left'#3#242#0#6'Heigh' -+ +'t'#2#23#3'Top'#2'A'#5'Width'#2#13#9'Associate'#7#9't_secEdit'#3'Min'#2#0#3 -+ +'Max'#2';'#8'Position'#2#0#8'TabOrder'#2#16#9'Thousands'#8#4'Wrap'#8#0#0#5'T' -+ +'Edit'#9't_secEdit'#4'Left'#3#195#0#6'Height'#2#23#3'Top'#2'A'#5'Width'#2'/' -+ +#8'OnChange'#7#10'TimeChange'#8'TabOrder'#2#17#0#0#0#9'TCheckBox'#9'CheckBox' -+ +'1'#4'Left'#2'('#6'Height'#2#22#3'Top'#2#24#5'Width'#2'r'#7'Caption'#6#15'Us' -+ +'e system time'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#0#0#0#7'TButto' -+ +'n'#7'Button4'#4'Left'#2' '#6'Height'#2#25#3'Top'#3#255#0#5'Width'#2'w'#25'B' -+ +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#12'More Options'#7'OnClick'#7#12 - +'Button4Click'#8'TabOrder'#2#5#0#0#0#9'TTabSheet'#5'Page2'#7'Caption'#6#10'S' -- +'imulation'#12'ClientHeight'#3#254#1#11'ClientWidth'#3#214#1#0#12'TSpeedButt' -+ +'imulation'#12'ClientHeight'#3#223#1#11'ClientWidth'#3#212#1#0#12'TSpeedButt' - +'on'#9'stepreset'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#213#0#5'Width'#2'Q' - +#7'Caption'#6#6'Reset '#5'Color'#7#9'clBtnFace'#6'Layout'#7#10'blGlyphTop'#9 - +'NumGlyphs'#2#2#7'OnClick'#7#14'stepresetClick'#0#0#6'TLabel'#8'Label178'#4 -@@ -201,55 +201,55 @@ - +#8'TabOrder'#2#4#5'Value'#2#1#0#0#13'TCheckListBox'#6'SimObj'#4'Left'#2#6#6 - +'Height'#3#215#0#3'Top'#2#23#5'Width'#3#190#0#13'Items.Strings'#1#6#3'Sun'#6 - +#8'Mercury '#6#5'Venus'#6#4'Moon'#6#4'Mars'#6#7'Jupiter'#6#6'Saturn'#6#6'Ura' -- +'nus'#6#7'Neptune'#6#5'Pluto'#6#9'Asteroids'#6#6'Comets'#0#10'ItemHeight'#2 -- +#19#11'OnItemClick'#7#15'SimObjItemClick'#8'TabOrder'#2#0#4'Data'#10#16#0#0#0 -- +#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'TButton'#6'AllSim'#4'Left'#3#220#0#6 -- +'Height'#2#25#3'Top'#2'v'#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7 -- +'Caption'#6#3'All'#7'OnClick'#7#11'AllSimClick'#8'TabOrder'#2#1#0#0#7'TButto' -- +'n'#5'NoSim'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#166#0#5'Width'#2'K'#25 -- +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'None'#7'OnClick'#7#10'NoSimCl' -- +'ick'#8'TabOrder'#2#2#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#8#6'Heig' -- +'ht'#2'H'#3'Top'#3#22#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Show ' -- +'Labels'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacin' -- +'g'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 -+ +'nus'#6#7'Neptune'#6#5'Pluto'#6#9'Asteroids'#6#6'Comets'#0#10'ItemHeight'#2#0 -+ +#11'OnItemClick'#7#15'SimObjItemClick'#8'TabOrder'#2#0#8'TopIndex'#2#255#4'D' -+ +'ata'#10#16#0#0#0#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'TButton'#6'AllSim'#4 -+ +'Left'#3#220#0#6'Height'#2#25#3'Top'#2'v'#5'Width'#2'K'#25'BorderSpacing.Inn' -+ +'erBorder'#2#4#7'Caption'#6#3'All'#7'OnClick'#7#11'AllSimClick'#8'TabOrder'#2 -+ +#1#0#0#7'TButton'#5'NoSim'#4'Left'#3#220#0#6'Height'#2#25#3'Top'#3#166#0#5'W' -+ +'idth'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#4'None'#7'OnClick' -+ +#7#10'NoSimClick'#8'TabOrder'#2#2#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left' -+ +#2#8#6'Height'#2'H'#3'Top'#3#22#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6 -+ +#11'Show Labels'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBott' -+ +'omSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildRes' -+ +'ize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'Chil' -+ +'dSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertica' -+ +'l'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopTo' -+ +'Bottom'#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'9'#11'Client' -+ +'Width'#3#178#1#7'Columns'#2#3#13'Items.Strings'#1#6#14'Every position'#6#10 -+ +'One of two'#6#12'One of three'#6#14'Only the first'#6#13'Only the last'#6#4 -+ +'None'#0#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#7#0#0#11'TCheckGrou' -+ +'p'#11'CheckGroup1'#4'Left'#2#8#6'Height'#2'0'#3'Top'#3'f'#1#5'Width'#3#182#1 -+ +#8'AutoFill'#9#7'Caption'#6#10'Label Text'#28'ChildSizing.LeftRightSpacing'#2 -+ +#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7 -+ +#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomoge' -+ +'nousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'C' -+ +'hildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29 -+ +'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#7'Column' -+ +'s'#2#3#13'Items.Strings'#1#6#11'Object Name'#6#12'Current Date'#6#9'Magnitu' -+ +'de'#0#11'OnItemClick'#7#20'CheckGroup1ItemClick'#8'TabOrder'#2#8#4'Data'#10 -+ +#7#0#0#0#3#0#0#0#2#2#2#0#0#11'TCheckGroup'#11'CheckGroup2'#4'Left'#2#6#6'Hei' -+ +'ght'#2'0'#3'Top'#3#158#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Dat' -+ +'e Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpac' -+ +'ing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27 - +'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.' - +'ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14 - +'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom' -- +#27'ChildSizing.ControlsPerLine'#2#3#12'ClientHeight'#2'9'#11'ClientWidth'#3 -- +#178#1#7'Columns'#2#3#13'Items.Strings'#1#6#14'Every position'#6#10'One of t' -- +'wo'#6#12'One of three'#6#14'Only the first'#6#13'Only the last'#6#4'None'#0 -- +#7'OnClick'#7#16'RadioGroup1Click'#8'TabOrder'#2#7#0#0#11'TCheckGroup'#11'Ch' -- +'eckGroup1'#4'Left'#2#8#6'Height'#2'0'#3'Top'#3'f'#1#5'Width'#3#182#1#8'Auto' -- +'Fill'#9#7'Caption'#6#10'Label Text'#28'ChildSizing.LeftRightSpacing'#2#6#28 -- +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr' -- +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC' -- +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS' -- +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL' -- +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#3#7'Columns'#2 -- +#3#13'Items.Strings'#1#6#11'Object Name'#6#12'Current Date'#6#9'Magnitude'#0 -- +#11'OnItemClick'#7#20'CheckGroup1ItemClick'#8'TabOrder'#2#8#4'Data'#10#7#0#0 -- +#0#3#0#0#0#2#2#2#0#0#11'TCheckGroup'#11'CheckGroup2'#4'Left'#2#6#6'Height'#2 -- +'0'#3'Top'#3#158#1#5'Width'#3#182#1#8'AutoFill'#9#7'Caption'#6#11'Date Forma' -- +'t'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6 -- +#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSi' -- +'zing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkH' -- +'orizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScal' -- +'eChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'Chil' -- +'dSizing.ControlsPerLine'#2#6#7'Columns'#2#6#13'Items.Strings'#1#6#4'Year'#6 -- +#5'Month'#6#3'Day'#6#4'Hour'#6#6'Minute'#6#6'Second'#0#11'OnItemClick'#7#20 -- +'CheckGroup2ItemClick'#8'TabOrder'#2#9#4'Data'#10#10#0#0#0#6#0#0#0#2#2#2#2#2 -- +#2#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3#2#2#5'W' -- +'idth'#3#218#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'ClientWidth'#3 -- +#218#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'Height'#2#25 -- +#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpac' -- +'ing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#8 -- +'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#24#1#6'Height'#2#25#3'Top' -- +#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.Inn' -- +'erBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click'#8'TabOrde' -- +'r'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'x'#1#6'Height'#2#25#3'Top'#2#12#5 -- +'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorde' -- +'r'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2 -- +#2#0#0#7'TButton'#7'Button7'#4'Left'#2'X'#6'Height'#2#25#3'Top'#2#12#5'Width' -- +#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7 -- +#12'Button7Click'#8'TabOrder'#2#3#0#0#0#0 -+ +#27'ChildSizing.ControlsPerLine'#2#6#7'Columns'#2#6#13'Items.Strings'#1#6#4 -+ +'Year'#6#5'Month'#6#3'Day'#6#4'Hour'#6#6'Minute'#6#6'Second'#0#11'OnItemClic' -+ +'k'#7#20'CheckGroup2ItemClick'#8'TabOrder'#2#9#4'Data'#10#10#0#0#0#6#0#0#0#2 -+ +#2#2#2#2#2#0#0#0#0#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2'2'#3'Top'#3 -+ +#2#2#5'Width'#3#218#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2'2'#11'Client' -+ +'Width'#3#218#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3#184#0#6'He' -+ +'ight'#2#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25 -+ +'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResu' -+ +'lt'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#24#1#6'Height'#2 -+ +#25#3'Top'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderS' -+ +'pacing.InnerBorder'#2#4#7'Caption'#6#5'Apply'#7'OnClick'#7#12'Button2Click' -+ +#8'TabOrder'#2#1#0#0#7'TButton'#7'Button3'#4'Left'#3'x'#1#6'Height'#2#25#3'T' -+ +'op'#2#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing' -+ +'.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8 -+ +'TabOrder'#2#2#0#0#7'TButton'#7'Button7'#4'Left'#2'X'#6'Height'#2#25#3'Top'#2 -+ +#12#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#4'Help'#7 -+ +'OnClick'#7#12'Button7Click'#8'TabOrder'#2#3#0#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_detail.lfm skychart_3.2_up/skychart/pu_detail.lfm ---- skychart_3.2/skychart/pu_detail.lfm 2010-09-22 21:53:45.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_detail.lfm 2011-03-09 15:18:57.108096914 +0100 -@@ -1,7 +1,7 @@ - object f_detail: Tf_detail -- Left = 666 -+ Left = 618 - Height = 471 -- Top = 112 -+ Top = 111 - Width = 398 - ActiveControl = Panel1 - BorderStyle = bsSizeToolWin -@@ -11,7 +11,7 @@ - Font.Height = -11 - OnCreate = FormCreate - OnShow = FormShow -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object Panel1: TPanel - Left = 0 - Height = 50 -@@ -69,7 +69,6 @@ - PrintSettings.MarginTop = 0.5 - PrintSettings.MarginRight = 0.5 - PrintSettings.MarginBottom = 0.5 -- TabOrder = 1 - end - object ActionList1: TActionList - left = 128 -diff -ur skychart_3.2/skychart/pu_detail.lrs skychart_3.2_up/skychart/pu_detail.lrs ---- skychart_3.2/skychart/pu_detail.lrs 2010-09-22 21:53:45.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_detail.lrs 2011-03-09 15:18:57.144092494 +0100 -@@ -1,34 +1,33 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_detail','FORMDATA',[ -- 'TPF0'#9'Tf_detail'#8'f_detail'#4'Left'#3#154#2#6'Height'#3#215#1#3'Top'#2'p' -- +#5'Width'#3#142#1#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#13'bsSizeT' -- +'oolWin'#7'Caption'#6#7'Details'#12'ClientHeight'#3#215#1#11'ClientWidth'#3 -- +#142#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' -- +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height' -- +#2'2'#3'Top'#2#0#5'Width'#3#142#1#5'Align'#7#5'alTop'#12'ClientHeight'#2'2' -- +#11'ClientWidth'#3#142#1#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Bu' -- +'tton1'#4'Left'#3#10#1#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpac' -- +'ing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Close'#7'OnClick'#7#12'Butt' -- +'on1Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#2#8#6'Height'#2 -- +#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -- +#13'Center Object'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#7'TButt' -- +'on'#7'Button3'#4'Left'#3#138#0#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'B' -- +'orderSpacing.InnerBorder'#2#4#7'Caption'#6#8'Neighbor'#7'OnClick'#7#12'Butt' -- +'on3Click'#8'TabOrder'#2#1#0#0#0#12'TIpHtmlPanel'#12'IpHtmlPanel1'#4'Left'#2 -- +#0#6'Height'#3#165#1#3'Top'#2'2'#5'Width'#3#142#1#5'Align'#7#8'alClient'#13 -- +'FixedTypeface'#6#5'fixed'#15'DefaultTypeFace'#6#4'sans'#15'DefaultFontSize' -- +#2#8#10'FlagErrors'#8#9'PopupMenu'#7#10'PopupMenu1'#24'PrintSettings.MarginL' -- +'eft'#5#0#0#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0 -- +#128#254'?'#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'Prin' -- +'tSettings.MarginBottom'#5#0#0#0#0#0#0#0#128#254'?'#8'TabOrder'#2#1#0#0#11'T' -- +'ActionList'#11'ActionList1'#4'left'#3#128#0#3'top'#3#144#0#0#7'TAction'#9'S' -- +'electAll'#7'Caption'#6#9'SelectAll'#9'OnExecute'#7#16'SelectAllExecute'#8'S' -- +'hortCut'#3'A@'#0#0#7'TAction'#4'Copy'#7'Caption'#6#4'Copy'#9'OnExecute'#7#11 -- +'CopyExecute'#8'ShortCut'#3'C@'#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#2 -- +'H'#3'top'#3#144#0#0#9'TMenuItem'#10'SelectAll1'#6'Action'#7#9'SelectAll'#7 -- +'OnClick'#7#16'SelectAllExecute'#0#0#9'TMenuItem'#5'Copy1'#6'Action'#7#4'Cop' -- +'y'#7'OnClick'#7#11'CopyExecute'#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'In' -- +'terval'#2'd'#7'OnTimer'#7#11'Timer1Timer'#4'left'#3#207#0#3'top'#3#149#0#0#0 -- +#0 -+ 'TPF0'#9'Tf_detail'#8'f_detail'#4'Left'#3'j'#2#6'Height'#3#215#1#3'Top'#2'o'#5 -+ +'Width'#3#142#1#13'ActiveControl'#7#6'Panel1'#11'BorderStyle'#7#13'bsSizeToo' -+ +'lWin'#7'Caption'#6#7'Details'#12'ClientHeight'#3#215#1#11'ClientWidth'#3#142 -+ +#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow' -+ +#10'LCLVersion'#6#8'0.9.28.2'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2 -+ +'2'#3'Top'#2#0#5'Width'#3#142#1#5'Align'#7#5'alTop'#12'ClientHeight'#2'2'#11 -+ +'ClientWidth'#3#142#1#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Butto' -+ +'n1'#4'Left'#3#10#1#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing' -+ +'.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Close'#7'OnClick'#7#12'Button1' -+ +'Click'#8'TabOrder'#2#2#0#0#7'TButton'#7'Button2'#4'Left'#2#8#6'Height'#2#31 -+ +#3'Top'#2#6#5'Width'#2'u'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13 -+ +'Center Object'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#7'TButton' -+ +#7'Button3'#4'Left'#3#138#0#6'Height'#2#31#3'Top'#2#6#5'Width'#2'u'#25'Borde' -+ +'rSpacing.InnerBorder'#2#4#7'Caption'#6#8'Neighbor'#7'OnClick'#7#12'Button3C' -+ +'lick'#8'TabOrder'#2#1#0#0#0#12'TIpHtmlPanel'#12'IpHtmlPanel1'#4'Left'#2#0#6 -+ +'Height'#3#165#1#3'Top'#2'2'#5'Width'#3#142#1#5'Align'#7#8'alClient'#13'Fixe' -+ +'dTypeface'#6#5'fixed'#15'DefaultTypeFace'#6#4'sans'#15'DefaultFontSize'#2#8 -+ +#10'FlagErrors'#8#9'PopupMenu'#7#10'PopupMenu1'#24'PrintSettings.MarginLeft' -+ +#5#0#0#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0#128 -+ +#254'?'#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'PrintSet' -+ +'tings.MarginBottom'#5#0#0#0#0#0#0#0#128#254'?'#0#0#11'TActionList'#11'Actio' -+ +'nList1'#4'left'#3#128#0#3'top'#3#144#0#0#7'TAction'#9'SelectAll'#7'Caption' -+ +#6#9'SelectAll'#9'OnExecute'#7#16'SelectAllExecute'#8'ShortCut'#3'A@'#0#0#7 -+ +'TAction'#4'Copy'#7'Caption'#6#4'Copy'#9'OnExecute'#7#11'CopyExecute'#8'Shor' -+ +'tCut'#3'C@'#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#2'H'#3'top'#3#144#0 -+ +#0#9'TMenuItem'#10'SelectAll1'#6'Action'#7#9'SelectAll'#7'OnClick'#7#16'Sele' -+ +'ctAllExecute'#0#0#9'TMenuItem'#5'Copy1'#6'Action'#7#4'Copy'#7'OnClick'#7#11 -+ +'CopyExecute'#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#2'd'#7'OnTi' -+ +'mer'#7#11'Timer1Timer'#4'left'#3#207#0#3'top'#3#149#0#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_getdss.lfm skychart_3.2_up/skychart/pu_getdss.lfm ---- skychart_3.2/skychart/pu_getdss.lfm 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_getdss.lfm 2011-03-09 15:18:57.142092740 +0100 -@@ -1,5 +1,5 @@ - object f_getdss: Tf_getdss -- Left = 331 -+ Left = 350 - Height = 308 - Top = 137 - Width = 420 -@@ -13,10 +13,10 @@ - FormStyle = fsStayOnTop - OnCreate = FormCreate - OnDestroy = FormDestroy -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object Label1: TLabel - Left = 12 -- Height = 13 -+ Height = 16 - Top = 8 - Width = 37 - Caption = 'Label1' -@@ -40,7 +40,6 @@ - PrintSettings.MarginTop = 0.5 - PrintSettings.MarginRight = 0.5 - PrintSettings.MarginBottom = 0.5 -- TabOrder = 3 - Visible = False - end - object ListBox1: TListBox -diff -ur skychart_3.2/skychart/pu_getdss.lrs skychart_3.2_up/skychart/pu_getdss.lrs ---- skychart_3.2/skychart/pu_getdss.lrs 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_getdss.lrs 2011-03-09 15:18:57.110096669 +0100 -@@ -1,30 +1,30 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_getdss','FORMDATA',[ -- 'TPF0'#9'Tf_getdss'#8'f_getdss'#4'Left'#3'K'#1#6'Height'#3'4'#1#3'Top'#3#137#0 -+ 'TPF0'#9'Tf_getdss'#8'f_getdss'#4'Left'#3'^'#1#6'Height'#3'4'#1#3'Top'#3#137#0 - +#5'Width'#3#164#1#13'ActiveControl'#7#8'ListBox1'#11'BorderStyle'#7#12'bsToo' - +'lWindow'#7'Caption'#6#24'List of available plates'#12'ClientHeight'#3'4'#1 - +#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Ser' - +'if'#9'FormStyle'#7#11'fsStayOnTop'#8'OnCreate'#7#10'FormCreate'#9'OnDestroy' -- +#7#11'FormDestroy'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6'Label1'#4'Left'#2 -- +#12#6'Height'#2#13#3'Top'#2#8#5'Width'#2'%'#7'Caption'#6#6'Label1'#12'Font.C' -- +'harSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier' -+ +#7#11'FormDestroy'#10'LCLVersion'#6#8'0.9.28.2'#0#6'TLabel'#6'Label1'#4'Left' -+ +#2#12#6'Height'#2#16#3'Top'#2#8#5'Width'#2'%'#7'Caption'#6#6'Label1'#12'Font' -+ +'.CharSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier' - +#10'Font.Pitch'#7#7'fpFixed'#11'ParentColor'#8#10'ParentFont'#8#0#0#12'TIpHt' - +'mlPanel'#12'IpHtmlPanel1'#4'Left'#2#9#6'Height'#3#248#0#3'Top'#2#24#5'Width' - +#3#147#1#13'FixedTypeface'#6#11'Courier New'#15'DefaultTypeFace'#6#7'default' - +#15'DefaultFontSize'#2#12#10'FlagErrors'#8#24'PrintSettings.MarginLeft'#5#0#0 - +#0#0#0#0#0#128#254'?'#23'PrintSettings.MarginTop'#5#0#0#0#0#0#0#0#128#254'?' - +#25'PrintSettings.MarginRight'#5#0#0#0#0#0#0#0#128#254'?'#26'PrintSettings.M' -- +'arginBottom'#5#0#0#0#0#0#0#0#128#254'?'#8'TabOrder'#2#3#7'Visible'#8#0#0#8 -- +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#230#0#3'Top'#2' '#5'Width'#3 -- +#145#1#12'Font.CharSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name' -- +#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#14'IntegralHeight'#9#10'ItemHeight' -- +#2#0#10'ParentFont'#8#8'TabOrder'#2#0#8'TopIndex'#2#255#0#0#7'TBitBtn'#7'Bit' -- +'Btn1'#4'Left'#2'`'#6'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpac' -- +'ing.InnerBorder'#2#2#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#9 -- +'NumGlyphs'#2#0#8'TabOrder'#2#1#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#206#0#6 -- +'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#2#6 -- +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'Tab' -- +'Order'#2#2#0#0#15'TDownloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12 -- +'FtpFwPassive'#9#15'ConfirmDownload'#9#4'left'#3#8#1#3'top'#2#16#0#0#0 -+ +'arginBottom'#5#0#0#0#0#0#0#0#128#254'?'#7'Visible'#8#0#0#8'TListBox'#8'List' -+ +'Box1'#4'Left'#2#8#6'Height'#3#230#0#3'Top'#2' '#5'Width'#3#145#1#12'Font.Ch' -+ +'arSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#245#9'Font.Name'#6#7'courier'#10 -+ +'Font.Pitch'#7#7'fpFixed'#14'IntegralHeight'#9#10'ItemHeight'#2#0#10'ParentF' -+ +'ont'#8#8'TabOrder'#2#0#8'TopIndex'#2#255#0#0#7'TBitBtn'#7'BitBtn1'#4'Left'#2 -+ +'`'#6'Height'#2#25#3'Top'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder' -+ +#2#2#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2#1#9'NumGlyphs'#2#0#8 -+ +'TabOrder'#2#1#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#206#0#6'Height'#2#25#3'To' -+ +'p'#3#16#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#2#6'Cancel'#9#7'Cap' -+ +'tion'#6#6'Cancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#2#0#0 -+ +#15'TDownloadDialog'#15'DownloadDialog1'#9'FtpFwMode'#2#0#12'FtpFwPassive'#9 -+ +#15'ConfirmDownload'#9#4'left'#3#8#1#3'top'#2#16#0#0#0 - ]); -diff -ur skychart_3.2/skychart/pu_info.lfm skychart_3.2_up/skychart/pu_info.lfm ---- skychart_3.2/skychart/pu_info.lfm 2010-10-01 12:41:22.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_info.lfm 2011-03-09 15:18:57.142092740 +0100 -@@ -1,7 +1,7 @@ - object f_info: Tf_info -- Left = 426 -+ Left = 269 - Height = 498 -- Top = 101 -+ Top = 100 - Width = 718 - ActiveControl = TitlePanel - BorderStyle = bsSizeToolWin -@@ -13,7 +13,7 @@ - OnCreate = FormCreate - OnShow = FormShow - Position = poScreenCenter -- LCLVersion = '0.9.29' -+ LCLVersion = '0.9.28.2' - object Panel1: TPanel - Left = 0 - Height = 27 -@@ -113,10 +113,10 @@ - FullRepaint = False - TabOrder = 1 - object serverinfo: TLabel -- Left = 536 -- Height = 1 -+ Left = 535 -+ Height = 2 - Top = 6 -- Width = 1 -+ Width = 2 - Alignment = taRightJustify - Anchors = [akTop, akRight] - ParentColor = False -@@ -133,9 +133,9 @@ - end - object CheckBox1: TCheckBox - Left = 104 -- Height = 21 -+ Height = 22 - Top = 2 -- Width = 85 -+ Width = 91 - Caption = 'AutoRefresh' - Checked = True - OnClick = CheckBox1Click -@@ -191,9 +191,8 @@ - PopupMenu = PopupMenu2 - TabOrder = 1 - OnDblClick = Memo1DblClick -- BookMarkOptions.Xoffset = -18 -- Gutter.Visible = False -- Gutter.Width = 57 -+ BookMarkOptions.OnChange = nil -+ Gutter.Width = 0 - Gutter.MouseActions = < - item - Shift = [] -@@ -217,351 +216,7 @@ - Option = 0 - Priority = 0 - end> -- RightGutter.Width = 0 -- RightGutter.MouseActions = < -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 13 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbRight -- ClickCount = ccSingle -- ClickDir = cdUp -- Command = 12 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end> -- Keystrokes = < -- item -- Command = ecUp -- ShortCut = 38 -- end -- item -- Command = ecSelUp -- ShortCut = 8230 -- end -- item -- Command = ecScrollUp -- ShortCut = 16422 -- end -- item -- Command = ecDown -- ShortCut = 40 -- end -- item -- Command = ecSelDown -- ShortCut = 8232 -- end -- item -- Command = ecScrollDown -- ShortCut = 16424 -- end -- item -- Command = ecLeft -- ShortCut = 37 -- end -- item -- Command = ecSelLeft -- ShortCut = 8229 -- end -- item -- Command = ecWordLeft -- ShortCut = 16421 -- end -- item -- Command = ecSelWordLeft -- ShortCut = 24613 -- end -- item -- Command = ecRight -- ShortCut = 39 -- end -- item -- Command = ecSelRight -- ShortCut = 8231 -- end -- item -- Command = ecWordRight -- ShortCut = 16423 -- end -- item -- Command = ecSelWordRight -- ShortCut = 24615 -- end -- item -- Command = ecPageDown -- ShortCut = 34 -- end -- item -- Command = ecSelPageDown -- ShortCut = 8226 -- end -- item -- Command = ecPageBottom -- ShortCut = 16418 -- end -- item -- Command = ecSelPageBottom -- ShortCut = 24610 -- end -- item -- Command = ecPageUp -- ShortCut = 33 -- end -- item -- Command = ecSelPageUp -- ShortCut = 8225 -- end -- item -- Command = ecPageTop -- ShortCut = 16417 -- end -- item -- Command = ecSelPageTop -- ShortCut = 24609 -- end -- item -- Command = ecLineStart -- ShortCut = 36 -- end -- item -- Command = ecSelLineStart -- ShortCut = 8228 -- end -- item -- Command = ecEditorTop -- ShortCut = 16420 -- end -- item -- Command = ecSelEditorTop -- ShortCut = 24612 -- end -- item -- Command = ecLineEnd -- ShortCut = 35 -- end -- item -- Command = ecSelLineEnd -- ShortCut = 8227 -- end -- item -- Command = ecEditorBottom -- ShortCut = 16419 -- end -- item -- Command = ecSelEditorBottom -- ShortCut = 24611 -- end -- item -- Command = ecToggleMode -- ShortCut = 45 -- end -- item -- Command = ecCopy -- ShortCut = 16429 -- end -- item -- Command = ecPaste -- ShortCut = 8237 -- end -- item -- Command = ecDeleteChar -- ShortCut = 46 -- end -- item -- Command = ecCut -- ShortCut = 8238 -- end -- item -- Command = ecDeleteLastChar -- ShortCut = 8 -- end -- item -- Command = ecDeleteLastChar -- ShortCut = 8200 -- end -- item -- Command = ecDeleteLastWord -- ShortCut = 16392 -- end -- item -- Command = ecUndo -- ShortCut = 32776 -- end -- item -- Command = ecRedo -- ShortCut = 40968 -- end -- item -- Command = ecLineBreak -- ShortCut = 13 -- end -- item -- Command = ecSelectAll -- ShortCut = 16449 -- end -- item -- Command = ecCopy -- ShortCut = 16451 -- end -- item -- Command = ecBlockIndent -- ShortCut = 24649 -- end -- item -- Command = ecLineBreak -- ShortCut = 16461 -- end -- item -- Command = ecInsertLine -- ShortCut = 16462 -- end -- item -- Command = ecDeleteWord -- ShortCut = 16468 -- end -- item -- Command = ecBlockUnindent -- ShortCut = 24661 -- end -- item -- Command = ecPaste -- ShortCut = 16470 -- end -- item -- Command = ecCut -- ShortCut = 16472 -- end -- item -- Command = ecDeleteLine -- ShortCut = 16473 -- end -- item -- Command = ecDeleteEOL -- ShortCut = 24665 -- end -- item -- Command = ecUndo -- ShortCut = 16474 -- end -- item -- Command = ecRedo -- ShortCut = 24666 -- end -- item -- Command = ecGotoMarker0 -- ShortCut = 16432 -- end -- item -- Command = ecGotoMarker1 -- ShortCut = 16433 -- end -- item -- Command = ecGotoMarker2 -- ShortCut = 16434 -- end -- item -- Command = ecGotoMarker3 -- ShortCut = 16435 -- end -- item -- Command = ecGotoMarker4 -- ShortCut = 16436 -- end -- item -- Command = ecGotoMarker5 -- ShortCut = 16437 -- end -- item -- Command = ecGotoMarker6 -- ShortCut = 16438 -- end -- item -- Command = ecGotoMarker7 -- ShortCut = 16439 -- end -- item -- Command = ecGotoMarker8 -- ShortCut = 16440 -- end -- item -- Command = ecGotoMarker9 -- ShortCut = 16441 -- end -- item -- Command = ecSetMarker0 -- ShortCut = 24624 -- end -- item -- Command = ecSetMarker1 -- ShortCut = 24625 -- end -- item -- Command = ecSetMarker2 -- ShortCut = 24626 -- end -- item -- Command = ecSetMarker3 -- ShortCut = 24627 -- end -- item -- Command = ecSetMarker4 -- ShortCut = 24628 -- end -- item -- Command = ecSetMarker5 -- ShortCut = 24629 -- end -- item -- Command = ecSetMarker6 -- ShortCut = 24630 -- end -- item -- Command = ecSetMarker7 -- ShortCut = 24631 -- end -- item -- Command = ecSetMarker8 -- ShortCut = 24632 -- end -- item -- Command = ecSetMarker9 -- ShortCut = 24633 -- end -- item -- Command = ecNormalSelect -- ShortCut = 24654 -- end -- item -- Command = ecColumnSelect -- ShortCut = 24643 -- end -- item -- Command = ecLineSelect -- ShortCut = 24652 -- end -- item -- Command = ecTab -- ShortCut = 9 -- end -- item -- Command = ecShiftTab -- ShortCut = 8201 -- end -- item -- Command = ecMatchBracket -- ShortCut = 24642 -- end> -+ Keystrokes = <> - MouseActions = < - item - Shift = [] -@@ -684,200 +339,9 @@ - MoveCaret = False - Option = 0 - Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccSingle -- ClickDir = cdDown -- Command = 9 -- MoveCaret = False -- Option = 0 -- Priority = 0 - end> -- Lines.Strings = ( -- 'Memo1' -- ) -- Options = [eoDragDropEditing, eoGroupUndo, eoScrollPastEol, eoTrimTrailingSpaces] -- ReadOnly = True -- RightEdge = 0 - BracketHighlightStyle = sbhsBoth -- TabWidth = 10 -- inline TSynGutterPartList -- object TSynGutterMarks -- Width = 24 -- end -- object TSynGutterLineNumber -- Width = 17 -- MouseActions = <> -- MarkupInfo.Background = clBtnFace -- MarkupInfo.Foreground = clNone -- DigitCount = 2 -- ShowOnlyLineNumbersMultiplesOf = 1 -- ZeroStart = False -- LeadingZeros = False -- end -- object TSynGutterChanges -- Width = 4 -- ModifiedColor = 59900 -- SavedColor = clGreen -- end -- object TSynGutterSeparator -- Width = 2 -- end -- object TSynGutterCodeFolding -- MouseActions = < -- item -- Shift = [] -- ShiftMask = [] -- Button = mbRight -- ClickCount = ccSingle -- ClickDir = cdUp -- Command = 16 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [ssShift] -- Button = mbMiddle -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 14 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [ssShift] -- ShiftMask = [ssShift] -- Button = mbMiddle -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 14 -- MoveCaret = False -- Option = 1 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 0 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end> -- MarkupInfo.Background = clNone -- MarkupInfo.Foreground = clGray -- MouseActionsExpanded = < -- item -- Shift = [] -- ShiftMask = [] -- Button = mbLeft -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 14 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end> -- MouseActionsCollapsed = < -- item -- Shift = [ssCtrl] -- ShiftMask = [ssCtrl] -- Button = mbLeft -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 15 -- MoveCaret = False -- Option = 0 -- Priority = 0 -- end -- item -- Shift = [] -- ShiftMask = [ssCtrl] -- Button = mbLeft -- ClickCount = ccAny -- ClickDir = cdDown -- Command = 15 -- MoveCaret = False -- Option = 1 -- Priority = 0 -- end> -- end -- end -- inline SynRightGutterPartList1: TSynRightGutterPartList -+ object TSynGutterPartList - end - end - object Panel3: TPanel -@@ -903,7 +367,7 @@ - end - object Edit1: TEdit - Left = 108 -- Height = 21 -+ Height = 23 - Top = 3 - Width = 85 - Anchors = [akTop, akRight] -diff -ur skychart_3.2/skychart/pu_info.lrs skychart_3.2_up/skychart/pu_info.lrs ---- skychart_3.2/skychart/pu_info.lrs 2010-10-01 12:41:22.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_info.lrs 2011-03-09 15:18:57.110096669 +0100 -@@ -1,29 +1,29 @@ - { This is an automatically generated lazarus resource file } - - LazarusResources.Add('Tf_info','FORMDATA',[ -- 'TPF0'#7'Tf_info'#6'f_info'#4'Left'#3#170#1#6'Height'#3#242#1#3'Top'#2'e'#5'W' -- +'idth'#3#206#2#13'ActiveControl'#7#10'TitlePanel'#11'BorderStyle'#7#13'bsSiz' -- +'eToolWin'#7'Caption'#6#4'Info'#12'ClientHeight'#3#242#1#11'ClientWidth'#3 -- +#206#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'Form' -- +'Create'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVers' -- +'ion'#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2#27#3'Top'#3 -- +#215#1#5'Width'#3#206#2#5'Align'#7#8'alBottom'#12'ClientHeight'#2#27#11'Clie' -- +'ntWidth'#3#206#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Button1'#4 -- +'Left'#3'x'#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anchors'#11#5'akTop' -- +#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'C' -- +'lose'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button' -- +'4'#4'Left'#3' '#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'M'#7'Anchors'#11#5'a' -- +'kTop'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'Tab' -- +'Order'#2#1#0#0#0#6'TPanel'#10'TitlePanel'#4'Left'#2#0#6'Height'#2#26#3'Top' -- +#2#0#5'Width'#3#206#2#5'Align'#7#5'alTop'#9'Alignment'#7#13'taLeftJustify'#8 -- +'TabOrder'#2#5#0#0#6'TPanel'#5'Page3'#4'Left'#2'n'#6'Height'#3'W'#1#3'Top'#2 -- +'F'#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrde' -- +'r'#2#3#7'Visible'#8#0#5'TMemo'#12'ProgressMemo'#4'Left'#2#1#6'Height'#3'U'#1 -- +#3'Top'#2#1#5'Width'#3'('#2#5'Align'#7#8'alClient'#8'TabOrder'#2#0#0#0#0#6'T' -- +'Panel'#5'Page1'#4'Left'#2'8'#6'Height'#3'W'#1#3'Top'#2#30#5'Width'#3'*'#2#12 -- +'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2#1#0#11'TStringGri' -- +'d'#11'StringGrid1'#4'Left'#2#1#6'Height'#3'9'#1#3'Top'#2#1#5'Width'#3'('#2#5 -- +'Align'#7#8'alClient'#8'ColCount'#2#1#15'DefaultColWidth'#3' '#3#9'FixedCols' -+ 'TPF0'#7'Tf_info'#6'f_info'#4'Left'#3#13#1#6'Height'#3#242#1#3'Top'#2'd'#5'Wi' -+ +'dth'#3#206#2#13'ActiveControl'#7#10'TitlePanel'#11'BorderStyle'#7#13'bsSize' -+ +'ToolWin'#7'Caption'#6#4'Info'#12'ClientHeight'#3#242#1#11'ClientWidth'#3#206 -+ +#2#11'Font.Height'#2#245#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCrea' -+ +'te'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' -+ +#6#8'0.9.28.2'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2#27#3'Top'#3#215 -+ +#1#5'Width'#3#206#2#5'Align'#7#8'alBottom'#12'ClientHeight'#2#27#11'ClientWi' -+ +'dth'#3#206#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButton'#7'Button1'#4'Le' -+ +'ft'#3'x'#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7 -+ +'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#5'Clo' -+ +'se'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#7'TButton'#7'Button4' -+ +#4'Left'#3' '#2#6'Height'#2#25#3'Top'#2#1#5'Width'#2'M'#7'Anchors'#11#5'akTo' -+ +'p'#7'akRight'#0#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button4Click'#8'TabOrd' -+ +'er'#2#1#0#0#0#6'TPanel'#10'TitlePanel'#4'Left'#2#0#6'Height'#2#26#3'Top'#2#0 -+ +#5'Width'#3#206#2#5'Align'#7#5'alTop'#9'Alignment'#7#13'taLeftJustify'#8'Tab' -+ +'Order'#2#5#0#0#6'TPanel'#5'Page3'#4'Left'#2'n'#6'Height'#3'W'#1#3'Top'#2'F' -+ +#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2 -+ +#3#7'Visible'#8#0#5'TMemo'#12'ProgressMemo'#4'Left'#2#1#6'Height'#3'U'#1#3'T' -+ +'op'#2#1#5'Width'#3'('#2#5'Align'#7#8'alClient'#8'TabOrder'#2#0#0#0#0#6'TPan' -+ +'el'#5'Page1'#4'Left'#2'8'#6'Height'#3'W'#1#3'Top'#2#30#5'Width'#3'*'#2#12'C' -+ +'lientHeight'#3'W'#1#11'ClientWidth'#3'*'#2#8'TabOrder'#2#1#0#11'TStringGrid' -+ +#11'StringGrid1'#4'Left'#2#1#6'Height'#3'9'#1#3'Top'#2#1#5'Width'#3'('#2#5'A' -+ +'lign'#7#8'alClient'#8'ColCount'#2#1#15'DefaultColWidth'#3' '#3#9'FixedCols' - +#2#0#9'FixedRows'#2#0#13'GridLineWidth'#2#0#7'Options'#11#15'goFixedVertLine' - +#15'goFixedHorzLine'#10'goVertLine'#10'goHorzLine'#19'goDrawFocusSelected'#11 - +'goRowSelect'#0#9'PopupMenu'#7#10'PopupMenu1'#8'RowCount'#2#10#10'ScrollBars' -@@ -31,12 +31,12 @@ - +'me'#6#13'MS Sans Serif'#11'OnMouseDown'#7#20'StringGrid1MouseDown'#0#0#6'TP' - +'anel'#6'Panel2'#4'Left'#2#1#6'Height'#2#28#3'Top'#3':'#1#5'Width'#3'('#2#5 - +'Align'#7#8'alBottom'#12'ClientHeight'#2#28#11'ClientWidth'#3'('#2#11'FullRe' -- +'paint'#8#8'TabOrder'#2#1#0#6'TLabel'#10'serverinfo'#4'Left'#3#24#2#6'Height' -- +#2#1#3'Top'#2#6#5'Width'#2#1#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11 -+ +'paint'#8#8'TabOrder'#2#1#0#6'TLabel'#10'serverinfo'#4'Left'#3#23#2#6'Height' -+ +#2#2#3'Top'#2#6#5'Width'#2#2#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11 - +#5'akTop'#7'akRight'#0#11'ParentColor'#8#0#0#7'TButton'#7'Button2'#4'Left'#2 - +#12#6'Height'#2#25#3'Top'#2#2#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4 - +#7'Caption'#6#7'Refresh'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#0#0#0#9 -- +'TCheckBox'#9'CheckBox1'#4'Left'#2'h'#6'Height'#2#21#3'Top'#2#2#5'Width'#2'U' -+ +'TCheckBox'#9'CheckBox1'#4'Left'#2'h'#6'Height'#2#22#3'Top'#2#2#5'Width'#2'[' - +#7'Caption'#6#11'AutoRefresh'#7'Checked'#9#7'OnClick'#7#14'CheckBox1Click'#5 - +'State'#7#9'cbChecked'#8'TabOrder'#2#1#0#0#0#0#6'TPanel'#5'Page4'#4'Left'#3 - +#150#0#6'Height'#3'W'#1#3'Top'#2'P'#5'Width'#3'*'#2#12'ClientHeight'#3'W'#1 -@@ -50,150 +50,47 @@ - +'ont.Height'#2#243#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#12 - +'Font.Quality'#7#16'fqNonAntialiased'#11'ParentColor'#8#10'ParentFont'#8#9'P' - +'opupMenu'#7#10'PopupMenu2'#8'TabOrder'#2#1#10'OnDblClick'#7#13'Memo1DblClic' -- +'k'#23'BookMarkOptions.Xoffset'#2#238#14'Gutter.Visible'#8#12'Gutter.Width'#2 -- +'9'#19'Gutter.MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7 -- +#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#13 -- +#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask' -- +#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cd' -- +'Up'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#17'Rig' -- +'htGutter.Width'#2#0#24'RightGutter.MouseActions'#14#1#5'Shift'#11#0#9'Shift' -- +'Mask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6 -- +'cdDown'#7'Command'#2#13#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5 -- +'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccS' -- +'ingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8 -- +'Priority'#2#0#0#0#10'Keystrokes'#14#1#7'Command'#7#4'ecUp'#8'ShortCut'#2'&' -- +#0#1#7'Command'#7#7'ecSelUp'#8'ShortCut'#3'& '#0#1#7'Command'#7#10'ecScrollU' -- +'p'#8'ShortCut'#3'&@'#0#1#7'Command'#7#6'ecDown'#8'ShortCut'#2'('#0#1#7'Comm' -- +'and'#7#9'ecSelDown'#8'ShortCut'#3'( '#0#1#7'Command'#7#12'ecScrollDown'#8'S' -- ,'hortCut'#3'(@'#0#1#7'Command'#7#6'ecLeft'#8'ShortCut'#2'%'#0#1#7'Command'#7 -- +#9'ecSelLeft'#8'ShortCut'#3'% '#0#1#7'Command'#7#10'ecWordLeft'#8'ShortCut'#3 -- +'%@'#0#1#7'Command'#7#13'ecSelWordLeft'#8'ShortCut'#3'%`'#0#1#7'Command'#7#7 -- +'ecRight'#8'ShortCut'#2''''#0#1#7'Command'#7#10'ecSelRight'#8'ShortCut'#3'''' -- +' '#0#1#7'Command'#7#11'ecWordRight'#8'ShortCut'#3'''@'#0#1#7'Command'#7#14 -- +'ecSelWordRight'#8'ShortCut'#3'''`'#0#1#7'Command'#7#10'ecPageDown'#8'ShortC' -- +'ut'#2'"'#0#1#7'Command'#7#13'ecSelPageDown'#8'ShortCut'#3'" '#0#1#7'Command' -- +#7#12'ecPageBottom'#8'ShortCut'#3'"@'#0#1#7'Command'#7#15'ecSelPageBottom'#8 -- +'ShortCut'#3'"`'#0#1#7'Command'#7#8'ecPageUp'#8'ShortCut'#2'!'#0#1#7'Command' -- +#7#11'ecSelPageUp'#8'ShortCut'#3'! '#0#1#7'Command'#7#9'ecPageTop'#8'ShortCu' -- +'t'#3'!@'#0#1#7'Command'#7#12'ecSelPageTop'#8'ShortCut'#3'!`'#0#1#7'Command' -- +#7#11'ecLineStart'#8'ShortCut'#2'$'#0#1#7'Command'#7#14'ecSelLineStart'#8'Sh' -- +'ortCut'#3'$ '#0#1#7'Command'#7#11'ecEditorTop'#8'ShortCut'#3'$@'#0#1#7'Comm' -- +'and'#7#14'ecSelEditorTop'#8'ShortCut'#3'$`'#0#1#7'Command'#7#9'ecLineEnd'#8 -- +'ShortCut'#2'#'#0#1#7'Command'#7#12'ecSelLineEnd'#8'ShortCut'#3'# '#0#1#7'Co' -- +'mmand'#7#14'ecEditorBottom'#8'ShortCut'#3'#@'#0#1#7'Command'#7#17'ecSelEdit' -- +'orBottom'#8'ShortCut'#3'#`'#0#1#7'Command'#7#12'ecToggleMode'#8'ShortCut'#2 -- +'-'#0#1#7'Command'#7#6'ecCopy'#8'ShortCut'#3'-@'#0#1#7'Command'#7#7'ecPaste' -- +#8'ShortCut'#3'- '#0#1#7'Command'#7#12'ecDeleteChar'#8'ShortCut'#2'.'#0#1#7 -- +'Command'#7#5'ecCut'#8'ShortCut'#3'. '#0#1#7'Command'#7#16'ecDeleteLastChar' -- +#8'ShortCut'#2#8#0#1#7'Command'#7#16'ecDeleteLastChar'#8'ShortCut'#3#8' '#0#1 -- +#7'Command'#7#16'ecDeleteLastWord'#8'ShortCut'#3#8'@'#0#1#7'Command'#7#6'ecU' -- +'ndo'#8'ShortCut'#4#8#128#0#0#0#1#7'Command'#7#6'ecRedo'#8'ShortCut'#4#8#160 -- +#0#0#0#1#7'Command'#7#11'ecLineBreak'#8'ShortCut'#2#13#0#1#7'Command'#7#11'e' -- +'cSelectAll'#8'ShortCut'#3'A@'#0#1#7'Command'#7#6'ecCopy'#8'ShortCut'#3'C@'#0 -- +#1#7'Command'#7#13'ecBlockIndent'#8'ShortCut'#3'I`'#0#1#7'Command'#7#11'ecLi' -- +'neBreak'#8'ShortCut'#3'M@'#0#1#7'Command'#7#12'ecInsertLine'#8'ShortCut'#3 -- +'N@'#0#1#7'Command'#7#12'ecDeleteWord'#8'ShortCut'#3'T@'#0#1#7'Command'#7#15 -- +'ecBlockUnindent'#8'ShortCut'#3'U`'#0#1#7'Command'#7#7'ecPaste'#8'ShortCut'#3 -- +'V@'#0#1#7'Command'#7#5'ecCut'#8'ShortCut'#3'X@'#0#1#7'Command'#7#12'ecDelet' -- +'eLine'#8'ShortCut'#3'Y@'#0#1#7'Command'#7#11'ecDeleteEOL'#8'ShortCut'#3'Y`' -- +#0#1#7'Command'#7#6'ecUndo'#8'ShortCut'#3'Z@'#0#1#7'Command'#7#6'ecRedo'#8'S' -- +'hortCut'#3'Z`'#0#1#7'Command'#7#13'ecGotoMarker0'#8'ShortCut'#3'0@'#0#1#7'C' -- +'ommand'#7#13'ecGotoMarker1'#8'ShortCut'#3'1@'#0#1#7'Command'#7#13'ecGotoMar' -- +'ker2'#8'ShortCut'#3'2@'#0#1#7'Command'#7#13'ecGotoMarker3'#8'ShortCut'#3'3@' -- +#0#1#7'Command'#7#13'ecGotoMarker4'#8'ShortCut'#3'4@'#0#1#7'Command'#7#13'ec' -- +'GotoMarker5'#8'ShortCut'#3'5@'#0#1#7'Command'#7#13'ecGotoMarker6'#8'ShortCu' -- +'t'#3'6@'#0#1#7'Command'#7#13'ecGotoMarker7'#8'ShortCut'#3'7@'#0#1#7'Command' -- +#7#13'ecGotoMarker8'#8'ShortCut'#3'8@'#0#1#7'Command'#7#13'ecGotoMarker9'#8 -- +'ShortCut'#3'9@'#0#1#7'Command'#7#12'ecSetMarker0'#8'ShortCut'#3'0`'#0#1#7'C' -- +'ommand'#7#12'ecSetMarker1'#8'ShortCut'#3'1`'#0#1#7'Command'#7#12'ecSetMarke' -- +'r2'#8'ShortCut'#3'2`'#0#1#7'Command'#7#12'ecSetMarker3'#8'ShortCut'#3'3`'#0 -- +#1#7'Command'#7#12'ecSetMarker4'#8'ShortCut'#3'4`'#0#1#7'Command'#7#12'ecSet' -- +'Marker5'#8'ShortCut'#3'5`'#0#1#7'Command'#7#12'ecSetMarker6'#8'ShortCut'#3 -- +'6`'#0#1#7'Command'#7#12'ecSetMarker7'#8'ShortCut'#3'7`'#0#1#7'Command'#7#12 -- +'ecSetMarker8'#8'ShortCut'#3'8`'#0#1#7'Command'#7#12'ecSetMarker9'#8'ShortCu' -- +'t'#3'9`'#0#1#7'Command'#7#14'ecNormalSelect'#8'ShortCut'#3'N`'#0#1#7'Comman' -- +'d'#7#14'ecColumnSelect'#8'ShortCut'#3'C`'#0#1#7'Command'#7#12'ecLineSelect' -- +#8'ShortCut'#3'L`'#0#1#7'Command'#7#5'ecTab'#8'ShortCut'#2#9#0#1#7'Command'#7 -- +#10'ecShiftTab'#8'ShortCut'#3#9' '#0#1#7'Command'#7#14'ecMatchBracket'#8'Sho' -- +'rtCut'#3'B`'#0#0#12'MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssSh' -- +'ift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickD' -- +'ir'#7#6'cdDown'#7'Command'#2#1#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0 -- +#0#1#5'Shift'#11#7'ssShift'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button' -- +#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command' -- +#2#1#9'MoveCaret'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#5'ssAlt'#0 -- +#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 -- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option' -- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7'ssShift'#5'ssAlt'#0#9'ShiftMask'#11#7 -- +'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Cl' -- +'ickDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#1#8'Priority' -- +#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCoun' -- +'t'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Opt' -- +'ion'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6 -- ,'mbLeft'#10'ClickCount'#7#8'ccDouble'#8'ClickDir'#7#6'cdDown'#7'Command'#2#6 -- +#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask' -- +#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccTriple'#8'ClickDir'#7#6'cdD' -- +'own'#7'Command'#2#7#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shif' -- +'t'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#6'ccQuad'#8 -- +'ClickDir'#7#6'cdDown'#7'Command'#2#8#9'MoveCaret'#9#6'Option'#2#0#8'Priorit' -- +'y'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#8'mbMiddle'#10'Click' -- +'Count'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#10#9'MoveCaret'#9 -- +#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#7 -- +'ssShift'#5'ssAlt'#6'ssCtrl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSi' -- +'ngle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#11#9'MoveCaret'#8#6'Option'#2#0#8 -- +'Priority'#2#0#0#0#15'MouseSelActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6 -- +'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7 -- +'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 -- +#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' -- +'kDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2 -- +#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 -- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option' -- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLef' -- +'t'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'Mo' -- +'veCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0 -- +#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7 -- +'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 -- +#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' -- +'kDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2 -- +#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7 -- +#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCaret'#8#6'Option' -- +#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLef' -- +'t'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'Mo' -- +'veCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#13'Lines.Strings'#1#6#5'Memo1' -- +#0#7'Options'#11#17'eoDragDropEditing'#11'eoGroupUndo'#15'eoScrollPastEol'#20 -- +'eoTrimTrailingSpaces'#0#8'ReadOnly'#9#9'RightEdge'#2#0#21'BracketHighlightS' -- +'tyle'#7#8'sbhsBoth'#8'TabWidth'#2#10#0#244#18'TSynGutterPartList'#0#0#15'TS' -- +'ynGutterMarks'#0#5'Width'#2#24#0#0#20'TSynGutterLineNumber'#0#5'Width'#2#17 -- +#12'MouseActions'#14#0#21'MarkupInfo.Background'#7#9'clBtnFace'#21'MarkupInf' -- +'o.Foreground'#7#6'clNone'#10'DigitCount'#2#2#30'ShowOnlyLineNumbersMultiple' -- +'sOf'#2#1#9'ZeroStart'#8#12'LeadingZeros'#8#0#0#17'TSynGutterChanges'#0#5'Wi' -- +'dth'#2#4#13'ModifiedColor'#4#252#233#0#0#10'SavedColor'#7#7'clGreen'#0#0#19 -- +'TSynGutterSeparator'#0#5'Width'#2#2#0#0#21'TSynGutterCodeFolding'#0#12'Mous' -- +'eActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'Cl' -- +'ickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#16#9'MoveCaret'#8 -- +#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssShift'#0 -- +#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7 -- +'Command'#2#14#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7 -- +'ssShift'#0#9'ShiftMask'#11#7'ssShift'#0#6'Button'#7#8'mbMiddle'#10'ClickCou' -- +'nt'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9'MoveCaret'#8#6'Opt' -- +'ion'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6 -- +'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#0#9 -- +'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#21'MarkupInfo.Background'#7#6 -- +'clNone'#21'MarkupInfo.Foreground'#7#6'clGray'#20'MouseActionsExpanded'#14#1 -- +#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'cc' -- +'Any'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9'MoveCaret'#8#6'Option'#2#0#8 -- +'Priority'#2#0#0#0#21'MouseActionsCollapsed'#14#1#5'Shift'#11#6'ssCtrl'#0#9 -- +'ShiftMask'#11#6'ssCtrl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8 -- +'ClickDir'#7#6'cdDown'#7'Command'#2#15#9'MoveCaret'#8#6'Option'#2#0#8'Priori' -- +'ty'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#6'ssCtrl'#0#6'Button'#7#6'mbLeft' -- +#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#15#9'MoveCar' -- +'et'#8#6'Option'#2#1#8'Priority'#2#0#0#0#0#0#0#244#23'TSynRightGutterPartLis' -- +'t'#23'SynRightGutterPartList1'#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'Heig' -+ +'k'#24'BookMarkOptions.OnChange'#13#12'Gutter.Width'#2#0#19'Gutter.MouseActi' -+ +'ons'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCou' -+ +'nt'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#13#9'MoveCaret'#8#6'Opt' -+ +'ion'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7 -+ +'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12 -+ +#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#10'Keystrokes'#14#0#12'Mou' -+ +'seActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Butto' -+ +'n'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Comma' -+ +'nd'#2#1#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#7'ssSh' -+ +'ift'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'Click' -+ +'Count'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#1#9'MoveCaret'#9#6 -+ +'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#5'ssAlt'#0#9'ShiftMask'#11#7'ss' -+ +'Shift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Clic' -+ +'kDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2 -+ +#0#0#1#5'Shift'#11#7'ssShift'#5'ssAlt'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt' -+ ,#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown' -+ +#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11 -+ +#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSingle'#8'C' -+ +'lickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8'Priority' -+ +#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount' -+ +#7#8'ccDouble'#8'ClickDir'#7#6'cdDown'#7'Command'#2#6#9'MoveCaret'#9#6'Optio' -+ +'n'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mb' -+ +'Left'#10'ClickCount'#7#8'ccTriple'#8'ClickDir'#7#6'cdDown'#7'Command'#2#7#9 -+ +'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11 -+ +#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#6'ccQuad'#8'ClickDir'#7#6'cdDown'#7 -+ +'Command'#2#8#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0 -+ +#9'ShiftMask'#11#0#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#8'ccSingle'#8'Cl' -+ +'ickDir'#7#6'cdDown'#7'Command'#2#10#9'MoveCaret'#9#6'Option'#2#0#8'Priority' -+ +#2#0#0#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#6'ssCtr' -+ +'l'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdU' -+ +'p'#7'Command'#2#11#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#15'Mous' -+ +'eSelActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10 -+ +'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9#9'MoveCare' -+ +'t'#8#6'Option'#2#0#8'Priority'#2#0#0#0#21'BracketHighlightStyle'#7#8'sbhsBo' -+ +'th'#0#18'TSynGutterPartList'#0#0#0#0#6'TPanel'#6'Panel3'#4'Left'#2#1#6'Heig' - +'ht'#2#27#3'Top'#3';'#1#5'Width'#3'('#2#5'Align'#7#8'alBottom'#12'ClientHeig' - +'ht'#2#27#11'ClientWidth'#3'('#2#11'FullRepaint'#8#8'TabOrder'#2#0#0#7'TButt' - +'on'#7'Button3'#4'Left'#3#204#0#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'An' - +'chors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption' - +#6#6'Search'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Ed' -- ,'it1'#4'Left'#2'l'#6'Height'#2#21#3'Top'#2#3#5'Width'#2'U'#7'Anchors'#11#5'a' -+ +'it1'#4'Left'#2'l'#6'Height'#2#23#3'Top'#2#3#5'Width'#2'U'#7'Anchors'#11#5'a' - +'kTop'#7'akRight'#0#7'OnKeyUp'#7#10'Edit1KeyUp'#8'TabOrder'#2#1#0#0#7'TButto' - +'n'#7'Button5'#4'Left'#3'$'#1#6'Height'#2#25#3'Top'#2#1#5'Width'#2'K'#7'Anch' - +'ors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6 -diff -ur skychart_3.2/skychart/pu_print.lfm skychart_3.2_up/skychart/pu_print.lfm ---- skychart_3.2/skychart/pu_print.lfm 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_print.lfm 2011-03-09 15:18:23.187267809 +0100 -@@ -1,228 +1,228 @@ --object f_print: Tf_print -- Left = 992 -- Height = 293 -- Top = 402 -- Width = 403 -- ActiveControl = Setup -- BorderStyle = bsToolWindow -- Caption = 'Print Chart' -- ClientHeight = 293 -- ClientWidth = 403 -- Font.Height = -11 -- OnCreate = FormCreate -- OnShow = FormShow -- LCLVersion = '0.9.29' -- object PrinterInfo: TLabel -- Left = 27 -- Height = 14 -- Top = 14 -- Width = 50 -- Caption = 'PrinterInfo' -- ParentColor = False -- end -- object prtcolor: TRadioGroup -- Left = 16 -- Height = 82 -- Top = 48 -- Width = 207 -- AutoFill = True -- Caption = 'Color' -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 67 -- ClientWidth = 203 -- ItemIndex = 0 -- Items.Strings = ( -- 'Color, Line mode' -- 'Black/White, Line mode' -- 'As on screen (black background!)' -- ) -- OnClick = prtcolorClick -- TabOrder = 3 -- end -- object prtorient: TRadioGroup -- Left = 240 -- Height = 82 -- Top = 48 -- Width = 149 -- AutoFill = True -- Caption = 'Orientation' -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 67 -- ClientWidth = 145 -- Items.Strings = ( -- 'Portrait' -- 'Landscape' -- ) -- OnClick = prtorientClick -- TabOrder = 4 -- end -- object Print: TButton -- Left = 224 -- Height = 25 -- Top = 256 -- Width = 75 -- BorderSpacing.InnerBorder = 4 -- Caption = 'Print' -- Default = True -- ModalResult = 1 -- TabOrder = 0 -- end -- object Cancel: TButton -- Left = 314 -- Height = 25 -- Top = 256 -- Width = 75 -- BorderSpacing.InnerBorder = 4 -- Cancel = True -- Caption = 'Cancel' -- ModalResult = 2 -- TabOrder = 1 -- end -- object Setup: TButton -- Left = 304 -- Height = 25 -- Top = 8 -- Width = 85 -- BorderSpacing.InnerBorder = 4 -- Caption = 'Setup' -- OnClick = SetupClick -- TabOrder = 2 -- end -- object GroupBox1: TGroupBox -- Left = 9 -- Height = 82 -- Top = 144 -- Width = 380 -- Caption = 'Page Margin in millimeter' -- ClientHeight = 67 -- ClientWidth = 376 -- TabOrder = 5 -- object Label1: TLabel -- Left = 23 -- Height = 14 -- Top = 14 -- Width = 20 -- Caption = 'Left' -- ParentColor = False -- end -- object Label2: TLabel -- Left = 89 -- Height = 14 -- Top = 14 -- Width = 25 -- Caption = 'Right' -- ParentColor = False -- end -- object Label3: TLabel -- Left = 153 -- Height = 14 -- Top = 14 -- Width = 18 -- Caption = 'Top' -- ParentColor = False -- end -- object Label4: TLabel -- Left = 216 -- Height = 14 -- Top = 14 -- Width = 34 -- Caption = 'Bottom' -- ParentColor = False -- end -- object LongEdit1: TLongEdit -- Left = 21 -- Height = 21 -- Hint = '0..100' -- Top = 34 -- Width = 40 -- ParentShowHint = False -- ShowHint = True -- TabOrder = 0 -- OnChange = LongEdit1Change -- Value = 0 -- MaxValue = 100 -- end -- object LongEdit2: TLongEdit -- Left = 86 -- Height = 21 -- Hint = '0..100' -- Top = 34 -- Width = 40 -- ParentShowHint = False -- ShowHint = True -- TabOrder = 1 -- OnChange = LongEdit2Change -- Value = 0 -- MaxValue = 100 -- end -- object LongEdit3: TLongEdit -- Left = 151 -- Height = 21 -- Hint = '0..100' -- Top = 35 -- Width = 40 -- ParentShowHint = False -- ShowHint = True -- TabOrder = 2 -- OnChange = LongEdit3Change -- Value = 0 -- MaxValue = 100 -- end -- object LongEdit4: TLongEdit -- Left = 216 -- Height = 21 -- Hint = '0..100' -- Top = 34 -- Width = 40 -- ParentShowHint = False -- ShowHint = True -- TabOrder = 3 -- OnChange = LongEdit4Change -- Value = 0 -- MaxValue = 100 -- end -- object Button1: TButton -- Left = 277 -- Height = 25 -- Top = 2 -- Width = 91 -- BorderSpacing.InnerBorder = 4 -- Caption = 'No Margin' -- OnClick = Button1Click -- TabOrder = 4 -- end -- object Button2: TButton -- Left = 277 -- Height = 25 -- Top = 32 -- Width = 91 -- BorderSpacing.InnerBorder = 4 -- Caption = 'Default Margin' -- OnClick = Button2Click -- TabOrder = 5 -- end -- end -- object Button3: TButton -- Left = 134 -- Height = 25 -- Top = 256 -- Width = 75 -- Caption = 'Help' -- OnClick = Button3Click -- TabOrder = 6 -- end -+object f_print: Tf_print -+ Left = 992 -+ Height = 293 -+ Top = 402 -+ Width = 403 -+ ActiveControl = Setup -+ BorderStyle = bsToolWindow -+ Caption = 'Print Chart' -+ ClientHeight = 293 -+ ClientWidth = 403 -+ Font.Height = -11 -+ OnCreate = FormCreate -+ OnShow = FormShow -+ LCLVersion = '0.9.29' -+ object PrinterInfo: TLabel -+ Left = 27 -+ Height = 14 -+ Top = 14 -+ Width = 50 -+ Caption = 'PrinterInfo' -+ ParentColor = False -+ end -+ object prtcolor: TRadioGroup -+ Left = 16 -+ Height = 82 -+ Top = 48 -+ Width = 207 -+ AutoFill = True -+ Caption = 'Color' -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 67 -+ ClientWidth = 203 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'Color, Line mode' -+ 'Black/White, Line mode' -+ 'As on screen (black background!)' -+ ) -+ OnClick = prtcolorClick -+ TabOrder = 3 -+ end -+ object prtorient: TRadioGroup -+ Left = 240 -+ Height = 82 -+ Top = 48 -+ Width = 149 -+ AutoFill = True -+ Caption = 'Orientation' -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 67 -+ ClientWidth = 145 -+ Items.Strings = ( -+ 'Portrait' -+ 'Landscape' -+ ) -+ OnClick = prtorientClick -+ TabOrder = 4 -+ end -+ object Print: TButton -+ Left = 224 -+ Height = 25 -+ Top = 256 -+ Width = 75 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'Print' -+ Default = True -+ ModalResult = 1 -+ TabOrder = 0 -+ end -+ object Cancel: TButton -+ Left = 314 -+ Height = 25 -+ Top = 256 -+ Width = 75 -+ BorderSpacing.InnerBorder = 4 -+ Cancel = True -+ Caption = 'Cancel' -+ ModalResult = 2 -+ TabOrder = 1 -+ end -+ object Setup: TButton -+ Left = 304 -+ Height = 25 -+ Top = 8 -+ Width = 85 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'Setup' -+ OnClick = SetupClick -+ TabOrder = 2 -+ end -+ object GroupBox1: TGroupBox -+ Left = 9 -+ Height = 82 -+ Top = 144 -+ Width = 380 -+ Caption = 'Page Margin in millimeter' -+ ClientHeight = 67 -+ ClientWidth = 376 -+ TabOrder = 5 -+ object Label1: TLabel -+ Left = 23 -+ Height = 14 -+ Top = 14 -+ Width = 20 -+ Caption = 'Left' -+ ParentColor = False -+ end -+ object Label2: TLabel -+ Left = 89 -+ Height = 14 -+ Top = 14 -+ Width = 25 -+ Caption = 'Right' -+ ParentColor = False -+ end -+ object Label3: TLabel -+ Left = 153 -+ Height = 14 -+ Top = 14 -+ Width = 18 -+ Caption = 'Top' -+ ParentColor = False -+ end -+ object Label4: TLabel -+ Left = 216 -+ Height = 14 -+ Top = 14 -+ Width = 34 -+ Caption = 'Bottom' -+ ParentColor = False -+ end -+ object LongEdit1: TLongEdit -+ Left = 21 -+ Height = 21 -+ Hint = '0..100' -+ Top = 34 -+ Width = 40 -+ ParentShowHint = False -+ ShowHint = True -+ TabOrder = 0 -+ OnChange = LongEdit1Change -+ Value = 0 -+ MaxValue = 100 -+ end -+ object LongEdit2: TLongEdit -+ Left = 86 -+ Height = 21 -+ Hint = '0..100' -+ Top = 34 -+ Width = 40 -+ ParentShowHint = False -+ ShowHint = True -+ TabOrder = 1 -+ OnChange = LongEdit2Change -+ Value = 0 -+ MaxValue = 100 -+ end -+ object LongEdit3: TLongEdit -+ Left = 151 -+ Height = 21 -+ Hint = '0..100' -+ Top = 35 -+ Width = 40 -+ ParentShowHint = False -+ ShowHint = True -+ TabOrder = 2 -+ OnChange = LongEdit3Change -+ Value = 0 -+ MaxValue = 100 -+ end -+ object LongEdit4: TLongEdit -+ Left = 216 -+ Height = 21 -+ Hint = '0..100' -+ Top = 34 -+ Width = 40 -+ ParentShowHint = False -+ ShowHint = True -+ TabOrder = 3 -+ OnChange = LongEdit4Change -+ Value = 0 -+ MaxValue = 100 -+ end -+ object Button1: TButton -+ Left = 277 -+ Height = 25 -+ Top = 2 -+ Width = 91 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'No Margin' -+ OnClick = Button1Click -+ TabOrder = 4 -+ end -+ object Button2: TButton -+ Left = 277 -+ Height = 25 -+ Top = 32 -+ Width = 91 -+ BorderSpacing.InnerBorder = 4 -+ Caption = 'Default Margin' -+ OnClick = Button2Click -+ TabOrder = 5 -+ end -+ end -+ object Button3: TButton -+ Left = 134 -+ Height = 25 -+ Top = 256 -+ Width = 75 -+ Caption = 'Help' -+ OnClick = Button3Click -+ TabOrder = 6 -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_print.lrs skychart_3.2_up/skychart/pu_print.lrs ---- skychart_3.2/skychart/pu_print.lrs 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_print.lrs 2011-03-09 15:18:23.187267809 +0100 -@@ -1,65 +1,65 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tf_print','FORMDATA',[ -- 'TPF0'#8'Tf_print'#7'f_print'#4'Left'#3#224#3#6'Height'#3'%'#1#3'Top'#3#146#1 -- +#5'Width'#3#147#1#13'ActiveControl'#7#5'Setup'#11'BorderStyle'#7#12'bsToolWi' -- +'ndow'#7'Caption'#6#11'Print Chart'#12'ClientHeight'#3'%'#1#11'ClientWidth'#3 -- +#147#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' -- +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#11'PrinterInfo'#4'Left'#2#27#6 -- +'Height'#2#14#3'Top'#2#14#5'Width'#2'2'#7'Caption'#6#11'PrinterInfo'#11'Pare' -- +'ntColor'#8#0#0#11'TRadioGroup'#8'prtcolor'#4'Left'#2#16#6'Height'#2'R'#3'To' -- +'p'#2'0'#5'Width'#3#207#0#8'AutoFill'#9#7'Caption'#6#5'Color'#28'ChildSizing' -- +'.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.' -- +'EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVer' -- +'tical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 -- +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' -- +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' -- +'PerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#203#0#9'ItemIndex'#2#0 -- +#13'Items.Strings'#1#6#16'Color, Line mode'#6#22'Black/White, Line mode'#6' ' -- +'As on screen (black background!)'#0#7'OnClick'#7#13'prtcolorClick'#8'TabOrd' -- +'er'#2#3#0#0#11'TRadioGroup'#9'prtorient'#4'Left'#3#240#0#6'Height'#2'R'#3'T' -- +'op'#2'0'#5'Width'#3#149#0#8'AutoFill'#9#7'Caption'#6#11'Orientation'#28'Chi' -- +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' -- +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' -- +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' -- +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' -- +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' -- +'ontrolsPerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#145#0#13'Items.' -- +'Strings'#1#6#8'Portrait'#6#9'Landscape'#0#7'OnClick'#7#14'prtorientClick'#8 -- +'TabOrder'#2#4#0#0#7'TButton'#5'Print'#4'Left'#3#224#0#6'Height'#2#25#3'Top' -- +#3#0#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Print' -- +#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#6'Cancel'#4 -- +'Left'#3':'#1#6'Height'#2#25#3'Top'#3#0#1#5'Width'#2'K'#25'BorderSpacing.Inn' -- +'erBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabO' -- +'rder'#2#1#0#0#7'TButton'#5'Setup'#4'Left'#3'0'#1#6'Height'#2#25#3'Top'#2#8#5 -- +'Width'#2'U'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Setup'#7'OnCli' -- +'ck'#7#10'SetupClick'#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 -- +#9#6'Height'#2'R'#3'Top'#3#144#0#5'Width'#3'|'#1#7'Caption'#6#25'Page Margin' -- +' in millimeter'#12'ClientHeight'#2'C'#11'ClientWidth'#3'x'#1#8'TabOrder'#2#5 -- +#0#6'TLabel'#6'Label1'#4'Left'#2#23#6'Height'#2#14#3'Top'#2#14#5'Width'#2#20 -- +#7'Caption'#6#4'Left'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2'Y' -- +#6'Height'#2#14#3'Top'#2#14#5'Width'#2#25#7'Caption'#6#5'Right'#11'ParentCol' -- +'or'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#153#0#6'Height'#2#14#3'Top'#2#14#5 -- +'Width'#2#18#7'Caption'#6#3'Top'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 -- +'Left'#3#216#0#6'Height'#2#14#3'Top'#2#14#5'Width'#2'"'#7'Caption'#6#6'Botto' -- +'m'#11'ParentColor'#8#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#2#21#6'Height'#2 -- +#21#4'Hint'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'Sho' -- +'wHint'#9#8'TabOrder'#2#0#8'OnChange'#7#15'LongEdit1Change'#5'Value'#2#0#8'M' -- +'axValue'#2'd'#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#2'V'#6'Height'#2#21#4'H' -- +'int'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' -- +#9#8'TabOrder'#2#1#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#0#8'MaxValue' -- +#2'd'#0#0#9'TLongEdit'#9'LongEdit3'#4'Left'#3#151#0#6'Height'#2#21#4'Hint'#6 -- +#6'0..100'#3'Top'#2'#'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' -- +'bOrder'#2#2#8'OnChange'#7#15'LongEdit3Change'#5'Value'#2#0#8'MaxValue'#2'd' -- +#0#0#9'TLongEdit'#9'LongEdit4'#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#6'0.' -- +'.100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -- +'er'#2#3#8'OnChange'#7#15'LongEdit4Change'#5'Value'#2#0#8'MaxValue'#2'd'#0#0 -- +#7'TButton'#7'Button1'#4'Left'#3#21#1#6'Height'#2#25#3'Top'#2#2#5'Width'#2'[' -- +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'No Margin'#7'OnClick'#7#12 -- +'Button1Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button2'#4'Left'#3#21#1#6'He' -- +'ight'#2#25#3'Top'#2' '#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Ca' -- +'ption'#6#14'Default Margin'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#5#0 -- +#0#0#7'TButton'#7'Button3'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#0#1#5'Wid' -- +'th'#2'K'#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#6 -- +#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tf_print','FORMDATA',[ -+ 'TPF0'#8'Tf_print'#7'f_print'#4'Left'#3#224#3#6'Height'#3'%'#1#3'Top'#3#146#1 -+ +#5'Width'#3#147#1#13'ActiveControl'#7#5'Setup'#11'BorderStyle'#7#12'bsToolWi' -+ +'ndow'#7'Caption'#6#11'Print Chart'#12'ClientHeight'#3'%'#1#11'ClientWidth'#3 -+ +#147#1#11'Font.Height'#2#245#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'Form' -+ +'Show'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#11'PrinterInfo'#4'Left'#2#27#6 -+ +'Height'#2#14#3'Top'#2#14#5'Width'#2'2'#7'Caption'#6#11'PrinterInfo'#11'Pare' -+ +'ntColor'#8#0#0#11'TRadioGroup'#8'prtcolor'#4'Left'#2#16#6'Height'#2'R'#3'To' -+ +'p'#2'0'#5'Width'#3#207#0#8'AutoFill'#9#7'Caption'#6#5'Color'#28'ChildSizing' -+ +'.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.' -+ +'EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVer' -+ +'tical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14 -+ +'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'Chil' -+ +'dSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.Controls' -+ +'PerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#203#0#9'ItemIndex'#2#0 -+ +#13'Items.Strings'#1#6#16'Color, Line mode'#6#22'Black/White, Line mode'#6' ' -+ +'As on screen (black background!)'#0#7'OnClick'#7#13'prtcolorClick'#8'TabOrd' -+ +'er'#2#3#0#0#11'TRadioGroup'#9'prtorient'#4'Left'#3#240#0#6'Height'#2'R'#3'T' -+ +'op'#2'0'#5'Width'#3#149#0#8'AutoFill'#9#7'Caption'#6#11'Orientation'#28'Chi' -+ +'ldSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chil' -+ +'dSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.En' -+ +'largeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizont' -+ +'al'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds' -+ +#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.C' -+ +'ontrolsPerLine'#2#1#12'ClientHeight'#2'C'#11'ClientWidth'#3#145#0#13'Items.' -+ +'Strings'#1#6#8'Portrait'#6#9'Landscape'#0#7'OnClick'#7#14'prtorientClick'#8 -+ +'TabOrder'#2#4#0#0#7'TButton'#5'Print'#4'Left'#3#224#0#6'Height'#2#25#3'Top' -+ +#3#0#1#5'Width'#2'K'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Print' -+ +#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#6'Cancel'#4 -+ +'Left'#3':'#1#6'Height'#2#25#3'Top'#3#0#1#5'Width'#2'K'#25'BorderSpacing.Inn' -+ +'erBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabO' -+ +'rder'#2#1#0#0#7'TButton'#5'Setup'#4'Left'#3'0'#1#6'Height'#2#25#3'Top'#2#8#5 -+ +'Width'#2'U'#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#5'Setup'#7'OnCli' -+ +'ck'#7#10'SetupClick'#8'TabOrder'#2#2#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2 -+ +#9#6'Height'#2'R'#3'Top'#3#144#0#5'Width'#3'|'#1#7'Caption'#6#25'Page Margin' -+ +' in millimeter'#12'ClientHeight'#2'C'#11'ClientWidth'#3'x'#1#8'TabOrder'#2#5 -+ +#0#6'TLabel'#6'Label1'#4'Left'#2#23#6'Height'#2#14#3'Top'#2#14#5'Width'#2#20 -+ +#7'Caption'#6#4'Left'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2'Y' -+ +#6'Height'#2#14#3'Top'#2#14#5'Width'#2#25#7'Caption'#6#5'Right'#11'ParentCol' -+ +'or'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#153#0#6'Height'#2#14#3'Top'#2#14#5 -+ +'Width'#2#18#7'Caption'#6#3'Top'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4'#4 -+ +'Left'#3#216#0#6'Height'#2#14#3'Top'#2#14#5'Width'#2'"'#7'Caption'#6#6'Botto' -+ +'m'#11'ParentColor'#8#0#0#9'TLongEdit'#9'LongEdit1'#4'Left'#2#21#6'Height'#2 -+ +#21#4'Hint'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'Sho' -+ +'wHint'#9#8'TabOrder'#2#0#8'OnChange'#7#15'LongEdit1Change'#5'Value'#2#0#8'M' -+ +'axValue'#2'd'#0#0#9'TLongEdit'#9'LongEdit2'#4'Left'#2'V'#6'Height'#2#21#4'H' -+ +'int'#6#6'0..100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint' -+ +#9#8'TabOrder'#2#1#8'OnChange'#7#15'LongEdit2Change'#5'Value'#2#0#8'MaxValue' -+ +#2'd'#0#0#9'TLongEdit'#9'LongEdit3'#4'Left'#3#151#0#6'Height'#2#21#4'Hint'#6 -+ +#6'0..100'#3'Top'#2'#'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'Ta' -+ +'bOrder'#2#2#8'OnChange'#7#15'LongEdit3Change'#5'Value'#2#0#8'MaxValue'#2'd' -+ +#0#0#9'TLongEdit'#9'LongEdit4'#4'Left'#3#216#0#6'Height'#2#21#4'Hint'#6#6'0.' -+ +'.100'#3'Top'#2'"'#5'Width'#2'('#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrd' -+ +'er'#2#3#8'OnChange'#7#15'LongEdit4Change'#5'Value'#2#0#8'MaxValue'#2'd'#0#0 -+ +#7'TButton'#7'Button1'#4'Left'#3#21#1#6'Height'#2#25#3'Top'#2#2#5'Width'#2'[' -+ +#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'No Margin'#7'OnClick'#7#12 -+ +'Button1Click'#8'TabOrder'#2#4#0#0#7'TButton'#7'Button2'#4'Left'#3#21#1#6'He' -+ +'ight'#2#25#3'Top'#2' '#5'Width'#2'['#25'BorderSpacing.InnerBorder'#2#4#7'Ca' -+ +'ption'#6#14'Default Margin'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#5#0 -+ +#0#0#7'TButton'#7'Button3'#4'Left'#3#134#0#6'Height'#2#25#3'Top'#3#0#1#5'Wid' -+ +'th'#2'K'#7'Caption'#6#4'Help'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2#6 -+ +#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_print.pas skychart_3.2_up/skychart/pu_print.pas ---- skychart_3.2/skychart/pu_print.pas 2010-09-14 20:28:05.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_print.pas 2011-03-09 15:18:23.187267809 +0100 -@@ -1,219 +1,219 @@ --unit pu_print; --{ --Copyright (C) 2006 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- --{$mode objfpc}{$H+} -- --interface -- --uses u_help, u_translation, u_constant, u_util, -- Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls, -- Buttons, StdCtrls, enhedits, Printers, LazHelpHTML; -- --type -- -- { Tf_print } -- -- Tf_print = class(TForm) -- Button1: TButton; -- Button2: TButton; -- Button3: TButton; -- GroupBox1: TGroupBox; -- Label1: TLabel; -- Label2: TLabel; -- Label3: TLabel; -- Label4: TLabel; -- LongEdit1: TLongEdit; -- LongEdit2: TLongEdit; -- LongEdit3: TLongEdit; -- LongEdit4: TLongEdit; -- PrinterInfo: TLabel; -- Setup: TButton; -- Print: TButton; -- Cancel: TButton; -- prtcolor: TRadioGroup; -- prtorient: TRadioGroup; -- procedure Button1Click(Sender: TObject); -- procedure Button2Click(Sender: TObject); -- procedure Button3Click(Sender: TObject); -- procedure FormCreate(Sender: TObject); -- procedure FormShow(Sender: TObject); -- procedure LongEdit1Change(Sender: TObject); -- procedure LongEdit2Change(Sender: TObject); -- procedure LongEdit3Change(Sender: TObject); -- procedure LongEdit4Change(Sender: TObject); -- procedure prtcolorClick(Sender: TObject); -- procedure prtorientClick(Sender: TObject); -- procedure SetupClick(Sender: TObject); -- private -- { private declarations } -- Procedure ShowPrtInfo; -- public -- { public declarations } -- cm: Tconf_main; -- procedure SetLang; -- end; -- --var -- f_print: Tf_print; -- --implementation -- --uses pu_printsetup; -- --procedure Tf_print.SetLang; --begin --Caption:=rsPrintChart; --prtcolor.caption:=rsColor; --prtcolor.Items[0]:=rsColorLineMod; --prtcolor.Items[1]:=rsBlackWhiteLi; --prtcolor.Items[2]:=rsAsOnScreenBl; --prtorient.caption:=rsOrientation; --prtorient.Items[0]:=rsPortrait; --prtorient.Items[1]:=rsLandscape; --GroupBox1.caption:=rsPageMarginIn; --Label1.caption:=rsLeft; --Label2.caption:=rsRight; --Label3.caption:=rsTop; --Label4.caption:=rsBottom; --Button1.caption:=rsNoMargin; --Button2.caption:=rsDefaultMargi; --Button3.caption:=rsHelp; --Setup.caption:=rsSetup; --Print.caption:=rsPrint; --Cancel.Caption:=rsCancel; --SetHelp(self,hlpMenuFile); --end; -- --procedure Tf_print.FormShow(Sender: TObject); --begin --if cm.PrintLandscape then prtorient.ItemIndex:=1 -- else prtorient.ItemIndex:=0; --LongEdit1.Value:=cm.PrtLeftMargin; --LongEdit2.Value:=cm.PrtRightMargin; --LongEdit3.Value:=cm.PrtTopMargin; --LongEdit4.Value:=cm.PrtBottomMargin; --ShowPrtInfo; --end; -- --procedure Tf_print.Button1Click(Sender: TObject); --begin --LongEdit1.Value:=0; --LongEdit2.Value:=0; --LongEdit3.Value:=0; --LongEdit4.Value:=0; --end; -- --procedure Tf_print.Button2Click(Sender: TObject); --begin --LongEdit1.Value:=15; --LongEdit2.Value:=15; --LongEdit3.Value:=10; --LongEdit4.Value:=5; --end; -- --procedure Tf_print.Button3Click(Sender: TObject); --begin -- ShowHelp; --end; -- --procedure Tf_print.FormCreate(Sender: TObject); --begin -- SetLang; --end; -- --procedure Tf_print.LongEdit1Change(Sender: TObject); --begin --cm.PrtLeftMargin:=LongEdit1.Value; --end; -- --procedure Tf_print.LongEdit2Change(Sender: TObject); --begin --cm.PrtRightMargin:=LongEdit2.Value; --end; -- --procedure Tf_print.LongEdit3Change(Sender: TObject); --begin --cm.PrtTopMargin:=LongEdit3.Value; --end; -- --procedure Tf_print.LongEdit4Change(Sender: TObject); --begin --cm.PrtBottomMargin:=LongEdit4.Value; --end; -- --procedure Tf_print.ShowPrtInfo; --var i: integer; --begin --if (cm.PrintMethod=0)and(Printer.PrinterIndex<0) then begin -- cm.PrintMethod:=1; --end; --prtcolor.ItemIndex:=cm.PrintColor; --if ((cm.PrintMethod=0)or(cm.PrintMethod=1)) then begin -- if prtcolor.ItemIndex=2 then prtcolor.ItemIndex:=0; -- if prtcolor.Items.Count>=3 then prtcolor.Items.Delete(2); --end else begin -- if prtcolor.Items.Count<3 then -- prtcolor.Items.Add(rsAsOnScreenBl) -- else -- prtcolor.Items[2]:=rsAsOnScreenBl; --end; --cm.PrintColor:=prtcolor.ItemIndex; --case cm.PrintMethod of --0 : begin -- GetPrinterResolution(cm.prtname,i); -- PrinterInfo.Caption:=rsprinter+blank+cm.prtname+' @ '+inttostr(i)+' DPI'; -- end; --1 : begin -- PrinterInfo.Caption:=rsPostscript+' @ '+inttostr(cm.PrinterResolution)+' DPI'; -- end; --2 : begin -- PrinterInfo.Caption:=rsBitmap+' @ '+inttostr(cm.PrinterResolution)+' DPI'; -- end; --end; --end; -- --procedure Tf_print.prtcolorClick(Sender: TObject); --begin --if ((cm.PrintMethod=0)or(cm.PrintMethod=1))and(prtcolor.ItemIndex=2) then prtcolor.ItemIndex:=0; --cm.PrintColor:=prtcolor.ItemIndex; --end; -- --procedure Tf_print.prtorientClick(Sender: TObject); --begin --cm.PrintLandscape:=(prtorient.ItemIndex=1); --end; -- --procedure Tf_print.SetupClick(Sender: TObject); --begin --f_printsetup.cm:=cm; --formpos(f_printsetup,mouse.cursorpos.x,mouse.cursorpos.y); --if f_printsetup.showmodal=mrOK then begin -- cm:=f_printsetup.cm; -- ShowPrtInfo; --end; --end; -- --initialization -- {$I pu_print.lrs} -- --end. -+unit pu_print; -+{ -+Copyright (C) 2006 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+{$mode objfpc}{$H+} -+ -+interface -+ -+uses u_help, u_translation, u_constant, u_util, -+ Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls, -+ Buttons, StdCtrls, enhedits, Printers, LazHelpHTML; -+ -+type -+ -+ { Tf_print } -+ -+ Tf_print = class(TForm) -+ Button1: TButton; -+ Button2: TButton; -+ Button3: TButton; -+ GroupBox1: TGroupBox; -+ Label1: TLabel; -+ Label2: TLabel; -+ Label3: TLabel; -+ Label4: TLabel; -+ LongEdit1: TLongEdit; -+ LongEdit2: TLongEdit; -+ LongEdit3: TLongEdit; -+ LongEdit4: TLongEdit; -+ PrinterInfo: TLabel; -+ Setup: TButton; -+ Print: TButton; -+ Cancel: TButton; -+ prtcolor: TRadioGroup; -+ prtorient: TRadioGroup; -+ procedure Button1Click(Sender: TObject); -+ procedure Button2Click(Sender: TObject); -+ procedure Button3Click(Sender: TObject); -+ procedure FormCreate(Sender: TObject); -+ procedure FormShow(Sender: TObject); -+ procedure LongEdit1Change(Sender: TObject); -+ procedure LongEdit2Change(Sender: TObject); -+ procedure LongEdit3Change(Sender: TObject); -+ procedure LongEdit4Change(Sender: TObject); -+ procedure prtcolorClick(Sender: TObject); -+ procedure prtorientClick(Sender: TObject); -+ procedure SetupClick(Sender: TObject); -+ private -+ { private declarations } -+ Procedure ShowPrtInfo; -+ public -+ { public declarations } -+ cm: Tconf_main; -+ procedure SetLang; -+ end; -+ -+var -+ f_print: Tf_print; -+ -+implementation -+ -+uses pu_printsetup; -+ -+procedure Tf_print.SetLang; -+begin -+Caption:=rsPrintChart; -+prtcolor.caption:=rsColor; -+prtcolor.Items[0]:=rsColorLineMod; -+prtcolor.Items[1]:=rsBlackWhiteLi; -+prtcolor.Items[2]:=rsAsOnScreenBl; -+prtorient.caption:=rsOrientation; -+prtorient.Items[0]:=rsPortrait; -+prtorient.Items[1]:=rsLandscape; -+GroupBox1.caption:=rsPageMarginIn; -+Label1.caption:=rsLeft; -+Label2.caption:=rsRight; -+Label3.caption:=rsTop; -+Label4.caption:=rsBottom; -+Button1.caption:=rsNoMargin; -+Button2.caption:=rsDefaultMargi; -+Button3.caption:=rsHelp; -+Setup.caption:=rsSetup; -+Print.caption:=rsPrint; -+Cancel.Caption:=rsCancel; -+SetHelp(self,hlpMenuFile); -+end; -+ -+procedure Tf_print.FormShow(Sender: TObject); -+begin -+if cm.PrintLandscape then prtorient.ItemIndex:=1 -+ else prtorient.ItemIndex:=0; -+LongEdit1.Value:=cm.PrtLeftMargin; -+LongEdit2.Value:=cm.PrtRightMargin; -+LongEdit3.Value:=cm.PrtTopMargin; -+LongEdit4.Value:=cm.PrtBottomMargin; -+ShowPrtInfo; -+end; -+ -+procedure Tf_print.Button1Click(Sender: TObject); -+begin -+LongEdit1.Value:=0; -+LongEdit2.Value:=0; -+LongEdit3.Value:=0; -+LongEdit4.Value:=0; -+end; -+ -+procedure Tf_print.Button2Click(Sender: TObject); -+begin -+LongEdit1.Value:=15; -+LongEdit2.Value:=15; -+LongEdit3.Value:=10; -+LongEdit4.Value:=5; -+end; -+ -+procedure Tf_print.Button3Click(Sender: TObject); -+begin -+ ShowHelp; -+end; -+ -+procedure Tf_print.FormCreate(Sender: TObject); -+begin -+ SetLang; -+end; -+ -+procedure Tf_print.LongEdit1Change(Sender: TObject); -+begin -+cm.PrtLeftMargin:=LongEdit1.Value; -+end; -+ -+procedure Tf_print.LongEdit2Change(Sender: TObject); -+begin -+cm.PrtRightMargin:=LongEdit2.Value; -+end; -+ -+procedure Tf_print.LongEdit3Change(Sender: TObject); -+begin -+cm.PrtTopMargin:=LongEdit3.Value; -+end; -+ -+procedure Tf_print.LongEdit4Change(Sender: TObject); -+begin -+cm.PrtBottomMargin:=LongEdit4.Value; -+end; -+ -+procedure Tf_print.ShowPrtInfo; -+var i: integer; -+begin -+if (cm.PrintMethod=0)and(Printer.PrinterIndex<0) then begin -+ cm.PrintMethod:=1; -+end; -+prtcolor.ItemIndex:=cm.PrintColor; -+if ((cm.PrintMethod=0)or(cm.PrintMethod=1)) then begin -+ if prtcolor.ItemIndex=2 then prtcolor.ItemIndex:=0; -+ if prtcolor.Items.Count>=3 then prtcolor.Items.Delete(2); -+end else begin -+ if prtcolor.Items.Count<3 then -+ prtcolor.Items.Add(rsAsOnScreenBl) -+ else -+ prtcolor.Items[2]:=rsAsOnScreenBl; -+end; -+cm.PrintColor:=prtcolor.ItemIndex; -+case cm.PrintMethod of -+0 : begin -+ GetPrinterResolution(cm.prtname,i); -+ PrinterInfo.Caption:=rsprinter+blank+cm.prtname+' @ '+inttostr(i)+' DPI'; -+ end; -+1 : begin -+ PrinterInfo.Caption:=rsPostscript+' @ '+inttostr(cm.PrinterResolution)+' DPI'; -+ end; -+2 : begin -+ PrinterInfo.Caption:=rsBitmap+' @ '+inttostr(cm.PrinterResolution)+' DPI'; -+ end; -+end; -+end; -+ -+procedure Tf_print.prtcolorClick(Sender: TObject); -+begin -+if ((cm.PrintMethod=0)or(cm.PrintMethod=1))and(prtcolor.ItemIndex=2) then prtcolor.ItemIndex:=0; -+cm.PrintColor:=prtcolor.ItemIndex; -+end; -+ -+procedure Tf_print.prtorientClick(Sender: TObject); -+begin -+cm.PrintLandscape:=(prtorient.ItemIndex=1); -+end; -+ -+procedure Tf_print.SetupClick(Sender: TObject); -+begin -+f_printsetup.cm:=cm; -+formpos(f_printsetup,mouse.cursorpos.x,mouse.cursorpos.y); -+if f_printsetup.showmodal=mrOK then begin -+ cm:=f_printsetup.cm; -+ ShowPrtInfo; -+end; -+end; -+ -+initialization -+ {$I pu_print.lrs} -+ -+end. - -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_progressbar.lfm skychart_3.2_up/skychart/pu_progressbar.lfm ---- skychart_3.2/skychart/pu_progressbar.lfm 2010-08-29 11:34:10.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_progressbar.lfm 2011-03-09 15:18:23.188267686 +0100 -@@ -1,61 +1,61 @@ --object f_progress: Tf_progress -- Left = 249 -- Height = 162 -- Top = 317 -- Width = 422 -- HorzScrollBar.Page = 421 -- VertScrollBar.Page = 161 -- BorderStyle = bsToolWindow -- Caption = 'Progress' -- ClientHeight = 162 -- ClientWidth = 422 -- Font.Height = -11 -- FormStyle = fsStayOnTop -- OnCreate = FormCreate -- Position = poDefaultPosOnly -- LCLVersion = '0.9.29' -- object Label1: TLabel -- Left = 16 -- Height = 14 -- Top = 4 -- Width = 33 -- Caption = 'Label1' -- ParentColor = False -- end -- object Label2: TLabel -- Left = 16 -- Height = 14 -- Top = 56 -- Width = 33 -- Caption = 'Label2' -- ParentColor = False -- end -- object SpeedButton2: TSpeedButton -- Left = 159 -- Height = 25 -- Top = 112 -- Width = 75 -- Caption = 'Abort' -- Color = clBtnFace -- NumGlyphs = 0 -- OnClick = SpeedButton2Click -- end -- object ProgressBar1: TProgressBar -- Left = 16 -- Height = 25 -- Top = 24 -- Width = 361 -- Max = 1 -- Step = 1 -- TabOrder = 0 -- end -- object ProgressBar2: TProgressBar -- Left = 16 -- Height = 25 -- Top = 72 -- Width = 361 -- Max = 1 -- Step = 1 -- TabOrder = 1 -- end -+object f_progress: Tf_progress -+ Left = 249 -+ Height = 162 -+ Top = 317 -+ Width = 422 -+ HorzScrollBar.Page = 421 -+ VertScrollBar.Page = 161 -+ BorderStyle = bsToolWindow -+ Caption = 'Progress' -+ ClientHeight = 162 -+ ClientWidth = 422 -+ Font.Height = -11 -+ FormStyle = fsStayOnTop -+ OnCreate = FormCreate -+ Position = poDefaultPosOnly -+ LCLVersion = '0.9.29' -+ object Label1: TLabel -+ Left = 16 -+ Height = 14 -+ Top = 4 -+ Width = 33 -+ Caption = 'Label1' -+ ParentColor = False -+ end -+ object Label2: TLabel -+ Left = 16 -+ Height = 14 -+ Top = 56 -+ Width = 33 -+ Caption = 'Label2' -+ ParentColor = False -+ end -+ object SpeedButton2: TSpeedButton -+ Left = 159 -+ Height = 25 -+ Top = 112 -+ Width = 75 -+ Caption = 'Abort' -+ Color = clBtnFace -+ NumGlyphs = 0 -+ OnClick = SpeedButton2Click -+ end -+ object ProgressBar1: TProgressBar -+ Left = 16 -+ Height = 25 -+ Top = 24 -+ Width = 361 -+ Max = 1 -+ Step = 1 -+ TabOrder = 0 -+ end -+ object ProgressBar2: TProgressBar -+ Left = 16 -+ Height = 25 -+ Top = 72 -+ Width = 361 -+ Max = 1 -+ Step = 1 -+ TabOrder = 1 -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_progressbar.lrs skychart_3.2_up/skychart/pu_progressbar.lrs ---- skychart_3.2/skychart/pu_progressbar.lrs 2010-08-29 11:34:10.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_progressbar.lrs 2011-03-09 15:18:57.115096055 +0100 -@@ -1,5 +1,3 @@ --{ This is an automatically generated lazarus resource file } -- - LazarusResources.Add('Tf_progress','FORMDATA',[ - 'TPF0'#11'Tf_progress'#10'f_progress'#4'Left'#3#249#0#6'Height'#3#162#0#3'Top' - +#3'='#1#5'Width'#3#166#1#18'HorzScrollBar.Page'#3#165#1#18'VertScrollBar.Pag' -diff -ur skychart_3.2/skychart/pu_splash.lrs skychart_3.2_up/skychart/pu_splash.lrs ---- skychart_3.2/skychart/pu_splash.lrs 2010-09-16 20:50:37.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_splash.lrs 2011-03-09 15:18:23.206265473 +0100 -@@ -1,3633 +1,3633 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tf_splash','FORMDATA',[ -- 'TPF0'#9'Tf_splash'#8'f_splash'#4'Left'#3#165#1#6'Height'#3#7#1#3'Top'#3#156#0 -- +#5'Width'#3#240#1#13'ActiveControl'#7#6'Panel1'#11'BorderIcons'#11#0#11'Bord' -- +'erStyle'#7#6'bsNone'#7'Caption'#6#8'f_splash'#12'ClientHeight'#3#7#1#11'Cli' -- +'entWidth'#3#240#1#10'Font.Color'#7#7'clBlack'#11'Font.Height'#2#245#9'FormS' -- +'tyle'#7#8'fsSplash'#8'OnCreate'#7#10'FormCreate'#9'OnMouseUp'#7#11'FormMous' -- +'eUp'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' -- +#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#7#1#3'Top'#2#0#5 -- +'Width'#3#240#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#7'Caption' -- +#6#14'Cartes du Ciel'#12'ClientHeight'#3#7#1#11'ClientWidth'#3#240#1#8'TabOr' -- +'der'#2#0#10'OnDblClick'#7#12'logoDblClick'#0#6'TImage'#6'Image1'#4'Left'#2#0 -- +#6'Height'#3#7#1#3'Top'#2#0#5'Width'#3#240#1#5'Align'#7#8'alClient'#10'OnDbl' -- +'Click'#7#12'logoDblClick'#12'Picture.Data'#10#182#21#4#0#7'TPixmap'#170#21#4 -- +#0'/* XPM */'#10'static char *splash[] = {'#10'/* columns rows colors chars-' -- +'per-pixel */'#10'"496 263 256 2",'#10'" c #00090009000A",'#10'". c #0411' -- +'040B0AF1",'#10'"X c #0F640F630F63",'#10'"o c #087D07CA06D8",'#10'"O c #0' -- +'01C0D101A81",'#10'"+ c #081208301667",'#10'"@ c #0CC4119214A6",'#10'"# c' -- +' #11AB0E410D7B",'#10'"$ c #1A9A003F003F",'#10'"% c #10FC106B0E9D",'#10'"&' -- +' c #1A7E1A7B0D09",'#10'"* c #13C4139D1353",'#10'"= c #16311A1F1A95",'#10 -- +'"- c #1977163F1535",'#10'"; c #1B1B1A381648",'#10'": c #1B461B3D1B20",' -- +#10'"> c #123012E019DA",'#10'", c #068C068C26D5",'#10'"< c #002E002B3D8C"' -- +','#10'"1 c #08B309093636",'#10'"2 c #1597177B286D",'#10'"3 c #1741172C38' -- +'1C",'#10'"4 c #0BB6182424C0",'#10'"5 c #1BEC220F2385",'#10'"6 c #1B71352' -- +'D3670",'#10'"7 c #24700AA80A5D",'#10'"8 c #22BD1DA11C1E",'#10'"9 c #2872' -- +'170015AC",'#10'"0 c #334D18DA1847",'#10'"q c #234921C81D9D",'#10'"w c #2' -- +'7C727A81802",'#10'"e c #373737371B1B",'#10'"r c #39BA390E1CF2",'#10'"t c' -- +' #203D203C203B",'#10'"y c #255129D92A44",'#10'"u c #29732612256D",'#10'"i' -- +' c #2A8B2998265E",'#10'"p c #2BC72B442AA9",'#10'"a c #24E425562A69",'#10 -- +'"s c #29552AAD358E",'#10'"d c #2CAF32EA3381",'#10'"f c #2BC037D039B6",' -- +#10'"g c #326B2DA92C55",'#10'"h c #38702868269A",'#10'"j c #32FF31AC2E04"' -- +','#10'"k c #395C373727C1",'#10'"l c #344733E13302",'#10'"z c #338C3B623C' -- +'47",'#10'"x c #3A98349A32AF",'#10'"c c #3B2F39AA3545",'#10'"v c #3BFB3BE' -- +'23B09",'#10'"b c #33E134D539EF",'#10'"n c #30302F2F3F3F",'#10'"m c #1F77' -- +'206D1C58",'#10'"M c #109410AD4DAB",'#10'"N c #0E940E946C52",'#10'"B c #2' -- +'81F288146B9",'#10'"V c #379E38F24629",'#10'"C c #3782377757F8",'#10'"Z c' -- +' #2AA32EFB5046",'#10'"A c #39C739C766E1",'#10'"S c #37E237F876F6",'#10'"D' -- +' c #2833284A7166",'#10'"F c #1F1F20205252",'#10'"G c #3ABA42F543F6",'#10 -- +'"H c #39F346AE485B",'#10'"J c #3D604CBC5223",'#10'"K c #445D2C312ABA",' -- +#10'"L c #434D3CDB3A2C",'#10'"P c #4617395F370D",'#10'"I c #4E5437043039"' -- +','#10'"U c #7291000A000A",'#10'"Y c #55432DFF2C50",'#10'"T c #444E42823D' -- +'3F",'#10'"R c #4A4245163BFF",'#10'"E c #4ED647A231E6",'#10'"W c #630D5A5' -- +'A3D3D",'#10'"Q c #40A740A34099",'#10'"! c #4C6D4AC14505",'#10'"~ c #4BE7' -- +'4BC14B2B",'#10'"^ c #461E481E487C",'#10'"/ c #46CA48965860",'#10'"( c #4' -- +'801563F585D",'#10'") c #558D4A23469F",'#10'"_ c #58A155E04B83",'#10'"` c' -- +' #540053BD53BD",'#10'"'' c #5C185C085BE8",'#10'"] c #5A4F5A03553F",'#10'"' -- +'[ c #4E55511C444E",'#10'"{ c #469846A86677",'#10'"} c #4958493A762A",'#10 -- +'"| c #569B59366572",'#10'" . c #54085ACF7064",'#10'".. c #567E67C869AB",' -- +#10'"X. c #5B7072B1752F",'#10'"o. c #5309676069F4",'#10'"O. c #66E6591E5412"' -- +','#10'"+. c #6CB3544C5052",'#10'"@. c #681963F15A0A",'#10'"#. c #772D66F45D' -- +'19",'#10'"$. c #6D636C17528D",'#10'"%. c #644C644C6483",'#10'"&. c #6DCB6DC' -- +'A6DC7",'#10'"*. c #681B6989680D",'#10'"=. c #682B681B783B",'#10'"-. c #6457' -- +'77FD79D1",'#10'";. c #77126ABF641D",'#10'":. c #7910770D6947",'#10'">. c #7' -- +'62F76307630",'#10'",. c #7B2C7B387B33",'#10'"<. c #793F79DF769B",'#10'"1. c' -- +' #6AB672B86A4F",'#10'"2. c #62B85FB55C5C",'#10'"3. c #3EBF41414B4B",'#10'"4' -- +'. c #000F000E80F1",'#10'"5. c #0B8B0B8B8606",'#10'"6. c #1305134993E4",'#10 -- +'"7. c #14431489B1C8",'#10'"8. c #2F1A2EC69283",'#10'"9. c #2FB52FEDB24D",' -- +#10'"0. c #0E5F0E5FCF63",'#10'"q. c #00D100D4FFD3",'#10'"w. c #0BC30B92FFE7"' -- +','#10'"e. c #012C012CF4F4",'#10'"r. c #139D139DFF4D",'#10'"t. c #1B2F1B11FF' -- +'C4",'#10'"y. c #18C3186EFCFC",'#10'"u. c #099C09AEEA57",'#10'"i. c #30C830C' -- +'8CF14",'#10'"p. c #23E123E1FFC8",'#10'"a. c #2C242C12FFFF",'#10'"s. c #2811' -- +'283FF99C",'#10'"d. c #33E633DBFFEE",'#10'"f. c #3BFC3BF8FFF1",'#10'"g. c #3' -- +'7CA376EFA55",'#10'"h. c #2F402F40EF44",'#10'"j. c #1F1F2020E8E8",'#10'"k. c' -- +' #3F3F4040FFFF",'#10'"l. c #40963EE9FFFF",'#10'"z. c #5631560D9704",'#10'"x' -- +'. c #4C3C4C648C8C",'#10'"c. c #56BD569BB73F",'#10'"v. c #4D4C4CF1AC51",'#10 -- +'"b. c #68F869078947",'#10'"n. c #705274D58E51",'#10'"m. c #6A226A22A7E5",' -- ,#10'"M. c #7272727CB4F2",'#10'"N. c #5F5F7B7B8484",'#10'"B. c #52FB52FBD130"' -- +','#10'"V. c #43A943A7FFE0",'#10'"C. c #4BBD4BBFFFE0",'#10'"Z. c #492C4910F8' -- +'DB",'#10'"A. c #53D553C2FFE2",'#10'"S. c #5BE55BE1FFF9",'#10'"D. c #593B58E' -- +'FF9DB",'#10'"F. c #50154FD9EDF7",'#10'"G. c #5F2C60FAFFFF",'#10'"H. c #60C7' -- +'5EC5FFFF",'#10'"J. c #71897159D2E4",'#10'"K. c #65A565A5EA9D",'#10'"L. c #6' -- +'40B6404FFF4",'#10'"P. c #6BB86BA8FFF8",'#10'"I. c #6846685DFB96",'#10'"U. c' -- +' #6F4470DBFF54",'#10'"Y. c #742D7434FFF1",'#10'"T. c #7C117C14FFED",'#10'"R' -- +'. c #785278CEFBFB",'#10'"E. c #754E750EF0BD",'#10'"W. c #3ABB41C7AB07",'#10 -- +'"Q. c #79F9828272F2",'#10'"!. c #6AA384DA8824",'#10'"~. c #74378AD08B9F",' -- +#10'"^. c #7A3396799A44",'#10'"/. c #74748DB291DA",'#10'"(. c #7CD29E9EA54F"' -- +','#10'"). c #7D7D80DDFFD0",'#10'"_. c #7F7FA6A6FFFF",'#10'"`. c #8594685964' -- +'64",'#10'"''. c #88337D227703",'#10'"]. c #91067676705B",'#10'"[. c #8E386F' -- +'C562B8",'#10'"{. c #ABAB42C342C3",'#10'"}. c #80807F7FFF29",'#10'"|. c #8CD' -- +'3868678DC",'#10'" X c #AAD58AE07BA6",'#10'".X c #8BE88BF08BDA",'#10'"XX c #' -- +'856384F884A3",'#10'"oX c #948F948F948F",'#10'"OX c #9AC59B1A9B36",'#10'"+X ' -- +'c #9150907B8EE6",'#10'"@X c #8D458E04B0C4",'#10'"#X c #8D98AD8BB1C2",'#10'"' -- +'$X c #AE4392D28B0A",'#10'"%X c #B088A7CF92E1",'#10'"&X c #AAB9A95DAAD7",'#10 -- +'"*X c #AF40AF95B613",'#10'"=X c #880787F7D797",'#10'"-X c #927B927BCD1E",' -- +#10'";X c #83EE83E7FFDB",'#10'":X c #8BF88BFAFFE1",'#10'">X c #883F88D1FE34"' -- +','#10'",X c #98879898EA50",'#10'"<X c #93F693F2FFF6",'#10'"1X c #9B9B9BA9FF' -- +'DF",'#10'"2X c #98EA98ADF9D0",'#10'"3X c #897D8A72F2B5",'#10'"4X c #9B1ABAB' -- +'AC6C6",'#10'"5X c #9555A9C9FFFF",'#10'"6X c #AE64AE7FD30F",'#10'"7X c #A80E' -- +'A7ECEAB7",'#10'"8X c #A3E7A3E0FFED",'#10'"9X c #AC32AC23FFE6",'#10'"0X c #A' -- +'8BFA8FAFD94",'#10'"qX c #AD96B10DFFFF",'#10'"wX c #B0B0AFAFFFFF",'#10'"eX c' -- +' #B420B425FFFD",'#10'"rX c #BC2BBC2DFFD3",'#10'"tX c #B77CB89AFC85",'#10'"y' -- +'X c #B77CB754E937",'#10'"uX c #A0A09F9FFFFF",'#10'"iX c #A9CFD100D43C",'#10 -- +'"pX c #B825CC02F966",'#10'"aX c #B598E804EC08",'#10'"sX c #9CC7C771CBF6",' -- +#10'"dX c #C9E6987B9321",'#10'"fX c #C8FBB5E8AE61",'#10'"gX c #E0C0B332A464"' -- +','#10'"hX c #C0C0BF9AFC44",'#10'"jX c #E8E8A9A9FFFF",'#10'"kX c #D2D2CB20B6' -- +'44",'#10'"lX c #EEEECE4EBC3C",'#10'"zX c #D133CEE7D01A",'#10'"xX c #C42CC43' -- +'3FFE8",'#10'"cX c #CC00CC10FFEF",'#10'"vX c #C865CAA2FABF",'#10'"bX c #D40F' -- +'D420FFEF",'#10'"nX c #DBFBDC01FFF2",'#10'"mX c #D86AD8A1FAD5",'#10'"MX c #D' -- +'011D0C8F0F8",'#10'"NX c #C8C8FCB3FE0F",'#10'"BX c #D83EFFFFFFFF",'#10'"VX c' -- +' #D990E375FC20",'#10'"CX c #F1C6D672D008",'#10'"ZX c #E449E453FFF2",'#10'"A' -- +'X c #EC68EC85FFE7",'#10'"SX c #E719E89BFCE2",'#10'"DX c #E968F91DFFFF",'#10 -- +'"FX c #FFCAEDCAEDDB",'#10'"GX c #FB2DE7A2E6E6",'#10'"HX c #F491F480FFE8",' -- +#10'"JX c #FFA8F511F509",'#10'"KX c #FE1EFD20FEE6",'#10'"LX c #F98EF9F9FB25"' -- +','#10'"PX c #EF83ED30EF32",'#10'"IX c #EE98E48EE3E3",'#10'"UX c #B8B8C7C7B7' -- +'B7",'#10'/* pixels */'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXXl ",'#10'"oXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.* ",'#10 -- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXv ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX-.",'#10 -- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- ,'oXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX.X&.&.&.&.' -- +'&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -- +'.,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.,.&.&.&.&.&' -- +'.&.&.&.&.&.&.&.&.&.''.''.<.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.<..X.X' -- +'XX<.&.1.&.&.&.&.&.XX.X.X,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.n.:.&.&.&.&.&.&.&.&.&.&' -- +'.&.&.&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -- +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.&.&.&.,.' -- +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&..XoXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. o : - ' -- +' ' -- +' ' -- +' X % o ' -- +' # t % ' -- +' v Y ]. X{.2 ' -- +' O.%XGXCX&XXX^ * X ' -- +' ' -- +' ' -- +'v ' -- +' ' -- +' = : X X - # ' -- +' &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' o = = . ' -- +' % * o 4. ' -- +' o : p = ' -- +' L #.R o ' -- +' ) dXgX[.' -- +'h ) kXKXKXKXPXoXl ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' ' -- +'- : o X v v ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' % ; o 4. ' -- +' ' -- +' * : o R ;.) o ' -- +' ' -- +' I `.].+.# % %XKXKX' -- +'KXLXzX` ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' o o ' -- +' o v &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. ' -- +' o ' -- +' ' -- +' ' -- +' 8 k q ' -- +' 0 K - ' -- +' %.IXKXKXLXpXB. ' -- ,' ' -- +' o o ' -- +' o - X ' -- +' ' -- +' ' -- +' &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' v o ' -- +' 4.4. ' -- +' ' -- +' ' -- +' ^ ' -- +' 4.B.OXPXKXIXoX9. ' -- +' X i i ' -- +' ' -- +' X u 2 o * i : ' -- +' ' -- +' ' -- +' v ^ ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' v 4. ' -- +' ' -- +' . i t ' -- +' U v ' -- +' ` XX' -- +'OX''.^ 4.4. q $.[ ; ' -- +' ' -- +' * i q o v o o - * ' -- +' ' -- +' ' -- +' X j p o ' -- +' ^ v &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. ' -- +' v ' -- +' X - X ' -- +' p '' ~ * ' -- +' U U U U ' -- +' ^ ' -- +' 4.4. : a = ' -- +' ; R T % ' -- +' X o v ' -- +' ' -- +' ' -- +' w ] ] : ' -- +' o o &' -- +'.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' o X o ' -- +' = p - ' -- +' u ` ^ X ' -- +' ' -- +' U U U U U U * l p v ' -- +' 4. ' -- +' X o ' -- +' o o : o ' -- +' v ' -- +' ' -- +' ' -- +' - R T % o # X ' -- +' v v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' e e e ' -- +' X t X o o 4. o' -- +' - X ' -- +' 5 X ' -- ,' U U U U U ] +Xn.v ' -- +' 4.4. ' -- +' o # o 4. ' -- +' - q % ' -- +' o ` >.~ o v ' -- +' ' -- +' ' -- +' o o X -' -- +' X v v &.OXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. e e e e ' -- +'e o X o o : > 4. ' -- +' ' -- +' y J 6 ' -- +' U U U U U XzX&X' -- +'~ 4. ' -- +' o q - 4. ' -- +' % q % ' -- +' 2 >.*X&.; ' -- +' ' -- +' - 0 - ' -- +' ' -- +' o o &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' e e e e e e e ' -- +' o * X ' -- +' f o.G o ' -- +' ' -- +' U U U U +.''.<.l ' -- +' 4.4. o X o ' -- +' 4. ' -- +' o X ] >.` o ' -- +' ' -- +' # I #.I # ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' e e e e e e e ' -- +' o v 4. ' -- +' ' -- +' = d : ' -- +' o o U o h t ' -- +' ' -- +' ' -- +' ' -- +' o t o ' -- +' ' -- +' # I `.I # ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. e e e e e ' -- +'e e v 4. ' -- +' ' -- +' ' -- +' > = ' -- +' o v 4. ' -- +' 4.4. ' -- +' ' -- +' v ' -- +' ' -- +' - o % x p 8 K 8 ' -- +' ' -- +' &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' e e e e e ^ ' -- ,' ' -- +' ' -- +' ' -- +' f X.N.J v ' -- +' 4. ' -- +' ' -- +' ' -- +' v o ' -- +' o T O.R o ~ .X>.a ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' e e e ' -- +' v o 4. ' -- +' ' -- +' : q ' -- +' o o.#XsX!.5 v ' -- +' 4. ' -- +' 4.4. o % o ' -- +' ' -- +' o # o v ' -- +' # - ' -- +'; +.%X@.8 ..&X.Xl ' -- +' > X ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. = * ' -- +' # ; # ' -- +' 4. ' -- +' - R R : ' -- +' o.#XsXN.2 ' -- +' ^ 4. ' -- +' ' -- +' = p = ' -- +' X ; o ^ ' -- +' ' -- +' % - o R +.R o b O.` = ' -- +' ' -- +' = l p o &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' * p p X X - X ' -- +' ' -- +' ' -- +'X x P - o o Q Q' -- +' Q X.o.X.G Q Q Q v v v ^ V T v ^ T ^ v v v v o v v ' -- +'4.v o o o ' -- +' o q = 4. X * o ' -- +' o ' -- +' ' -- +' o ; o X ' -- +' ' -- +' * p p o ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' X t t o ' -- +' o ' -- +' ' -- +' o # T V ^ v o v v v v ^ v v Q ' -- +' % ) ^ Q Q o @ o ' -- +' o 4. o v L ^ v Q Q T Q ^ v v v ' -- +' ^ v v v o i ] R o 4.4. ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' X o ' -- ,' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. o # o o o ' -- +' ' -- +' 4. ' -- +' v v v Q ' -- +' o o X ' -- +' 4. ' -- +' X o v v v ^ y _ v o ' -- +' 4. ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' ,.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' - i - v ' -- +' 4. ' -- +' v v ^ v ' -- +' o ' -- +' v 4. ' -- +' X : % ' -- +' X u - Q Q Q Q 4.4. ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' % 8 % ' -- +' ^ ' -- +' 8 K 9 v ^ v v ^' -- +' ' -- +' v ' -- +' % - o o % X ' -- +' X * o v v G ' -- +' . # o ' -- +' v ' -- +' ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXOXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. o ' -- +' v ' -- +' 4. # I `.I v T ' -- +' v ^ v ' -- +' ' -- +' ^ 4.4. - 9 o ' -- +' ' -- +' X *.5 v v v 4.4. 7 u - ' -- +' Q ' -- +' ' -- +' ' -- +' ' -- +' &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' v ' -- +' 4. ' -- +' ^ ;.+.x v ^ ' -- +' ' -- +' v ' -- +' o o X t : ' -- +' O o./.!.H o ^ 4.) ] - o ' -- +' ' -- +' Q ' -- ,' ' -- +' ' -- +' ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' ' -- +' v v X 7 o ' -- +' ' -- +' 4.4.4' -- +'. ' -- +' = x p X f ^.aXsXX.X ' -- +' 4.o ^ v v v ' -- +' Q % : - ' -- +' ' -- +' ' -- +' X % o ' -- +' v o &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' v v ^ ' -- +' ' -- +' ' -- +' ' -- +' o : = ' -- +' f ^.aXsXX.@ 4.4. Q Q ' -- +' ' -- +'; p ; ' -- +' ' -- +' # ; o o & #' -- +' o V &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' 4. ^ v ^ ^ ' -- +' o @ o ' -- +' : ^ v ' -- +' 4.4. ' -- +' ' -- +' X ( !.X.z ' -- +' v Q Q ' -- +' o * o ' -- +' o ' -- +' o o ' -- +' # X - g ; ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' o v v o - o ' -- +' = y * ' -- +' ' -- +'T XX%.: ' -- +' ' -- +' . 4 5 ' -- +' 4.4. Q Q Q v o ' -- +' t t t t t t o' -- +' o % c P # ' -- +' ' -- +' o % # X ; % ' -- +' &.OXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. ' -- +' v o' -- +' v v X ^ ! : @ 5 X ' -- +' ' -- +' g ..~ * ' -- +' 4.4. Q ' -- +' ' -- ,' ' -- +' v ^ ' -- +'t t t t t t t t : t t t d z y t 5 t t t t t t t t t t t T ;.#.T t t t t t t' -- +' t t : t t t t ' -- +' o ' -- +' &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' o v ' -- +' v ^ v v 4.c %X&X_ ' -- +' o ' -- +' : # ' -- +' 4. G ' -- +' ' -- +' ' -- +' 4.4. T v ' -- +' o v t t t t t t t t t t t t d z u t t t t t t t t t t ' -- +'t t t j _ _ v t t t 5 8 t t t t t t t t t ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' ' -- +' v v ^ v v.dXfX' -- +'O. o # o ' -- +' ' -- +' 4. Q ' -- +' ' -- +' ' -- +' 4. ' -- +' v v ^ v o v t t t t t t t t t t t t t t t t t t' -- +' t q t t t t t t t t 8 t t t t t u g g t t t t t t t t t t t t t t t ' -- +' ' -- +' ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. ' -- +' o v ^ ' -- +' h #.[.h # - o ' -- +' ' -- +' ' -- +' o v ' -- +' ' -- +' 4. ' -- +' v ^ v v t t t : t t ' -- +'t t t t t t t t t t t t t t q t t t t t t t t 5 t t t t t 8 5 t t t 5 t t t' -- +' t t t t t t t t t q q t ' -- +' ' -- +' o v &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' % o v v ' -- +' 8.q ' -- +' o X ' -- +' ' -- +' 4.4. 5 z 5 ' -- +' ' -- +' ' -- +' 4. o o ' -- +' ^ ^ v t t t t t t t t t t : t t t t t t t q 2 t t t t t t t t t t ' -- +'8 5 t t t 8 t t t 8 t t t t t t t t t t t t q 2 t t t t t t 8 5 t t 8 t t t' -- +' ' -- +' ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' < N 9.j.u.e.e.q.e.e.0.B.9' -- +'.M 4. ' -- +' ' -- +' ' -- ,' 4. = o' -- +'./.o.> ' -- +' ' -- +' 4. ' -- +' o ; - t t v v u 5 8 5 t 8 2 q t t t t t t q :' -- +' 8 Z 8.v.B.F.D.H.L.H.D.B.B.x.D : 8 8 8 t t t t t t t 2 q t t q q q 2 t t t ' -- +'t t q 8 5 t t t t t t t t t ' -- +' ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. < 4.e.' -- +'q.r.a.y.e.q.q.q.q.f.V.e.q.e.e.4.+ o ' -- +' - h 9 ' -- +' + 4.u.q.0.N ' -- +' 4. ' -- +' = X.(.X.5 ' -- +' ' -- +' N i.h.h.9., ' -- +' 4.4. o ; % 8 t t u t 5 8 t ' -- +'t v ^ t t t t 8 t t t B v.D.H.P.L.P.L.I.L.I.L.P.P.P.P.I.K.x.s q 2 t t t t t' -- +' t q 5 u A c.K.P.K.c.Z t t u v l t t t t t 8 5 5 8 t t ' -- +' 3 c.E.Y.v.2 ' -- +' ^ &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' . < 7.q.q.q.q.q.w.w.f.q.q.q.q.q.q.q.q.q.q.q.e.4.. ` P R - ' -- +' h +.K ' -- +' o ^ ] d , u.w.' -- +'w.w.w.q.N o u V i ' -- +' 4. G ( H ' -- +' ' -- +' . 9.d.d.d.d.f.d., ' -- +' o > X o ' -- +' 5 t t t t t 8 5 t t t t v ^ q t t t B c.P.P.P.P.P.P.P.P.I.P.P.P.P.P.' -- +'P.P.P.P.L.I.x.a 5 8 t t t 8 q s B.R.Y.P.Y.Y.Y.P.B t O.].#.l t t 5 t t t t t' -- +' : t t t t t t t t 5 t D P.Y.' -- +'>X>XY.K.= ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' . 4.e.q.q.q.q.q.f.f.f.q.q.q.q.q.q.q.q.q' -- +'.q.q.q.q.e.u., %.#.#.g ' -- +'4. - K 8 ' -- +' x XX&X*.X . u.r.w.w.r.w.r.0. % = v ,.~ . ' -- +' 4. v ' -- +' o ' -- +' 9.g.f.f.f.f.k.f.8. ' -- +' 4.4. = ( #XiX^.' -- +'> 8 t v t t t t t 8 t 5 8 t t t t t u v.T.P.P.P' -- +'.P.P.P.P.P.Y.P.P.U.P.U.U.U.U.U.U.U.U.R.K.B q t t t 5 2 J.Y.Y.Y.Y.Y.Y.R.R.z.' -- +'p ;.%X|.T t t 8 t t t t t t t t t t t t t t t t t ' -- +' B Y.Y.T.;X}.Y.Y.8. ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. < 0.q.q.f.q.q.q.' -- +'q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.0. ` R R ; o ' -- +' 4. o @ ' -- +' l XX&X*.* N w.r.r.r.r.r.r.r. ; : o ' -- +' p ` l 4.4. ' -- +' o v ' -- +' ' -- +' 1 f.f.f.k.k.k.V.f.9. ' -- +' . ( aXKXKXBX!. t 5 5 2 ^ t t t t 5 8 t ' -- +'t t t t t 2 B K.P.U.;X;X;XU.U.Y.Y.Y.U.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.B.5 t 2 t' -- +' 8 z.Y.R.R.T.R.T.T.R.T.c.q ) ;.@.i t t t t t 5 t t t 8 t t t t t t t t t t ' -- +'t J.Y.Y.R.R.T.T.Y.c. ' -- +' X # &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' M e.f.f.f.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q. ^ o ' -- ,' % : # X f G = ' -- +' . ^ ` p 7.y.r.r.' -- +'y.y.t.t.t.N . o X 4. ' -- +' v ' -- +' ' -- +' 8.f.V.C.V.V.V.V.f.8. ' -- +' @ !.NXKXKXKX#X t' -- +' t q 8 q v t 5 t t t t t t t t t t C E.P.P.Y.R.Y.Y.Y.Y.Y.Y.Y.Y.Y.R.Y.R.Y.R.' -- +'R.R.R.R.R.T.T.T.;Xu t t t t R.T.T.T.T.T.T.T.T.T.J.q 5 p q 5 t t t t t 8 t t' -- +' t 5 t t t t t t 8 t t t t t t t t t t 3 T.T.T.T.' -- +'T.T.T.T.J. o t 2 o ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' c N e.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q' -- +'.q.q.q.q.q.q.e. # 8 # ' -- +' 4. @ J J = ' -- +' . y.t.p.s.t.p.p.p.t.1 ' -- +' 4. v ' -- +' ' -- +' i.C.C.V.C.C.C.C.C.F .' -- +' @ !.aXKXKXDX' -- +'!. t t t 2 q T t t 8 t t t t 5 8 t t t } U.T.Y.Y.R.Y.Y.R' -- +'.R.T.R.T.:X:X:X:XT.T.T.T.T.T.T.T.T.T.T.T.T.t t t q V T.;X}.}.;X}.;X;X;X;Xz.' -- +'q t t 8 5 8 t 5 t t t t t t t t t t t t t 5 t q 5 t t t t : t t t ' -- +' S ;XT.;X;X}.;X;X;Xc. o ' -- +': : v &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX&. v v V M q.q.q.q.q.q.q.q.q.q.' -- +'q.q.q.q.q.q.q.q.q.q.q.q.w.q.q.w.q.q.q.6. o ' -- +' 4. = 5 ' -- +' , t.p.d.f.a.d.f.d.p. ' -- +' ' -- +' ' -- +' ' -- +' o Z.C.C.L.L.C.C.C.A., ' -- +' o ( (.aXaX5Xf t q q q t t t t t t t t t t ' -- +'t t 8 A R.T.T.T.T.T.T.T.T.T.}.T.T.).T.}.T.T.}.}.:XT.}.;X}.}.;X}.}.m.t t t 2' -- +' V ;X;X;X;X;X;X;X>X;X;XB t t 8 5 8 t t t t 8 t 5 8 t t t t t t t t 8 5 8 q ' -- +'5 q t t t t t t t c.;X;X;X>X;X>X>X>Xx. ' -- +' v o &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. o v ' -- +' < e.q.q.q.q.q.q.q.q.q.q.e.4.M , + M N u.q.w.e.w.w.w.w.w.u.+ ' -- +' ' -- +' N p.s.d.d.' -- +'a.a.f.a.i. 4.4. ' -- +' ' -- +' ' -- +' 3 A.A.U.5X5X).C.A.F. ' -- +' . H o.o.f 4. q t' -- +' t t t t t 5 t t t t t 8 5 8 C R.T.T.T.T.T.;XT.}.}.T.E.z.A n t u s C x.E.>X' -- +'2X<X<X;X>X;X;XE.s 8 5 5 8 u E.:X>X:X>X:X:X:X:Xx.q q 8 5 q q q t t t t 2 q q' -- +' t t t t t t 5 t t t t t t t t t t t 5 8 t t 8 t 2 =X:X:X>X:X' -- +':X:X>X:XZ : p X ' -- +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -- +' T v v , e.q.q.q.w.w.q.w.w.w.w.5.. . M 0.w' -- +'.w.w.w.w.0., ' -- +' 6 6 6 ' -- +' 6.a.s.a.a.a.a.a.a.6. ' -- +' ' -- +' ' -- +' D A.A.).pXpX5XS.A.B. ' -- +' ' -- +' q t t t t t t 8 t t t t t t t n E.;X;X;X;X;X;X;X;X;X;' -- +'Xz.a t t t t : t t t t A J.3X>X>X:X3XJ.b 5 u 8 t q 2 { <X:X:X:X:X:X:Xz.q 5 ' -- +'m 5 q 2 q t t t t t q 5 q t t t t t t t t t t t t t t t t t t t t t t 5 t q' -- +' u > :X:X:X<X:X:X<X<X:X> ' -- ,'> ] >.^ &.oXoXoXoXoXoXoXoX*.",'#10 -- +'"oXoXoXoXoXoXoX>. V 0.w.w.w.w.w.w.w.w.w.u.< ' -- +' < 6.u.0.N . v o ' -- +' 6 H 4.4.6 o o ' -- +' o i.a.a.a.a.d.a.d.a.M o ' -- +' 4.4. o o . ' -- +' ' -- +' . ' -- +' 9.S.S.).5X5X:XS.S.8. ' -- +' 4. t q t t 5 q t t t t t t t t t ' -- +'t J.;X;X;X;X;X;X>X;X3XE.C : 5 t t t t t t t t q q 2 V m.J.J.z.p G L v v q q' -- +' 5 q C M.3X<X3Xm.C t t q t q q 5 q t 5 8 t q t q 2 t t 8 8 t q q t q 2 t t ' -- +'q q t q 8 u t t t 8 t t q t 8 Z <X<X<X<X<X<X<X<X}. ' -- +' = *..X` o &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>. v ^ 5.w' -- +'.r.w.r.w.w.r.r.r.u., v ' -- +' , N 7.0.j.t.s.0.N + M 7.j.p.0.N..XQ.6.6 ' -- +' + 6.j.s.j.6.+ M 6.j.h.s.6.o + 7.h.d.d.d.a.d.d.g.d.' -- +'d.d.f.l.d.d.d.g.i.N o + N 8.i.i.g.k.h.i.8.N' -- +' o ^ + D 9.i.F.Z.Z.F.9.D 2 ' -- +' ' -- +' M 8.v.B.D.S.D.B.W.D o B.S.S.G.).).I.G.G.F . D B.I.B.D ' -- +' 3 v.K.K.c.3 4. t t 2 t' -- +' t 5 L t t t t t t 8 5 t z.>X>X:X>X:X:X:X:X:X}.V q q q t t t t t t t q 5 q ' -- +'q t 2 q t t a q t t t q V T 2 5 : a s t t t t t t t q 2 q q t t t t 5 q q q' -- +' q q 2 d } m.=X=X,X2X,X=Xm.} a q q 2 t t t 5 t t t t t t z.<X<X2X1X2X' -- +'1X1X1Xm. x ~ u ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t ' -- +' , r.r.w.r.r.r.r.r.r.y.< ' -- +' ^ o M 7.p.p.s.p.p.p.p.p.p.p.7.+ 7.p.s.s.' -- +'s.C.8XzX*X1.6 , j.a.a.a.d.s.h.. M i.a.a.d.a.d.d.N ' -- +' + h.g.d.g.g.f.d.g.f.g.f.f.C.A.A.C.f.f.f.f.g.M N 4.o ' -- +'M i.f.V.f.V.V.V.V.f.V.V.f.Z.8. X o v M i.A' -- +'.C.C.A.C.C.A.C.A.A.C.i.3 ' -- +' . D F.G.S.L.S.L.H.H.H.H.L.D.D L.G.L.L.L.L.L.L.L.+ ' -- +' . c.L.P.P.P.P.S o D >X<X;XU.Y.P.3 o ' -- +' t 8 5 8 t t t v 5 8 5 t t t t t V :X:X:X:X:X:X:X<X:X:XC t t' -- +' t t 5 8 t t t t t t 2 q t t 5 8 t t t t 8 5 t t t t v / m.2X1X1Xm.i t t t ' -- +'t t t 2 q 5 8 q 5 8 2 q q : { }.1XuXuX8XuXuX8XuX8X8XuX2Xm.y 8 5 t 5 8 t t q' -- +' t t 5 t M.1X1X1X1XuX8X8XuX} ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX>.t t 0.y.r.t.t.t.r.t.t.p.N ' -- +' v , 0.p.p.p.s.a.p.a' -- +'.p.p.a.a.a.a.h.7.s.a.a.a.a.V.:XIX*XX.4. 9.d.d.d.a.d.d.d.N 6.f.d.d.' -- +'g.g.g.g.g.i. i.f.f.f.f.f.f.f.f.f.f.f.C.A.A.S.C.f.f.f.f.f.8. ' -- +' M i.Z.V.C.V.C.C.V.C.C.C.C.C.C.C.V.F.M - K h o ' -- +' o v + 9.A.A.A.A.A.A.A.A.A.A.A.A.A.S.D.8. ' -- +' F F.L.I.L.L.L.L.L.L.I.P.L.I.L.' -- +'P.P.I.I.I.P.P.P.I.K. 8.R.P.P.U.P.P.K. B ;' -- +'XuXeX<XY.Y.Y.c.t t t t t t o # # 4.4.8 t 5 8 q 8 5 8 ^ 8 q 8 t t t t q J.' -- +':X<X<X<X<X<X<X<X1X .t t t t q t t t t t t t t u 8 t t t t t t t 8 5 8 t t t' -- +' t V ,X1X1X1XuX1Xz.t t t t t t q q 8 5 8 t 5 q t / ,X8X7X7X8X8X8X8X8X0X8X8X' -- +'8X9X9X8X,X/ u 8 t t t t 5 8 8 q t t 2XuX8X8XuXuX9X9X0Xn ' -- +' ^ v &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t M t.t.t' -- +'.t.t.t.t.t.t.0. ' -- +' o M s.a.a.a.a.a.a.a.a.a.a.a.a.a.d.a.g.d.d.a.d.d.d.L.J.W - 4. + g' -- +'.g.d.d.g.d.g.f.h.g.f.f.f.g.f.f.f.g.g. 1 f.f.f.f.f.f.V.V.f.f.f.l.' -- +'C.C.V.C.l.V.V.V.V.V.9. 4.4. . 9.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C' -- +'.C.C.A.A.M 9 ) I # V 3 F.S.S.A.A.S.A.S.A.A.S.S.S.S.S.S.S.' -- +'S.8. 8.P.I.P' -- +'.L.I.I.P.P.P.P.P.P.P.P.P.P.P.U.U.P.U.P.U.U.v. + I.Y.Y.Y.Y.Y.Y.' -- +'Y.+ K.R.<X1X>XR.T.T.E.t t 5 t t t t t p g 2 q 5 t t q 5 q' -- +' 5 2 R q 5 q 5 2 q t { 2X<X<X<X2X<X2X<X2XJ.t t t u j p t t 8 5 t t t t t t ' -- ,'5 8 t t 8 5 t t 5 q q 5 t u =XuXuX8XuXuXeX-XQ t t t t t t 5 t t t t 8 d M.9' -- +'X8X0X0X0X9X9X9X0X9X9X9X9X9X9X9X9X9X0X/ 2 t t t t t t 5 8 t t V 9XeX8X8X8X8X' -- +'9X9X0X. v' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX<.t t t t ' -- +' 0.p.t.p.t.p.p.p.p.p.1 ' -- +' N a.a.a.d.a.a.d.d.a.d.d.d.d.d.d.d.d.d.g.d.d.d.' -- +'d.g.f.6. N f.f.f.f.f.f.f.f.f.f.f.f.f.k.f.k.k.V.g. D' -- +' f.V.V.V.V.V.V.V.V.C.V.V.C.V.C.V.C.V.C.L.Y.D.8. 3 F.C.C.A.' -- +'C.A.C.A.C.A.C.A.A.A.A.A.A.A.A.A.A.F.2 8 9 3 D.S.S.S.S.S' -- +'.S.S.S.S.G.S.S.S.S.L.S.S.G.K.o ' -- +' v.U.P.P.P.P.Y.R.Y.P.P.U.U.P.U.U.U.U.Y.U.U.U.U.U.R.U.S ' -- +' Z T.T.Y.R.R.R.R.T.Z B T.T.T.T.).T.;X2XJ.t t 8 t t ' -- +'5 8 t u 8 u q q 4.t q q 2 8 q 5 q q 2 q q q w J.2X2X1X2X2X1X1X1X1XC t q 5 p' -- +' L j u t t t t t t t t t t t t t t t t t t 8 5 q q } 8X8X0X8X8X0X8X,Xt Q t ' -- +'t t t t : t t q q C ,X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9XeX9XeX9XeX9Xb t t t t t' -- +' t 8 5 t 8 .eXtXeX9X9X9X9X9X=X o o o ' -- +' o v &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX>.t t t t 8 1 p.p.p.p.p.p.p.p.a.7. ' -- +' N d.d.d.d.d.d.f.d.d.d.d' -- +'.f.f.d.d.f.g.g.f.f.g.f.f.f.f.f.M 8.f.V.f.f.f.f.k.f.V.V.f.V.V.' -- +'V.V.V.f.V.9. D V.C.V.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C.S.:X8XR.+ ' -- +' 4. M F.A.A.A.A.A.A.A.A.A.A.S.A.A.S.A.A.S.S.S.A.S.S.9.o ' -- +' + F.G.S.H.S.L.L.L.G.L.L.L.L.L.L.L.L.L.L.L.L.+ ' -- +' o v.P.Y.P.Y.Y.Y.T.:X).Y.Y.Y.Y.Y.Y.Y.Y.' -- +'Y.Y.Y.Y.R.R.R.R.R.F x.T.T.T.T.T.T.T.T.v. x.;X;' -- +'X;X<X<X<X<X<Xm.q 2 q 5 8 t t q 5 u u t 5 4.4.t t t t t t t t t t t t V 1X1X' -- +'1X1X1XuXuX1XuXM.q t t 2 q g p t t t t t 5 8 t t t t t t t t t t t t t 8 u 2' -- +' M.9X9X9X8X9X9X9X9XV t t t t t Q t t t 8 / 0X9X9XeXwXwXwXwXwXwXwXwXwXwXwXeX' -- +'eXwXeXeXtXeXeX@X2 2 q q t t t t 5 8 M.tXtXtXrXwXwXwX9Xm. ' -- +' o = o &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t 5 6.a.a.a.a' -- +'.a.a.a.a.a.M ' -- +'F f.f.f.g.g.f.g.f.f.f.f.f.f.f.f.f.k.f.f.k.k.f.f.f.f.f.g.+ 4. i.V' -- +'.V.f.C.V.V.V.V.V.C.V.V.C.V.C.C.C.V.3 1 C.C.C.C.C.C.C.C.C.C.A.C.' -- +'A.A.C.A.A.A.S.:X8X . 4. 3 A.S.A.S.A.S.A.S.A.S.S.S.S.S.S.S.S.S.S' -- +'.S.S.S.S.S.S.3 v.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.I.P.I.I.' -- +'I.K. 8.Y.Y.Y.Y.Y.R' -- +'.Y.;X:X;XT.Y.R.R.R.R.T.R.T.T.T.T.T.T.T.T.T.+ o B.;X).).;X;X;X;X' -- +';XA c.;X;X<X<X<X2X<X2X} t q q 8 5 8 t t d G z t 8 t t t t t' -- +' t t t t t t t t q M.8XuXuXuX8X8XuXuX8X{ 8 t t u t q 5 t t t t t t t t t t ' -- +'8 t t t t t t t t t x V p 7XwX9XwX9X9X9X9X9X/ 5 8 5 t t t Q ^ v / 9XeXwXeXe' -- +'XeXeXeXeXeXtXtXeXtXtXtXeXtXtXtXtXtXtXrXtXV u t t t t t t t t 6XrXrXrXrXrXrX' -- +'rXrX=.8 t t t t t t t t t t t t t t t q 2 u u p u u t t t t t t t t t t t ' -- +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t ' -- +'8 t h.a.a.a.a.a.a.d.a.h. ' -- +' / g.f.f.f.f.f.f.f.f.f.f.k.k.k.k.k.V.V.f.V.V.f.V.f.V.' -- +'V.f.F. 4. Z.V.C.C.S.H.L.L.G.L.L.C.C.C.A.Z.V.F.F ' -- +' D F.Z.A.A.A.A.A.A.A.A.A.A.A.A.A.S.A.F.c.C * 4.4. , F.S.H.P.L.S.S.' -- +'G.S.S.S.H.S.G.G.S.S.L.L.L.L.L.L.L.L.L.D 3 L.I.P.I.P.I.P.I' -- +'.P.L.P.P.P.P.P.P.P.P.P.P.P.D ' -- +' 3 R.R.Y.}.}.R.T.T.T.T.R.T.T.T.T.T.}.T.}.T.}.}.}.}.}.}.}.J. ' -- +' o ).;X;X;X>X;X>X;X>X3 3X;X1X1X1X1X1X1X1XV t 5 q q q ' -- +'5 t t l H G u 5 t 8 t 4.2 2 2 u t t t t 2 t 2X8X8X8X0X8X0X8X0X,X8 t t t t t' -- +' t t t t t t t t t t 8 t 5 t 8 t t t t t t a v ^ ^ eX9XwXeX9XwXwXwX9Xs 8 q ' -- +'8 t t t t 2 v 7XtXtXtXtXtXtXtXtXtXtXtXrXtXtXrXtXrXrXrXrXrXrXrXrXrXn.t t t t' -- +' t t t t a rXxXxXhXxXxXxXhXxXQ t 5 : t t t t t q t 8 p g u 8 q 5 q t u 5 t ' -- +'t 8 : t t t t t t t t t t t t t t t t &.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoX>.t t 8 5 5 t t M d.d.d.d.d.g.g.g.g.6. ' -- +' . i.U.f.V.f.V.f.f.f.C.i.D , ' -- +' o M i.V.V.C.V.V.C.C.V.C.C.C.9. 3 C.C.C.L.L.L.L.L.L.L.L.L.I.I.' -- +'Y.B.8.a : t t t t t t : o 9.A.A.S.S.A.S.S.S.D ' -- +' B.L.H.P.Y.P.L.G.L.L.D.v.F + B x.K.L.L.L.L.L.L.P.L.L.c. ' -- +' v.P.<XP.P.P.P.P.P.c.2 . + 3 S v.K.Y.Y.U.x. ' -- +' o J.}.}.}.}.}.T.T.T.;XE.x.3 . 2 x.T.;X}.' -- ,';X;X;X;X;X>X;X;Xz. 2 >X>X:X:X:X>X>X:X>Xo t V 1X1X1' -- +'X1X1XuX9X9X2Xu t q 2 q t t t t t d y t t t 5 t 4.N t T 8 t t t t 8 / 9X0X0X' -- +'0X0X0X0X0X0Xm.t t t t t 8 t t t 5 8 t t t t t 5 t t t 5 t t t t t t t g b ' -- +'.tXtXeXtXtXtXeXtX,X5 8 5 q : t q 2 q -XrXrXtXxXxXxXrXrXrXrX@X{ s u V b.yXrX' -- +'hXrXhXhXrXxXxXxX-X8 5 q 8 t t 5 t / xXxXxXxXxXxXcXxXvX^ t u t t t t t t q 2' -- +' u x R x t 2 q 2 t t 5 8 5 t t t t t t t t t t t : t t t t t t t &.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 8 6.g.g.g.f.g' -- +'.g.f.g.g.M D V.' -- +'Y.V.V.V.C.V.V.f.D . 9.V.C.C.C.C.C.C.C.C.C.D 9.C.C' -- +'.L.P.L.P.L.P.I.P.P.I.K.x.B q t t t t t t t t t t 8 F.H.S.S.S.S.S.' -- +'S.S.M o 4. D L.L.L.I.P.P.L.L.P.K.3 = J o.V K.L.P' -- +'.P.P.P.P.P.P.B. I.U.<XU.Y.Y.Y.Y.Y.+ 3 B 4 ' -- +' } }.}.:X<X:X}.;X;' -- +'X>Xc.o Z ;X>X>X:X>X>X:X>X:X:XA A <X:X:X<X:X:X<X3X' -- +'J. t t } 8X8X1X8X1X9XwX9X=X: 8 t t t t t 5 t t u 2 q q t t t 8 5' -- +' v 8 5 t q t t t b.9X9XqXqX9X9XwX9XwX .t t 8 5 t t 5 t t t t t t 8 t t t t ' -- +'t t t t t t t t t t t t n.hXtXtXrXtXrXtXtX@X8 t t t 8 5 8 u =.rXhXrXrXrXrXc' -- +'XxXrXyX/ 5 q 2 q 8 5 V yXxXxXxXxXxXxXxXxX6Xq q 8 t 5 q 8 8 n.xXcXxXcXcXcXcX' -- +'mXMXoX] t t t t t t t t 8 u x L g t t q 5 q 8 t t t t t t t t t t t v t t t' -- +' t t t t t 8 t t &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.L x u t ' -- +'t t t t t 9.f.f.f.f.f.f.f.f.f.2 X ' -- +' . g.Z.R.C.C.C.C.C.C.D . F.C.C.A.C.A.C.A.' -- +'A.C.3 2 c.A.P.P.P.P.P.P.P.P.Y.K.C 5 2 t t t t t t t t t t t t t' -- +' t o , S.L.L.L.L.L.L.L.L.. 4. . K.L.P.L.P.P.P.P.P.' -- +'B.. = ( ( 6 D P.P.P.U.P.U.U.Y.K. 3 Y.Y.1XY.Y.T.R.Y.Y' -- +'.F ' -- +' X R.;X;X:X1X<X}.;X;Xm. m.:X:X:X:X:X:X:X:X:X3 o -' -- +' % m.<X:X<X<X<X<X<X<Xz. t t t t t t m.8X0X8X0X0X8X9X9Xm.q q 8 t t t ' -- +'t 8 t t 8 5 q 5 t t t t 8 ^ 4.5 t t t t 2 -XwXwXeXqXqXwXeXtXrX` g t t t t t' -- +' 8 t 8 t t t t t t 8 t t t 8 t t t t t t t t t t -XrXrXrXrXrXrXrXtXb.5 t 8 ' -- +'t q 5 5 u yXxXxXxXxXxXxXxXxX6Xp 2 q q q q 8 8 : b.xXcXxXcXxXcXcXcXyX2 8 5 t' -- +' q 8 5 8 @XcXcXcXcXcXcXcXnXzX*X*.t t t t t t t t t 5 u p t t t q t q 5 t t ' -- +'t t t t t t t t u v t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10 -- +'"oXoXoXoXoXoXoXXX`.+.g t 8 5 t t t g.f.k.f.V.f.V.f.V.V.- - o ' -- +' D C.C.C.C.C.C.A.C.8. ' -- +' 8.A.A.A.A.A.A.A.A.A. 5 8 : K.U.U.U.U.U.U.Y.Y.Y.v.u t t 8 ' -- +'t t t t t t t t t t t t t t t Z P.L.L.L.L.L.L.L.B. 4. o' -- +' . D P.P.P.P.P.P.U.P.K.2 = 5 4 Y.Y.Y.Y.Y.Y.Y.R.J. ' -- +' B T.T.1XT.T.T.T.T.T.T.x. t p # ' -- +' } :X:X:X:X<X:X:X:XJ.. S <X' -- +'<X:X:X<X<X<X2X<Xo - g 8 o J.1X2X2X2X2X1X1X1XC t t : 8 t 8 q -X9X0X9' -- +'X0X9X9X9X9X .8 t t t t t t t t t t t t t t 8 5 t t ^ 8.) g t t t t 7XeXeXeX' -- +'tXtXtXtXtXhXQ g u 2 t t t t t 5 t t 5 t t t 5 t t t t t t t t t t t t t a t' -- +'XrXxXhXxXxXxXxXxX^ t t u 2 5 8 2 b.rXxXxXxXxXxXxXxXrXv t 8 8 G v ^ t q 8 V ' -- +'cXcXcXcXcXcXvXcXyXt t t q q t t t yXcXbXbXbXbXbXbXmXOX>.^ 2 8 5 t t t t t t' -- +' t t 8 t 8 t t t 2 q t t t 8 t t t 8 t t v ^ t t t t t t q t t t 8 5 t t <.' -- +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXXX`.+.g t t t t t t q . V.V.V.V.C.V' -- +'.V.V.C.Z.X X o V G = F.A.A.' -- +'A.A.A.A.A.F.. D S.S.S.S.S.S.S.S.B. + u 8 8 s Y.Y.Y' -- +'.Y.Y.Y.Y.Y.Y.c.q 2 t t 5 t t t t 8 5 t t t t t t t t t t 8.P.L.P.P.P.P.P.' -- +'P.B.4. z ( f B.T.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.T.T.T.R.R.T.Y.R' -- +'.T.T.R.T.R.T.B. 3 ;XT.T.T.T.T.T.;XT.T.T.E.A o = ' -- +''' ,.^ J.<X:X:X:X<X:X<X<X' -- +'B B <X<X2X2X2X2X2X2XJ. o ; % + 1X1X1X1X1XuX0XuX1' -- +'X2 t t t t 5 8 5 q 0X9XwX9XwX9XwXwXeXV t t 5 t t t t t t t t t t t t t t t ' -- +'t L ;.''.! t t t p rXtXtXtXtXtXtXtXtXrXg t t q t 8 5 t t t t t 8 t t t t 8 ' -- +'5 t t 5 8 t t t t t t t ^ xXxXxXxXxXxXxXxXhXu t t t q q q q 6XcXcXcXcXcXcXc' -- +'XcXcXcXcXcXcXcXcXcXcXcXcXbXcXcXbXcXbXbXbXcX6X8 5 t 2 q t t l bXbXbXbXbXmXbX' -- +'mXnXV u q q t t t 5 8 t 5 8 t t t t 5 t t t q q t t t 5 t t t 5 t t L 5 t t' -- +' t t t t 2 u 8 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.P P q ' -- +'q q 2 5 8 t t B C.C.C.C.C.C.C.C.C.C. 5 ..-.b ' -- +' 3 A.S.A.S.A.S.A.S.8. = - o D S.S.S.S.S.S.' -- +'H.H.8.o X 5 j t t t A Y.R.Y.L.R.R.R.R.Y.s : q 2 q 5 q 2 t t t t t t t 5 8 t' -- +' t t t t B.P.U.U.U.P.P.U.Y.D = o.(.o.B Y.Y.R.Y.Y.Y.T.Y.R.' -- ,'T.R.T.R.T.R.;X:X;X;X}.T.T.T.T.T.T.;XT.T.z. E.;X;X;X;X;X;X>' -- +'X;X;X>X>X>XJ.B = *..X[ ' -- +' 2 <X<X<X<X<X<X<X<XJ. B 1X1X1X1X1X1X1X1Xz.o ' -- +' Z 8X8X1X8X8X0XtXeX7X: 8 q q 5 t t t C eXeXeXeXeXqXtXtXwXt t t t t t ' -- +'t 8 t t t t t 8 t t t t t t l @.#.8.4.t t V rXrXrXrXrXrXrXrXrXrX8 t t 5 t t' -- +' t t t t 8 t 5 t t t t t t t t t t 5 8 t t t t 8 =.cXxXcXcXxXcXcXxX6Xt t t ' -- +'t t t t G cXcXcXcXcXcXbXcXbXcXbXcXbXbXbXbXbXbXbXbXbXmXnXbXbXbXbXbXbX@X8 t t' -- +' t t t t | bXnXnXmXnXnXnXmXhX8 8 t t t t t t t t t t t t t t t t t t t t t ' -- +'t 5 t t t 8 5 t t t t t t t t t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.2 u t 5 q q 8 5 t t Z L.C.C.C.C.C.C.A.C.C.+ ' -- +' > ^ ~ a 8.S.S.S.S.S.S.S.S.3 o q q 5 J J' -- +' = D G.L.L.L.L.L.L.L.F X v p t t t z.R.T.T.T.T.T.T.T.J.8 8 t t q q ' -- +'q q t t t t t t t t t t t t t 8 u T.;X>XY.Y.Y.Y.Y.T.3 X J X' -- +'.H S T.T.T.T.T.T.T.T.T.T.T.T.}.T.}.;X}.:X<X:X}.}.;X;X;X;X;X;XT.A ' -- +' Z >X>X;X>X>X>X>X:X>X:X:X:X:X:Xm.+ d L 2 ' -- +' } 2X2X<X1X1X1X1X2X{ C 1X' -- +'uX1XuXuXuXuX8XC } 8X0X8X8X0XwXtXeX-Xt 2 q t 8 t t t =.eXpXcXv' -- +'XtXtXtXrX-Xt t t t t t t t t t t t 5 t t t t t t t t p l 2 t t t / hXhXhXxX' -- +'xXxXxXxXxXxXg t 8 q t t t t t t t t 8 t t t t t t t t t t 8 5 t t t t 2 @Xc' -- +'XcXcXcXcXcXcXxX@Xt t t t t t t n.bXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXmXbX' -- +'bXmXnXnXnXmXnXmX=.t t t t t t t XXmXnXnXnXnXnXnXnX*X5 8 t t t t 2 q t q t t' -- +' t t t t : t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 5 8 t t >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t q 2 q q t t C L.L.A.A.A.A' -- +'.A.A.A.D.M o X B.H.H.H.' -- +'L.>XL.H.D. * % f X.!.z x.L.I.I.L.P.P.L.P.2 q u t q t t J.R.T.}' -- +'.T.}.}.}.;Xz.5 8 t t t t q t t t t t t t t t t t t t t 5 V >X>X>X>XR.R.T.T.' -- +'R. @ 5 o c.T.;X;XT.;X).).;X}.;X;X}.}.;X;X;X}.<X<X:X;X>X>' -- +'X;X;X>X>X;XT.o } :X:X:X:X:X:X:X:X:X<X:X<X:X:X3Xa ' -- +' m.uX1X1X1X1XuX1X1X2 ' -- +' z.uX8X8X9X9X0X8X9X2 o M.0X0X9X0XeXtXtXeXb.' -- +'t t t t t 8 t w M.cXZXSXnXcXrXrXrXn.t t t t t t t 5 t t t t t t t t t t t t' -- +' t t t 8 u q 8 / xXxXxXxXxXxXxXxXxXxX/ t 5 t t t t t t t t 8 5 t t t t t t ' -- +'8 t t t q q t 5 t t 8 6XcXbXcXbXbXbXbXbX*.8 t t t t q q *XcXbXbXbXbXbXbXbXb' -- +'XmXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXp : t t t t t t 6XZXZXZXZXZXZXZXZX' -- +'n.8 5 t t t t q 5 q q t t t t t t t t t t t t 8 t t t q 2 t t t t t t t t t' -- +' t t t t t t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 5 8 t ' -- +'5 q q q t 8 Z P.P.S.A.S.S.S.A.S.S.D ' -- +' F.L.L.L.L.>XL.P.B.o 5 J ( 5 B.P.P.P.P.P.P.P.' -- +'K. 2 q t t q 2 u T.;X;X;X;X;XY.;X;XA 8 5 t t t t t t t t t t : t t t 8 t t' -- +' t t t } :X:XT.T.:XT.T.;XB. E.;X;X;X;X;X;X>X;X;X;X' -- +'>X>X;X>X>X:X>X:X>X:X>X:X>X>X:X:X:X:X} =.J.<X<X<X<X<' -- +'X<X<X<X<X<X<X<X<X3X2 ' -- +' =XuXuXuX8X8X8X8X8X. -X9X9X9X9XeX9X9X,X ' -- +' ,X9XwX9XtXtXrXrXtX{ t t t t t q q : 7XbXDXLXBXbXrXxXrX .u t t t t t t ' -- +'8 t t t t 8 t t t t t t v t t t q 2 q 2 8.xXcXcXxXcXcXcXcXcXcXn.t t t t t t' -- +' t : t t q 5 t t t t t t 5 t t t q q t 8 8 8 s mXbXbXmXbXbXbXmXbXV t t t t ' -- +'t 8 : hXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXZXnXZXZXnXZXoXv ^ t t t' -- +' t t t MXZXZXZXZXZXZXZXSX'' t 8 t 8 5 t q q 2 q t t t t t t t t t 8 5 t t t' -- +' t t t u 8 t Q t t t t t t t t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.t t 8 t t 8 t t t t s U.U.S.S.S.S.S.H.S.S.B. ' -- +' + P.P.P.P.P.:XP.P.B. * @' -- +' 2 U.U.Y.Y.P.Y.Y.Y.v.5 8 t 8 t t t V >X>X;X>X>X>XR.>X>Xs t t t t t t ' -- +'t t 8 5 t t t t t t 8 t t t t t m.:X<X<X<X<X<X;X>Xx. ' -- +' >X;X>X>X>X>X:X>X:X:X:X:X:X:X:X:X:X:X:X:X<X:X<X:X<X<X<XJ.} ' -- +' V o C J.1X<X2X2X1X1X1X2X1X1X1X1X}.o ' -- +' ,X0X8X8X0X0X8X0X8X B 9X9X' -- +'9X9XeX9X9X9XM.o 2 wXeXeXrXrXrXrXrXrXp t t t t t t t s hXbXZXDXS' -- +'XbXxXxXxXb t t t t t t t t t 5 8 t t 5 t t t t t T u 2 t q t t t b cXcXcXcX' -- +'cXcXcXcXcXcX6Xt q t t t t t t t t t 5 q t t t t t t t q q q 2 t t t t ` mXm' -- +'XnXmXnXnXmXmXMXt t t t t t t t nXnXnXnXZXnXnXZXZXnXZXnXZXnXZXZXZXnXZXZXZXnX' -- +'ZXZXZXZXZXMXn.q t t t t t t q G AXSXSXSXSXAXAXAXAXp q q q q t t q q t t t t' -- +' t t t t t t t t t t 5 8 t t t t t t Q t t t t t t t t t t t 5 t t t t t >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5 t t 5 t t t t a Y.Y.H.H.L.L' -- +'.L.L.L.L.L.3 , P.P.P.P.' -- ,'U.U.<XY.K. v.Y.Y.Y.Y.Y.Y.Y.R.z.8 q 5 5 t t 5 } >X:X:X:' -- +'X>X:X:X:X3Xt t t t t t 8 t 8 5 8 t t t t t t 5 t t t t 4.E.:X<X<X<X<X<X<X>X' -- +'C + :X:X:X:X:X:X:X:X:X o ' -- +' T o B M.1X1X1X1X1X1X1X1X8X0X8XC ' -- +' 9X9X9X9X9X9X9X9X9Xo ' -- +' @X9XeXeXwXeXeXeXeXb. / eXtXhXhXxXxXxXxX@X5 ' -- +'t t t t t t t ` xXvXbXnXbXvXpXcXyXt t t t 5 t t t t t t t t t 8 t t t t t v' -- +' t q q 5 g c g p vXbXcXbXbXbXbXbXbXbXbX/ t t t t t t t t t t 8 t t t t 5 8 ' -- +'t t 2 q 5 q t t t t n.mXnXnXnXnXZXnXmX6X2 8 t t t t t p ZXZXnXZXZXZXZXZXnXa' -- +' 5 8 t t q 2 t t t t t t 5 q t t 8 5 w : t 8 5 t t t 2 =.AXAXAXAXAXHXLXHXMX' -- +'8 5 8 q 2 t t q 2 q t 5 t t t t t t t t t t t t t t t t t t Q t t t t t t t' -- +' t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t ' -- +'t t t t 8 t t E.R.R.L.L.L.L.L.L.P.P.B.+ ' -- +' 3 U.U.U.Y.Y.Y.Y.Y.Y.4 B R.T.R.T.R.T.T.:X:X' -- +'C t 5 t q t : u m.:X:X<X:X<X:X:X<XB.t t t t t t 5 t t 5 q t t t t 5 t t t t' -- +' t t y 2X1X2X2X1X1X1X1X1X2 . :X:X<X<X<X<X<X<X<Xa ' -- +' o v 2' -- +' m.uX1X8X8XuX8X9X9X0XM. t t t t t t t t t t t q q 2 ' -- +' 9X9X9XqX9XqXwXwXwXB / eXtXtXtXeXtXtXtXtXV ' -- +' b.rXxXxXxXxXxXxXxX3.t t 5 t t t 5 t @XcXvXvXcXcXcXcXcX-Xt t t t 8 t 8 t ' -- +'t t t t t 5 t t 5 q t v t t t t t v ! l q MXbXbXbXbXmXbXbXmXmXmXyXp t t t t' -- +' 2 u t t t t t t 2 8 t t t t 5 q t t t t 8 5 &XnXnXZXZXZXZXnXZX.Xt t t t t ' -- +'t t p ZXZXZXZXZXSXSXSXAX^ 8 8 t t q t t t t t t t t t t t 2 q t t t t q t t' -- +' t v &XHXAXHXHXHXHXHXLX&X5 q 2 5 q t q 5 q t t 8 t 8 t y v u 5 t 8 t t t t ' -- +'8 5 t t t Q t t : t t t t t t t t t t t 8 t t t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t c.T.T.T.P.P.P.P.P.P.P.P.B.+ ' -- +' > F 2 > R.R.Y.R.Y.R.R.Y.Y.x. ' -- +' , E.T.T.T.T.T.).:X:X:Xy t 8 t t t q m E.<X<X<X<X<X<X<X<X9.u t t t t t t ' -- +'t t t t t t t t 8 t t 4.4.t q A 1X1X1X1XuX1X1X1X,X2 u ' -- +' <X2X2X<X2X<X2X2X1Xz. o A m.M.z.> ' -- +' { 8X0X0X0X0X0X9X0X,X p p t t t t 8 t t 8' -- +' 5 t q q t t 0XeXeXtXeXtXeXtXeXM. a 9XtXrXtX' -- +'rXrXrXrXtXrX> @XcXxXxXcXxXcXcXxX| t t 8 t t t 8 V vXcXcXcXcXb' -- +'XcXcXmXn.t t t t t t 5 q t t t t t 8 t t 8 5 q a t t t t t g x i u @XnXmXmX' -- +'nXmXnXmXnXnXmXZX6Xb t t q q 8 t t t t t t q V ` ^ t t t t t t 8 t t t MXZXZ' -- +'XZXZXZXZXZXAX| t t t t t t t q mXAXAXAXAXZXAXAXAXOXt 5 t t t t t t t t t t ' -- +'u :.*X6XoXp q t t t 5 : t t t zXHXHXHXHXHXHXHXHX,.q q q 8 5 q q q 2 t t t t' -- +' 5 8 '' >.` q t t 5 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t >' -- +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t t 2 } }.}.}.U.' -- +'U.U.U.U.U.U.Y.U.I.x.F . o + 2 F S z.B.E.R.Y.Y.K.2 . T.T.T.T' -- +'.T.T.T.T.T.T.B o 3 E.T.T.;X;X:X<X1X<X<X=Xq t t 8 t t t s <X2X2X<X' -- +'2X2X2X1X1XC t q q 5 q q 5 t t t t q q 5 q q 4.2 u t t t b.1X8X8X1X8X8XuX8X@' -- +'X2 8 t t J.1X1X1X1X1X1X1X1X1XA . A =X' -- +'uX8XtXpX-X@ 2 s X o 2 9X9X9X9X9X9XwXwX,Xq' -- +' 8 t i l p t t t t t t t t t t t t t t t 7XtXtXrXtXrXtXrXrXhX' -- +'/ V 7XhXhXhXhXxXhXhXhXhX7X u 5 8 t 6XvXcXcXcXcXcXcXcX6X8' -- +' 8 t q 8 8 v yXbXcXbXbXbXbXbXbXbXV t t t q t t t t 5 t t t 5 t t t t t 2 q ' -- +'q q 8 5 t t u q t =.mXnXnXnXZXnXnXnXZXnXnXZXmXoX( s t u d Q | n.OX6XZXSXZXZ' -- +'XMX! t t t t 5 t t c ZXAXSXAXAXAXZXAXAXl t t t t t t t t zXAXAXAXAXAXAXHXAX' -- +'AX>.w t 5 t t t t t t y >.MXHXHXHXHXzX2 t t t t t t t u HXLXHXLXLXKXLXLXKX~' -- +' t t t t t t t 5 8 t t t t t p *..X2.t t t t t 8 t t t t t q q t t t t t : ' -- +'t t t t t t t t t 5 8 t >.oXoXoXoXoXoXoXOX>.",'#10'"oXoXoXoXoXoXoX>.t t t 2' -- +' 8 5 t t t t t a }.;X;XY.Y.Y.Y.Y.Y.R.Y.Y.R.Y.Y.Y.R.R.R.R.R.R.T.T.T.T.T.T.T.' -- +'E.+ E.T.;X;XT.;X;X}.;X;X}.x.3 o + 3 z.;X;X>X>X>X:XqXpXtX1X<Xm' -- +'.2 t t 5 t t t / 1X1X1X1X1X1X1XuXuXy t t 2 q q 5 m t t t t q 2 q 2 N 4.8 5 ' -- +'t t t M.8X8X8X8X0X8X8X0Xm.t t t t t z.uXuXuXuXuXuXuXuX8X8' -- +'XM.C > . . > s } M.,X0X9X8X8XpXbXxXV a ,X9X9X9X-Xm.} B 2 . ' -- +'o 2 -XwXwXwXwXwXeXwXwX-Xq t t t i i t t t t t t t t t t t 8 5 t t t t t t t' -- +' t t @XhXrXrXrXrXrXhXhXhXtXn.a o @ b M.hXxXxXxXxXxXxXxXxXxXxX@X q 2 q ' -- +'t t yXbXcXbXbXbXbXbXcXbX6X/ u 2 b n.MXbXbXbXbXbXbXmXbXmX6Xt t t 2 q t t t t' -- +' 8 t t t 8 t t 8 t t q 5 q 5 5 8 t t 2 q 5 j mXnXZXZXnXZXZXZXZXZXZXZXZXZXZX' -- +'SXZXZXSXZXSXAXAXZXSXSXSXSXSXMXl t t t t t q %.AXAXAXAXAXAXAXAXMX5 t t t t :' -- +' t t 5 .XAXHXHXHXHXHXHXHXHXHX6X*.b i i b ` XX*XPXHXLXHXHXLXLXLX! t t t t t ' -- +'t t ~ KXKXKXKXKXKXKXKXHXu t t t t t t t t t t t t t 8 5 V ] v t t t t t 5 t' -- ,' t t t t t q t t t t t t t t t t t t 8 5 t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.t t t t t t t 8 t t 5 8 z.:X>XR.R.T.T.T.T.R.T.T.T.T.T.T.T.' -- +'T.T.T.T.T.).T.T.T.;X).T.;XS o c.3X;X;X;X;X;X8X>X>X>X>X>X>X>X>X;' -- +'X>X:X>X>X>X5XpXVXpX8X1X} q t t t t w & z.1X1XuXuX1X1XuXuX=Xq t 4.u 5 8 m 5 ' -- +'t t 5 8 2 u 2 q t t t t 8 t 8 ,X9X0X0X0X0X0X9X0X{ t 2 q t t t ' -- +' 2 0X8X8X8X8X8X8X8X0X0X8X0X0X9X0X0X9X0X0X9X9X9X9X9XtXpXhXs ' -- +'@ ,X9XeXwXwXwXwXeXtXeXeXeXtXeXeXeXeXeXeXtXrXhXn.t t t u q q 5 t t t t 2 q 5' -- +' t t t t t t t t t t t t t u n.hXhXxXxXxXxXxXxXxXxXxXxXxXxXxXcXxXxXcXxXxXcX' -- +'xXcXxXcXcX . u 2 t t t t 6XbXbXbXbXbXbXbXmXbXmXbXbXMXnXmXbXmXmXnXnXnXnXn' -- +'XmXnX` 5 t t t t t t t t t t t t t t t t t q 2 q t t 8 t t 8 t 5 t t oXZXZX' -- +'ZXZXZXZXZXZXAXSXSXSXSXSXAXAXAXSXAXAXAXAXAXAXAXAXAXAXAXXXu 2 t t 8 5 oXHXAXA' -- +'XHXHXAXHXHX*Xq q t t t t t t 8 ^ HXHXHXHXHXHXHXHXLXHXLXHXLXHXKXKXKXKXLXKXKX' -- +'KXKXKXKXKXKX` t t t t t t t ,.KXKXKXKXKXKXKXKXzXT t t t t t t t t t t t t t' -- +' t t t t 5 q t t t t t t t t t t q 2 q 2 t t t t t t t t t t 5 8 t t t t >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t 8 8 s 3X:XT.T' -- +'.T.T.T.}.}.}.}.}.}.}.;X}.;X;X;X;X;X;X;X;X;X;X>X;X;Xz. C >X:X>X' -- +':X:X:X0X:X>X:X:X:X>X:X:X<X:X:X:X<X<XuXrXpXtXuX1XV q t t t t q & }.8X8X8X8Xu' -- +'X8X8X8Xm.t t 4.t t t q m t t t t 4.N q t t 8 5 t 5 8 n wX9X9X9X9X9XwX9XwXd ' -- +'q q t 8 5 t t y m o m.8X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9X9X9XwX9' -- +'XeX9XeX9XX b.tXtXeXeXeXcXtXtXtXtXtXtXtXtXrXtXrXrXtXrXxXhX3.t ' -- +'t t 2 q 5 8 t t t t u 8 8 t t t t t t t t 8 5 t t t t V xXxXxXcXxXxXxXcXcXx' -- +'XcXcXcXxXcXcXcXcXcXcXcXcXcXcXcXcXcXz 8 t t t 8 5 @XmXnXnXmXnXmXnXmXnXmX' -- +'mXnXnXnXnXnXnXnXnXVXnXnXnXZX@X5 8 t t t t t t t t t t t t t t t t t t T q t' -- +' t t t t t t 8 t t b mXZXSXAXAXSXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXHXAXAXHXAX' -- +'HXHXOX5 q t t t t 6XHXHXHXHXHXHXHXHXXX: t t 5 t t t t t : *XKXLXLXKXKXKXKXK' -- +'XKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXLXp t t t t t t t &XKXKXKXHXJXJXKXKXOXt ' -- +'t t t 5 t t t t t t t t t t t 8 5 q q t t t t t t t t Q Q 5 q q q t t t t t' -- +' t t t t t q t t t t t >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.t t t t ' -- +'t t 5 8 t t t t t { :X}.}.;X;X;X}.;X;X;X;X;X>X;X;X>X;X>X;X>X>X>X:X>X>X:X>X:' -- +'X} 3X:X:X:X:X<X9X<X:X<X:X<X<X<X<X<X<X<X<X<XuX8X8X9X8X7X,X8 ' -- +'q t t 2 u q t 2X9X8X0X0X0X0X0X0X .t t t G -.^.!.^ t u 4.t t t t t t t t 8 5' -- +' t } wXwXwXwXwXeXeXwX7Xt t t t q q q 5 q 2 t > 7X9X9X9X9XeX9X9X9X' -- +'eX9XwXwXeXeXwXeXeXwXeXeXeXeXtXrXb. ,XtXrXrXrXrXcXrXrXrXrXrXr' -- +'XhXrXrXrXrXhXhXxXxX@X8 t t t t 8 q q q t 5 t t t t t t 8 5 t 8 t t t 5 t t ' -- +'t t t 6XbXbXbXbXcXcXcXcXcXcXcXcXcXcXbXcXbXcXbXbXbXcXbXmXbXbXo 8 5 t t t t t' -- +' q =.nXnXnXnXnXnXnXZXnXnXZXZXnXnXZXZXnXZXZXZXZXZXAX6Xp q q t t t t t t t t ' -- +'t t t t t t 8 t t t T q 5 t t t 5 t t t t t q .AXAXAXAXAXAXAXAXAXHXAXHXHXH' -- +'XAXHXHXHXHXHXHXHXHXHXHXHXHXHXXX5 t t t t u PXHXHXLXLXLXLXLXLX` 8 q q q q 8 ' -- +'5 8 t t v PXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXJXKXOXq t t t t t t' -- +' q zXKXJXJXJXJXJXJXJX&.t t t t L ^ 8 2 q t t t t t t 8 5 t u 2 t t t t t q ' -- +'t t Q t t t t t t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX<.",'#10 -- +'"oXoXoXoXoXoXoX>.q t t t t t 8 q t t t t t t m.}.>X>X;X>X>X>X>X>X>X>X>X:X:X' -- +':X:X:X:X:X:X:X:X:X:X:X:X3X@ A <X<X<X<X<X9X<X<X<X2X<X2X<X<X1' -- +'X1X<X<X0XuX0X8X8X0X7X}.2 q t t q 8 q b 9X9X9X9X9X9X9X9X9XV t t l /.5XaXaX(.' -- +'J 4.t t t t t t t t t t t t n.eXtXeXeXeXeXeXwX@Xt t t t t q 2 8 q t t t ' -- +' V 0XeXeXeXeXtXtXeXtXeXtXeXtXeXtXtXtXtXtXtXtXtXrXM.. ' -- +'yXrXrXrXhXrXcXhXhXhXhXxXhXxXxXxXxXxXxXcXcXpX] L t t t t 5 2 q t t 8 t t t t' -- +' t t t t t t t t t 8 t t t t 8 3.bXbXbXbXmXmXcXbXbXbXbXmXbXbXbXbXbXmXbXbXbX' -- +'mXbXnXnXyX8 t t t t q t q q p mXnXZXZXZXnXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZX6' -- +'Xj q t t t t 5 8 q t t t t t t t t t 5 t t t v 2 8 t t t 8 t t t t t t u OX' -- +'AXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXKXHXLXHXPXl q : t t t V KXKXKXK' -- +'XKXKXKXKXLXp 5 q q q 2 5 q t t t 8 '' LXKXKXKXKXKXKXKXKXJXKXJXKXKXJXKXJXJXK' -- +'XJXKXKXJX*Xu q : t t t t t p JXJXJXJXJXJXFXJXFXv t t t t 8 : ^ v t t t t t ' -- +'t t t t t 8 t t t t t 8 5 t t Q t t t t t t t t t t t t t t t t t t t : 2 >' -- +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t x.' -- +'>X:X:X:X:X:X:X:X:X<X:X:X:X:X<X:X:X<X<X<X<X:X<X<XJ.2 m.<' -- +'X<X1X2X1X1X1X1X1X1X1X1X1X1X1X9X9X9X9X9X9X9X9X9Xb.t t t t 8 5 q .eX9X9XwX9X' -- +'wXwXwX7X5 t t | sXNXKXNXaX-.5 8 t t 8 t t t t 8 t t 5 @XeXtXrXtXtXrXtXtX .t' -- +' t t t t t q 5 q t t t 8 5 t t t t / tXxXrXxXrXtXrXrXrXrXrXrXtXrXrXrXrXrXrX' -- +'rXrXb. -XxXxXxXxXxXbXxXxXxXxXxXxXxXxXxXxXxXcXcXvX%.`.O.p' -- +' t t t t t t q 5 t t 8 t t t 8 t t t 5 t t 5 t t t t t t u n.mXnXnXmXnXnXmX' -- +'mXmXbXmXnXnXmXbXnXmXnXnXnXnXZXnXZXOX8 t t 8 t 2 q 5 q t n.AXZXZXZXZXZXZXZXS' -- +'XSXSXSXSXSXSXAXAXAXAXAX&Xa q 5 t t t t 8 5 5 q t t t t t t 5 t t t t t v u ' -- +'t t t t t t t t t t t 8 t OXHXLXLXHXKXHXHXLXLXHXHXKXLXLXKXLXKXLXKXKXKXKXLXK' -- ,'XIX^ 2 q t t t t [ KXKXKXKXKXKXKXKX&X5 8 q 2 q q 2 q t t t 5 : '' PXLXKXJXJ' -- +'XJXJXJXJXJXJXJXJXJXJXJXJXJXJXJXFXoXt t t t t 8 t t 8 c FXFXFXFXFXFXFXFXzX8 ' -- +'8 t t 2 5 8 5 t t t t t t 5 8 t t 5 t t t t t t 5 t 5 t t t t t t t t t t :' -- +' t t : t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t ' -- +'t t t t t t t t t t t t 8 C 3X:X<X:X<X<X<X<X<X<X<X<X2X<X2X<X<X<X<X<X<XM.C o' -- +' m.1X1X1X1X1X1X1XuX1XuXuXuXuX9X0X9X9X9X9X9XeX9XwXH ' -- +'t t t t 8 8 a / tXtXeXeXeXeXeXeXb.t t : o.iXLXKXDXMX!.8 5 8 t 5 t t t t 5 t' -- +' t 8 @XtXrXrXrXhXrXhX7Xa 8 5 t t t t t t t t t t t q 5 q t t t b @XxXxXxXxX' -- +'rXrXhXrXhXhXrXhXhXxXhXxXhX@Xs a 6XxXxXxXxXxXcXcXcXcXc' -- +'XcXcXcXcXbXbXcX&Xl L @.] p t t t t t 8 5 8 t t 5 t t t 5 t t 8 t t t 8 t t ' -- +'8 5 t t t t .XnXnXnXZXnXZXnXnXnXnXnXnXnXyX&XnXnXZXnXZXZXZXZX..u t t 5 t q q' -- +' q 2 t t &XAXZXAXAXAXAXSXAXAXAXAXAXAXAXAXAXAXMX%.t 5 8 t t t t t t 8 5 8 t ' -- +'t t q q 2 8 t t t t t 8 5 t t t t t t t t t t t t t t =.PXLXLXKXKXKXKXKXKXK' -- +'XKXKXKXKXKXKXKXKXKXKXKXzX&.2 : q q t t t t c KXKXKXKXKXJXKXPXv 8 5 5 q q 5 ' -- +'q q t t t t t t c fXJXJXJXJXJXJXJXJXJXFXJXJXFXFXFXFXFX*X! q t t t q 2 u t t' -- +' t t IXFXGXFXGXGXFXGX_ 8 t t t t t t t t t q t t t t t t t 8 t t t t t t 8 ' -- +'t 8 t : t t t t t t t t t t q 5 t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.t t 5 8 t t t 8 t t t t t t t 5 t X x.3X2X2X2X<X<X<X2X<X1X' -- +'2X2X2X1X1X2XM.A > A ,X8X8XuX8X8X8XuX9X8X8X-' -- +'X/ b.9XeXeXeX9XeXeXn.5 t t t t t t t p 7XtXrXtXtXhXrXn.t t t a ^ #XNXNXNXsX' -- +'o.u t t 5 8 t t t t t t t t ^ rXhXhXxXhXxX7Xv 5 t t 5 t t u u 5 t t q 8 t t' -- +' t t t t t t t | -XcXcXxXhXxXxXxXxXxXxXxXxXyXn.a ' -- +' .6XcXcXcXMXvXcXcXcXbXMXbXbXmX6X` t t t l p 8 t t t t t t t 5 8 t t t 2' -- +' q 5 q 2 q t t t t t t t q 8 5 t t t =.MXnXZXnXnXZXZXZXZXZXzXb.t | AXAXAXZX' -- +'SXSXSX*Xq 8 t 8 5 t t t t t t t a .XSXAXAXHXAXAXAXAXAXAXHXAXHXHXmX|.u 5 8 t' -- +' t t t t t t t t 8 t t t t t t t 5 8 8 5 t t t t t t t t t t t t t t t t t ' -- +'t t j +XPXKXKXKXKXKXKXKXKXKXKXKXKXKXJXLX*X''.l t t t t t q 2 q q 2 q *XJXJX' -- +'JXKXJXIX~ q t t q q t t t t t t t t t 8 t t %.fXFXFXFXGXFXFXFXFXFXFXFXFXCXO' -- +'X^ 8 t t t t t t t : q q 5 q ''.GXFXGXGXGXGX>.t t 8 t t t 5 8 q t t t t t L' -- +' G v t t t t t 8 t t t t t 5 q t t t t 8 5 t t t 8 t 5 8 t t t t t t t t t ' -- +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t t 5 t 8' -- +' q 2 B x.M.=X2X1X1X2X2X=XJ.m.} B ' -- +' o C m.=X,X0X2X-Xm.{ l 2 t : b.-XyXxXyX@X/ t t t t t t t t t t C @X7XtX,' -- +'Xn.V a t t t t 8 ..#X5X#XN.p t 8 t t t t t t t t t 2 t 8 V @XtXhX6Xb.u q 8 ' -- +'8 t t t t g x i t 5 8 5 t t t t t t 8 5 t t q v =.@X6XyXvXxXyX6X@X=.V ' -- +' s %.@X6XhXMXcXMXhX6X@X=.b q 2 t t t t t ' -- +'t t t t t t t t t t t t 5 q 5 8 t q t t t t t t t t 2 u 8 t t 2 8 u =.&XzXM' -- +'XZXIX6X.X( q 5 t t | *XmXSXMX*X%.2 q 2 t t t t t t t t t q 2 t v OXSXHXHXHX' -- +'HXHXHXLXHXAX*X&.5 m 5 8 t t t t t 8 t t t t 5 t 8 t t t t t t t t t t t t t' -- +' t t t t t t 8 t t t t t t t t t 5 5 '' oXkXMXPXJXKXJXPXCXzX&X.X] u t 5 t t' -- +' t t t t t q q 5 8 q i .XCXFXzX+Xg t t t t 2 q t t t t t t t t t 5 t t 5 5 ' -- +'L >.&XzXCXGXGXCXzX&X''.` a t 8 a t t t t t t q 5 q q 8 5 q %.kXCXCX&X) t t ' -- +'t 5 t t t t 5 8 t t t t t u 8 ^ t t t t t t t t t t t 8 5 t t t t t t t t t' -- +' 5 t t t t t t t i c p t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 u ' -- +'t t t t t t t t t t t 8 t t q ' -- +' v o t t t t : t y &.oX*.a = t ' -- +'t t t t t t t t t 2 q t t t t t t t t q q 5 t H ( ^ a 5 t t t t t 8 5 t t t' -- +' t t t 5 t t t t t t 5 t t 5 t t t t g g p 5 q t t t 8 t t t t t t t t t t ' -- +'t t t t t t ' -- +' t t t t t t t t t t 8 t 8 t t t t t t t t t t 8 q q q q q q t t t t t ' -- +'t t t 8 5 t t 8 8 t t t t q q t t 8 q 2 q t t t t q q t t t t q t t t t 8 8' -- +' 5 t t t t t t 2 q t ~ ,.OX&X&XOXn.O.p t t 5 t t t t t t t t 5 t t 8 t 8 t ' -- +'5 t t t t t t t t t q a t t t t t t t 8 5 t t t t t t t t t q 8 5 t t t t t' -- +' t 5 t t t t : q 5 q t t q 2 q t t q 5 q q 5 2 q 5 t t t t t t t t t 5 t t ' -- +'t t t t t t t t t t t 8 5 t t t t : t t t t t q t t t t t t t t t t t q q q' -- +' 2 2 t a 8 t t t t : 8 5 t t t t t t t t t t t t t 2 q t t t t t t t 5 t t ' -- +'t v q q q q t 5 t t t t t t 8 t t t t t t b ~ v t u >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.q 2 t t 5 8 t t t t t t t t t 5 t ' -- +' v q t ' -- +'t t t t t a *..X*.u 2 t t t t t t t t t t 8 q t 5 8 t t t t t t 2 u t 4.t 5' -- +' t t t 5 8 t t t t t t t q t t 8 t t t t t t t t t t t t 8 t t t t q t t t ' -- +'t 5 t t t t t t t t t t t t t t t t t ' -- +' V 8 t t t t t t t t q t 5 t 5 t t t t t t 8 t t t ' -- +'t t t q 2 q 5 t t t t t t t t q t t t t 8 t t t 8 q 5 t t 5 5 q q t t t t q' -- ,' : t t t t t t t t t 5 t t t 8 5 q t t q q q q 2 u t t 8 t t t t t t t t t ' -- +'t t t t t t t t 5 t t t t t t t t t t t t t 5 v t t t t t : 5 q 8 5 t t 8 5' -- +' t t t t 8 5 t t t t t t t 4.t 8 t t t t u t t t 5 q q q t q q 2 q q q 5 5 ' -- +'t t t t t t t t t 8 t q : t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t' -- +' t t t t t t t t t 2 q 5 q q t t t t t t t 2 8 8 t t t t t 8 t t 5 u u t t ' -- +'t t t t t t t v v t t 5 u v q 2 q 2 q q t 5 8 t t t t t 5 t t t q j v l u j' -- +' <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' -- +'8 t q ' -- +' v t q t t t t t t t x ! l u 2 q q t t 8 t t t t t t 8 t 8 ' -- +'5 t t t 8 5 t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' 5 t t t t t t t t t : t t t t t 8 5 8 u 2 q t t t t t t t t 8 t t 8 t ' -- +' ^ t t : t t t t t t 8 t t q' -- +' 2 t t t 8 t t t 5 q q t t t t t t t t t t t t t t 8 5 8 5 t 5 t t t 8 t t ' -- +'5 t t t 8 t t t t t t t t t t t q 5 t t 5 8 t t t 8 5 t t t t t q 5 8 t t t' -- +' t t t t 8 5 q q q 5 t t t 8 t t t t t t t t t 2 q q t t t 8 t t t t T 2 t ' -- +'t t t t t 8 t t t t t t t t t t t t 5 t t t t t 5 q 4.4.t t t 8 u l l t t t' -- +' t t t t t t t q q 2 q t t t t t t t t t t t t 5 q q q u 2 q t t t 8 5 t t ' -- +'t t t t t : 5 q t t 8 t 2 t t t t t t t t t t t t t 8 q t t t t t t q t t q' -- +' t t 5 t t t t u x g 8 : t t t t t t t t t T ^ 2 V T q q 5 q t t t t t t t ' -- +'t 8 t 8 t t t t q t t 8 p <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -- +' t t t t t t q t t t t t t t t t ' -- +' 5 q 2 t t t t t t t t t t t t t t' -- +' t t t t t 5 t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t 8 8 t t t t q t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t 5 t t u 2 q t t v ' -- +': t t t t t t t 5 t t t t u t t t 5 t t t t q q 2 t t t 8 5 t t 5 8 t t q :' -- +' 5 q t t t 8 t t t 5 t t 8 t t t 5 8 t t t t t t t t t t 8 q t t t t t t t ' -- +'t t t t 8 t t 5 8 t t t t t t t t t t 2 q 2 q t t t 5 t t t t t t t t t u t' -- +' p p t t t t t t t T q t t t t t t 5 t t 5 t t t t t t t t t 8 t t t t t t ' -- +'5 8 t t t t t p v x u t t t t t t t t t 5 : q q t t t t t t t t t t t t q 2' -- +' t t 8 t t t t t t t t t t t t t t t t t t t t 8 8 t t t t t t t t t t t t ' -- +': 5 8 t t t t t t t t t t t t 8 t t 5 t u x g 5 8 t t t t t t t t t t q q T' -- +' ^ t t q 2 t t t t t t t t 5 t t t t t t t 5 q 5 u >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 2 q ' -- +' t t q q q t ' -- +'t t t t t 8 5 t t t t t t t t t t t 8 t 5 t t t t t t t t t t t t q 2 t t t' -- +' t t t t t t t t t t t t q t t 5 t t t t 2 t t t t t t t t t t t t t t t t ' -- +'t t t t t 8 5 t t t t t t t t t t t t t t t t t t t 5 8 8 t ' -- +' v t t t t t t t 8 t t t t t 8 t 5 t t t t 8 5 5 8 t ' -- +'t t t t t q t q 5 q q 5 q t t t t t t t 5 t t t 5 t t t t t t t t t t t t t' -- +' t t : 5 8 t t t t t t t t t t t 5 t t 8 q t 5 t t q t t t t t 8 5 q q t t ' -- +'t t t t t t t q t t t t p v l t t t t t t t T 2 q t t t t t t t t 8 t t t t' -- +' t t 2 u t t 5 t t t t t t 5 t 4.4.t t t i p t t t t t t t t t t t t t t t ' -- +'t t t : t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t t t t t t' -- +' t t t t t t t t t t t t t 8 t t 8 t t t 8 t t t t t t t t 8 5 u 2 t t t t ' -- +'t t t t 5 8 t t t t 8 5 t v V ^ q 5 8 t t t t t t 8 t t 8 t t t t t t t 8 u' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 5 t t 5 8 t t 5 8 t ' -- +'t t t t t ' -- +' t t t t t t t 2 u t t t t t t t t t t 8 t t t t t t t t t 8 t t 5 8 ' -- +'t t t t t t t t 2 N t t t t t 5 8 t t 8 5 t t t t t t t 8 t t t t t t t t 8' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t 8 5 t t t # # o t u a t t t t t t t t t t' -- +' t t 8 t t 8 t 5 8 q 5 t 8 t t t t q q 2 8 5 q q 2 t t t q t t t 8 t t 8 t ' -- +'t t t t t t 8 5 t t t t t t t t 8 5 t t t t t t t t 5 8 t t t 8 5 t t t t t' -- +' t t t t t 8 5 q t q t t t t 8 5 t t t t t t t t t j g t t t t t t t 5 q q ' -- +'q t t t t t t t t t t 8 5 t t q 8 t t 8 t t t t t t 8 t t 4.t t t t t t t :' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t 5 8 t t t ' -- +'t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t 5 t t t t' -- +' t t t 8 5 q q q t t t t t t t t t t t t t t t 8 t t q v q q 5 8 5 8 t t t ' -- +'5 t t 5 t t t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t' -- +' t 8 t t t t t t t t t 5 t t t t t t ' -- +' t t t t t t 5 t u g p q t t 5 t t 8 t t t t t' -- +' t t t t t t t 5 8 t t t t t t t t t t t t 4.t t t t t t t t t t t t t 8 t ' -- +'t t t t t t t t t t t t t t q 5 8 5 t t 5 5 t t t t 8 t t t t t t 5 t t t t' -- ,' t t t t t t t t t t t t t t q t t u g x u t t t 5 t t t t ' -- +'p v v y t t t t t t t t t t t t t t t t t t t t u 5 t t t u t y u 2 t t t t' -- +' t t q q t t t t t q 8 t t t t t t 8 5 t t t t t t t t t 8 t t t 5 t t t t ' -- +'8 t t t t t t t t t t p l u t t t t 5 t t t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t t t t t t ' -- +'t 8 t t t t t 8 t t t t t t 2 q q q 2 q t : t t t t t t t t t t u 8 t t t t' -- +' t t t t : t t t t t t t t t t t t q t t t 5 t t t t t t t t t t t t t t t ' -- +'t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t 5 q t 8' -- +' 5 t 8 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t 5 8 t t t 8 t t t t t t q ' -- +' q w X : t t t t t v u q p c ' -- +'p 5 8 t 8 t t 5 t t 5 8 t t t 5 t t t t t t t t 5 t 8 t t t t t t t t t t t' -- +' t t 8 t 8 t t t t t t t t 8 5 t t 8 t t t t t t t q 2 q t 8 t t 8 8 t t t ' -- +'t 5 t t t 5 8 t 8 t t t 8 t t t t t t t t t t t t t 8 5 t t t u u 5 t t t 8' -- +' t t t t t t t t p ~ ~ p t t t t t t t t t t t t 5 8 t t t t t g l ' -- +'p t t t t p v j q t t t t t t 2 t t t t t t 2 u t t t 5 8 t t t t t t t t t' -- +' t t t 5 t t 5 8 t t t t t t t t t 5 t t t t t x P x t t t t 8 t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8' -- +' 5 t t t t t t t t t t t t t t t t t 4.4.t t t t t t q q q 5 q q t t t t t ' -- +'t t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t 2 8 t t 8 t t t' -- +' t 8 5 t t t t t t t t t t 8 t 5 8 t t 5 t 8 t t t 8 t t t t t t t t t t t ' -- +'t t t t : t t t t 8 L 5 t t t 5 t t t Q Q t t t t t t t t t t t t t t t t t' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 t 5 t 8 t t t t t t t t ' -- +'t t t t t t t t k [.|.) t t t t' -- +' t t t t t t t G 8 t u p u t t t t t t t t t 8 5 t t t 8 t t t t t t t t 8 ' -- +'t 5 t t t t t t 2 2 t t q q t t t 5 t t t t t t t t t t t t 5 t t t t t t t' -- +' q q 2 q t t t t t t 8 t t t 8 q t t t t t t t t 5 t t t t t t t t t 2 q t ' -- +'8 5 8 t t t t t t t t t t t t t t 5 u t t t t t l x t t t t t t t t t t' -- +' t t t t t t t t t t x ! l t t t t p l p q 8 t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t 8 t t t t t j x' -- +' h t t t t t t t t t t t t t t t t t t t t t q t t t t t t t t t t v t t t ' -- +'t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 8 5 t t 5 4.t t 5 8 t' -- +' t t 5 t t q 5 t t t t t t t t t t t t q t 8 5 t t t t q 2 t t t t t t : t ' -- +'t t t t 8 u 5 t t t t t t t t t t 8 t t q 2 t t t t t t t t t 8 t t 5 t t 5' -- +' t q t t v _ R t t t t t t t t t t t t t 8 5 v t t t 8 t t t t t t Q Q t 8 ' -- +'q t t t t t t t t t 8 5 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5' -- +' t t t t t 8 t 5 8 t t t t t t t t t 8 5 t t t t ) XfX' -- +'#.- t t t t t t t t t t t t L 5 8 5 t u t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t 8 5 8 t t t t N t t t q 2 t t t t t 8 5 t t t t ' -- +'t t t t t t t t 8 5 t t 8 q 5 q q t t t t t t 5 t t t u 2 5 8 t t t t t t t' -- +' t 8 5 t t t t t t q q t t 5 t t t t t 8 t t t 8 t 5 8 t t t t 8 v t t t t ' -- +'t t t t 5 t t t t q t t t t t t t t t 5 8 t 8 p x p t t t t 5 u i 5 t 5 t t' -- +' t t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t t t t t t t t t t t t ' -- +'t 8 t t t t t t t t t u q 2 t t t t t t t t t t t t t t t t : t t t t 5 : t' -- +' t t t t t t t t G t t : t t t t t t t t t t t t t t t t t t t 5 8 8 5 t 8 ' -- +'t 5 t t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t t t t t' -- +' t t q q q 5 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t u t t t ' -- +'t t t t t t 5 t t t t t 8 t q 2 u ) ''.O.i t t t t t t t t t t t t 5 T a t ' -- +'t t t t t t t t t t t t u 2 t t t t t t 8 5 t 5 8 t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t t t t t t 8 t t 5 t t t 8 t t t t' -- +' x :.|.) u t t t t t t t t t t t t t t 2 q t t t v u 5 q ' -- +'5 8 t q 5 q 2 t 2 q t t t t t t t t 8 8 t t t 5 t t t t t t t t t 4.t t t t' -- +' q t t 8 t t t t t t t t t t t t t t 8 5 t t t t 5 t t t t t t t 5 t t t t ' -- +'t t t 8 t t t 8 5 8 t t t 8 5 t t t t t t t t q t t t t 5 q : t 5 t 8 5 t t' -- +' t t q t 5 5 5 v t t t t t t t t q q 5 t 8 2 t t t t t t 8 t t t t t t t t ' -- +'t t t t t t l L j u 5 8 t t t t : t t t t t t t 5 t t 8 5 t t 5 8 t t t t t' -- +' t t t t 2 q t 5 8 t t 5 8 q 5 t t t t t 5 8 t q q q t t t t t t t t t t t ' -- +'5 q 8 5 5 q t t t t t t t t t t t t t t v u t t t t t t t t t t 5 8 t t t 5' -- +' t 8 t t t t 8 t t t t t 8 5 t t t t 5 8 8 t 4.t 8 t t t t t t t t t t t t ' -- +'t t t t t t t 8 5 t t t t 8 5 q 2 q q t t t t t t t t t t t t t t 5 t t t t' -- +' t 8 t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5 v _ R 2 5 8 t t ' -- +'t t t t t t t t t t t t q 2 q q t t t t t t t t t t t t t t t t q q t 8 q q' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t u 8 t t t ' -- +'t t t t t t t t 5 t t 8 t u h j t t t t : t t t t t t t' -- ,' t : t q t t t t t q 2 t t 5 t ` '' c u 8 u t t t t 5 8 t t t t 5 t 8 t 8 t' -- +' t t 5 t t t t t p ( ` h q 5 t t 5 t t t t t t t t t t t t t t t t t t t t ' -- +'t t 5 8 t t t t 8 t t t t t t t 5 t t t 5 t t t t t t t t t t t t t t : 5 t' -- +' t t t q q t t 8 t t q t t t t q q q 8 u T t t t t t t t t q q t t l _ _ i ' -- +'t 5 t t 5 t 5 8 t t t t t t t t t t t x T l t t 5 8 t t t q t t t t t 5 t 8' -- +' t t t t t t t t t t t t t t t t 8 u t t t t t t t 5 8 t t t 2 t t t t t 5 ' -- +'q 2 t t t t t t t t t t t 8 5 5 8 q q t t t t t t t t t t t t t t v t t t t' -- +' t t t t t t t t t t t t 8 t 5 t t t t 5 t t t t t t t t t t t t t t t t t ' -- +'5 t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t t 5 q q q t t t t t t' -- +' : t t t t t t t 8 t t t t t 5 t 8 t 5 8 t t t 8 5 t t t 5 t t t 5 8 t t t ' -- +'t t t t q g l 8 u q 5 u t t t t t t t t t t t t t q q 5 5 t : t t t t t : t' -- +' t t Q Q t t : q 2 q 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t ' -- +'t t t t 8 t q P l 2 5 8 t t t t t 8 t 5 t t t t u P ) x 8 t u # t' -- +' t t t t t t t t t t t t t t t t q q t t t t q q q t 5 x >..X` 8 5 q t t t ' -- +'t t t t 5 t t 8 t 5 t t t t t 8 t t t 8 t ..#X#X..q t t 8 t t t t 8 5 t t t' -- +' t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 8 ' -- +'t t t t t t t t t t q q q q t t 2 q q q t t q q t t t 5 q 2 2 u 2 G 8 : t 8' -- +' 2 t t t t 2 t t ) |.''.L t u t 8 t t t t t t t t t t t t t t t i g t t t t' -- +' t t t q 5 q 5 t t t 8 t 5 t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t 8 t t t t q q 8 t q t q 2 t t 8 t t t t t t t t t t q 8 t t 2 t t t t t t' -- +' t t t t t t t t t t t t t t t t t t 8 u t t 8 t t t t t t t t 8 t t 5 t t ' -- +'t t t t t t t t t t t t t 4.t t 8 t t 8 t t t t t t t t t t : t t t t 8 5 t' -- +' t t t t t 5 8 t t t t t t t t t t t t t t t t 5 8 t t 8 t t t t t 5 8 t t ' -- +'t t t t 8 t t t t t t 5 t t t 5 t c O.] j 5 t p j p t t t t t t t t t t t t' -- +' q t m t t t t t t t t t t t t t t Q t t 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t 5 8 ! :.@.g t t t t t t t t t 8 t t t t p )' -- +' `.P a x +.`.R t t t t t t t t t t t t t t t t t t t t t q 5 t 8 5 t t t q ' -- +'q 2 p '' %.G 8 q 5 q t t t t t t 8 t t 5 t t t t t t t t t t t t 4.&.sXsX-.' -- +'5 q 2 u t 5 8 t t t t t t t t t t t t t 5 8 8 t t t 5 8 5 8 t t t t 5 t t t' -- +' t t t t t 8 t t t t t t t t 5 8 t t t t t t q 2 q V ^ v T 5 q 2 u v V ^ v ' -- +'t t 8 5 T T v T T v ^ v ^ q q t t v ^ v ^ T #.O.c Q v v ^ t t t t 8 5 t t t' -- +' t t t t t t t t t t t t t t t q q 2 q t : t t t 8 t t t t t t t t : t t t ' -- +'t t t t t t t t t t t t t t q t t t t t 5 8 5 q q q t t 5 t t t j c p t t t' -- +' t t t t t u g j u t t t t t t t t t t t t t t t t t t t t t q 2 t t 5 t t ' -- +'t t 8 t t t 5 t t 8 t t t t 5 8 t t t t t t 5 8 t t 4.t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t ' -- +'t t t 5 t t t t t t t t t t t t t t t t t t t 8 t 8 t 8 t T #.@.x 8 t u j p' -- +' t t t t t t t t t t t t t t a p u t t t t t t t t t t t t t t t q q q t t ' -- +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t [ ''.;.x q 2 ' -- +'5 8 t t t t t t t t t 8 t L ) x 8 R ]. X+.2 8 8 t t t 5 t t t t t t t t t t' -- +' t t t t 2 q t q t t t t t t t t u p t t t p p t t t t t t t t t t t t t t ' -- +'q q t t a t t t 4.G n.!.G q t t t t t t t t t t 8 t t t t t t t 8 t t t t t' -- +' t t t t t t t 8 t t t t t v v ^ v ^ L t t t t v ^ Q Q : t t t Q Q Q Q t t ' -- +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 l p u' -- +' t 5 t t t t u v ^ v v t t t t v v ^ L t t t 2 R T G L v v t t t t t : t t ' -- +'t t t t t t t t t t t t q 5 q t t 5 t t 8 t t t t t t 5 8 t t t t t 5 8 t t' -- +' t t t t t t t l T j t t t t t 8 5 q t j x u t 5 8 t t t 5 t t t 5 t t t t ' -- +': t t t t t t t t t t t t t t 5 8 t t t t t t t t t t 5 t t 8 5 8 8 t t 5 8' -- +' t t t t 5 8 t t t t q q q t t t t t t t t 5 t t t t t t t t t t t t t t t ' -- +'q q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t q u T L t t q t q t t t t t t t t Q t t t t j ~ ~ l p t 5 t t t t t ' -- +'8 t t t t 8 5 t t 5 v u a q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t' -- +' t t t t t t j ) R 5 q q 8 5 t t 5 t t t t t t 5 8 u t u u x +.`.R t 8 a t ' -- +'t t t t 8 t t t 8 t t t t t t t t q q 8 5 t t Q t t t t t 5 q t t i L c i t' -- +' t a t t t t t t t t t t 5 v v p t t t 5 t q u i m t t t t t t t t 8 5 t 5 ' -- +'t t t t t t 2 u t t t t t t t t t t t Q G T v t t t t t t t 8 5 t t t t q 2' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t ' -- +'t t t t t t t t 8 5 t t t t 8 t t t t 2 5 8 t t t t t 5 u t t 5 8 8 5 t t 5' -- +' 8 5 u t t t t ^ v Q Q t t t t 5 u t t t t t t t t 5 8 t t t t t t t t 8 5 ' -- +'t t t t t t t t t t t t t t t 8 t t t t i p a t t t t t t q 5 t i i 5 t t t' -- +' t t 8 t t t t 8 t t t t t t t t t t 8 5 t t 5 t t t t t t t t t 5 8 t t t ' -- +'5 t 8 t t 5 q t 5 t t t t t t t 4.t t t t t t 2 u 5 q 8 t t t t t t 8 t t t' -- +' t 8 5 t t t t t t t t : 5 q q t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t 5 : t t : t t t q 2 t t t t t t t t t t y q 5 q t t t t t t Q t t t t t' -- ,' ` +X<.v u t q t q t 5 8 5 t 8 t t t t t t 8 q V v t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t q 2 q q t t 8 t t t t 5 t t 5 8' -- +' t t t t a g t t t t t t t 8 t 5 t t t 5 t t t t t t t t 8 5 5 q t t v q t ' -- +'t t t 8 5 t t i l l u u p u t t t t t t t t t 2 p ^ ~ l t t t q 2 q 5 8 5 5' -- +' q t t t t t u 5 u t t t t t t u v T t t t 2 T Q Q Q t t t t 5 q q t t t t ' -- +'t t t 8 5 t t t t t q q t t t t t t t t t t t t t t t t t t t t t t t t 5 t' -- +' t 8 t 8 t t t Q t t t t t t t t t t t t t t t t t t t 8 t t q q t t t t t ' -- +'t t q 8 5 t t t t t t t t 2 q t t t t t t t t t t t t v v v v t t q t t 8 t' -- +' u t t t t t t 8 5 t t 8 t t t t t t t t t q 2 t t t 5 t t t m q t t t t t ' -- +'5 8 t t t t t t 2 q t t 5 t t t t t t v t t t t t t t t t t t q t t 8 t t t' -- +' t t t t t t t t t t t 8 t t t 8 t t t q t t t t 8 t t t 4.t t t t t p x j ' -- +'t 5 t t t t t t t t t t t t t t t t t t t t t q q q 5 t t t t t t t t t t t' -- +' t t t t t t t t t t t t t q t t t t t t t 8 u t t t t t t 8 5 t p b l t t ' -- +'t t t t t t Q t t t t t ] .X<.b t t t t 5 q q q 8 t 5 t t t t t t t q t t t' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t 5 q q ' -- +'q t t t t t t 8 t t q 2 u t t t t u u t t t t t t t t t 8 t t t t t 8 5 t t' -- +' t t t t 8 5 8 t t Q 2 t t t t 5 8 q 5 t t t t p v p t t t t t t t t t q 5 ' -- +'x v p t t t 4.q q q t 8 5 q t t t t t v v v v t t t t v G v t t t t q q 5 :' -- +' t t t t : q 2 q t t t t t t t 5 t t 8 t t t 8 5 t t t t t t t t : t t t t ' -- +'t t t t t t t t t t t t t t t t 5 t t q v t t t t t q 8 5 t t t t t 5 t t t' -- +' t t 5 8 5 t t t t t t t t t t 5 8 t t t t t t t t q q t t t t t t t t t t ' -- +'t t t t u t t t 2 u v G v v t t t t t t t t t 5 t t t t 5 t t t t q q q t t' -- +' t t t t t t t t t t 2 q t t t t t t t t u 8 t t 8 t t t t t u v t 8 t t t ' -- +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 t t t q t t t t 5' -- +' t t t t t t t t t p c l t t t t 8 t 5 t t t t 8 t t t t t t t t t t t q q ' -- +'2 q t t t t t t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t 5' -- +' t t t t t 8 5 p T Q i t t t t t t t t t t : t t p ~ ^ 5 t t t t q 2 q 5 t ' -- +'t t t 5 8 t t t t t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t : t' -- +' t t t t t t t t t t t t t t t 5 t t t t t t t t : t t t p h u t t t t t t ' -- +'5 t t t t t t t t t t t t t t t t t t t t t v u t t t t t t t t t t t t u p' -- +' u t t t t t t t t t q t a q t t t t 4.t 8 5 t u G L Q : q : t Q t t u 2 q ' -- +'q q q t t t t t t q q 2 q t t t t t 5 t t t t t t t t t t t t 5 t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t t t t 5 T q t t t ' -- +'t 2 t 2 q q t t t 8 t t t t t t t t t 5 q 8 t t t t q 2 t t t 5 t t 5 8 t t' -- +' 5 8 q 5 t t q 2 q q t t 2 q t t t t t t t 5 t 8 2 q t t t 5 v ^ V T t 8 t ' -- +'t 8 q 8 t t t t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t 8 t t' -- +' t t t t t ^ 2 q 5 t t t t t t t t t t t t t t 8 5 5 t 8 5 t t 8 t t 8 t t ' -- +'8 t t t u 2 q q t t t t t t t t t t 4.t t t t p u t t t t t t t t t 5 t 5 t' -- +' 5 8 t t q t t t t t 5 q 8 5 t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t q q q 5 t t t t t t t 8 t t 8 5 t t t t p j 2 q t t t t : t t t t t t t t' -- +' t u 2 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoXn.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t t' -- +' t t t u u a t t t t t t 8 t t t t t t t t t t 5 u 8 t t t t t t t t t t t ' -- +'t t t t ! ] T t t t t 5 t t t t t t : t t t t t t t t t t t t t t t t t v 8' -- +' 5 t t 5 q t t t t q q 2 q 8 5 t t t t t t q 5 q q q 2 t t t 8 t t t t t t ' -- +'t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t 8 t t t q V t t t t t u t u t t t t t t 5 8 t t t t t t t q 8 5 t t 5 ' -- +'8 t u 8 t t 8 t t t t t t 8 5 8 t t t 5 q t q t t q t t t t t t t 8 5 t q q' -- +' t t t t 8 t t t q t t t t Q Q ~ t t e e e t t t t t t t t t t t t t t q q ' -- +'q q t t t t t t t t 5 t t t t t t t v t q q t t t t t t t t t t t t t t t t' -- +' t t t t t t 5 t t 5 t t t t t t 8 q q 2 t t t t t t 5 8 8 t t 4.t t t t t ' -- +'t t t t t 8 t t t 8 t t t t 5 t t 5 t t t t t 8 5 5 8 t q t t t 5 8 t t t t' -- +' t t t t t t t t t t t t t t q 2 q t t t t 5 8 t t t t t t 8 5 t t t t u 8 ' -- +'t t t t t t t t t t t 5 t t q q t t t t t t t t t t t t t t t t t t t t t t' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' -- +'t t 5 t t 8 t t t t t t t t q t t t t t t t t t t t t 8 5 t t 8 t 8 t t 8 2' -- +' t t t t t t t t t t t t t 5 m j $.|.$.t t t t t t t t t t t t t t t t t t ' -- +'t t t v Q Q v u t t t t 5 8 t t t t t t t t 5 2 q 5 5 q q t t t t t t t t t' -- +' 8 u t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t ' -- +'t t t t t t t u t t t t t 8 t 5 t t t t t t t 5 8 t t g g i t t t 8 5 5 8 t' -- +' t t t t 8 t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t q q t t t t ' -- +'q q t t t t t t 5 8 q q q q t t t t t t 5 t t t t t a ) `.].E e e e r u t t' -- +' t t q 5 t t t t 5 t 8 5 q t t t u 8 t t t t t t t t t t t 5 t t t t : t t ' -- +'t t t t t q q t t t t t t t 8 5 t t t t t t t t t t t 5 8 t 2 t t t t t t t' -- ,' t t t t t t t t t t t t t t t 8 5 t t t t t t t 8 t l ` ! t t t t 8 t t t ' -- +'8 t u 2 t t t t t t t t t t t : t t t t t t t t t t t t q q t t t t t t 5 8' -- +' t t t t t t t t t t t q t t t t t t t t t t 5 8 q q q 5 t : t t t t t t t ' -- +'t 5 t t t 5 t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -- +' t t t t t t t t t t t t q t 8 t t 5 t t t t t t t q 5 8 5 t t t t t t t t ' -- +'t t t t t t 5 t 5 t t t q t t t 5 8 t t 5 8 t t t t m m y _ :.[ t t t t t t' -- +' t t t t t t t t t Q v t t t t t t 4.q 2 t t t t t t t t t t t t t t q q q ' -- +'q q 2 q t t t t t t t t t t t t 5 8 t 8 t t t t t t t t t 5 8 t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t g x u t t t 5 t t t t t t t t t 8 q ' -- +'t u x P p t t t t t t t t t t t t 5 t t t t t t t t t t 5 8 t t t 5 t t t t' -- +' t t t t t t 2 q t t t t t t t t t t t 5 q t q 2 q 5 t 8 t t t t 8 t t t t ' -- +'t g `.dX XW e e e G v Q v t t t t t t t t 8 t t 8 5 q t q 2 t t t t t t t t' -- +' t t t t 8 t t t t t t t t t t t t 2 t t t t t t t t t t t 8 t t t t t t t ' -- +'t t t t t t t t t h 8 a 8 5 t t t t 5 8 t 4.t t t t t t t t t 5 8 t t t t t' -- +' u ] +X|.v t t t 5 t t t t t 8 t t t 5 8 t t t t t t t t t t : t t t t t t ' -- +'t t t 2 q t t t t t t t t t t t t t t t t t t 5 t t t t Q t t t t t 8 8 q 5' -- +' q 2 q t t t t t t t t t t 8 t t t 8 t 5 8 t t t t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 8 5 t u 2 t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t 5 5 8 5 t t t t 5 y q 5 t t q 5 t t t t t t t ' -- +'t t t t y j q a t 8 8 t 8 u 5 q q 5 8 q T v t t t t t t t t 4.q t t t 8 t t' -- +' t t t t t t t q t 8 t t t t t t t t t t t 5 8 t t t t t 8 t t t t t t t t ' -- +'t 8 t t t t t t t t t t t t t t t t t t 8 5 5 q q 2 q : t t t t g x t t t t' -- +' t t t t 5 t t t t t t t t t i i t t t t t t t t t t t 8 t t 2 q q q 2 q 8 ' -- +'t t t t t 8 5 8 t t t t t q 2 q t t t t t t t 8 t t t t t t 5 8 t t t t t t' -- +' t q 5 8 5 t t t 5 t t t t g #.$X].W e e e e 8 t t t t t t v T u 5 8 t t t ' -- +'t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t 5 8 t t t t t t t t t' -- +' t t t t t t t t t t 5 t t t t 8 q 2 q u ) +.T t t 5 t t t t t t t t t t t ' -- +'t t t t t t t t t t t q 5 q ] |.>.v t t 5 5 t t t 8 5 t t t t t t 8 t t t t' -- +' t t t t t 8 t t t 5 q 2 q t t t t t t t t t 8 t t t t t t t t t t t t t t ' -- +'q q 5 T t t t t t t t t t t t t : t t t t t t t t t t t 2 u t t t t 5 8 q q' -- +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8 t t t t 8 ' -- +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t q 8 8 t t t t t L *.]' -- +' u t t 8 t t t : t t T t t t t t t t t q p g p 2 ^ v v T 2 q 5 5 2 u t t t ' -- +'t t t 8 t t 5 t t t 5 t 8 t t t 8 5 t t 2 u 5 t t t t t t t t : t t t t t t' -- +' t t t 5 t t t t t t t t t 5 u t t t t 8 t t t t t t t t t t t t 5 8 q q q ' -- +'q 5 t t t t t u t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5' -- +' 8 t t t t q t q 5 q q 5 t t t t t 5 q t t t t t t t t q q t t t 8 t t 5 t ' -- +'5 t t t t t t t t t t t t t 5 : t t t t t t 8 t t t t P +.) u e e e t 8 t t' -- +' t : t t 5 t V T t t 8 5 t t 8 5 t t t t t t t t t t q 5 5 8 t t t 8 t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t 5 5 q q x `.].) t t' -- +' 8 t t t t t t t t t t t t t t t t t t t t t t 2 8 5 p ^ Q q t t 8 8 t t t ' -- +'t t t t 5 8 t t 5 t t t t t t t t t t t 5 t q q q 5 t t t t t t t t t t t t' -- +' t t t t t t t t t t t t q 2 T V t t t t t t t t t t 8 5 t t t t t t t t t ' -- +'t t t q 8 t t t 8 t 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -- +' t t t t t t t t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t ` XX>.l t t 5 t t t t t : 5 Q t t t t t t t T g L c i t' -- +' t t 5 8 t q q 2 t t t t 8 t t t t t q t t t t t t 5 8 5 t t 8 t t 8 t t t ' -- +'t t t t t t t t t t t t t t 5 t t t t t t t 5 t t t 5 q v ~ i q 5 8 t t t t' -- +' t q 2 t t t t 8 t 2 q q 5 t t t t t t t t t t t t t t t t t t t Q : t t t ' -- +'t t t t t t t t t t t t t t t 8 t t t t t t t 8 5 t q 5 t t q 5 u 8 t t t 8' -- +' t t t t t 5 t t t 8 t t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t a q t 2 u t t t t t t t q t 5 8 t q 2 t t 5 8 v L v L 5 5 t t t t t t t' -- +' t 5 8 2 T t t t 5 t t t t t t t 5 t t t t 8 t t t t t t t t t t t t 5 t t ' -- +'2 u t t t t 2 u ) +.P 8 t t t t t q t t t t t t 4.t t t q 5 q 2 5 8 t t q q' -- +' t t m m t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 8 5 t ' -- +'q t t t t t t t t t t t t 5 t t t t q t t t t t t t t v u t t 8 t t 8 t t t' -- +' t t t t t t t t t t t t t t t t t 5 t t t q 8 t t >.oXoXoXoXoXoXoXoX>.",' -- +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t 8 t t t 5 t 8 5 t t 8 5 t t t' -- +' t t t t t t a t 8 t t t t t t t t t t t 2 u b '' ~ u t t t t t t t t t t Q' -- +' t t t t Q Q Q t p x l u q t t t t t q q q t t t t 5 t t t 4.5 t t 8 5 8 t ' -- +'t t t t t t 5 t t t t t 8 5 t t 8 5 t t t t t t t t t 8 t t 8 5 t t t 8 t t' -- +' t 8 c >.XX` 5 8 5 t t t t t t u t t t t t t q 5 8 q t t t t t t t t t t t ' -- +'t t t t t t t t Q t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t q 5 8' -- +' t q t t t t q 2 t t t t 5 t t t t t 8 t t t 5 t 5 t t t t q t t t t t t 5 ' -- ,'t t t t t t t t t 8 t 5 t t t t 5 q q t t t t t t t t 2 t q 5 8 q q t t 8 5' -- +' u 5 u 5 t 8 : t v t t t t t q q q T t t t t t t t t t t 8 8 t 8 5 t 5 t t ' -- +'t t : t t t t t t t 8 t t q 8 t t t q q t q u t t 8 t 8 5 q 5 t t t t t t t' -- +' t t t t q q q t t t t q q t t 5 m t t t t t t t 5 8 t t t t t t t t t t t ' -- +'q t t t t t t t t t 5 8 t t t t t t 5 p u t 5 8 t t 8 t t t 8 5 t t t t t t' -- +' ^ ] v t t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t 8 t t t 5 t t ' -- +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q 2 8 5 t t t t 8 t t t 8 5 t' -- +' t t t 8 5 t t t 5 8 t t t t t t t t t a ^ ^ t t t t t t t t t t t q 5 q t ' -- +'t t t t t t t t t t Q Q Q t t t t t t t t t t u t t t t t t t t t t t t t t' -- +' t t t t 4.8 8 5 t t t t t t t 5 8 t t t t t t 5 t t t t t t t t t 8 t t t ' -- +'t t t t t t t t t t t t t t t c &.''.~ t t t t t 8 t t t 8 t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t 2 ^ t t t t t t t t t t t t t t 5 8' -- +' t t t t t t t t t t q t q 2 2 q d ` ~ t t t 8 5 q q t t 5 t t t t t t t t ' -- +'8 t t t t 2 q 5 q t t u u t t t 5 t t t t t t t 8 t t t t t t t t t t t t t' -- +' t 8 u t q 8 5 q 2 q q t t t t q q q t t t u v v v t t t t v q t t t t t t ' -- +'t t t t 8 5 t t t t 8 5 t 8 t t t t t t t t t t t t t t t t 8 t t t 8 5 t t' -- +' 5 t t t t t t t t t t t t t t 4.8 5 t t t 5 t t 5 8 t t t t t t t t t i p ' -- +'8 u 2 8 t t t t t t t t q q 5 q q t t y q 8 5 t t t t t t t t i v b t t t t' -- +' t 5 t t t 5 t t t t t t d &..X] 2 t t t t 8 t t t t t 8 5 t t t t t t t t ' -- +'t t t t 8 5 t t t t t t t q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q q' -- +' 5 q t t 5 : 5 t t t t t t t t t t t t t t t t t t t t t t t t t ^ ,.>.v t ' -- +'t t t t t t t t t q t t t t t t t 8 5 t t t Q Q t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t 5 8 t t t 5 t t t t t t t t t t t t t t 5 t t t t 8 ' -- +'t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 v ^ u t t t t t 5' -- +' t 5 t t t 8 5 t t t 5 t t t t t t t t t t t t t t t t t t t t 8 q v t t t ' -- +'t t t t t t t t 5 8 t t t t t t t t t t t 5 8 5 q q q t q ~ .X<.v t t t t 2' -- +' t d x p t t t t t t t t t t t t 8 q q q 2 t a l l u t t 8 t t t t 5 8 t t ' -- +'t t t t t t t 8 t t t t t h p t t 2 u 8 5 q t q t t t t t q 2 t t t 5 t u 5' -- +' t t t t ^ V v t t t t t t t t t q 5 t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t 5 t t t t t t t t t t 8 t t t t t t t t t t t 4.4.t q q 8 q t t 8' -- +' 5 t t t t t t t t t b ^ p q q t t 5 t t t t 8 t 5 5 8 q 2 a l v p u 8 t t ' -- +'t t t t t t i c l i t t 8 5 8 t t t 8 t t t t t t u '' &.~ q t t t t t t t ' -- +'5 t t t t t t t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' -- +','#10'"oXoXoXoXoXoXoX>.q t q q 5 q q q t t t t t t 8 t t t t t t 8 t t t t ' -- +'t t t t t t t t ^ >.>.v t t : t t t t t t t t t t t t t Q Q v t t 8 t t t t' -- +' t t t t t t t t t t t t t t t t t t t t 5 8 t t 8 t t t 8 4.t t t t t t t ' -- +'t t 5 t t t t 8 t t t t t t 8 8 t q q t 8 5 t t t t 8 5 t t 8 5 t t t t 5 t' -- +' t t t t t 5 5 t t 5 t t t t 8 t 5 t t t t t t 8 t t t t t t t t t t t t t ' -- +'t t t t t t t t q q 8 t 8 q t t t t t q t t t t t t t t t 8 t t t t q q 8 5' -- +' q 5 t t ~ >.*.l 8 5 t 8 5 u b T p t 8 5 t t t t t t t t t 5 8 5 q q t u p ' -- +'j u 2 t t t t t 5 t t t t t t t t t 2 8 t t t t t a g g t t t 8 5 t t q 5 t' -- +' t t 8 t t t t t t t t t t t t t t t t v ^ t t t t t t : q 2 q t t t t t 8 ' -- +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t 5 t t t t t t t t' -- +' t t t t t t q q 5 t t t t t t t t t t t t t t v Q p 5 q t t t t 8 5 t 5 t ' -- +'t 8 t q q q c v p 2 q t t t t t t t t t u t t 8 5 t t t t t t t t t t t p b' -- +' p ~ x q t t t 8 5 t t t 8 t 5 t t t t t t t t t t t t t t t t 8 t t t t t ' -- +'q t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t q 2 q q q 2 t t t t t t' -- +' t t t 5 8 t t t t 5 t t 5 8 t t t t t t 8 L V t t t t t t t t t t t t t t ' -- +'t t Q Q t u t t t t t t t t t : t t t t t t t t t t t t t t 8 5 t t t t t 5' -- +' t t t t 4.t t t t t t t t t 8 t t t t t t t 8 t t 5 t 5 8 5 q 5 q 8 5 t t ' -- +'t 5 t t t t 8 t t t t 8 t t t t t 8 5 8 t t t 8 t t t t t 8 t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t 5 8 5 5 t t t t t 2 u 8 5 8 t ' -- +'t t t t 5 t t t t t q 2 q q q t t H ` x 5 5 8 t t t t i p t t t t t t t 8 5' -- +' t t t t t t 8 5 q t t t 5 q q t t t t t 8 t t t 8 t t t t t 8 8 t t t t t ' -- +'8 a u 8 t t q 5 t 8 5 8 t t t 5 t t t t t t t t t t t t t t t t t t t t t t' -- +' Q Q G q q q t t 8 5 t t t t t t t t t t t : t t t t t t t t t t t t t t t ' -- +'t t t t t t q H ....p t t t t t t t 4.4.2 8 5 8 t t 8 5 t t t t t t t t t u' -- +' q q 2 t 5 8 t t t t t t t t t 5 t q i i 5 q t t t t t t t t q 5 t t t t t ' -- +'t t t t t t t t 8 5 5 x ! l G t t t t t t t t t t t t 8 t t t t t t t t t t' -- +' t : t t t t 5 t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: ' -- +'t t t t t q t t t t t t t t t t t t t t t t 8 t 8 t 8 t t t t 5 t t t t t t' -- +' t t t t t t t Q v Q : t t t t t t 5 2 t t t t t t 8 G 8 t t t t t t t t t ' -- +'t t t t t 8 5 t t t t t t t t t t N 2 2 t t t t t t q q q 5 t t t t t 5 t t' -- +' t : t t 2 q t t t t t t t t t t t t t t 5 8 t 8 5 t t t t 5 t t t t t 8 t ' -- ,'t t t t 5 t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t q t t 2 : G -.-.G t q q t t ' -- +'t t t t t t t t t t t t t t u t t t t t t t t t t t t t t t t t t t t t t 5' -- +' t 5 t t t t t t t t t t t t t t t t t t 2 q q q 2 q t t t t t t t 5 8 t t ' -- +'t t t 8 u 2 q t t t t 5 t t t v L t t t 5 t t t t t t t t t t t t t q 5 q t' -- +' 2 q t t t t : t t t t t t t t t t q d -.#X#X..t t t t t t t t 4.t t t t t ' -- +'t t t t t t t 8 t t t t 5 8 t t t 8 t t t t t t t t t t t q q 2 t t 5 t t t' -- +' 8 5 t t t t t t : t t t t t t t t t q q q 8 t p j ! t t t t 5 t t t t t t ' -- +': 5 q 5 8 5 q t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' -- +','#10'"oXoXoXoXoXoXoX>.t t t t t t q q t t t t t t t t t t t t t t t t t 5 ' -- +'t t t t t t t t t t t t t t t t t t t v v u t t t t t t t t q q t t t t t t' -- +' q G t t t t t t t t t t t t t t t t t t t 8 t t t t t q t t t q t t t t t ' -- +'t 2 q 2 q t t t t t 8 t t t t t t q 5 t t t t t t t t t t t t t t t t t t t' -- +' t t 5 t 8 t t t 8 t 5 t t t 5 t 8 t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t 5 t t t t t t 5 8 t 5 8 t t t t t : t t t t t t t t t 5 t' -- +' t q t G -.-.G t 5 q t t t t t t t t t t t t t t t p x x t t t t t t t t t ' -- +'t t t 8 5 t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t q t q 5 q' -- +' q q q t t 5 t t t t t t t t t 5 v q q t t 5 8 8 t t t u 5 t t t u v v v t ' -- +'t t t t t t t q t t 8 5 t t q q 5 q t t t t t t t t t t t t q b /.aXsXX.u t' -- +' 5 t t t t t t t t t t t t t t 8 t t t 5 t t t t t t t t t 5 t t t t t t t ' -- +'t t t 5 l T j t t 8 t t t t t t t t t t t t t t t t t t t t t 2 q q 5 t t 2' -- +' ^ t t t t 8 t t t t t t t 2 q q q q 2 t t t t t t t t t t t t t t t t t t ' -- +'t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 8 2 5 5 8 t t t' -- +' t 5 t t t t t t 8 t t t 8 t t t t 5 t t t t t t v V T t t t t t a t t t t ' -- +'t t t t t q 5 8 t t t 5 8 q T t t t 5 8 t 8 t t t t 5 t t t t t t t t t t t' -- +' t t 2 4.t t t t t t t : t t q q q 5 8 t t t t t t t t t q 2 q t t t t t t ' -- +'t t t t t t 8 u t t t t t t t 8 t t t t t t t t t t t 8 t 5 t t t t t t t t' -- +' t t 2 u u d p a t t t t t t t t t t t t t L t t t t t t t t t t 8 5 t t t ' -- +'t t t t t t t 5 t t t u t t t t t H H t t 2 q t t t t t t t t t t t t t t t' -- +' p L P 8 t t t t t t q t t t t t t t 8 t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t 8 5 q t t 8 t t t t t t t t t 5 T 5 q t t t t t t' -- +' t t 5 8 t t t t t t ^ V t t t t t t u 2 t t t t t t 5 8 8 5 t t t t t t t ' -- +'t t t t t 2 q o.^.~./ t t 8 t t t 8 5 t t 4.4.t t t t t 5 t 5 t t t t t 8 t' -- +' t t 5 t t 8 q t t t t t t u 8 t @.''.@.u 5 q t t t t t t t t t t t t t t t' -- +' t t t t t t q 5 q t t t t t t t t t t t 8 5 t t t t q 5 q q q t t t t t t ' -- +'t t t t t 5 t t t t 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' -- +' t t t t 5 5 q q 8 5 8 t t t 8 t t t t t t 5 t t t 5 t t t t 8 t q t t t T ' -- +'^ 8 t t t t t t t t t t t t t t t t t t t t t t t t 2 u v t t t t t 5 t t t' -- +' p p u t 5 8 t t t 5 8 t t t u u 4.t t t t t t t t t t 5 q q 8 5 t t t t t ' -- +'t t t 5 q q q t : t t t t t t t t t t q 2 t t t t 5 8 t t t t 8 5 t t t t t' -- +' t t t t 8 8 t t t 5 t t t t t q 8 t j p q t t t t t t t t t t t t 5 G q t ' -- +'t t t t t t 8 t t t t t t t t t t t t t q 5 j ..-.o.t q u t t t t t q 5 t t' -- +' t t t t t t t t 5 8 t t t u x g 8 2 t t t t t t t t 8 t t t t 5 t t t t q ' -- +'t 8 t t 8 5 t t 8 t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t t' -- +' t 8 5 8 T q 2 t t t t t t 8 5 8 5 t t t t t t q q 8 5 t t Q Q v t t t t t ' -- +'t t 8 5 8 q t t t t t t t t t t t t q 5 8 G b q t t t t t t t t 8 5 t 4.t t' -- +' t t t t t 8 t t t t t 5 t t t 8 t t u 2 t t t t t q 2 t g #.$X@.p q t t t ' -- +'5 8 t t t t t t t t t t t t t t t t t q q 2 t t t t t t t t t 8 t t t t t t' -- +' t q q 2 q q t t t t : t t 8 5 t t 8 t t t t 5 t t t 8 >.oXoXoXoXoXoXoXoX>.' -- +'",'#10'"oXoXoXoXoXoXoX<.t t t t q q q 5 t t t 5 t t t 8 t t t t t t t t t t' -- +' t t t t v ^ v ^ 2 t t t 8 t t t t t t q q 2 t t t t t t t t t 8 t t t q 2 ' -- +'q t t t t 8 t t 5 t t t t p l a t t t 5 t t t t t 5 a l d t t t t t t t t t' -- +' t t t t t 8 t t t t 5 t t t t q : t t t t t t t t t t t t t t t t t 5 t 8 ' -- +'t t t t t t t t t t t 8 t t t t t t 8 5 t q 8 t t t t t t t t a q 5 u 2 q t' -- +' t t t t t t t t 8 v t t 5 8 t t t t t t t t t t t t t t u 8 t t q 5 ( #XiX' -- +'^.H q 5 8 t t t q 2 q t t t t t t t : t 8 t t 8 u t q t t 8 t t t t t t t t' -- +' t t t t t t t 2 q 5 q t t 5 t t t t t t 5 t t t t q t t t t t q q 5 8 5 8 ' -- +'t t t t t t q 2 5 8 t t t t 5 8 v t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t 5 q V T t t 5 u 5 u t 5 2 q t t t t t t t t t t t t 5 q 5 8 5 t t ' -- +'t t 5 8 t t 8 5 t t 5 8 t t t 5 t t 8 t 5 t t t t t t 5 8 t t t t t t t t 8' -- +' 5 t t 8 ! _ R t t t t t 8 t t t t t t t t t t 5 q q 2 t t t t t t t t 2 t ' -- +'t t 5 t t t 5 t t t t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t t t t' -- +' t u >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 2 q 8 t t 8 t ' -- +'t t 5 t t t t t t t 5 t t t 8 t t T 2 8 5 q q t 5 t t t t t 8 t 5 q q t t t' -- ,' t t t t t t 5 t t t t q q t t t t t t t t t t t t u u t t t t 8 t t t t t ' -- +'8 u l p t t t t t t t t t t t t t t 5 t t t t 8 t t t t 5 t t t t t t t t t' -- +' t t t t t t t t t 8 t t t t t t t t t t t q t 5 t t t t t t 5 q t 5 t t t ' -- +'5 5 8 t t t t 5 q 8 5 t t t u p i t t t t 2 ^ t t t t t 5 t t t t t t t t t' -- +' t t t 2 t t t t 8 | #XiX^.H t 8 5 t t t t q q t t t t t t t t t 5 t t q 2 ' -- +'t t t 2 8 t t t x R i 2 t t t t 8 t t t u 8 t : t t t t u 8 t t t t t t t t' -- +' q 2 t t t t q q q 5 t t t 8 5 8 t t q q t t t t t t t t t t t t t t t t t ' -- +'t t t 8 5 t t t t t 8 t t t t t t q q q q t 8 2 v L v v u t q t t t t t t t' -- +' t t t t t 2 q q q q t t t t t t t t t t t t t t 4.4.t 8 t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t 8 q' -- +' q q t t t t 8 5 t t q t t t 8 t t t t t t 8 t t t t t t t t t t t t t t t ' -- +'t t t t t t 5 8 t t t t t t 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' -- +' t t t t t t : u 2 t t t 5 t t t t t t t t 5 L v ^ t 5 q t q t t t t t t 8 ' -- +'t t t 5 8 5 q q q 5 t t t t t t t t t t 5 8 t q 5 q 8 t t t t t t 8 t t p u' -- +' 5 q t t t t t t 5 8 t t t t u 4.t t t t t t q 2 t : t t t 8 t t t t t t t ' -- +'t t t q 2 t t t t t t t t t t t t t t t t t t t 5 8 t t t 5 t t t 2 q t t t' -- +' t t t t t 8 t t t t t t 8 t t t t t t 8 t 5 8 t t 5 p c g t t 8 5 q t t t ' -- +'t t t t t t t t 8 5 t t t t t t q t 8 5 t t b X.~.o.5 t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t q u x g O.:.) u t t 5 t t t t t t p x u u ' -- +'t t t 2 q t t 5 8 q 5 t t t t t t t : q 2 2 q t t t t 8 5 q q q 5 t t t t 8' -- +' 5 t t t t t t t t t t t t t t t t t t t 8 5 t t t 8 t t 5 q q 5 q 8 5 q q ' -- +'t t v q t t t t 2 u t t t t t t : t q 5 q q t t t t t t t 8 t t t t t t t t' -- +' 4.t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t 5 q q 5 q q t t t t q q T T 5 8 t t t t 8 t t t t t t' -- +' t t t : t t t t t t t t t 5 t t t t t t t t t t t t q >.oXoXoXoXoXoXoXoX>.' -- +'",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t q t t t 8 t t t t t t t v T q t :' -- +' t 8 5 t t t t t t t t t t 5 t 8 5 q t q 2 q t t t t t t t : t t 8 5 q q q ' -- +'2 5 t t t t t t t q p c c t t t t t t t t t t t t t t t 4.t t t t t q q q 5' -- +' q t t 5 t t 5 8 t t t t t t q q q t t t t t t t t t : t t t t 8 5 t t t t ' -- +'t t t t 8 t t t t t t t t t 8 5 t t t t t t t t t t t t 8 5 t t t t 8 q t t' -- +' t u p i t t t t q q t t t t 8 t v ~ v t t t t t t t t t t t t t t t t t d ' -- +'m t t t t t t t q 5 t t t t t t t t t t t 8 5 t t t t t t u ) `.+.O.:.[ t t' -- +' t t 8 5 8 t t g +.;.I 2 q t t t t t t 8 5 8 q t t t t t t t t 5 q q q t t ' -- +'t t 5 q t q 2 q t t 8 t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t' -- +' t 5 t : q 2 8 5 5 8 t q : 5 u t t t t Q R v 5 8 t t t t t t q q 2 q t t t ' -- +'t t t t t t t 5 8 t t 8 t t t 4.t t t t 8 t 8 t 5 t t t t t t t t t : t t t' -- +' 5 8 t t t t t t t t t t 8 5 t t t t : t t t t 5 8 q q 2 5 : t t t q 2 T 5 ' -- +'q 5 t t t t t t t 5 t t t t t t t t t t t t t t t t 8 t t t 5 8 t q t t t t' -- +' t 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t q 5 t t t t t t t t t ' -- +'t u t t t t t t t t q t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t v t t 8 t 8 u x l u 2 q 5 q q q t 5 8 5 t ' -- +'t t t t t t t t t t 5 8 t t t t t t 8 t t t t t t 5 8 t t t t t t t t t t t' -- +' t t 5 8 t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t t q 2 8 ' -- +'q t t t t t t t t t t t t t t u q t t t t t t t t t t m j >.OX<.l 8 t t t t' -- +' t t t t t t t 8 5 t t q q q 5 t 5 t t t 5 t t q 5 q q q t t t t t t t t t ' -- +'t t t t p +. X#.P v p t t t t t t t 5 8 x `.].) t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t 5 t t t t t t ' -- +'t t t t 2 q t t t t 8 5 t t t 8 t t t t t 5 8 t 5 t t t t t t t t t 8 v ^ t' -- +' t t t q q t 8 t t t t t t t 5 q 5 t t t t t t t t t t t 4.t t t t t t t t ' -- +'t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' -- +' t t q 8 5 8 t t t t v u 2 q t t t t t t t t t t t 5 t t t t t t t t t t t ' -- +'q q q q 5 t t t 5 t t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q' -- +' q 8 q t t t t t t t t t g x ~ ^ : t t t t q 2 t t t t t t t t t t t t t 5 ' -- +'t t t t t t t 8 t t t t 5 8 t t t t t t t t t t t t t t t Q t t 5 t 5 t u u' -- +' t t q q 2 q t t 8 q t 8 t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t 8 5 t t t t t t t 5 8 t t 8 t t 5 q t t t t t' -- +' 8 t t t t t t t t q u p g t t t t t t : t t t t t t t 2 q t t t t t t t t ' -- +'t t t v XXzX.XG t t t t t t t t 8 t t 5 t t t t q q 2 q t 8 t t t 8 t t : t' -- +' 2 q t t t t t t t t t t t t t t q ) +.) t t t t t t t t t t 8 8 8 R +.c t ' -- +'t t t t t t t t t 8 5 t t t t t t t t t t q t t q t t t t t t 5 8 t t t t t' -- +' t q V t t 8 t t t t t 8 t t t 8 u t t t t e e e t t t t t t 5 t t t t 8 q ' -- +'t t t t 8 5 t t t 5 t : t t t t q 2 t 5 t t t t t t t : t 8 t t t t t t 5 8' -- +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t 8 ' -- +'5 t t t t t t t t t t 5 8 t t 5 q 8 5 t t t t t t q q t t t t t t t t t t t' -- ,' 8 t t t t t t 2 q t t t 5 2 q 2 q t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.' -- +'",'#10'"oXoXoXoXoXoXoX>.t t 5 8 t t t t t t t t t ~ ] j q 5 t t t t 5 q 8 t' -- +' t t t t t t t t t t t 8 t t t t t t t 5 t t 5 8 t t t t t t t t 5 8 t : t ' -- +'q t t t v 5 t t t 2 q : 5 5 t t t t t t t t 5 t t 5 t 4.t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t q 8 q 2 5 t t t t t ' -- +'t t t t t t q 8 5 t t t t t t t t t t t t t 8 u x x p t t t t t t t t t t t' -- +' 8 5 t t q 2 q t t v t t t m t t ..''.| t t t t t t t t t 5 t t 8 t t t t 5' -- +' 8 q 5 t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'5 t t t t t u 2 u 2 8 8 t t t t t t t t t t t t 8 t t t 5 t t t t t t t 2 q' -- +' t 5 8 t 5 8 t t 8 t t t 8 t t ^ t t 8 t t t t t 5 t t 5 t t t t 5 e e e e ' -- +'e t 8 t t t 8 8 5 t t 5 t t t t t t t t t 8 5 t t t t t t T T t t t t t t t' -- +' t t t t t t t 5 q t t t t t t 5 8 t 4.q q 5 8 t t t t t t t t t t t t t t ' -- +'t t t t t t t t 8 5 t t t t t t t t 5 8 t t t t t t t 5 q q 5 q q 2 t t t t' -- +' t t t t t t 8 t t t t t t t t t t t q 2 q q t t t t 5 8 q q t t t t t t t ' -- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t 8 5 t t t t t t t t t' -- +' u p i t t t t t t 8 5 5 t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' -- +'t t t t t t t t t t t t t 2 t t t ^ 8 t t t q t t t 8 t t t t t t t t t t t' -- +' 8 t 4.t 8 5 t t t t t t t t t t 5 t t t t t t 8 8 t t t t t t t t t t t t ' -- +'t : t 5 q q q 8 t t t u 8 t 5 8 t t t 8 5 8 t t t t t t t t 5 t t t t 8 5 g' -- +' x i t t t t t t t t t t t t t t 5 5 q q q : ^ t t : 5 t t 8 p t p p t t t ' -- +'8 5 t t t t t t t t t t 8 5 t t t t t 8 t t 5 t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t 8 t t t t t t q 5 8 t t t t t t t t t t : t t t t ' -- +'t t t 8 t t p u t 5 t t t t t t t t t t t 5 t t t 5 t t v t t 5 q 5 q t t t' -- +' t t 8 t t t t 8 e e e e e t t t t t t t t t t 8 5 8 t t t t t t 8 5 q t t ' -- +'t t t t q 2 ^ v t t t t t t t t t t t t q q 8 5 t t t t t t t t 4.2 p G d t' -- +' t t t t t t t t t t t t t t t t : t t t t t t t t t t 8 t t t t t t t t t ' -- +'t t 8 2 q t t i u t t t t t t t 8 5 t 5 t t t 8 t t t t t t t q q 5 q t t t' -- +' t 8 5 q q t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -- +'t t t t t t t Q Q Q : t t u t t t t 5 q t t 5 q t t t t t t t t t t t t t t' -- +' 5 8 t t t t 8 t t t t t 2 q t t t t t t t t t t 8 u t t 5 8 t t t t q q t ' -- +'t t t t t t t t t t : t t t t q 2 q q t t t t t t t u t a t t t t t t t t 5' -- +' t 5 t t t t t t t t t t t t t 5 q 8 t t t t t 2 t t t t t 5 t t t t t t t ' -- +'t 5 t p x p t t t t 5 t t t t t t t t t t t t t t t t t t 8 t t t t t ^ 8 5' -- +' t t t t m q ..4X4XX.5 2 t t t t t t 8 t t t t t t t t t t t t t 8 t t t t ' -- +'t t t t t 2 u t t t t t a t u P Y h 2 t t t t q t t t : t t t t t t t t t t' -- +' t t t t t t t t t t 8 5 t t t t t u z v u t t t t t t t t t t 8 5 t t t t ' -- +'5 8 u v t t t t t t t t t t t t t t t t t e e e e e t t t t t t t t t t t t' -- +' 5 t t t t t 5 q 2 q : t t t t t t t t t t t q 2 t u t t t t p p t q t t t ' -- +'t t t t t t 8 8 G !.#X!.J t q t q t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t t 5 t t t 2 q t t t t t t t j R l t t t t t t t t t t t t t t 5 t ' -- +'u 2 q t t t q t t t t t q q t t t t t t t q t t t 5 8 t >.oXoXoXoXoXoXoXoX<' -- +'.",'#10'"oXoXoXoXoXoXoX<.u t t t q t Q t t t q 5 : 5 t t t 8 q q p l u t t ' -- +'t 8 5 t t t t t t t t t t t t 5 8 t t t t t t t t u 8 t t t t t t t t ! O.R' -- +' q t t 8 5 t t t 8 t t t t t t t t t t t t t t t t t t 5 q q q 8 t 8 t t t ' -- +'t H ( G t t t t t t t t t t 8 t t t t t t t t t t t t t q q 5 t t t t t q t' -- +' t t t t 8 t t t t t t t t 8 t p v j t t t t 8 5 t t t q t t t t t t t t t ' -- +'t t t t t t t t t t v t t t t t t m z sXLXKXiXG q t t t t t t 5 t t t t t t' -- +' t t t 5 t t t t t t t t t t t t t q 8 t t t t q 2 P `.$X$X].) t a t t q q ' -- +'t t q t t t t t t t t : t t t t t t t t t t t t t t t t t t u l l 5 t t t t' -- +' t t t t t t t t t t t t 8 q 5 t t t 8 5 t t t t t i 5 t t t t t t t e e e ' -- +'t t t 5 8 t t t t t t t t 8 t t t 5 u q q q q t t t t t t t t 8 5 t t q ^ v' -- +' v t t t p G v p 2 t : t t 5 8 t t t 5 8 X.5XNXiX-.t 5 t t t t t t t t t t ' -- +'t t t t t t t t t t t 5 5 8 t t t t 8 t t t u 8 t t t t t t q x ! ] t t t t' -- +' t t t t t 5 t 8 t t t t 8 t t t t t 5 q t t t p b p t t t t t t a g p t t ' -- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXXXa G t t 8 5 8 q t t t q t' -- +' t t t t t t 2 p x y a t 2 q q t t t t l x 5 t t t t t t t t t t 5 8 t t t ' -- +'t t t t t t 8 t t p @.+XO.u t t t q t t t 5 5 5 8 t t t t 8 t t t t t t t t' -- +' t 4.q q 5 q 8 5 5 t t 5 d ..^.o.t t t t t t t t t 5 t t 8 q t t t t t t t ' -- +'t t t 2 q : t t t t t t t t t t t t t 5 8 5 8 5 t t t t u y u t t t t t t t' -- +' t q q q q t t 8 t t t t t t t t 8 t t t t t t t 8 t t t t 5 G iXKXKXiXH q ' -- +'t t t t t 8 t t t t 8 5 t t 2 u t t t t t t t t t t t t t t t t 5 8 t 2 a h' -- +' ].gXGXGXlX XP t t t q 2 q q 5 q t t t t t t t t t t t t t t t t t t t t t ' -- +'t t 8 t t t u t t t t 5 t t t 5 8 t t t t 8 t t t 5 t t t t b H u t t 5 t g' -- +' j u t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t 5 j l u 2 q t t t t ' -- ,'t t t t t t 8 t 5 t q t t t v t t u b x u t t t t t t t t 5 t t t X.sXNXiX!' -- +'.t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t t t t ' -- +'t t t t 8 5 i g ~ 8 t t t t t 8 t t 8 t t t t t 5 t t t t t t 8 2 q t t b ~' -- +' b t t t t t t p L c i q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoX' -- +'] v t t 5 8 u 2 t t t : t t t t t t t u a u t t 8 u q 5 t t t p ^ v p t t t' -- +' t t t t 8 5 t t t t 8 5 t t t t t t 5 t t t O.;._ q t t t t t t t t q 8 5 ' -- +'8 t t t 5 t t t t t t t t t 4.2 q 8 5 5 8 t t t 8 8 ( X.^ t t t t t t t t t' -- +' 8 t t u 2 t t t t t t t t t t q 5 q t t t t t t t t t t t t t t t 8 q t t ' -- +'a u t t t u t t t t t t t t 2 q 5 q 2 q 5 t t t t t t t t 5 t t 8 5 t t t t' -- +' t t t t t t ~.aXaX/.p t 8 5 t t t t t 5 8 t t t t t j x u t t t t 8 5 t t ' -- +'t t t t t t t t 8 8 8 9 ) dXGXKXJXFXgX#.t t t 5 8 5 q q 2 t t t t t t t t t' -- +' t t t t t t t t t 5 8 t t t 5 t 8 5 t t t t t 8 t t t t t t 8 t t 5 t t t ' -- +'t 8 q t G N.~.( q 5 q m p g t t t t t t t 5 8 t t t 5 t t t t t t t t t t t' -- +' t q t l v u q q 5 t t t t t t t t t 5 8 q t t t t t t t t 5 u T 5 t q 5 t ' -- +'t t t t 8 t t t ^ ~.#X^.( t t t t t t t : t t t t t t t t t t t t t t t t t' -- +' t 8 5 t 8 t t 8 5 t t t t 5 8 t t u 2 v ^ t t t t t t 5 t t t 5 t 8 t t 8 ' -- +'t t t t t t 5 q q q t p v p t t t t t t t p p t 5 8 t t >.oXoXoXoXoXoXoXoX>' -- +'.",'#10'"oXoXoXoXoXoXoXXXu t t t t t t t t t t t t t 8 t t t t t t t 2 u t ' -- +'t t p p t : p b v u t t 5 t t t t t t t t t t t t t t t t q q t t q 5 i x u' -- +' 5 t t t t G u t t t t t t t 5 t t t t t t t t 8 t 2 u t t 8 t t t t t t t ' -- +'t q d u t t 5 8 t 8 t t t t t t t t 5 t t t t t t t t t 5 8 t t t t t t t t' -- +' t t t t t q t t t t u g v p t t t t t t t t t t t 5 t t t 5 8 t 5 t t t 8 ' -- +'5 t 8 5 t t t t t t 2 q t t t t t t t y ~ ( d q : t t t t q 2 t t t t t t t' -- +' u G ^ l 8 8 t t t t t 8 5 t t t 8 t 8 t t t t 8 O.dXJXKXKXKXgX`.8 t t t t ' -- +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t u ^ ^.#Xo.t t t t u 5 t 8 t t t t t t t t t ' -- +'t t t t : t t t t t t t t t t t u p 5 8 t t t t t t t t 8 t t t t t t t t t' -- +' t t 8 5 t t v ^ R t t t t 8 5 5 q t t t t G ~ G t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t 8 t t t t t t t t 8 5 t t t t v t t 8 5 t' -- +' t t t t t t t t 2 u t t t t t t t t t t t t 5 t t t t t t t t t t t t 5 t ' -- +'t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t t 8 t' -- +' t 5 t t t t t t t q 8 t t p c g t t t t t t t t 8 t t t t t t t t t t t t ' -- +'t t t t q 2 t t : t q q 2 8 t t t t 8 v t t t t t t t 8 t t t t t 8 t t 5 t' -- +' q 8 t t 5 t t 5 t t t t q 2 : t t t t t t 5 t t t 8 5 t t t 8 t t t t t t ' -- +'t t t t t t t t t t t 8 5 t t t t t t q 5 t t 2 p l p t t t t t t t t t t t' -- +' 8 t t t t t t 8 t t t t t t t t t 5 8 t t 8 u t t t t t t t t t t 5 t t t ' -- +'t t t t q q 8 5 t t t t t t l c u 5 5 8 t t t t t t t t t 5 t t t t 5 t t )' -- +' $XCXKXKXGXdX+.a t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t : t t t t t t t t t t t t t t t t t t t t t t t v t d o.-.J t t t t 5' -- +' 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t t 8 5 ' -- +'t t t 5 t t t t 5 8 t t 5 8 t t t t t t 8 2 Q t t t 5 8 q q t t t 4.5 t : t' -- +' t t t t t 5 8 t t t t 8 t t t 8 t t t 8 t t t t t t t t t 5 t t t t t t 8 ' -- +'t 5 8 q t t t u t t 5 8 t t t t t t t t t q 8 t t t t t t t t t t : t q t t' -- +' t t t t t t t t t t 8 t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -- +'8 2 t t t t t t t t t t t 8 t t t t t t t t t t t t u g p t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t 5 q t t t t t t t t t t t t t v t t t t q ' -- +'t t t 5 t t t t t t 8 t t N 2 5 t t t t 8 t t t t t t t t t t t t t t t q t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 5 q q t t 8 5 t t t t ' -- +'t t t t t t q 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t Q t t' -- +' t t t t t t t t t t t t t t t t q 5 q 8 t 8 t t 8 t q q u q 5 5 t t 5 8 t ' -- +'t t t t t 8 t t t 8 t t t ;.dXlXjXgX].x t t t t t t t t t t t t t t t t t t' -- +' t t t t : t t t t t t t t t t t t t t t t t t t t t t t t q 2 t : t t t t ' -- +'5 ^ 2 q t t u t t t t t 8 t t t t t t t t t t q t t t t t t t t t t t t t t' -- +' t t q q 5 q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t ' -- +'t 8 v u 2 t t t 4.t t t t t t t t t t t t t t t 5 t t t 5 t t t 5 t t t t t' -- +' t t t t t t t t t t t t t 5 q 5 q q q a u 5 8 t t t t t t t t t t t t t t ' -- +'5 8 q 5 t t t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>' -- +'.",'#10'"oXoXoXoXoXoXoX>.q q 8 5 t t 8 5 5 t t t 5 t t t t t t t t t t t t ' -- +'t t t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t q : t t t t t t t' -- +' t t t q q 2 u t t t t 2 u 8 t 8 t 8 5 t t t 5 t t 4.2 8 t t t t t q t t t ' -- +'t t 8 5 t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t 8 5 8 t' -- +' t t 2 t t t 5 8 t 8 t t t t t t t : 5 q 5 8 t t t t t t t 8 t t t t t 5 8 ' -- +'t t t t 8 t t 8 5 t Q t t t t t t t t t t t t t t t t t t t t 8 5 t 5 t t 5' -- +' q 5 2 2 q q 8 t t t t t t t t t t 5 t t t t t t t g +.].].`.K t t t t t t ' -- ,'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t q q q 5 t t t t 8 v q q t t t t t t t t 5 8 t t t t t t t t t 2 t ' -- +'t t t t t t t t t t : t t t t 5 q 2 q t 5 8 t t t t t t t t t t t t t t t t' -- +' t t t 5 8 8 t t t t t t t 5 u T v t t t t t t t t t t t p u t 5 8 t t t t ' -- +'t t t t t t t t t t 8 5 t t 8 5 t t t t 8 t t t t t q q q 2 2 u b l u t t t' -- +' t t t t t t t t t t 8 5 8 5 8 q t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.q 2 q q t t t t 8 t t t t' -- +' t t 5 t t 5 q t t t t t t t t t t t t t t t t t t t t 8 t t t t u g g t t ' -- +'t q t t t t t t t t t t t t t q 8 5 t t t t t t t t 8 5 t t t t t t t t t 5' -- +' t t t t t t t t 5 q 8 5 t t t t t t t 8 t t t t t t t t 8 5 8 t t t : t t ' -- +'t t t 5 8 t t q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' -- +' t 8 5 t 5 5 t t t t t t t t t t 5 t t 5 8 t Q t t t t t t t t 5 8 t t t t ' -- +'t t t t t t t t t t t t 8 5 8 u 5 8 t t t t t t t t t t t t t t t t t t t t' -- +' t u t u t t t t t t t t t t t t t t t t : t t t t t t : t t t t t t t t t ' -- +'t t t t t t t t t t t t t q 2 t t q 2 q q t t t t t v t t t t 5 q t t 8 t t' -- +' t 5 8 t t t t t t t u 5 8 t t t t t t t t t t t t t t q q q t t t 8 t t 8 ' -- +'t t 8 5 t 8 5 t 8 t t t t t t 2 q t t t t 5 t t t t 2 q t t t 4.t t t 5 q 5' -- +' q 5 p T x t t t t t t t t 2 q q t q 5 8 2 q t t 8 t t t t t t t t t t t t ' -- +'8 t t t t v p v v u t 5 8 t t t t t t t t t t t t t t t 2 q t t t t t t t t' -- +' t t : t t t t t t t t t t q 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -- +'5 q t q t t t t t t t t t t t 8 t t 5 q t t 8 5 t t t t t t t t t t t t t t' -- +' 5 8 t t t t t u p i t t 8 5 t t t t t t t t t 8 t t t 5 5 8 t t t t t t t ' -- +'t t t t t t t t t t t t 8 t t t t t t t t 8 5 5 8 t t t t t t t 5 t t t t 8' -- +' 5 t t q 5 5 8 t q 5 t t t t t t 8 t t q q t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t 5 t t t t t t 8 t t t t 8 t t t t t t t t 8 5 t Q t t' -- +' t t t t 8 5 8 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t 5 8 t t t 8 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t q q t t 5 q q q t t t t ' -- +'t t t t t t q t t t 5 8 8 5 8 q t t q 2 t 5 t 8 t t t t t t t t t t t t t t' -- +' t 8 2 q 5 q t t 5 t t 5 t t t t t t t t 5 t t t t t 8 u t t t t t 8 t t t ' -- +'t q q t t t 4.8 5 Q v t 8 q 2 p T b t t t t t t t t t q q t q q 5 q q t t t' -- +' t t t t t t t t t t t t 5 t t t u ^ t i i 5 t t t t t t t t t t t 8 5 t t ' -- +'t t t t q t t t t t t t t t t t t t t t t t t t t t t 5 <.oXoXoXoXoXoXoXoX>' -- +'.",'#10'"oXoXoXoXoXoXoX>.q t t t 8 t t t t t t t 8 t t t t t 8 5 8 5 t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t q 5 q t t t t t t t t t 5 t' -- +' t t t 8 t t t 5 8 t t t t t t t t 5 t t t t t t 4.t t t t t t t t t t 8 t ' -- +'t t t 8 t 5 t t t t 5 : q q 8 5 5 8 q q t t t t t t t t 8 5 q q q 5 t t 5 t' -- +' t t 5 t t t t 5 t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t ' -- +'t t t t t t t q 8 t t t : t t t t t t t 5 t t t t t q t t t t t t t t 8 t t' -- +' 8 5 t t t 5 t t t 5 8 t t t t t 5 t t t 5 8 t t t t t t 4.t t t t t t t t ' -- +'t t t t q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t :' -- +' q 5 t t q q 5 8 t t t t t t t t t t t t t t 5 5 t t t 5 t t q q t 8 t 5 t ' -- +'t t t t t t t t t t t t t t 5 t t 8 5 5 t t t t t t t t 8 5 t t t t t t t t' -- +' t t t t t t t t 8 q 5 t t 5 8 t t t t t t t t v v t u t p u t t t t t 8 5 ' -- +'5 q 5 q t 5 t t 5 t t t t t t t t t t u t t 8 5 t t t t t v 8 t q 5 q t t t' -- +' t t t t t : 8 5 t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t y l <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t 5 5 t t t 5' -- +' t t t t t t 8 t t t t t t t t t ^ v t t t t t t t t t t t t t t t t t t q ' -- +'q 2 t t t t t t t t t t t t t t t t t t v q t t t t t t t t 8 t t t 8 5 t 4' -- +'.t t t t 8 5 t t t t t t t t t 5 t 8 t t t t t u i 2 u t q t q 2 t t t t t ' -- +'t t t 5 q t q 2 q t t t 8 t t 8 t t t t q t t t t t t t t t t t t t t t t 8' -- +' 5 t t t t t t t t t t 8 5 t t t 8 5 t 5 8 t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t 5 t t t t t t t 8 t t t t t t t t t t 8 t t t t t t t t' -- +' t t t a t t t t t t t t t t t t q 2 t t t t t t t t t t t t t t t t t t t ' -- +': t t t t t t t t t t t t 2 q t t q 2 q 5 t t t t t t t u g p t t t t q q t' -- +' t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 8 8 t t t t t ' -- +'t t t t t t t 8 t t t t t t t t t t t t t 5 t 8 t t 8 5 q 4.t t t t t t 5 u' -- +' 8 5 8 t 5 t t t t 8 5 8 q q q 2 t t t t q t t t t t t 5 t t l L l t t t t ' -- +'t t t t v 5 q 5 t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t x ^ ,.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -- +'t t t t 8 5 t 8 8 t q 2 q t t t t t 5 t t t t t t t 5 t &.&XOX%.5 8 5 t t t' -- +' t t t t t 8 u t t t t t 8 q t t t t t t t t q q q 5 t t t t t t V q t t 8 ' -- +'5 t 5 t t t t t t 5 8 t t t t t t t t t t t t t 8 5 t t t t t t t t u l ] O' -- +'.x t t t t 5 q t t t : t t t t t t t t 5 8 t t t t t t t t t t t t q 5 q q ' -- ,'q q t t t t t t t t t t 5 t 8 t t 5 t t t t t t t t t t t t 2 q q 5 t t t t' -- +' t t t t t t t t t t t t t t t t t t t t 5 q 2 q t t t t 8 t t t t 8 5 t t ' -- +'u 2 q t t 8 t t t 5 8 t t t t t t q : t t t t q q q 8 5 t q G G a t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t q 5 q 2 q q t t t t t t q t t t ' -- +'G 8 5 t g g t t t t q 2 t t t t t t t t t t t t t 5 8 t t t t t 5 8 t t t t' -- +' t 8 5 t t t t t t t t t t t t q 2 q t t t t t t t : t t t t t 5 t t t t t ' -- +'t t t t 4.t t 5 8 t t t t 8 5 8 5 q t t t t t t t t t t t t t t t 8 5 t t t' -- +' 5 8 t t t x ! x t t t t t t t t t t t 8 5 t t t 8 t 8 t t t t t t t t t 5 ' -- +'8 t t t t t t t t t t t 8 5 : t t t t t t t t t t t p x >.oXoXoXoXoXoXoXoX>' -- +'.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 5 q t t t t t 8 t t t 8 5 t ' -- +'t q b oXPXIX.Xj t 8 5 t 8 8 5 t t t t 2 q t t t t u 2 t t t t 8 5 t t 2 q 2' -- +' q t t t t t t G u : t q 5 t 8 t t t t t t t t t t t q t t t t t t 5 8 t t ' -- +'t t t t 8 t t 8 t t L ''.''.! t t t t q q t t t t t t t t t t t t t t t t t' -- +' t t t t t t q t t q q 2 q 8 5 t t t t t : t t t t 8 t t t t t t t t t t t ' -- +'t t t : t t q 5 q q t m t t t t t t t t t t t t t t t t t t t t t t q q q t' -- +' t t t t t 5 8 t t t t t t 8 t t t t 5 t t t t t t 5 8 t 8 4.q 2 t t t t 2 ' -- +'q q 5 t t ~ !.!.^ t t t t t t t t t t 8 q t t t t t t t t t t t 8 5 t 8 q q' -- +' q t q t t t t t t 5 q t t v t 8 5 t u t t t t t 8 t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t 5 t t t t t 5 8 t t t t 5 q j j t q q q t t t t t t' -- +' t t t 8 t t t 8 t t t t t t 5 t t t t t t t t t t t t t t t Q v Q t t t t ' -- +'t t t t t u d d u 5 8 t t t t t t t t p p i t t t 8 5 t t 8 5 t t t t t t t' -- +' 5 t t t t t t t t t t t t t t t t t 8 t t 8 5 t t t t t t t t t t t t t t ' -- +'t t u 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t 8 5 t t t t a' -- +' p i t t t t t t t t t t t t t l .XCXzX.Xp t t t t t t t t t 8 t t t t t 5 ' -- +'t t t t t t t t t t t 8 5 q q t t t t p u 8 L t q 2 q t t t 8 8 t t t t t 4' -- +'.t t t t 8 t t t t t t 5 8 t t t t t t t 5 t t g _ O.l t t t q t q t t t t ' -- +'t t t t t t t t t t t q t t t t t t u 2 t t 5 2 8 5 5 q t t t t t t t t t t' -- +' t t t t t 8 t t 8 5 t t t t t t t t q q q 5 t Q t t t t t t t t 5 t t t 5 ' -- +'8 t t q 2 t t t t 2 q t t 5 8 t t t t t t t t t t t t t t 5 t 5 8 t 8 t t t' -- +' t t t 8 4.t u t t t t q 5 q q t t ..#X#X( t t t t t t t t t t t t t t t t ' -- +'5 8 t t t t t t t t 5 q q 5 t t t t q g x i 2 q q t ` l u u t t t t t t g x' -- +' i q u l t t t t t t t t t t t t t t 2 q t t 5 t 8 t t t 5 8 t t t t t t : ' -- +'u x l p 5 : 5 t t t t t t t t t 5 t t t t t 8 t t t t 8 t t t t 5 t t t t 8' -- +' 5 t 8 5 t t t Q t t t t t t t t t y d d t t t t t t t t t t t t t 5 t t t ' -- +'t t t t t t 8 5 t t 5 q t t 8 t t t t t t t t t t t t t t t t 5 t q q q t t' -- +' t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' -- +'>.5 t t t t t t t t p x v R l t t t t t 8 t t t t t t t t ( XX~.~ t t t t t' -- +' t t t t t 5 t t t t t 8 t t t t t t t t t t t 5 q t q t t t p x g 8 5 q 5 ' -- +'q q t t t 5 t t t 5 t t 4.t t t t 5 t t 8 5 t t t t t 8 t t t t t t t t t t' -- +' t t t t t 5 q 2 t t t t t t : t t t t t t t t q t t t t t t 8 t t t q q t ' -- +'8 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t q 2 q : 5 v t' -- +' t t t t t t t 8 t t t t t t t i h t t t t q q t t t t t t t t t t 5 8 t t ' -- +'t t t t 8 t t q t t t t 5 8 t t t t 8 5 t t t t q q 2 5 t t G X...z 5 8 q t' -- +' t t t t t t t t t t t t t t t t t t t t q q q 2 : t t t t t u x L g u t 8 ' -- +'^ v ^ p t t t t t t t g c i i *.n.2.t 5 t t t t t t t t t t t u 8 t t 8 t t' -- +' t t t t t t t t t t t t t p i t q t t t t t t t t t t t t t t t t t 5 t t ' -- +'q t t 4.t t t 8 t t t t t t t t t t t t t t t t t t t t t t t a t t 8 t t t' -- +' t t t t t t t 8 8 t t t t t t t 8 t t t t t 8 t t t 5 t t t t t t t t t 8 ' -- +'t t t t t t t q 2 q 5 t 5 8 t t t t t t t t t t t t t q 2 >.oXoXoXoXoXoXoXo' -- +'X>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t p v Q b j t t t t 5 t 8 t t t ' -- +'t t t t t t t t t t t t t t t t t t 5 q t t t t t t t 5 t t t t t t t t 8 5' -- +' t 8 t t t u g g t 5 8 5 t t 8 t t t t t t 8 t t t 8 t t t t t t t t t t t ' -- +'t t t 8 5 t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 2 q q q 2 q t' -- +' t t t 8 5 t t 8 5 t t t t t t t t t t t t t t t t t t t 8 5 t 5 t 8 u 2 q ' -- +'t t t t t t t t t t q G 8 t t t t t t t t t t t t t t u g j u t t t t t t t' -- +' t t 5 t t t t t t t 5 t t t t t t t q 5 t t 8 t t t t t t t 5 t t 8 5 8 t ' -- +'t t t t t t y u t 5 q t t t t t t t t t t t t t t 5 t t t 2 q t t t t t t t' -- +' t t t t t 8 i g u t t t t l v p t t t t t t t u u q v XXfXXXd t t t t t t ' -- +'t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t q u t t 8 5 t t t t t t t' -- +' t t t t 5 8 t 8 t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t 5 t t 5 ' -- +'T Q t t t t t t t t 8 t t t 5 8 t t t t 5 t t t t 2 u G L 5 t t t t t t 5 t' -- +' t t t t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t q 8 t t t ' -- +'t 5 5 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t d p' -- +' t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t q 5 t q t t t ' -- ,'t t 8 t t t t t t t 8 t t t t t t t t t t t q t t t t t t t t 5 8 t t t 4.t' -- +' 5 t 5 8 t t t t t t t t t t t t t 8 t t t t t t t t t 5 t 5 t t 8 t t t t ' -- +'t t t t t 8 q t q 5 q 5 t t t : t t t t t t t t t t t t t t t t t 5 8 t t t' -- +' 8 5 t t t t t t t t t t t t t t t t t t t t 5 L t t t t m t t t t t 8 5 t ' -- +'t t t p p t t t i j y t t t t 8 t 8 5 t t 8 5 8 t t t t t t t q q t 5 t t 8' -- +' 5 t t t 4.8 t 5 q t 5 : t t t t t t t t t t t t t t p x g t t t t t t t t ' -- +'8 t t t u 8 t t 5 t t t t t t t t q u 2 t u p 5 t t t t t t t t t t t 8 5 8' -- +' t t %.~.| u t t t t 5 8 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'q 2 t t t t t t t t t t t t t t t 8 5 t 5 t t t t t 2 t t t t t t t t t t t' -- +' t t t t 5 8 t t 8 t t 5 t t Q Q t t t t t t t t t t t t t t t t t t t t t ' -- +'q 5 L 5 t t 8 t t 8 t u p u t t t t t t t t t : t 5 t 8 t t t t t t t t t 8' -- +' t t t t t t t 2 u t 8 t t 8 q 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' -- +'>.q 5 t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t 2 t t' -- +' t 5 8 t p ^ V t q t t 8 5 t t 5 8 t t t t t 5 t t t t t t t t t t q q t t ' -- +'t t t t t 5 t t 5 8 t 4.t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t' -- +' 5 t t t 8 t q 5 t t t t t t t t t t t t 2 q t 8 t t t t t t t t t t t t t ' -- +'t t 5 t t t q t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t' -- +' t t t t t t t q j j t 8 5 t t t t t t q j ^ x t t t t t t t t t t t t t t ' -- +'t t t t t : q 2 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t' -- +' q p L x t t t t t t t 5 t t 8 t t t t t 8 t t t t t t t u 2 5 8 u ] &.^ t ' -- +'t t : t t t t t t t 5 t t t t u x t t t t t t t t t t t 8 t t t t t t t t t' -- +' t t t 8 5 t t t t t t t t 8 t t t t t t t t t t t t t t 5 q 8 t t 8 q t t ' -- +'t 4.t t 8 t 5 t t t t t 8 5 t t t 8 5 t t t t t 8 t t t t t t t t t t 5 8 5' -- +' t t t t t t t t t t t t q t v u 8 t t t 8 5 q y d y t t t t t t t t t t t ' -- +'8 t 5 t t 8 t t t t t t t t t t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXo' -- +'X>.",'#10'"oXoXoXoXoXoXoX>.5 q t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t q q q t t t t t t ..^.~.H 5 t t t t t t t t t t t t t t t t' -- +' t t t t t t t t 2 u v t t t t t t 8 t t t t t 4.t t 8 t 5 8 t t t 5 t t t ' -- +'t t t t t t t t t q t t t 8 t t t t t t t t t t t t t t t t t t t q q q 5 t' -- +' t t t t 5 8 t t t t t t t t 8 t t t 2 u 8 5 8 t t t t 5 8 t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t p _ ] l t t t t t t t t 2 u d p t t' -- +' t t t t t t t t t t t t t t t t t t 5 q t t t t t i a t t t t t t t 8 t t ' -- +'t t t t t t t t t t t t t t t g u t t t t t t t 8 t t 5 t t t t t t t t t t' -- +' t t t 8 5 8 : d &.+X'' t t t t t t t t t t 8 y l t t t t t q t t t 8 5 t t' -- +' t t t 5 t t t t t t t t 8 5 t t t t t t t t t t t t t t t t 5 8 t t t t t ' -- +'t t t t q 5 q t t u 2 t t N 2 8 5 t t t t 8 t t t t t t t t t t t t t t t t' -- +' t t t : t t t Q Q t t t t t 5 8 t t t t t t t t t t : t t t 5 t t 5 q 5 a ' -- +'p a t 5 t t t t t t t t t t t 8 t t 5 t t t 8 5 t t t 8 t t t t t t t 5 t t' -- +' t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 q 8 t t t t t t t t ' -- +'t 8 t t 5 8 t t t t t t t t t t t 5 8 t t t t t t t 8 5 t p -.sX#X( t t t t' -- +' t t t t t 5 t t 5 8 t t t t t t t 8 5 t t t 8 ^ t t t t t t t t t t t t t ' -- +'t t t t 5 t 8 t t 5 t 8 t 5 8 t t t 5 8 t t t t q t q 5 q 2 t t t t t t 5 8' -- +' t t t t t t 5 t 5 8 t q t t t t t t t t t t t t t q q 2 t q 8 5 8 u t t t ' -- +'t t t t t t t 5 8 q 5 t t 8 t t t t t t t t t t t t t t t t t 5 8 p _ _ j 8' -- +' 5 8 t t t t t u 2 t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t t ' -- +'u d l u 4.5 8 5 t t u 2 t t t 8 t t 5 8 t t t t t t t t u t t t 8 t t t t t' -- +' 8 t t t t t t t q 5 8 t t t t t 8 t 5 t u ~ ] v v u 5 t 8 5 q q q 2 g %.&.' -- +'^ t t t t t t t t t t t t t t t t t t : q t t t t t t t 8 5 t t t t t t t t' -- +' t t t t t t t t t t t t t t t i g u 8 5 8 q q t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t v T q t t 5 8 t t t q t t t 5 8' -- +' t t t t t t t t t t t t t 5 q 8 t t t t t t t q q q q q q t t t t t t t t ' -- +'t 5 q q q q 5 t t t 8 t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXo' -- +'X>.t t 5 8 t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t t 5 8 ' -- +'t t t t 8 o./.!.H t t t t t t t t t 8 t t t t t t t 5 8 t t t t t t 2 u v t' -- +' t t 8 t t t t t t t 4.t t t t t t 8 t t t t t t t t t t t t t t t t t t q ' -- +'q 5 8 q q t t t t 8 5 8 q e e e t t t 8 t q 5 q q t t t t t t t t t t t t :' -- +' 5 q q t t 5 8 q 2 t t t t t t t t t t 8 5 8 q t t 5 t t t t t 5 t t 8 8 5 ' -- +'t t t t t t t t u p j 5 5 8 t t t 8 t t q q t t t t t t t t t t t t t : t t' -- +' t t 5 t t t t t t 5 t t u j p t 4.q t t u l j i t t t 5 t t t t t t t t t ' -- +'t t t 2 t t t 5 t t 5 t t 5 t t 5 8 t 2 q t q 5 8 5 t t t t t 8 t t t 8 5 T' -- +' 2 q t t t 2 q 5 q v ,..X` t t t t t t t t t t t t t t t t t t q 5 t t t t ' -- +'t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t x ^ p 5 8 q 5 q t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t t t t t u 2 t ' -- +'t t t t t t t 5 q t t t t t t : t t t t t t t t t t t q 5 t t t t t t q 2 q' -- ,' 5 2 q t t t t t t t t t t t : 2 q 2 q 5 8 t t t t t t t t >.oXoXoXoXoXoXoX' -- +'oX>.",'#10'"oXoXoXoXoXoXoX>.t t : 5 t t t t t t t t t t t t t t t t t t 8 5' -- +' t t t t t t t t t t t t q q t t t t z b t t t t t t t t t t t t t t t t t ' -- +'t t t t 8 5 t t t q t v t 8 q t t t t t t 5 8 4.t t t t t t t t t t t t t t' -- +' t t t t t t t q q q q q 2 t 5 t t t t t t t t t e e e e e t t t t 2 q 2 q ' -- +'t t t t t t t t t t t t q q q 5 t t 8 q q q x ! g u t t t t t t t t q 5 t 8' -- +' 8 5 5 8 t t 8 t t t t ^ : t t t t t t t t t t q 5 q t t t 5 t t t t q q t ' -- +'t t t t t t t t t t t t t t 8 t t t t t t t t t t u 5 t t 8 5 t t u b c u t' -- +' t 8 t t t t t t t 8 5 t t t t q q 5 t t t t 8 t 8 t t t t t t q 5 q q t t ' -- +'8 t 5 t t t t t t t 5 t Q u t t t t t t 5 t i ` '' c u 2 t t t 5 t t t t q ' -- +'t t t t t t t : t t t t t t t 8 t t 8 t 5 t t t t t t t t t t t t t t t t t' -- +' t t u j c p u 5 t q 2 4.t t t 5 t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t 8 5 t t t t v t t 2 q t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t 5 t 2 q q 5 t t t t t t t t t t t t 5 8 q q t t t t t ' -- +'t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t e r r t t 8 5 t t t' -- +' t t t t t 2 t t t t t t t t t t t t t t t 8 5 t t t 2 u u d p t 8 t t t t ' -- +'t t t t t t t 8 t 5 8 t t t t t t t t t t t t t 5 8 5 5 t t t t t t t t t 8' -- +' 5 t t t t t t 5 8 t t t t t 5 t t t t t q 2 2 q 5 q t g _ ) i t t t t t t ' -- +'e e e e e t t t t q q q 5 t t t t t t t t t t t t q q 2 q 5 8 5 5 5 g @.''.' -- +'] t t t t t t t t t t q 2 u t q t t t t t t t t t v t t t 5 8 t t t t t 5 q' -- +' 8 5 t t t t t t t t q 2 q t t t t t t t t t t t t t t 5 t 5 8 t t 8 t t t ' -- +'t t t t t 5 8 t t 5 u p 5 t t t t t t t t 8 t t t t t t t 5 q 8 t t t t t t' -- +' t t 5 8 t t t q q 2 q t t t t 8 t t t t t t t 8 5 L 5 t 5 8 t t t q t q q ' -- +'5 t q q t t t 8 t 8 t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t' -- +' t t t t t t t t : t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t ' -- +'t t : t t t t t t t t t t t t t t t t t t t t 5 q t t t t u v v u t t t t t' -- +' v t t t t t t t t t t t t t t t t t t t t t t 8 t q q 5 8 t 8 5 t t t t t ' -- +'t t t t q 5 q q t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' -- +'XoX<.e e r r r q q t t t t t t t t t q q 8 5 8 5 t t t t 8 t t t t t t t t ' -- +'5 t t 5 i l p 5 q q q 2 q t t t t q t t t t t t t t 8 8 t t : t t t t t t 5' -- +' q 2 q t t t t t t t t t 8 t t t t t t t t t t t t u 8 8 t t t t t t q t t ' -- +'t t t L #.O.x 5 t t t t t e e e e e t u t t t q 2 q t t t t t t t t 2 q t t' -- +' 5 q 2 q t t t t 2 j #.|.O.: t t t t t t t t t p j u 5 5 t t t t t t t t 2 ' -- +'^ t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t' -- +' t t t 8 u t t t 5 t t t t 5 q t t 4.q t t q t t t t 8 t t t t t 8 5 t 8 u ' -- +'2 q t t 8 t t t t t t t t t 5 8 8 t t t 5 8 t t t t t t t t t 5 t t t t t t' -- +' t 8 t 5 t t t t : t t t t t t t t t 5 q 5 5 8 t t t t t t t t t t t t t t ' -- +'t 8 5 t t t t t t : t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t' -- +' t t t t t t 8 5 t t t t t t t t t t t u 2 q t 8 t t t t t t t t t t t 8 t ' -- +'5 8 t t t t 5 8 t t t t t v t t t t t t t t t t t t t t t t t t 2 q q q t t' -- +' t t 5 8 t t t t 2 q t t 5 8 t t 8 5 5 8 t t 5 8 t t t t t t >.oXoXoXoXoXoX' -- +'oXoX>.",'#10'"oXoXoXoXoXoXoX<.e e E E k e 5 q t t t t t t t t t q q 5 t t t' -- +' t t t t t t t t t 8 t t 8 t t t t u u t 5 5 q q 5 t t t t 5 8 t 5 5 8 5 t ' -- +'t t 5 t t t t t t t t t q q q q t t t t 5 8 t 4.5 t t t t t t t t t 5 8 t q' -- +' 2 t t t 8 t t t q 5 t t t q t p ! T t 5 t t t t t t r r e t j c j t t t q ' -- +'q t t t t : t t t q t t t 8 5 q q t t t t q t c ! l t t t t t t t t t 2 p x' -- +' j t q t t t t t t 8 5 q v t t t 8 t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t q t t t t t t t t t t q 2 t t t t 2 t t t 5 8 t t 4.t t t 5 q t t' -- +' t t t 5 t t t 5 t t t t t t t t 5 8 t t t t t t t t t t 5 t t t t t t t t ' -- +'t 5 t t t t 8 t t t t t t t 5 t 8 t t t t t t t t t t t t t t q q q 8 t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t 8 t 8 t 4.t t t t t t t t t t t t t t : t t t t t t 8 t t t 5 t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t v ^ t t t t t t t t t t t ' -- +'t t t : t t t q 5 5 q t t 5 t 8 5 t t q t u 8 t t t t t t 5 8 t t t t t t t' -- +' t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.e e K E r e q t t i ' -- +'t t t t t : t t t t 8 t t t t 8 5 t t t t 8 t t 5 t t q t q t t q q 8 5 q q' -- +' t t t t t t t t t t t t t t t t t t t t t t t t 2 q t t t 5 t t t t t 4.t ' -- +'t 8 t 5 t t t 5 t t t t t t t 8 t 5 t t t t t t t t t t t t u t t t t t t 5' -- +' 8 t t t t l L l 8 t t q q t t t t t t t t q q t t 8 5 t t t t t t q q 5 q ' -- +'8 t t t t t t t t t q q p t u 8 t t t t 8 5 t t q q t t t 8 t t 5 8 q 5 t t' -- +' t t t t q t t t t t t t t t t t g ! T t t t t t t t t t t t t t t t q t t ' -- +'t 8 t 8 t 2 q t t t t t t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t' -- +' t t t t t t t t t 8 5 t t 8 t 5 8 t t t t t t t t t t t t t 8 t t t t t t ' -- +'t t t t t t 2 p g u 8 t t u t t t t t t t t t 5 : t t t t t t t t 5 t t t t' -- ,' t t t t t t t t t t t t 5 8 t t t t t t t t 4.t t t t t t t 8 t t u 2 t t ' -- +'t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t t t t t t t t t 5 q u v ^' -- +' L t t t t t t : t t t t t t t t t : q 2 q 8 2 q t 8 t t q 2 q 2 q t t 5 8 ' -- +'t t 8 5 8 t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' -- +'XoX<.e e e e e e t t c [ v t t t t t t t t t t t t t 5 q 8 5 t t t 5 t t 8 ' -- +'q 5 q q 2 t t t q 2 q q 2 t t t t t t 8 t t t 8 t t t t t t t t t t t t t u' -- +' v t t t 8 t t t t 8 5 t t t t 8 t t t 8 t t t t t t t 5 t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t p u 5 t t q 2 t t t t t t t t q 5 t t' -- +' t t t t t t t t t t q 5 t t t t t t t t t t t t t q 2 t t t 5 8 t t t 5 8 ' -- +'5 t t t 5 t t 8 q 5 q t t t t t : 5 : t t t t t t t t t t R ;.O.j t t t t t' -- +' t t t t t t t t 8 q q t t 5 t t t q q t t t t t t 5 8 t t t 5 t t t t t t ' -- +'t t t t t 8 5 t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t u b L s ! #.+.p t t t t t t t t t u t ' -- +'t t t t t t t t 8 t t t t t t t t t t t t t t t t 8 q 5 t t t t t t t t t t' -- +' t t t t t 5 t t 8 q t t t t t t t t t t t t t t t t t t t t t t t t : t t ' -- +'t t t t 8 5 t t q q 2 t 8 G Q t t t t t t t t t t t t t t t 5 q q q 5 q q q' -- +' t t q q q 5 q q t t t t t t t t t t t t t t t t 5 8 t t 5 8 >.oXoXoXoXoXoX' -- +'oXoX>.",'#10'"oXoXoXoXoXoXoX>.e e e e e t t t T ] T q 5 q t t t t t t t t :' -- +' t t t t 5 t t t t t t t t t t 5 8 t t t t t t q q t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t v t t t 8 t t t t q t t t t t t t t t t t t t t' -- +' t t t t t t t t t t p t t t t 8 t t t t t t t t t t t 5 t u t t u q q 5 e ' -- +'e e t 5 8 t t 5 t 2 q t t t t t t t t t t t t ] Q.@.a t t t t t t t t t t t' -- +' t t t t t t t t 5 t 8 t t t t u 2 q t q j ..X.( : t t t t t t t t t t t q ' -- +'t t t u l _ ! u t t t t t t 8 5 t t t t t 5 t t t t t t t t 4.t t t t t 8 u' -- +' t t t t t t t t t t 8 5 5 q t t t t u G f t u t 8 5 t t t 8 t t 8 t t t t ' -- +'t 8 t t 8 u 2 t t t t t V q t t t 8 t t 8 5 t q q q t t t : t t l x p +.$X]' -- +'.) 9 2 t t q 2 u p u t t t t t t t t t 5 t t t t 5 t t t t t t 5 8 8 5 t t ' -- +'5 8 t t 5 t t t 4.u 2 t g t 2 q t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t 8 t t t t t 5 q q 5 q t t 8 5 8 5 t t t t t t t Q t t t t t t q 5 t ' -- +'t t t t t 8 t 5 8 t t q 2 t t t t t t t t t t t t t t t t 5 q t t t t t t t' -- +' t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; e e e t t t t i l ' -- +'i q t t t t t t t t t t t t 8 t t 8 t t t t t t t t t t t t t t t t t t 5 :' -- +' t t t t t t t t t t t t t t t : t t t t t t t t t t v u t t 5 t t t 4.2 t ' -- +'t t t t t t t t t t t t t t t t t t t 8 5 t '' <.%.t q t 5 t t 8 5 t 8 t t ' -- +'t t t 8 q 2 t t 2 q 8 e e e e e t t t t 8 t q q q q t t 8 5 t t t t u v oXk' -- +'XOX[ t t t t t t q t t t t t t t t t t t t 8 t t t t t t 8 t t t 5 o.#XsX~.' -- +'z t t t t t t t t t t t t t t t t 2 t t t t q t t 5 t t t t t 5 8 t t t 5 8' -- +' t t t t t 4.t t t u t q 2 t t t t 5 t t t t t t 8 q t t t t H ~.#X^...t t ' -- +'t t t t t t t t 5 t 8 t t t 5 t t t t q t t t t v u t t t t 5 t t t t t 2 q' -- +' t t t t t t t t t 5 +.].[.P a 8 t t q u p v p t t t 8 t t t 8 t t t t 5 t ' -- +'8 t t t t t t t t t t t t t t t t 8 t 2 u 4.^ ^ i j i u t t t t t t t t t t' -- +' t t t t t t t t t t t 8 5 t t t t t t 8 t t 8 q 2 q q t t t t t t t t t t ' -- +'t t t t t t t t t t 2 q : t t t t t t 5 8 q t t q t t t t 8 t t t t t t t t' -- +' t t t t q t t t t t t t t t 8 t 5 8 >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoX' -- +'oXoX>.m m 5 q t t t t 5 q 2 u t t t t t t t t t t t t 5 t t t t 8 t t 5 t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t N 2 t t t t t t t t t t t t t t t t t t t t 5 q b XXzX.' -- +'Xv 2 t t t t t t t t t t 5 t t t q t t t t t 5 e e e e e t t t t t t t 8 5 ' -- +'q t t t t t t t t 5 v oXkXOX[ t t t t 5 8 t t t t q 5 t t t t 8 5 t t t t u' -- +' v t t t t 8 t t ..#XaX^.G t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' -- +'q 8 t t t t t t t t t t t t t t q t p a t L #.+.g t t 8 t t 8 t t t t t 8 5' -- +' 2 q t t u !.iXBXNX#X( t 8 5 t t t t t t t t t t 5 t t t t t t t t t t : V ' -- +'q t t t t 8 5 t t t t q 5 t t t t t t t t t t p L P t t t t 2 5 q p d y t 5' -- +' 8 5 t t 5 t t t 8 t 8 t 5 t 2 q t 8 5 t t t t t t t t t t q 5 q q ~ XXXX^ ' -- +'u t q t t t t t t t t : t t t t t t t t t t 5 8 t t t t t t 8 5 5 t t t t q' -- +' 2 q t t t t t 8 5 t v t t t t t t t t Q Q t q q t t t t t t t t t 5 t t t ' -- +'t t t t 5 t t t t 5 8 t t t 8 t t 2 q t t t t t t t t t 5 t t >.oXoXoXoXoXo' -- +'XoXoX>.",'#10'"oXoXoXoXoXoXoX>.m m q 5 t t t t t q q t t t t t t t t t t t ' -- +'t t t t t t t 5 t 8 8 t t t t t t t t t t t t t t t t t : t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t : q 5 p >.oX>.d 8 t t t t t t t t t t 8 t t t t t t 5 8 t q e e' -- +' e e e t t 5 8 t t q 5 q 2 t t t t t 8 5 t 8 t ] :.@.q q q 2 q t t t t t t ' -- +'2 q t t t t t t t t t t 5 v t t t t 5 t t ^ -./...t t t t t t t t t t t t t' -- +' t t t t t t t t t t t 5 8 5 t t t t t t 8 t 5 8 t t t t 5 p l p t O.$X].) ' -- ,'t t t 5 8 t t t t t t q 5 q q t 4.6.#XNXKXLXiXX.t q 5 t t t t 5 8 t t t t 8' -- +' t t t t t t t t t t q T q 5 t t t t t t t 5 8 : t t t t t t t t t t t t t ' -- +'t t 8 8 t t t t t 8 5 u 8 5 t t t 8 t t t t t t t 8 8 u t t t t t t t t t t' -- +' t t t t q t 4.t ` oX.X~ t u q 8 t t t t t t t t t t t t t t t t t 8 t 5 t ' -- +'t t t 5 t t t t t t t 8 5 q t t t t t t t t v u t t t t t t t t t t Q v q t' -- +' t t t t t t t t t t q t t t t t t t t 5 8 t t t t t 5 t t q q t : t t t 5 ' -- +'t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8' -- +' t t q q q 5 t t t t t t t t t u 2 q t t t 5 t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t : t t' -- +' t t t t t t : t t t t t t t t t t t t t t t x ~ c t t t t t t t t t t t 5 ' -- +'8 q t t t t 5 8 t t 5 t e e e t 8 t t t t t t t 5 t t t q 2 t 8 t t t t t t' -- +' t t t t t t t t 2 q q q q t t t t t t t t t t t t v t t t t t t t t d l t ' -- +'5 t : t t t t t t t t t t t t q t 8 t t t t t t t t t t t t t t t t t t t t' -- +' 8 t t t u 5.p 2 ) [.#.P a t t t t t t t 4.4.t t 4.N 2 2 t d /.aXDXBXsXo.: ' -- +'t t t t t t t t t 5 t t t 5 5 t t t t t t t q 5 q 5 t t 5 8 t t t 8 t t t t' -- +' t t t 5 5 t t t t t 8 5 t t t t t t 5 t t t t t t u u q u t t t 5 8 t t t ' -- +'t t t t t t 8 5 t 8 t t t t 5 8 q 2 q 4.t p ] ` u u 8 t t t t t t t t t t t' -- +' t t t t t t t t t t 8 t t t t 8 t t t t t t t 5 t t 5 q t t t t q u v t t ' -- +'t t t t t : t t t t t q t t q t t t t t t t t t t t t t 8 5 t t t t 8 5 8 t' -- +' t t 5 q 5 8 5 8 t q t u t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoX' -- +'oXoX>.t t t 8 t t t t 8 5 t t q 2 q : t t t t t t t t t 8 t t t t t t t t 8' -- +' t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t : t ' -- +'t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t a q t 2' -- +' u t t t t t t t 8 5 t 8 5 5 : t t t t t t t 8 t t t t t t t t t t t t 8 t ' -- +'8 t t q q t t t t t t t q t t t t t t t t q 5 q 2 q q t t 8 t t t 8 t t 5 8' -- +' ^ t 8 8 t t t t t t t t q t t t t t t t t t t t t t q t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t q q t t 4.t t u P K t 4.4.t t 4.4.5 8 t t t 5 t' -- +' t t q t t '' #XsX#X~.d t t t t t t t t t t 8 t t t 8 8 t t t t t t t q q 8' -- +' q t t t t t t 2 u t t t t t t t 8 q t t a 5 q t t t t t t t t 8 t t t t t ' -- +'t p l i 2 t t t t t t t t t t t t 8 t t t t 5 t t t t 8 5 5 q q t t 5 q 5 8' -- +' 2 t t t t t t t t t t t t t t t t t t : t q 5 q t t t t t t t t t t t t 8 ' -- +'t t 8 q q t t t q 2 t t t t t t t t t t t t t t a q 5 2 u t t t t t t t t t' -- +' t t t t t 8 5 t t q 5 5 8 t t 8 5 q e e r t q z G d t t t 8 5 >.oXoXoXoXoX' -- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 q 5 t t q 8 q q 5 q t t t t t t t t' -- +' t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t u v t t t t t 4.t t t t t t t t t t t : t t t' -- +' t t t t t t t t t t t q t 5 t t t 5 8 8 5 t t t t t t t t t t t t t t t t ' -- +'t t t t 5 t 5 8 t t t t 8 5 q q q 5 t t t t t t t 5 q 5 t t q q 5 8 q q t q' -- +' t t t 5 t t 8 t 5 t t 8 e e e 5 5 t t 5 t t t t t t t t t t t t a x ( X.( ' -- +'l q q t q 8 5 2 q t t t 8 t t t t t t t t t t q 2 u 2 u 2 t 4.4.t t 4.4.t t' -- +' t 8 5 t t t t t t t t 8 t t t t t t t ^ o.( l t t t t t t t t t t t t t t ' -- +'t t t t t t t t t : q 2 5 8 t t t t t t q t t t t t t t 8 5 t t q i p t t t' -- +' t t 8 5 t t t t t t t t t i j a t t t t t t t t t t t t t 5 t t t t t t t ' -- +'t t t t t t t t t t t t t q t 8 5 t t t t t t t t t t t t t t t t t t t q t' -- +' t t t t t t t 8 t t t t t t t q 2 q t t t 8 5 t t t 5 t t t t t t t t 2 u ' -- +'u x x L v u t t 5 8 8 t t t t t t t t t 8 5 5 8 t q t t q q e e e e e i H ^' -- +' l t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 5 8 t t t 5 ' -- +'8 5 q q 2 t t t t t t t t t t t t t t t t t t 8 5 5 8 t t t t t t t t : t t' -- +' t t t t t t t t q t t t t t t t t t t t t t t t t t t t v t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t 8' -- +' t t t t t t t t t t t t t t t t 8 t t t t t t t 5 q t q 2 q 5 8 t t t t t ' -- +'8 5 q t t q 2 q 5 q t t t t t t 8 t t 5 t t t t e e e e e t t t 8 t t t t t' -- +' t t t t t t t H /.sXiX4X^.^ 2 t 5 5 8 q q t t t 5 t t t t t t t t 2 4.N 5 ' -- +'u 8.v.[ t t t t t 8 t t t t t t t 5 8 t t t t t t t t t t t t t 5 u t t t t' -- +' t : t t t t t t t t t t t t t t t t t t t t 5 T 8 5 t t t t t t t t t t t ' -- +'t t t t t q 5 t j c i t 5 8 t t t 8 5 t t t t t t t 5 q 5 t t t t t t t 8 5' -- +' t t t t t t t t 8 t t t t 8 t t t 4.t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t q 2 t t 8 5 t t t 5 t t t t t t t 5 8 5 t t t t t t t' -- +' t 8 t t t t t t t t q 8 g P L i ^ v t t t t 5 t t t t t t t 8 t t t q t t ' -- +'q q 2 q 2 e e e e e 2 d d a t 5 8 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -- +'XoXoX>.t t t 5 t t t t t 8 u 2 t t t t t t t t t t t : 8 t t t t t t t t 5 ' -- +'8 t q 8 5 8 t t 5 8 t t t t t t t 8 5 t u 2 t t t t t t t t t t t t q 2 8 5' -- +' 8 5 8 v u 5 8 5 8 t 5 8 t t t t t t t t t t t t t t t t : t t t t b l a 5 ' -- +'t t t t t t 8 t t 5 8 t t t t t t t t t t t t t 2 u q t t t t t t t t t t t' -- ,' t t t t t t 8 t t t : q : t t t t t t t t t t t t t t t t t t t t t t t e ' -- +'e e e e t t t t t t t t t t t t t t 5 y ~.aXDXKXBXaX~.y t t t t t p t t 4.t' -- +' t 4.N 2 2 4.4.t t t q 8 j :.%XQ.z m N 5 5 8 t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t 5 8 t t q q q 5 t t t t t t 5 8 q 5 t t t t t t t Q 5' -- +' 8 t t t t t t t t t t q q q 5 t 8 t t q i p i t t t t t t t t t t t t t t ' -- +'5 t t t 8 5 5 t t t 8 t t t t t t t t t t t t t t t q q 5 4.5 8 t t t t t t' -- +' 5 8 t t t : t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t 5 q t ' -- +'t t t t t q t 5 5 q 8 u q 8 t t t t t t 8 t 5 t t t x g t t t t t t t 8 t t' -- +' t t t t t t t t t t t t 5 t t t 5 e e e e e t t t t t t t t t >.oXoXoXoXoX' -- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t t 8 t t 5 8 t t t q t t t t t t t t t t' -- +' t t t t t t 5 t t t t t t t 5 t 8 5 t t t t t t t t t t t t t t 8 t t : t ' -- +'t t t t t t t t t q q 5 q t t 5 u v 8 5 8 4.t t t t t t t t t t t 5 t t t 8' -- +' 5 t t t t t t p ! ~ p q t t t t t t 5 t t t t t t t t 8 t t t 5 t t t u p ' -- +'j p t t t t t t t t t t t t 8 5 t t t 5 t t t t 5 q t t 5 w t t t t t t t t' -- +' : t t q t t t t t t t r e e e e t t t t t t t t t t t t t t t ^ #XBXKXKXKX' -- +'BX#XJ 4.t t 4.9.,.1.6.u 5 t t 5 q t t t t t t 8 5 p 1. X:.k 5 4.5 t t t t t' -- +' t t t t t t t t t t t t t t t t t q t t t t t t t t t 2 q 2 q t t 5 t t t ' -- +'q 5 q t t t t t t t Q t t t t t t t t 8 t t t 8 t q 2 8 t t t t 2 u t t t t' -- +' t t t t t t t t t t t t 8 t t t t t 8 t t t 5 t 8 t t t t t t t t t t t t ' -- +'t q 2 q 8 t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t t t t 5' -- +' 8 t t t t t t t t 5 8 t t t t 8 5 q 2 T t u u j g t t t t 5 u u 5 t 8 t t ' -- +'t t t t t t t t t t 5 t 8 t t t t t t t t t t t t 8 t t t t 8 e e e t t t t' -- +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 t t' -- +' t 5 8 t t t 5 t t t t t t t t t t t t t t q 2 q t t t 8 5 8 5 5 q 4.t t t ' -- +'5 t t t t t t t 8 t t t t t 8 5 t t t t u v v u t 8 t 5 t t t t t t t t t t' -- +' t 5 t t 8 t 8 t t t q p x p t t t t t t t t 5 t t t c p t t 5 8 t t t t t ' -- +'t a j T k 5 t t t t t t p b t t q t t t t t t t t e v e t t t t t t t t t t' -- +' t t t t t 5 ( *XDXKXKXKXNX#X~ t t t p !.iX#X..t q t t t t t t t t t t : q ' -- +'q c _ v t t 5 t t t t t t t t t t t t t t t t t t t t t t t 8 5 t 8 t t t t' -- +' t t t t q t t t 8 t t t 8 5 t t t t t t t t Q t t t 8 5 t t t 5 t t t 5 t ' -- +'t q 5 t t t t t 8 t 5 t t t t 5 : t m t t t t 5 t t t 5 t t t t t t t t t u' -- +' 2 t t t t t t t t t t t t 5 q 4.t t 5 8 t t t q q t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t q 5 t t t q q t t t 8 5 t t 5 t t t t u G 8 2 i x g' -- +' u t t 8 a x x u t t t t t t t t t t t t 5 t T V 5 t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -- +'XoXoX>.t t t 8 8 5 t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' -- +'t t t t t t t t t t 5 t t t t t t t t 8 t t t t t t t t t t t 8 5 t 5 q q q' -- +' t 8 5 8 5 8 q q t t t t 8 t t t t 8 5 t t t t t 8 t t t t t t t 5 t t t t ' -- +'5 8 q t t t 8 t t t t t t t 8 t t 5 t t t t t t 5 u q t 8 5 t t t t t 8 t t' -- +' ! 1.@.p t t t t t t t t t i ] |.~.~ q y t t t p @.:.[ u 2 t t t t t t t : ' -- +'u T t 5 8 t t t t t t t t t t t t t m z #XNXKXKXKXNX#XG t t t p <.*X&Xo.t t' -- +' t t t t t t t t t t t 5 q q t t t t 5 8 t t 2 t t t t t t t t t t t t t t ' -- +'t t t t t 5 8 t t t t t t t t t t q q t t t t t 8 5 8 t t t t t t t : t t t' -- +' t t t t t t t t t t t t t q q t 8 5 t t t t 8 t t t t q t t t 8 5 t t 8 t ' -- +'t t t t 8 t t t t 8 t t t q t t t t t t t t t t t t q 4.t t t t t t t t t q' -- +' t t t t t t t t t t t t : t t t t t t t t t t t t t t t t 2 q t t t 8 t 8 ' -- +'t t t t t t v 8 5 q q i t 2 t t t u c c p t t t t t t t t t t t t 8 t t u v' -- +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoX' -- +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 t t t t t t t t t t t t t t t t t t' -- +' t t t t 8 t 8 5 t t t u q q m m 5 q 5 t q q t t t 8 t t t t t 8 t 5 t t t ' -- +'t t t t t t t t t q q t t t t t t t t u 2 t t 2 u t t t t 8 5 8 t q 2 5 : 5' -- +' t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t ' -- +'t t t t t t t 8 t t t t u ~ ,.*.l t t t t t t t t t w :.UXiX^.^ 5 q q q l >' -- +'.+X] t q t t t : 5 q 5 q 2 G 8 t t t t t t q 8 5 t t t t t t t t -.4XNXBXNX' -- +'4XX.q t t t t G 1.| d t t t t t : t t t t t t t t t t t t t t 4.t t t q t t' -- +' t t t t t t t t t t t 8 8 t 2 t t t t t t t t 5 8 t t t t t t t t t t u 2 ' -- +'u u 2 t t t t t t t t t 8 t t t t t t t t q q q q q 5 q t t t t t t t t t t' -- +' t 8 5 t 5 8 t t t t t t t t t t t 5 8 t t 5 t t t t t t t t y l p u t 5 q ' -- +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -- +' t t t 8 5 t t t t t t t t t t t t 8 G t t 5 t t t t t t t t p p t t t t t ' -- +'t t 5 8 t t t t t t t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t t t' -- +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t 8 t t t ' -- +'t t t t t t t t t t t t t t t t t 5 t t t t t 5 v _ k t t t t q 8 5 q t t t' -- ,' 5 t t t t t t t t t t t t t t t t q q t t q 2 t t t t t t t t 2 4.t t q 8 ' -- +'t t 5 8 5 8 t t q q q t t t t t t t t t t t t t t t t t 8 t t 5 t t t t t t' -- +' t t t t t 5 t t 8 t t t t t t t t t t t t t t t 8 l [ T t t t t t t t t t ' -- +'t 5 ( *XNX4Xo.t m q q 5 ! ] v t a t t t t t t q a q T t t t u t 5 t 5 q t t' -- +' t t t t t 5 q u X.^.#X^...u q t t t t t q q q t t t t t t t t t t t t t t ' -- +'t t t t t t 4.t t 8 q q t t t t t t t t t t t t 8 8 t t t t t t t t t t t t' -- +' t t 5 8 t t t 5 t t q i L G i q t t t t t t t t 5 t 8 t t t t t q 2 q 5 q ' -- +'2 q 2 t t 8 5 t t t t t t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t' -- +' t t t t t p l p t t q 5 8 t t t t t t t t t t t 8 t t t t t t t q t t t t ' -- +'t t t t t t t q : t t t t t t t t t t t t t t t t t 8 t t t t 8 t t 8 t t t' -- +' t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t v t t t t t t t ' -- +'t t t t 8 t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -- +'XoXoX>.t t t t t t 5 t t t t t t : t t t t t t t t t t 5 t t t t t t t c ''' -- +'.%X|.v m t t t t u 2 t 5 t t 8 t t t t t 8 t t t t t t t t t 2 q 5 q t t t ' -- +'t t t t t t ^ 2 N t t t t 5 8 t t 5 q q q q 5 t t t u 2 t t t t t t t t t t' -- +' t t t t t 8 t t t t t t t t t 8 t t 8 t t 5 8 t t t t t t t t t t 8 5 t u ' -- +'5 t t t t t 8 u 2 t t t t t 5 f !.#X~.^ t Q T 2 q 5 q T Q v Q t t t t Q Q v' -- +' L ^ v v v v 5 t t t V T v Q 5 m t t T 5 5 t l V d q t t t t t t 5 8 2 q 8 ' -- +'5 t t t t t t t t t t t t t t t t 5 t t t t t 5 8 t t t t t t t t t t t t t' -- +' 2 t t t t t t t t q q t t t t q q t t t t t t t l ~ ` d t t t t t t t t t ' -- +'8 5 t t t t t 8 5 q 2 q t q t t t t t t t t t t t t t t t t t t t 8 5 8 t t' -- +' t t t t t t t t t t t t t t t t t t 5 u t t t t 8 4.4.t t t t t t : t 8 5 ' -- +'t t t t 8 t t 2 i i 5 t t t t t t t t u 2 5 t t t t t t t t t t t t t t 5 8' -- +' 5 t t t t q 5 t 5 t t 8 t t t 8 5 t t t t t t t t 2 u t t 8 5 t 5 8 t q t ' -- +'t t t t 5 q v ^ t t t t t t t t t t t 8 5 8 t t t t : t t t t t >.oXoXoXoXo' -- +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 8 5 t 8 t t t t t t t t t t t t t t ' -- +'t t t 8 t t t t t t t ! %XkX%X! m t t t p p t t 8 t t 5 t t t t t t t t t t' -- +' : t t t t q 5 8 t t t t t t t 5 8 t v q q t t t t t t t t 8 5 q q 2 q t t ' -- +'t 8 q t t t t t t t t 5 t t t t t t 5 t t t t t t t 5 8 5 t t t t t 8 5 q t' -- +' t t t 8 5 t t t t t t v L G v a v Q G L q t t t Q Q T T z J G 5 ^ Q 5 8 5 ' -- +'t t t q q t t t t t t : t 5 v 5 u t t 8 t t t t q q 5 q 5 t t 5 L T t p b u' -- +' Q ^ [ ~ t t t u v ^ L G L ^ v Q t t t t t q q t t t t t t 8 t t t 5 t 8 5 ' -- +'q t t t t t t t t t t t t t t t t q t t t t t t 2 u t t q 2 q t t t t t t t' -- +' c v t t t t t t t Q t t t t t t t 8 5 5 8 t q q t t t t t t t t t t 8 5 t ' -- +'t t t t t t t t t t 5 u t t t t t t t t t t t t t t t t t t t q 2 t t t t t' -- +' 4.t t u t t t t t 5 q 8 5 t t t 5 t t u v ^ j t t t t t t t t 8 t q t t t ' -- +'t t t t t t t t t t t 8 t t t 5 8 t q q t 8 t t 5 t t t t t t t t t t t t t' -- +' q 8 t t t t t 8 5 8 5 t t t t t 8 q q 2 t 8 5 8 t t 8 5 t t t 5 t t t t t ' -- +'t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t t t 8 5 t t t' -- +' t t t t t t t t t t t t t t t t t t 8 t t t t j :.$X:.g 5 t t u j l t t t ' -- +'t t q 2 q q 8 5 t t t t t t q q 5 t t t t t t t t t 8 5 8 5 q T q 5 t t t t' -- +' t t t t t t t t t t t t t t t 8 5 q 2 q 5 t t t t t t 5 8 t t t t t t t t ' -- +'8 t t t : t t t t : t t 8 5 8 t 5 T L G L t t t t 5 u t t t t t t t t t t t' -- +' t q 5 t t t t t t t t t 8 t t 2 q q q 5 q t t t t 8 v 5 8 5 t t 5 q 5 m y ' -- +'q q 5 m t t t q t t p l p t u j p t t t 2 t t t t t t 8 t t t t L ^ V V q 5' -- +' t t t t t t 4.t t t t t t 2 t t t t t t t t t t t t t t t t t t t t u g p ' -- +'8 8 t t t t t t t t t t t t t t a t t t t t Q t t t t 5 8 t t t t t t t t t' -- +' t t t t t t t 8 t t t q 2 8 5 8 t 5 8 t t t t p p t t t t 5 t t t t t q t ' -- +'t t t t t q t p u 5 8 8 t t t p x c u 8 t t 8 t t t t t t 5 t t u Q ~ l t 5' -- +' t t t 8 8 5 t t q u i 5 t t t t t 8 t 8 t 5 t t t t t t t v 2 q t t t t t ' -- +'t t t t t 8 5 t t t q 8 t t t t 8 5 t t t t t t t t t t t t t t t 5 t q q q' -- +' q t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' -- +'oXoXoX>.q q t t t t t t t t t t t t t t : t t t t t t t 5 8 t t t t t t q d' -- +' T j t t t t 2 i p t t t t t 5 q 5 q t t t t t t t t q 2 q t t t t t : t 5 ' -- +'q t t t 8 t V 4.q t t t t t t t t t t t t t t t t t t t 5 q q q q 8 t t t t' -- +' t t t t t t t t t 5 t 5 t t e e e t t t t ^ v v ^ t t t t 8 5 2 u t 5 t j ' -- +'b p t t t t t t t t t t t t 5 m t t t t t t t t t 5 t t t t q 2 q q t t t 5' -- +' u ^ q t 8 t t 8 5 q 5 r W $.e 6 ! T 5 m t t t t t t 5 t t t t t q t 5 q t ' -- +'t t 5 t t t t 5 t q q 8 t q t v ^ v v 4.t t t t t q q t t t t t t t t t t t' -- +' t t t t t t t t t u x p q 5 t t t t t t t t t t t t t t q t t t t Q t t t ' -- +'t t t t t t t t t t t t t t t t t 8 t t 5 t t 5 q q 5 q t t t t t t t p l g' -- +' t t t t 8 t t t t t 2 t t t 5 t t 5 j c p t 5 4.4.t t p P P p 8 t t t t t ' -- +'5 8 t t 8 t t 5 j d u t 8 t t t t t t t t t l b u t t t t t 5 t t t t 8 t t' -- +' t t t V u q 5 t t t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t 8 ' -- ,'t t t t 8 5 8 t t t q 2 T 2 t t 5 t t t t 5 t 8 t t t t t t t t >.oXoXoXoXo' -- +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 8 t t t t t t t t t t t t t t ' -- +'t t t t t 5 8 t t t t m 5 t t t t t t t t t t t t t t t 8 q 8 t t t t q q t' -- +' 5 l ` ~ 5 t t t 5 t t t t t t q 5 t t 4.t t t t t t t t : t t t t t t t t ' -- +'5 8 5 8 2 q q 5 t t t t 8 t 8 5 q q t t u t t t t t L G G T e t t 5 t t 8 t' -- +' t t t t 8 5 q 8 5 8 t l v l t t 5 8 t t t t t t t t q t q t t t t t t t t ' -- +'t t t t t t q 2 q t t q u d u 8 q t t t t w 5 r XkXkX$.] .X|.T m t t 5 q t' -- +' t t q t t t t t 8 q t t t t t t t t t t t t t 5 8 t t u 2 5 t t t t t ^ v ' -- +'T v t t t t t t t 8 t t t t t t 8 t t t t t t u t t 8 5 u a t t t : t t t t' -- +' t t t t t t t t Q t t t t t t t 5 8 t t t t t t t t t 8 t t 5 t t t t 8 q ' -- +'2 q t t t t t 5 8 q a p u t t t t t t t t t t q q t t 8 t q q p p p t t 4.t' -- +' t t u g g u t t t t t t 8 5 t t t 2 q q 5 e e e t 5 t t t t t 8 t t j j a ' -- +'t t t t t t 8 t t t t t 8 t 8 T T q 2 q t t t t t t t t t t t t t t t t 8 t' -- +' 5 t t t t t t t t 8 t t t t t t t t t t t t 5 q 8 ^ v u t t 8 t t 8 t 8 t ' -- +'t t t q 2 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 5 t t' -- +' t t t t : t t t t t t t t t t t t t t t t 5 8 t m t t t t t t t t t t t t ' -- +'t t t 5 8 5 t 5 8 t q 2 q q ~ ,.&.x t t t 8 t t t t t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t q t q q q 2 t t t t 5 8 5 u v V ^ v v v t t t ' -- +'t e e e e e t t 8 t t 5 t t t t 8 5 q 5 q t t t a p u t t t t 5 8 8 5 t t 8' -- +' 5 m 5 5 q t t t t t t t t t t t t 8 5 q t t t 5 j v d u 2 t t t t 5 w W *X' -- +'JXkX$.$.OX|.*.T t t t t q 5 t t t t t t t 5 t t t t 8 t 5 t t t t t t t 8 5' -- +' t t q q 8 t 5 8 t t t t t t t t t t V Q Q Q Q Q Q t t t 8 2 t t t t t t t ' -- +'t 5 8 d d p t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t t t' -- +' t t 5 t t 8 t t t t t 5 q q q t t t t t 8 5 t q t t t t t t t t t t t 5 q ' -- +'t t t t 2 u 5 q t t t t 8 5 t t t t 2 q t t t t t t t t t t q 5 8 e e e e e' -- +' 8 t t t t t 5 t t 5 t t t t t t t t 5 t t t t t 5 8 5 G 5 q q q t t t t t ' -- +'t t t t 5 8 t t t t t 5 t t t t t t t t t t 5 t t t t t t t t t t t t t t l' -- +' l u G t 5 5 t t t t 5 t t t t t u t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' -- +'oXoXoX>.q 5 t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t 5' -- +' q t t t t 8 t t t t t t t t t t t t t t t t 5 q t t v '' ] a t t t t t t t' -- +' t t t t t u 4.2 t t t t t t t t t t t t t t t t t t t t t t t t u 5 8 T 2 ' -- +'q q t v t t t t t t t t 8 t r e e e e t t t t t t t t 8 t t t t t t t t t t' -- +' t t q t t t t t t 8 t t t t t t t t t t t t 5 8 t 8 t t t t 5 q q q t t u ' -- +'u p a t 8 t t t t 2 q E Q.%X|.r v ] *.@.! t t t t t t t t t t t t t t t t 8' -- +' 5 5 t 8 t t t 8 5 8 t t t t t t t t 4.5 t t t t t t t t t t t t t t t t t ' -- +'t Q t t t t t t u t 5 t t t 8 u y d y t t t t t t q t t t t t t t t t t t t' -- +' t t q 2 t t 8 5 t : t t t t t t t 8 t t t t t t t t t t t t 5 t q t t 8 t ' -- +'t t t t 5 t t t t t t q q q 5 t t 8 t t t t t t t t t t q t t 5 t t t 5 t t' -- +' t t t t t q q t e e e e e t t 5 8 t t t t 5 t t 8 t 8 u t t t t 8 t 5 8 t ' -- +'5 q 2 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u t t t t' -- +' t t t t 8 5 t t t t t a l x p t t 8 2 u 5 t t t t t t t t 8 8 8 >.oXoXoXoX' -- +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t t t t t t t t t t t t' -- +' t t t 8 t t t t t t t t t t t 5 8 t t t t t t t t t t t t t 8 t t t 8 8 5 ' -- +'q q 5 u t t 5 8 q 2 t t t t t t t t 2 4.q q t t t t t t t t t : t t t t t t' -- +' t t t t t t t v ^ v 5 q q q t 8 t t t t t t t t t t 5 e e e t t t t t t t ' -- +'t t 5 t t t t t t t t t t t t q 2 t t t t t 5 t 8 t t 5 t t t t t t t 8 5 5' -- +' t t t t t q 2 t t t t 2 q 5 u t t t t 8 5 q 5 m r W r t t t y v l t t t t ' -- +'t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t 4.8 t t 8 t t' -- +' t t t t t t t t t t t t t t t t t t ^ v v Q u p t t q 2 8 5 2 u t t t 8 5 ' -- +'5 t t t t t t t t t t t t t t t u t t t t t t t t t t t t t 5 t t t t t t 8' -- +' t t t t t t t u p u 5 t t 8 t t 8 t t t t t t 2 q 8 q t t t t t 5 8 4.t t ' -- +'t t t t t t 8 t t t 8 t t t t t t t 5 q t e e e e e t t t t t t t 5 q t t 5' -- +' t t 2 q t t t 5 t t t t q q q q t t t t t t t t t t t g x x t 2 t t t t t ' -- +'t 8 5 t t 8 5 2 5 g p t t t t t t t t t t t t t t a u t t t t q v 8 q t t t' -- +' t 5 8 t t 5 : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t 5 t q 5 t t t 5 t t t t t t' -- +' t t t t t 5 t t t 5 t t t q q t t t t t t u t q 5 t t t t 5 t N Q t t t t ' -- +'t t t t t t t t t t t t Q Q Q v u t t t t 2 q q q 5 8 t t t t t t t t t t t' -- +' t 8 5 t t t t t t t t 2 u t t t t t t t t t t t t t t 8 u t t t t t t t t ' -- +'5 8 q 8 t t t t t t q q q 5 q 2 t t 8 5 t t t t t t q G t t 8 t t t q q 5 m' -- +' 5 q t t t t t t t t t t t t t t t t t t t 5 t e e e t t t t t t t 8 t t 5 ' -- +'t t t t 8 t t t t 8 5 t t t t t t 9 u ) ) u t t t t t t t t t t t t t l v p' -- +' t T G t u q t t t t t t : t t t t t t t t t t t t t t t 8 t t t t t t t t ' -- +'t : t t t t t t t t t t t t t t t t t t p l p t t t t t t t t 8 t t t t t 8' -- ,' 5 8 5 t t t t t t t t t t t t t q 2 t t t t 8 5 t t t t t t 8 t t t e e e ' -- +'t t t t t t t t 8 t 5 t t t t t t t 8 t t t t t t 2 q t t t 5 t t 5 q t t t' -- +' t t g ) P u 8 t t t t t t t t t t t t q t g g u t t t t 8 t t t t t t t t ' -- +'t m : t q q q T T q 8 5 t t t t 5 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' -- +'XoXoXoX>.5 8 t t 5 8 t t t t t t t t t t t t t : t t t t t t t t 8 5 t t 8 ' -- +'8 5 q t t t 8 t t t t t t t t t t t t t t t t t t t 2 : t t t t t x ` ~ t q' -- +' t t t t 8 t t : Q t t t t t t t t Q Q Q t t t t t t q q 2 t 8 5 t q q 2 q ' -- +'8 5 5 t t t t t t t t t t t t 8 t t t t t t t t q 8 t t t t t t t t t t t t' -- +' t t q t g g u t t t t t t t t 5 t t t t t t q q 2 q q q t t t t t t 8 5 t ' -- +'t t L t t 5 t t t 5 t q 5 m 5 t t t t t t t t t t t t t t t t t t t 8 e e e' -- +' e e t t t 8 5 t t 5 t 8 t t t t t t t t t 5 q t t t t t t g `.dX$X#.u t t ' -- +'t t t t t t t t t t l v d t 5 L v T q t t t t t t t t t t t t : t Q t t t t' -- +' t t t t t 5 8 t t t t t q 5 t t t t t t t t t t t t t t t t t t u p t t t ' -- +'t 5 8 t t t 5 t t t t t t 5 t 8 t t t 5 8 t t t t 8 5 t t q p t t t t t t p' -- +' u t t t t 5 8 t t 5 8 t t t t t t t t t t t 8 t t 5 8 t t t 5 t t t t t t ' -- +'u v t t t 8 8 5 8 t t t t t t p x g t 8 t q t t 8 t t t t t t t q q t u t t' -- +' t t t 5 t t t t c L t t t 5 q 5 q 2 q 5 2 ^ v t t t t t t t t t >.oXoXoXoX' -- +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t 5 q t t t t t t t' -- +' t t t t t t t t t q 2 q q 5 8 5 t t t t t t t u a t t t t t t t t t t t 8 ' -- +'5 q 2 q t t 2 t ^ ,.*.l t t t t 8 5 4.2 u G 8 t v u 2 5 q v t t t q q 2 5 8' -- +' t t t t t t t t 8 t t t t t t 5 t t t t 5 8 t t t t t t t t t 5 q 2 q t t ' -- +'t t t t t q q t 8 5 8 q t t t t t g c p t t t t t t t t t t t q 5 t t t t t' -- +' t t t 2 q q 5 q q q q t t t ^ 2 q t t t t t t 5 8 5 8 t t t t t 5 q 8 t t ' -- +'t t t t t t t t 5 8 e e e e e t t t 5 t t t 5 8 t t t t t t t 4.t t t t t t' -- +' 5 8 t t _ $XCXlX X) 9 2 8 t t t t t t t q 5 u p t t t t t t t t 8 2 v v ^ ' -- +'t t t t t t t t ^ q 8 5 t t t t t t t : t t t t t t t t t t t 8 5 t t t 8 t' -- +' t t 8 5 t 5 t t t t t t t t t 5 8 t t t t t t t t t t t t t t t 4.q t t t ' -- +'t t t t l L p t 5 8 t l L j t 5 t t t t t t t 8 t t t t t t t t t t t 8 t 5' -- +' t t t t t t t t t t t 8 5 L 5 t t t 8 5 t t t t t t t t t t t 5 t t t t t ' -- +'5 t t q q q t t 5 t t t t t t 5 8 q 5 w ] +X%X@.5 t t t t t t t : t t t t q' -- +' 5 q q q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 t t 8 ' -- +'t t t t : t t t t t t t t t t t t t t t t t q q q q 8 5 8 t t t t t t j L l' -- +' t t t t t t t t t 2 t 5 8 t q t t t q 5 x ] ~ t t t t t t t N q V T ^ v t ' -- +'t q q t t t t t 5 q q 8 5 t t t t t t t t u t t 5 8 t t 8 t 5 8 t t t t t t' -- +' t t t t t 8 q 5 8 q q t t t t t t q 2 q 5 t t 5 m t t t t i p u t t t t t ' -- +'t t t t t t 5 q t t t t t t t t q q q q 2 q 8 5 t t t v q q t t t t t t 8 q' -- +' t t t t t t t t 8 5 t t t t t t t t t t 8 5 e e e e e t t t 8 t t t t t t ' -- +'t t t t : t 4.t t t t t t t t t t +.dXCXlX$X) a 8 t t t t t t t t t t 2 t t' -- +' t t t t t t t 8 t t t t v t t 8 5 t t v q 8 5 t t t t t t t t t t t t t t ' -- +'t t t t 8 5 t t t t t 5 t t t t t t 8 t t t t t t t t t t t t t t t : t t t' -- +' t 8 t t t t t 4.t t t t t t t t c R g t t t : l L j t 8 t t t 5 8 t t 5 t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t 5 L 5 t t t t t t t t u 8 t' -- +' t t t t t t t t 5 8 t t 8 t t 5 q 2 t t 8 t t t t t t 8 5 q t d |.CXCX$Xv ' -- +'t t t t t t t t t t t t t 8 2 q t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' -- +'XoXoXoX>.t t t t 5 t t t t t t t t t t t t t : t t t t t 2 q t 8 5 q 8 2 u ' -- +'8 t t t t t t t t q g L x t t t t t t t t t 8 t t q q q q t t q t t t t t t' -- +' t t t t t T G t Q : 5 8 t t t t t t t : t q 2 q q t t t 5 t t t t 2 q t 8 ' -- +'5 t t t t t t t t t t t t t 2 q 8 t 5 8 q 5 t q t t t t t q q q t t t 5 m 5' -- +' q q t t t t 8 u 2 t t t t t t t t t 8 t t t 5 t t t q q q 5 q 2 t t 5 5 8 ' -- +'t t t t t t t t t t t t 5 t t t t t t t t 5 t t t 8 p l t t t t t t t t r e' -- +' e t t t t t t 8 t t t t t t t 5 q r r r 5 8 t t 5 t t t t x `.dXdX`.g 8 t ' -- +'t t t t t t t t t t q q t t t t t t t t t t t t t t t t t t v v ^ V 5 u t t' -- +' t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t 5 t t t t t t t ' -- +'t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t t t p j u t t t t u p' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t 5 t t ' -- +'v u t 8 t 8 5 t t t 2 q t t t t t t t t t t 8 5 t t 5 t q 8 t t t t t t t t' -- +' t t t t t t y |.zXCX+Xc t t t t 5 u a t q t t t t t T q t t t 5 <.oXoXoXoX' -- +'oXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.t t t t t t t t t t : t t t t t t t t t t' -- +' t t t u 8 c c q p l u 2 q 5 t t t t 8 t t 2 u u u t t t t t t t t t t t t ' -- +'q 2 q 5 t q t t t t t t Q Q u t t t a t t t v u t t t t t t t t t t 5 q q q' -- +' t t t 8 t 8 5 t t t t t t t t t t 8 5 8 t t t t t t q q t t 5 t t t t q t ' -- +'t 5 8 q 2 q 5 t t t t m z ( z t t t t 5 8 q t t t t t t t t t 5 8 t t 8 t t' -- +' t 5 q 2 q q 5 : t q 8 5 8 t t t t : t t t t t t t t t t t t t t t 8 t t t ' -- +'! ''.|.O.t t t t 2 u t 8 t t 5 8 t t t t t t t t t 5 8 t 5 e e r e e t t t ' -- ,'8 t t t t t l ) ) 0 8 a t t t t t t t : t t t t t t t 8 t t t t t t t t t t' -- +' t t t t t t t v u V v t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t 8 5 t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t 4.t t t t t t' -- +' t t t t t t 5 t t t t 5 8 t t t t t 5 8 t t t t t t t t t t t t t t t t t ' -- +'8 t t t t t t t 5 t 8 t t t t t 5 t t t t t t t t t t t t t t t t t 8 q 5 8' -- +' t 8 t t 5 t t 8 t 5 8 t t t 8 t t t t t [ |.|._ t t t t t u j p q 5 t t t ' -- +'t t 2 ^ v t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v _ R 5 t q 5 t' -- +' t t t t t t t t t t t t t t t t q j 2.&.V g L p q t t 5 8 t t 5 t t t t t ' -- +'t t t t t t q t t t t t 8 t t q 8 5 q q t t t G v t t H ( H W.H 5 t t v t t' -- +' t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t t t t 5 t ' -- +'t t t t t t t t t t t q t t t t t t t t t t t t v #XiX#XG t 5 q t t t t t t' -- +' t t t t t t t 5 t t t t t 8 q 8 5 8 t t t t t t t t q 2 t t t t t t 5 8 t ' -- +'t 5 t t t t t t t t t q q #.fXkX].x q t p i 5 q q 5 t t t t t t t t t t 5 t' -- +' t t t t e r 4.e r t t t t t t t u 2 t q 5 q t t 8 t t t t t t t t t t t t ' -- +'t t t 8 t t t t t t t t t t t t t t 5 8 v 8 q 5 8 t t t Q t t t t t t t t t' -- +' t t t t t t t t t t 8 u t t t t q t t t 5 t t t t t t t t t t t t t t t t ' -- +'8 5 8 t t 4.4.t t t t t t t u t 8 t 5 t t t t t 5 8 t t t t 5 t t t 8 t t t' -- +' t t 5 q 2 t t t t t t t t t t t t t 8 t t t 2 q q t t t t 5 8 t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t t t t t t t d l a t t t t i p q q' -- +' t t q 8 u j p t g g u t t t t 8 5 t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoX' -- +'oXoXoXoX>.'' .X@.i t t 8 t t t t t t t t t t t t t t t q t 2 l ..%.T h g u ' -- +'q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t q 2 T V t t t t t q' -- +' t b ( X.X. .( f t t t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t ' -- +'t t t t t t t 8 5 t t 8 t 5 t t t t t t t t t t 2 t t t t t t t t 8 t t t `' -- +' aXKXzX| t 8 q t t t t t t t t t t t t l x u t t t t 5 8 5 t t t t t t t t ' -- +'t t q q t t t t t t t t t t 8 t t t t t t t t q 5 2 O.%X%X''.p a p b p q q ' -- +'2 8 t t t t t 8 5 t 5 t 8 5 8 t t u e k N k r t t t t t t t t q q 8 q 5 t t' -- +' t t t t t t t t t t t 8 5 t t 2 q t t t t t t t t t t t t t t 8 G u 5 q q ' -- +'8 5 t t t Q Q Q t t t t t t t t t t t t t t t t q 2 t t t t 5 t t t 8 t t t' -- +' t t t t t t t t t t t t t 5 8 q t t 8 t t t t t t t p l p 5 u j g t t t t ' -- +'t t t 8 t t 8 t t t 5 8 5 t t t q q q t t t t t t t t t t t t t t t t t u t' -- +' q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' -- +'t t p v v p t p y t t t t t t t 8 5 t t t i v L p t t t t t t t t t >.oXoXo' -- +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.! *.~ 5 t t t t t t t t t t t t t t t ' -- +'t 2 q 2 q 8 t l c t t t t 5 8 t t t t t t t t t t t t t t t 8 g p t t t t t' -- +' t t t T ^ v t 8 t t 5 t 5 H ( X.,.,.,.X.( H t t t t t t t t t t t t t t t ' -- +'t t t 5 t t 8 t t t t t t t 5 8 t t t t t t t t t t 8 t t t t t t t t t 5 t' -- +' t t t t t t t t t q t t ( #XMX#X^ 5 t 5 t t t t t t t t t t t y T Q p t t ' -- +'t t t t t t t t t t t t t t t q V q t t t t t t t t t t t t t t t t t t t t' -- +' u l @.#.^ 8 2 i g p t q q t t 8 t t t t t t 8 t t t t t d v p k E E m t t ' -- +'t p g u 5 8 t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' -- +' t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t 8 5 t t t t 8 t t t t t t t q t t a t t u 2 q 5 q 4.5 t t t t t t' -- +' t i g u 5 u x l u t t t t 8 t 5 t t t t t t t t t t t 5 8 q 5 t t t t t t ' -- +'t t t 5 5 t 5 t 8 5 u g g t t 8 t 5 t t 5 t t t t t t t t t t t t t q t m t' -- +' 2 u t t t t t t t t t t t t : l l u a d f u 8 5 t t t t t t t 5 t t l l u ' -- +'t 5 q t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t p t q t t t' -- +' t t t t t t t t t t t q q q 5 q q 5 8 5 t t t 8 5 q 5 t t t t t t t t t t ' -- +'t t t t t u ) R g t t Q t t t t t t t t 5 5 8 q 5 m z o.,.,.,.,.Q.o.G t t t' -- +' t t t t t t t t t t t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t 8 5 t t t q t : t t t t t t t t q 2 u w ( ..( y t t t t t t t t' -- +' t : t t t t t j j t t t t t t t t t t t t t t t t t t 5 T q t t t t t t t ' -- +'8 5 t t t t t : t t t t 8 t 8 5 8 5 8 u q 5 t t q 5 t t 5 t t t t t t t t t' -- +' t t u x ^ j i i q m t t t p l u t t t t 8 5 t t t t t t t t t t t t t t t ' -- +'t t t t t t t t t t t t t t t t t t t t t 8 5 u t t t : t t t t t t t t t Q' -- +' Q Q v t t t t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t t q v _ ! t ' -- +'q q q q 2 4.t t t t t t t t 5 q t t 8 p i t t t t t t t t t t t t t t u p u' -- +' u t 8 5 8 q t t t t 5 8 t t p p t t t t 5 8 u ~ ) t t t t 8 t t 8 t t t t ' -- +'t t t t t t t t t 5 t t q ^ -...z q 5 t t t t t t t t t t 5 t q y p a t t t' -- +' t t t t t t t t t u t t t 5 8 t t t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoX' -- +'oXoXoXoXoX>.t t t t t t t t t 5 t t t t 8 t t t t t t t : t t t t 5 8 t t t' -- +' t t t 8 t t 5 8 t t 5 8 t t t t u p ) R ~ Q Q t t t t 8 5 t t t t t t 5 8 ' -- +': H X.,.,.<.,.,.X.G : t t q t t q 8 5 2 q q t t t q q t : t t t t t t t t :' -- +' t t t t t t t 8 t t t t t t t 8 5 t t t 8 5 t t t e e e q t t t t t t t t ' -- ,'t t t t t t t t t t t t t 8 5 t t t t u t t t t 8 t t t t t 8 t t 8 5 t t t' -- +' t t t Q t t t t t t 8 5 8 t t t t t q 5 q q q 5 8 5 t t 8 5 t t 8 5 2 q 8 ' -- +'t t t t t t 5 8 t t t t t t t t p p a 2 4.q 5 t t t u u t t t t t t : t t t' -- +' t t t t t t t t t 8 t t 5 8 t t t t t t t t t t t t 5 t t t t t t t t p p ' -- +'t t t t t 8 5 t t t t t t t t t t t t t t : u 5 8 5 t 2 q t t t t t t t t t' -- +' 5 q 8 t t 8 t p %XkX%X) 5 t t t t t t t t t t 5 t t t t t t t t t t t t t ' -- +'t t t t t t t t t q x R P a t 2 q q t t t t t t t t p H H d t 8 t 8 t u ^ t' -- +' q t t t t t t t t t t : v &.1.~ t t t t t t t t t X.#X#X( a 5 t t t t t t ' -- +'t 5 8 t t t t t t q t t t t t 8 t t 8 t t t t t t t t t t t t t 5 8 >.oXoXo' -- +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t : t 5 t p x p t t t 5 t t t t ' -- +'t t t t t t t t t t t t t t t t 5 t t t t t t 8 5 t t u v v t p h t a t t 8' -- +' 5 t t t t 5 8 t t t q q 2 z o.,.<.,.,.,...z q u v q q t 5 8 t q 5 q t t t ' -- +'q 2 t t t t t t t t t t t t t t t t t t 5 t 8 t t 8 t t t t t t t t t t 8 e' -- +' e e e e t t t t t t t t t t t t t : t t q p g i q 5 8 t t t q 2 t t t t 5 ' -- +'t t t t t 5 t t t t t t t t t t Q : t t t t t t t t t t t t t : t 2 q 8 q q' -- +' 5 t t t t t t t t q q t t t t t t t t t t t t t 8 t t t t t u u N t q t t ' -- +'5 q t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t u g t t t t t 8 t' -- +' t 8 5 t t t 8 5 t t l L g t 5 8 t t t t t t t t t 8 t t t 8 t Q G T v 8 5 ' -- +'8 8 u t t t t t t t t t t q q 5 t u 5 t ] kXLXkX_ q t 2 q t t t t t t t 8 t' -- +' t t t t t t t 8 q t 5 t t t t t t 8 5 t t 2 x I ` H d u 8 t p j u t t t t ' -- +'t d ^ ^ d t t t 5 t 2 T t t t t t t t t t t t t t '' *XzXXXa t t t t t t t ' -- +'t ( #X/.~ t t t t 5 t t t t t t t t t t t q 5 t t t t t t t t 5 t t t t t t' -- +' t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t ' -- +'t u T ~ l 5 t 8 t t t t t t t t t t 8 t t t t t t t t t t t 8 t t t t t t q' -- +' T V V q t t t t 8 t t t t t t t 8 t t t t t t t q 4.8.( X.,.,.,.X.( H t 5 ' -- +'v t 2 t t 5 t 5 8 q 2 t q q q t t t t t t t t t t t t t t t t 5 t t t t t t' -- +' 5 t t t t 8 t t t t t 5 e e e e e t t t t t t t t t t t t t t t t 8 g g u ' -- +'5 q t t t t q 5 t t t t t t 8 5 t t t t t t t t : t t t t t t t t t t t t 8' -- +' t t t t t t t t t t 5 q 2 q t t t t t t t t t 8 5 t t t t t t t t 8 t t t ' -- +'5 t t t t 5 t 2 q t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t 5 t' -- +' t t t x +.+.x a t t t 5 t t t 8 t t t v q q t g c p t t t t t t u 2 t 8 5 ' -- +'t 5 t t t 5 5 8 8 5 t t 8 5 t t t t t t q q t t t t 2 q 5 u g y t ` kXJXfXT' -- +' q 2 q N 8 t t t t t t t t t t t t t t t t 5 q q t t t t t t 8 5 t t t u j ' -- +'^ ( v t t t j c p t t t t t t z d a t t t t t t t t q t t t t t t t t t t t' -- +' ` OX*X.Xx t t t t t 8 t t d ( ~ a t t t t 8 t t t t 5 t t t t t t 5 8 t t ' -- +'t t t t t 8 t t t t t t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -- +'XoXoXoXoXoX>.t t t t t t t t l v p u t t t 5 t t t t 5 t t t t t t 5 t t t ' -- +'t t t t t t t t t t t v ^ q q 5 q t t t t 8 t t t t t t t 5 t t t t t 4.t q' -- +' 5 : d ( o.X.o.( f t t t t ^ 8 8 t t t q q q q q 2 q 5 t t t t t t t t t t ' -- +'t t t t t t 8 t t t t t t t t 5 8 t 5 t t t t t t e e e e e t t t t t t t t' -- +' t t t t t t t t u t t t q t t t t t t i i t t t 8 t t t t t t 8 t t 5 8 t ' -- +'t t t t t t t t t t t t t t 5 t t 8 5 t t t t t t q q t t t t t t t t 5 q 8' -- +' 5 t 8 5 t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -- +'t t t t t t t 8 t t t q t t t t P +.#.P t t t t t t t t t t t t ^ 2 q t t t' -- +' t t t t t t t 8 q t t t t t t t t t 8 5 8 q t 5 t 8 t Q Q Q t t t 2 t t 8 ' -- +'5 q t t p j p l T 1.|.` t q u 4.2 5 t t t 8 t t t t t t t t t t t t t q 2 t' -- +' t t t t t t t t t t t 5 y b y q 5 t i p t t t t t t t t t t t t t t t t t ' -- +'8 5 t t t t t t t t t t t t ] <.] l t t t t t 5 t u q 5 5 t t t t t t t t t' -- +' t 8 t t t t t t 8 5 t t t t 5 t t t t 5 t t t t t t t t t t t 5 t t >.oXoX' -- +'oXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.5 q 2 q t q 8 q t i q 5 t t t 8 t t t' -- +' t q q q q t t t 8 t t 8 5 t t 5 8 u 5 t t t t t t t q 8 5 t 8 5 t t t t t ' -- +'t t t t t t t 8 t 4.4.t t t t t J ( G ( H t t t q q v t t t t t q 2 q 5 t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u q ' -- +'t e e r 5 t t t t t t t t t t t t t t t t 2 q t t t t t t t t i l p t t t 5' -- +' t t 5 8 t t 5 t 8 t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t ' -- +'u 8 8 t t t t t t t t t t 5 t t t t q q q 8 t t t t t t t t t t t 4.t t t t' -- +' t q t t t t t t t t 2 u t t t t t t 5 t 8 t t t t t t t a L P a 8 a u P g ' -- +'t 8 8 t 5 8 t v t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t q' -- +' t q t 5 q G T G 8 t t t t q 2 t t a u v ^ p u t t 5 q t t t t t t 5 t 8 5 ' -- +'t t t t t t t t t t : p u 2 t t t 5 t t t t t t 5 t t t 5 q t t e e e e r 5' -- +' q 2 5 8 5 t t t q q t t t t t t t t t t t t t t t t t p p q t q 2 q t t t ' -- +'t t t t t t t t t 5 q t t t 8 5 t u 2 q t t t t t t t t t t t t 8 t t 5 t t' -- +' t t t t t t 8 t 8 >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.q t q q t q ' -- +'2 5 t t 5 q 5 8 t t 5 t t t q 2 q 5 5 8 t t t t t t t t t t v v t t t 8 5 t' -- ,' t 5 5 8 t t t t t t t t t t t t t t 4.4.t t t t t t t t 5 q q 5 t q t t 5 ' -- +'2 u t t t t t q 5 q q t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t' -- +' t t 8 t t t t t t q 2 5 m t t m t t t t : t t t t t t t t t t t t t t t t ' -- +'t t : t t t t p p t t t t t t t t t t t 2 u t t t t t t t Q t t t t t t 8 t' -- +' t 8 t t t t t t t t t q 2 t 5 t 8 t 8 t t t 8 t t 8 t t t t 2 q q 5 t 8 t ' -- +'t t t q t t t t 4.t t t t t 5 t t t t t t t t q 8 t t 5 8 8 t t t 5 t t q t' -- +' t 2 u t t u t t q ) `._ u q 2 t 8 t t ^ t t t t t t t t t 5 8 t t t t t t ' -- +'t t t t t t t t t t t t 5 t l b u q 5 8 u v v t t t q q t 8 t t l l q 2 t t' -- +' 2 4.t t t t t t t t t t t t t t t t t t t t l ^ c q t t t 8 t t t t t t t ' -- +'t t t t q e e e e e e r e r q 8 q 8 t q t t 2 t t 5 8 t t t t t t t t t t t' -- +' t 5 8 2 q 5 q q q t t t t t t t t t t t p p y t t t t t t 8 t t t 8 t t t ' -- +'5 8 t t t 8 t t t t 8 t t t t t 5 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -- +'XoXoXoXoXoX>.t t t t t t t t t t 8 t t t t t 8 t t t 8 5 2 q t t 5 8 t t t ' -- +'t t q v ^ t t t t t t t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t t t' -- +' t t t q q 5 8 q q q q q t t t t t 5 8 t : t t t t t t t t t t t t t t : t ' -- +'t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t g l y t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t u t t t t t t t t t t t t t q t t t t ' -- +'t t t t Q t t t t 8 t 5 t t t t t t t t t t t t t t t 8 t 5 t t t 8 t 5 t t' -- +' t t t t t q 5 t t t t 5 t 8 q 2 q t t t t t t t t t t t t t t t t t t t t ' -- +'5 8 t t t t 5 8 t t t u l t q q t t t t t u +.].+.u t t 8 5 t t q 2 t t t t' -- +' t t t t t t t 5 8 t t 5 t t 8 t 8 5 t 8 t t t 8 t a v v i 5 8 t t t u q 5 ' -- +'t q 2 q 5 t t 5 t t t t t N t t t t t t t t 8 5 t t 2 q t t t t t t d J ~ c' -- +' t q t t t t t t q t t t t u t q e r r r e e e e e e e t 5 t q 5 q ^ 8 t t ' -- +'t t t t t t t t t t t 5 t t t t t t q t t 5 u g u t t t t t t t t d b y t t' -- +' t q t t t t 8 t 5 t 8 t t t t t t 5 t t t t t t 5 8 t t t t 5 8 t t >.oXoX' -- +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t t' -- +' 8 5 q q q t t t t t t t t t q q 2 t t t t t t t t t t t 8 5 8 t t t 5 t t ' -- +'8 5 4.4.t t t t t t t t t t t t q 2 q 5 2 q 5 q 2 q t t t t t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t t 5 t 5 t 8 t 5 8 t t t t u ' -- +'v R j m t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t' -- +' 8 t t t t t t t t t t t t t t t Q t t q 2 u t t t t t t t 8 5 t t t t t t ' -- +'t t 5 t t t 5 t t t t t t t t 8 5 t 5 u p a u t 8 t 5 5 q q t t t t t t t t' -- +' t t t t t t t t t t t t t t t t t t t t t t t ] 1.! 5 q t t e e e 8 P ) c ' -- +'t t t 5 q t q q q t t t t t t t t t t t 8 t t t t t 8 t t 5 8 t 5 t t t 5 t' -- +' u p i t q 5 8 t t 2 q q t 5 T T q t t q t q t t t 2 t t t t t 8 t t t t t ' -- +'8 u t t t t t t u z ~ z u 5 5 8 t t t t q 5 t t t j c p q e e W $.W e e e e' -- +' e e t t t q q 2 v t t t t t t u t t t t t u u u t t t t t t t t t j Q V p ' -- +'u t t t t t t q y d t t t t 2 u 8 t t 5 t t t 5 t t t t t t t t t t t t t 8' -- +' 5 q t t t t t t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 5 8 u 2 t ' -- +'t t t t t t t t t t t t t t t t t t t t t t v v t t t t t t t t 5 t t t t 8' -- +' t 8 5 t t t q t t t t 4.t t t t t 8 t 8 5 t t t t t t 8 t t t 5 8 t t t t ' -- +'t 5 t t t t t t t t t u 2 q q 5 8 t t t q 2 q t t t t t t t : t t t t t t t' -- +' t t t v c t t t t t t t g l i u t t t t t t t t t t t t t q q 5 8 5 8 t t ' -- +'t t t t t t t t t t t : t t t t t 5 8 q t t t t q 2 t t t Q t : t t t t t t' -- +' q 2 q 5 q 2 t t t 5 t t t t t 8 u 2 t 5 8 t t t t t t t t t m l [ d m 5 t ' -- +'t t t t t m 5 t 4.u 2 t t t u p u t t t t t t t t t t 5 t t t t 8 5 t d 1.+' -- +'X] q q t e e e e E v j t t t t t t t t t 2 t 5 q 8 5 t t t t t t t t t t t ' -- +'t t t t t q t q 2 q t t t t t t t t 5 t q 2 u t t t t t t v v t t t t t t t' -- +' t t u 8 t t t t t t t t t t t t t t t t t p d a t t t : t t t t 5 q q q u ' -- +'v @.@.E r r $. X[.r r e e e e e q t m : ^ T 2 t t t 2 i g i t t t t g l u 8' -- +' t t t 5 8 t 5 P +.+.v p u 2 q t t t t t t t t u q t t t t t t t t 5 q 8 5 ' -- +'8 t t t 5 t t t t t t t t t t q 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -- +'XoXoXoXoXoX>.t t t t q t t t t t t t 5 t t t t t t t t t t t t t t v u 5 t ' -- +'t t t t t t t 8 t t t t 5 t t t t u 8 q 2 t t 4.q t t t t t 5 t t t t u 8 t' -- +' t t 5 t t t t t t t t t t 8 v t t t t t t 2 u p p q 5 t t t t t t q q t t ' -- +'t t t t t q t t t t t t t t t ! Q.Q.^ t t t t t t t q q 2 t t t t t t t t t' -- +' t t t t q 2 q 5 t t t t 8 t t t t t t t t t t q t 8 5 t t 8 5 5 t t t t q ' -- +'q t t t t t t t t t t t t t t q q q q t t t 8 t t 5 8 t t t q t t t t t t t' -- +' 8 t t t t 5 2.|._ t q t t t t q 5 t v R 5.q q 5 8 t g v g t 5 t t t t t 5 ' -- +'t 8 t t 5 8 t t t t t ! ] T t q q e e e e E T j t t t t t t t t q q t t 8 5' -- +' t 8 t t t t t t t t 8 5 t t t t t 5 t q q 5 t t t t t t t t q q i l p t t ' -- +'t t t t 5 a t t t t t 4.t t q 2 t t 5 8 t 8 t t 5 t t t t t t t t t t t t t' -- +' t t t t t t t q 2 5 q t #.%X%X XW e W $.W r r e e e e e m t t t v q q t t ' -- +'8 u i g p t t t q p p u t t t t t t u u P #.+.x 8 5 2 q t t t t t t t t 2 q' -- ,' t t t t t t t t t t 5 8 t t t t 8 t t t 8 5 t t q t q q 8 5 q q t t >.oXoX' -- +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 5 t t t t t 5 8 q 5 8 t t t 8 5 u' -- +' x g q v t t t t t t t t t 8 t t 8 t t t t t t t t t t t 5 2 2 N 4.4.t 5 8 ' -- +'8 t t 8 t t 8 t t t 2 q t t t t t t t t q 2 t t t t a v t t 5 t t t q i x d' -- +' u t t t 5 t t q 5 q t t q q t : t 5 u t t t t t t t t '' %X+X_ t t t t t q' -- +' 5 5 q t t t 5 t t t t t t t t 5 8 t t q q t t 8 5 5 t t t t t t t t t q 5 ' -- +'t t t t t t q q t t q t q 5 q t t t t t t t t t t t t t 8 5 q t t t t t t t' -- +' t t t t t t t t t t t t t 5 q q t t p $.|.] t t t t t t t t l #.''.` 5 5 q' -- +' t t g l p q 8 t t t t t 8 t t t 8 t t t t t 8 u t t t t t q r e e e e i a ' -- +'t t t t 8 t u v t t t t t t t t t t t t t t 5 t t t t 8 t t t t t t t q t t' -- +' q t t t t t 8 5 y v l 5 t t t t q 8 q 5 t t t v 4.t t t t t t t t t t t t ' -- +'8 8 5 t t t t t t t t : t t t t t t t t t t t 8 5 k |.CXFXgX$.e e r e r r e' -- +' e e e e t t t 5 8 q 5 t t t t q t t t t t q t t t t t t t t p x g u P x t ' -- +'t t q q t t t t t t t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t' -- +' 2 q 5 q t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t ' -- +'t t t 8 5 8 8 t t t t 5 q x <.''.` a t t t t t t t t t 5 t t 5 5 8 t t 5 8 ' -- +'t t 5 8 t 8 N 2 2 u t t t t 5 t t 5 t t 5 t t t t t t t t t t t t t q q t t' -- +' 8 5 q t v u t t t t t q p u 5 t t t 8 t q q q 2 t t t q t t t u j v l u t ' -- +'t t t q T *.%.x t t t t t t t t t 8 5 t 8 t t t t t t t t t t t t q q t t t' -- +' t t t 8 5 t t t t t t q q t t t t t 8 q 2 t t q q 2 q q q t t t t t t t t ' -- +'t t t t t 8 5 q t t t t 8 5 t t t t t t t t t t t t t t q q 2 t m R _ c t t' -- +' t t t t t t v :.:.[ t q t t t t t t 5 t t t t t t t t t t t t t t t t t 2 ' -- +'q t 8 5 q 2 q e r e ; m m t t t t 5 8 G t t q t t t t t t t t t t t t 8 t t' -- +' t t 5 t t t t q 5 t t t t q 2 t t t t t t u p p 8 t t t t q q t t t t t u ' -- +'t v t t t t 5 8 t 5 t t t t t t t t t t t t t t q 5 t t t t t t t t t t t 8' -- +' w |.kXCX%X$.e e r e r r e e e e e m t t 8 5 8 q t t t t t t t t t t t 8 8 ' -- +'5 q t t t t u j p q 2 t t t t q t t t t t t t 8 5 8 q t t t t t t t t t t t' -- +' t t t t t 5 t t t t t t t q q q 2 t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"' -- +'oXoXoXoXoXoXoX>.5 8 t : t t t t : t t 5 t t 5 m q t l O.O.l : t t t t : t t' -- +' t t : t t 8 t t t : t t : t t t : 4.t q q 2 t : t t : t t 8 8 q q 2 t t : ' -- +'t t t : t t : 8 5 q : t t t t 5 : ^ t t t t t : t t t : t 5 8 t : 5 : t t :' -- +' t t 2 t t : u c ! v i t t : t 5 t t t q t 2 q t t t t : 8 5 8 t t t t : t ' -- +'t : t : t t : t t 2 8 t t t : t t t t : t t : t t 2 t 2 q q : t t q t : t t' -- +' : t t 2 t t t t t t : t t : t t t 2 q q : 8 5 8 8 8 q 2 t t : t t t : t 2 ' -- +'q t : 5 : t t : t t t q 5 t : t t : t d ~ Q 4.t t 8 : t q 5 q t t t 8 q 2 t' -- +' : t t : t t t : 8 5 8 t : t t t t : 8 2 q t 8 t : t t t t t t v t 5 q q 2 ' -- +'t 8 t 5 : t t : t t t : 8 t 2 q q q : t 8 2 q q : 8 5 8 t t t t q 5 t 8 5 8' -- +' 2 q : 8 u 2 q t p u 4.: 2 q t : t t v t t 8 t t t t : t t t t 5 8 t t t t ' -- +'q t t t t t t t t t t : t t ) |.|.$.e e e r e e e r e e e r : t t t t : 8 5' -- +' 8 : t 5 8 8 2 t t t t 2 q q t t : 5 8 t t 5 8 5 8 t p p u t : t t t t q : ' -- +'t 5 t q q 2 t t : t t t : t t t 8 : t 8 t t t t t : t t t t t 5 : t t t >.o' -- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: : : = ; = : : : = : : ; : l = : ' -- +': : p i : : : : : = : : : : : = : : : : : = ; : : : : N : : : : : ; : : : :' -- +' : = : : : = ; : : ; : : = : : : : : = : : : : : : ; : q T T t : : : : ; = ' -- +': : : : : : : : : : : : : : : : : = = : : p g = : : : : : ; : : = : ; ; : :' -- +' : : : : : : u p t : : : : : : : : : : ; : : = : : : : : : : : : : : : : : ' -- +': : : : : = : : : : : : : : = : : : l : : ; = = : : : : ; : : : : : : = : =' -- +' : ; : = : : ; : : : : ; : : : : : : : : : : : : : : : : : : : : t > N : = ' -- +'= : : : : : : : : = ; : : : : : = : : : = : : : : : = : : : : : ; : = : = :' -- +' : : : : = ; l : : : ; : = : : : : : : : : : : : = = : : : : : : : : : : : ' -- +': : : : : : : = : : : : : ; : = : = = : = a p N : ; : : : : : : l l l = : :' -- +' : : : = : : : : : : : : = : : : : = m : : : : = : : : t p w e w e e e w w ' -- +'w w e w : = : l : = : : = = : : : ; : : = : : = : : : ; : : : : : : ; : : :' -- +' : t i t : : : : : : = : : : : ; : : ; = = : : : : : : = = : = : : = ; = : ' -- +': : : = ; ; : : : 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X' -- +' X X X X X X t t t X X X X X X % X X X # * X X X X X X X X X X # * X X X X ' -- +'X X . X X X X X X X X X X X X X X X * X X X X X X X X X X X * X X X X X X X' -- +' X X : j j : % X X X X X * X X X # X X X X X X X X X X X * # X X * - : - X ' -- +'X X X X X X X X X X X X X X X X X X # : q : % X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X ' -- +'X X X X X X X X X X X X * X X X X X X X X X X X % % X X X X X X X X X X X X' -- +' X X X X X X X X X X * * X X X X X X X X X X % % X X X X X X * X X X # X X ' -- +'X X X X X X X X X * * X X % X X X X X X X # X X X X X # X X X X X X X X X *' -- +' X * # : t : # X X X X X X X X X X X X X X X X X X % X X X X X X * % = * X ' -- ,'* * X X X X X X X X X X X X * X X # X X * * = - X X X X y d 5 % X X X X X X' -- +' * X X X & & & & & & & & & & & & X X t X * X X X * X X X X X X X X X * X X ' -- +'X X X # X X X X X X X X X X * - X X X X X X X X X X X a y = * X X X X # X X' -- +' X * X X X X X * X X X X X X X X X # X X X ; q >.oXoXoXoXoXoXoXoX>.",'#10'"' -- +'oXoXoXoXoXoXoX>.: X X X X X X X X m t : X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X * t q = % % X X X X X X & & & X X X X X X X X' -- +' X X X X X X X * = - % X X X X X X X X X X X X X X X X X X X X * : % % X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X # X X t L ) R q X X X X X X X * X X X X X X X X X X' -- +' X X X X X * X X < # X X X % X X X X X X X X X X X X : X X % X X X = = * % ' -- +'X X = z J d @ % X X X X X X X X X % % & & & & & & & & & X X X t X X X X X #' -- +' X X X X X X X * X X # X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X = f H y X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : q >.o' -- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X & & & X X X < X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 2 % % X X X X ' -- +'X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X * X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X X < X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X % j O.:._ j X X X X X ' -- +'X * - % * X X * = * X % X X X X X % = = % < X X % % % X X X X X X X X X X X' -- +' X X : : 5 X X X # * X X X X * d z y * X X X X X X X X X X % % X X & & & & ' -- +'- X X X X X X X X X X X X X X X X X X X X = ; % # X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X = d f 5 # X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X * X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X < X X X X X ' -- +'X X X X X X X X @ % % X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X * : % % X X X X X & & & & & X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X < X X X X X X X X X * # X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X % j _ #._ p X X X X X % = - * X X * 8 : = X - = X X X X X - = * X X X X ' -- +'; : = X X X X X X X X X X X X * X X : : X X X X X X X X @ 5 ; * % X X X X X' -- +' X X X X X @ X X X X X X X X X X X X X X X X X X X X X X X X X X X ; : = * ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X = = * # X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' -- +'oXoXoXoXoXoXoX>.: X : : : X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' & & < < & X X X X X X X X X X X X X X * t u = X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X : X X X X X X X & & & & & X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X * ; % * X X X X X X X % % X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X % - X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ; ; % X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X ' -- +'X X X X X X X X X X X X X X X ; x R l ; X X X X X - ; = X * X X - : : * : q' -- +' = X X X X X X X X X X X - - % # X X X X X X X X X X X X X X * X X X X X X ' -- +'X X X % X @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X * X X X # X X * = % X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : >.o' -- +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X 8 X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X t ! ! j X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : X X X X X ' -- +'X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X = : = # # X X X X X - : % # X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ; ; = X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- ,'X X X X * % q : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X * : * X X X X X X X X X X X X X X X X X X X X X # X - X X X X X X X ' -- +'- 8 % X X X % # y z d : t - X X X X X < X X X X X X * % * X X X X X X X X X' -- +' X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X # u c x q X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X * X X X X X X X # X = % X X X X X X X X X X X * X X X X X X X ' -- +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X' -- +' X X X X X X % X X X = i y m X X X X X X X X X X < X & & & X X X X X X X X ' -- +'X X X X X X X p [ ] c X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * * X' -- +' X X X X X X ; : = X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X * ; : - * X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X < X X X X X X X X * - = X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X * * X % X X * * f ^ f = * X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X 2 q m X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X 8 X X X X X X X X X X q ! @.O.L - X X X X X ' -- +'X X X X X X X X X X X X X X X X X * - * # X X X X X X # 8 K x i X X X X X X' -- +' X X X ; = * X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' -- +'oXoXoXoXoXoXoX>.: X X X X X X X X X X X X @ j [ @.$._ c m X X X X < < X X X' -- +' X X X X X X X X X X X X X X X X X X X m l c i # X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X * X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X * - * X X X X X X X X X X X X X X X X' -- +' X X X X X t X X X X X X X X X X X X X X * * # X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X % t g x d 5 X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X' -- +' X h '' ,.<.! : X X X X X X X X X X X X X X X X X X X X X X - ; = X X X X X' -- +' X X % x +.+.P - X X X X X X X * 2 : = X X X X X X X X X X X X X X X : : >.' -- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX>.: * X X X X X X X X % % % l $.<.,' -- +'.<.Q.:.^ m X X X < X X X X X & & & X X X X X X X X X & & & X X X X X * X X ' -- +'X X X X X * > * # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X % = : : X X X X X X X X X X X X X X X * ; : ' -- +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X' -- +' X X X X X X X X X X X X X X X X X % 5 X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = ' -- +': * X X X X X X X X X X X X X X X X # = - * X X X X X X X X X X X X X X X X' -- +' X X X % X ; c ) T u = X X X X X X < X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X % % % X % # X X X X X X X X % X % @ X X X X X X X X' -- +' X X : X X X X X X X X X X X t [ ;.@.T - X X X X X X X X X X X X X X X X X ' -- +'X X X X X X = - X X X # # # # * x +.+.P - X X X X X X X X > = X X X X X X X' -- +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoXXX",'#10'"oXoXoXoXoXoXoX&.: X X X ' -- +'X X X X X X X % i _ ,.,.,.,.,.,.:.Z < X X X X X X X & & & & & X X X X X X X' -- +' & & & & & X X X X X X X X X X X X * u : @ X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : t : % X X X X X' -- +' X X X X X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # : X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X * : : > X X X X X X X X X X X X X X X X * : t = X X X ' -- +'X X X X X X X X X X X X X X X X % % : L O.! x : * X X X X < X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X ; p i & & & 5 m 5 X X X ' -- +'X % % % % @ % X X X X X X X * : X X X X X X X X X * * % i L c q X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X * + # # # u P P q X X X X X ' -- +'X X X X # * - X X X X X X X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX,.",'#10 -- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X l :.,.,.,.,.,.,.,.^ * X X X X X X ' -- +'X & & & & & X X X X o X X & & & & & X X X X X X X X X X X X = : : X X X X X' -- +' X X X X X X X X X X X X X X X X X * % % 2 X X X X X X X X X X X X X X X X ' -- +'X X * - 8 t - * X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X' -- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X = = % X X' -- +' X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X % ; = * X X X X X X X X X X X' -- +' X X X X X * : 5 = # X X X X X X X X X X X X X X X X X X X X * p x j u t * ' -- +'X X X X = * % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X *' -- +' c _ W c & & & % X m X X X @ = m m : - X - = % X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & &' -- +' & & * * m ; * X X X X X X X X X # = q 5 = * X X X X X X X X X X X X : t >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X c <.,.,.<' -- +'.,.<.,.,.[ m % X X X X X X & & & & & X X X X X X X & & & & & X X X X X X X ' -- +'X X X X X X * % * # X X X X X X X X X X X X X X X X X X X X X % % 8 X X X X' -- +' X * X X X X X X X X X X X X % : h 8 X X X X X X X X X X X X X X X X X X # ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X u Q v t X X X X X X X X X X X X X X X X X X X X X X X M @ X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ ' -- +'X X X * : X X X X X X X X X X X X X X X * # X X X X X X X X X X X X X X X X' -- +' X X X X * ; - % % = * X X X X : p i % X X X X = d d 5 X X X X X X X X X X ' -- +'X X X X X X X X X X X X = R :.$.R w & & & * X X X X = 5 m 5 : * * = : * X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X & & & & & & & X % @ X X X X X X X X X X X - q t = @ X X X' -- +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X l :.<.,.,.<.,.<.,.R m % X X X X X X X & & & X X X X X X X X' -- +' X & & & X X X X X X X X X X X X X X - ; * # X X X X X X X X X X X X X X X ' -- +'X X X X X X X X : X X * ; ; % X X X X X X X X X X X X X - 8 ; X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X x ] ` i X X X X X X X X X X X X X X ' -- +'X X X X X X X d o.=.X./ = X X X X X X X * * X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X = & & & X X X X X < q b j = X X X * y J' -- +' J d X X X X X X X X X X X X X X X X X X X X X X X l [ _ R w & & & X X X X ' -- +'X 5 y 5 = = X X * - X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X & & & & & & & & & X X X X X X X X ' -- +'X X X X X # * = * X X X X X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X i @.<.,.,.<.,.<.:.c % % X X X X & ' -- +'& & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - % * X X X' -- +' X X X X X X X * X X X X X X X X X X X * : X X * : t * X X X X X X X X X X ' -- +'X X X X * & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X p T Q t % X' -- +' X X X X X X X X X X X X X X X X X X d -.,.,.,.>.o.* X X X X X * : : * X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X : % X % = * X X X X' -- +' X X * * * X X X X X X X X X X X X X X X X X X X X X X X X * & 8 8 w & X X ' -- +'X X X - q q X X X X X 5 G J y X X X X X X X X X X X X X X X X X X X X X X X' -- +' * e e w w & & & X X X X X % % m m X X X X X X X X : X % ; : X X X X X X X ' -- +'X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X & & & & & &' -- +' & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : 5 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % % c :.<.:' -- +'.<.,.Q.R t X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X * * * # X X X X X X X X X X X X =' -- +' - X X X X X X X X X X X X X X X & ; w & & X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t j' -- +' t X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X 5 : X X X X X X X X X X X X X X X X X X X X X ( ,.,.,.>.,.,' -- +'.z X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X t X X y z f = X X X X X % : = X X X X X X X X X X X X X X X X X X X X' -- +' X = g v a & w w & & % X X X X X X X X X X X * * 5 u > X X X X X X X X X X ' -- +'X X X X X X X X X X X X X & & & & m & & X X X X X X % X X X X X X X X X X t' -- +' X X - g j q % # X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X ' -- +'X X X X X X X & & & & & w w & & & & X X X X X X X X X X X X X @ X X X X X X' -- +' X X X o X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X % ; c _ :.:.@.T i * X X X X X & & & & & X X X X X X X X X X' -- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & q w w & X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X = p T t X X X X X X X X X X X X X X X X X : X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' -- +'X X X X X = X.,.,.,.,.,.<.J X X X X X X * X X X X X X X X X X X : - X X X X' -- +' X X X X X X X X X X X X X X X X X * d J z : X X X X X = = * X X X X X X X ' -- +'X X X X X X X X X X * # X X p ~ '' L w ; & & & % X < < X X X X X X X * ; 8 ' -- +'% X X X X X X X X X X X X X X X X X X X X X X X X & & & & & & & % X X X X X' -- +' X % % X X X X X X : X t t X X ; g x : X X X X X $ $ $ $ $ $ $ $ 9 0 $ $ $ ' -- +'$ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X & & & & m k j & & & & X X X X X X X' -- +' X X X * w k e @ X X X X X X X X X X X X X X = 8 >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X % X % m p j i * X X X X X X X & & ' -- +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X * # X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X & q q w & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X * * X X X X X X X X t i ; X X X X X X X X X X X ' -- +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X % X o X X' -- +' X X X X X X X X X X X X X X X X X * X.<.,.>.,.,.,.H X X X X X X X X X X X ' -- +'X X X X X X t c j = X X X X X X X X X X X X X X X X X X X X X 5 z d * X X X' -- +' X X # X X X X X X X X X X X X X X X X X X q x g % # u ^ ] v = & & & % # X ' -- +'< X X X X X X X X X - ; * * X X X X X X X X X X X X X X X X X X X X X X X &' -- +' & & & & @ @ X X X X X X X X X X X X X X X X t t : X X X : : * X X X X $ $ ' -- +'$ $ $ $ $ $ 7 K P 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X & & & & & k' -- +' j & & e w X X X X X X X X X X w [ @.W w X X X X X X X X X X X X X X : : <.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % X % X % X' -- +' X X X X X X X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X' -- +' X X X X X X X X X X X X X X X % % & & & X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X - : * # X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X # 5 X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X H ,.,.,.,.,.-' -- +'.y X X X X X X X X X X X X X X X X X d ^ v : X X X X X X X % X X X X X X X ' -- +'X X X X X X X = @ # X X X X X X X X X X X X X X X X X X X X X X X = x _ R u' -- +' * X a l 5 X X X X X * X X X X X X X X X X X * % * X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X & & & & & @ % % X X X X X X X X X X X X X X X t t :' -- +' : X X * % * X X X X $ $ $ $ $ $ $ $ 7 x L 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ' -- +'X X X X X X & & & & & & w & & i T k = X X X X X X X X X e ] &.] c X X X X X' -- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXOXoXoXoX>.= # X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X * u = X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X ; : * X X % = - X X X X X X X X X X X X X X X X X X X X X # : * X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'* @ % X X X = ( ,.,.,.-.V X X X X X X X X X X X * - X X X X X : j u % X X X' -- +' X X X X X * * % X X X X X X % = % X X X X X X X X X X X X X * X X X X X X ' -- +'X X X X X X X X - L _ ) u X X * X X X X X X X < X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X ' -- +'X X X X X X X X X X t X X X : * X X X X X X $ $ $ $ $ $ $ $ $ $ 9 9 7 $ $ $' -- +' $ $ $ $ $ $ $ $ $ $ $ $ $ * % - X & & & & & & & & & & w T j = X X X X X X ' -- +'X X X q A [ R w @ % X X X X X X X X X X X X : q <.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.: * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X * * * 5 X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X % * X X X * : : * X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X t l i % X X X X = d H H y X X X X X X X X X X X % = ' -- +'m - X X X X X X X X X X X X X X X = 5 ; % % X X X X X y t : X X X X X X X X' -- +' X X X X - t = X X X X X X X X X X X X X % t x g = X X X X X X X X X X < X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X & : & X X X X X X X X X X $ $ $ ' -- +'$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ % h j u k E j & & & & &' -- ,' & & & m ; X X X X X X X X X X X w k w % X * X X X X X X X X X X X X ; 2 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * % X t X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = = X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X * j ! b : X X X X X X X X X X' -- +' X X X X X X X X X X X * = % X X X X X X X X X X X X X X X - m 5 % X X X X ' -- +'X X i i m * X X X X X X X X X X = l ^ p # X X X X X X X : e y * X % % X X #' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' -- +' X X X X X : : X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ 0 h h $ $ $ $ ' -- +'$ : g I x ! @.T & & & & & & & # X X X X X X X X X X X < X & & & < X X X X X' -- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X # * - X m X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X % X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q ' -- +'j i % X X X X X X X X X X X X X X X X X X X X X % # X X X X X X X X X X X X' -- +' X X X X X y G f m % X X X t % = - X X X X X X X X X X X : v ~ l * X X X X ' -- +'X X X j _ R p % X % * # X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X & & & & & X X X X X X * t : $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $' -- +' 9 $ $ $ 7 K O.I 9 $ $ $ $ X 8 u 8 c R k & X X X X X X # X X X X X X X X X ' -- +'X < < & & & & & < X X X X X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X % X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X = G o.J f & & & X : * X X % X X X X X X X' -- +' X X X X t j q X X X X X X X % c _ _ j % % - : - X X X X X X X X X < X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X 5 $ $ $ ' -- +'$ 7 $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ h I K 7 $ $ 7 7 # X X X ; m % X X X X X' -- +' * = X X X X X X X X X X X X * & & & & & % * o X X X X X X X X X X X : : >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X - = * X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X * : X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : % % X X X' -- +' X X X X X X X X X X X X X X X X X * = - X X X X X X X X X * z ( X._ k & & ' -- +'& X X X X X X X X X X X X X X X X * % X X X X X X X X X q c k m % = : ; * X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' -- +' X X X X X X X X # $ $ $ 7 9 7 $ $ $ $ $ $ $ $ & ; & $ $ $ $ 7 0 7 $ $ $ 7 ' -- +'Y K 9 X X X X % % X X X = g j : X X X X X X X X X X X # & & & & & ; - M X X' -- +' X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X - ; - X X X X X X X X X X X X * - X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X - * X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 5 # X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X = p b t X X X X X X X X X X X X X X X X X X X X X = t = X X X X X' -- +' X X X X X 5 ( 1.:.[ e & & X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X & @ % @ : : = X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X * X X X X X t X X X X X X * * * X X X X * $ $ $ a y $ $ $ 0 h 0 $ $ & w <' -- +'.,.,.$ $ $ $ $ $ $ $ $ K Y ) x * X X X X X X X X t v R p X X X X X X X X < ' -- +'X X # X & & & 8 g u < < X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X @ % % X X X X X X X X X X X * : : * ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : = *' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X # : v ^ p X X X X X X X X X X X X X X X X ' -- +'X X X X X X = * X X X X X X X X X X X k @.<.] j & & X X X X * * X X X X X X' -- +' X X X X X X X X X X X X X X = - @ % % % : : % X X X X X X X X < X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X % = : - X X X X m X X X X X * ; t : % X X X X $ $ $ ' -- +'$ $ t t 7 P ) x $ $ & k ,.,.,.$ $ $ $ $ $ $ $ $ K +.+.k % @ % X X X X X X *' -- +' i p : X X X X X X X X X X X X X % % * 8 h q * X X X X X X X X X X X : t >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X X X X X X' -- +' X X X X X X X X % ; ; * X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X * 8 u ; * X X X X X X X X X X 5 X' -- +' X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X % 2 X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X u p : % X X X' -- +' X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X * u ! ] R e & ' -- +'X X X X * = : = t t @ % X X X X X X X X X X X X X @ u l p * X X X # * X X X' -- +' X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X % - : - X X X t : X X X X X' -- +' * t c k : X X X X $ $ $ $ $ $ $ 7 h P 0 $ $ & w ,.,.,.$ $ $ $ $ $ $ $ $ 0 ' -- +'I c 8 > : * X X X X X X X X X % X X X X X X < X X X X X X X X X % : - X X <' -- +' X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X % @ X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * p x 8 ' -- +'X X X X X X X X X X X 8 X X % X # X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X % % * X % X X X X X * X % X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X t g t @ @ m X X X X % ; t Q T m @ X X X X X X X X X X X X X ' -- +'X p ^ l - X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'* - * X X X X X X X X X X X q P L t X X X X $ $ $ $ $ $ $ $ $ 7 $ $ $ $ & &' -- +' & $ $ $ 7 9 7 $ $ $ $ $ $ * X = = > X X X X X X X X X X X X X X = M < X X ' -- +'X X X X X X @ X % % % X X < X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X 8 t ; X X X X X X X X X X X : X X ; g x t % X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X % = : * X X X X X X X X d z f = % X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X m X X X X * X t Q v 5 X X' -- +' X X X X X X X X X X X X X : p u X X X X X X X X X X X X @ < X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X % - * X X X X X X X X X X - t u - * X X X $ $ $ ' -- +'$ $ $ $ $ $ $ : 2 $ $ 7 $ $ $ $ $ u P 0 $ $ $ $ $ $ # % * * X X X X X X X X' -- +' X X X X X # y R R l * X @ % X X X X X X X % X X X X X X X X X X X X ; : >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X * X * : - * X X X X X X X X * :' -- +' X g _ _ L ; X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X' -- ,' X X X X X a J o.( f X X X X X X X X X X X * - X X X X X X X X X X X X X m ' -- +'X X X X X X # * t t % X X X X X X X X X X X X X X X X X X O O O O O O O O O' -- +' O O X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X * - - X X X X X X X X X' -- +' X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ 7 t d 0 w & & $ $ 9 0 0 $ $ $ $ $ ' -- +'$ % % X X X X X X X X X X X X X X X = A *.:.` i X X = ; X X X X - : : X X X' -- +' X X < X X X X # * = t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -- +'8 : % * X X X X X X X X X X g _ O.L ; X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X @ X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X ; : : X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X * X X X X X X * X X X X X X X X y ( !.o.z X X X X X X X X X X % = = % X' -- +' X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X ' -- +'X X X O O O O O O O O O O 4 d 3 X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X * X X X X X & & & X X X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 9 k q' -- +' & & & $ $ $ $ $ $ $ $ $ 7 g g - X X X X X X X X X X X X X % : { >.,.] p % ' -- +'m c l : X X X = t q * X X X X < X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X = % X X X X X X X X X X X # : x P i - = X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' -- +' X X % @ ; & * X X X X X X X X X X X X X X X X X X X X X X X X X X X : t : ' -- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X * a q X X X X X X X X X X X * 5 H ( ( y X X ' -- +'X X X X X X X X % @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X O O O O O O O O O , s / o.( B X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X t X X & & & & & X X X X * * # X X X $ $ $ ' -- +'$ $ $ $ $ $ $ $ $ $ 7 g w & & & $ $ $ $ $ $ $ $ $ K _ ) i X X X X X X X X X' -- +' X X X X X X b ] 2.! m % u T Q 8 X X X - : ; X X X X X X X X X X X X ; 2 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X * - X = - * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X j T _ R k = X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X * = * X X X X X % : X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X y Q b m X X X X X X' -- +' X X X X X X 5 d a * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X % X X X X X X X X X X O O O O O O O O O 4 J' -- +' -.<.=./ : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X a * X & & & & & X' -- +' X X X = = # X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 7 i w & & t y $ $ $ $ $ $ $ $ ' -- +'K ) R i * X X X X X X X X X X X X X X - p j m @ X ; i u * X X X * % % X X X' -- +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X & c 1.:.:._ i X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X t X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X t v l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X X ' -- +'X X O O O O O O O O O 4 / ,.,.,.( t X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X # : > X X X X X X X X X X X X ' -- +'X X X p d 5 % & & & & & X X X X * = X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 &' -- +' & & $ a a $ $ $ $ $ $ $ 7 g i = # X X X X X X X X X X X < X X X X X % * = ' -- +'X X X X X X X * - % X X X X X X X < < X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : * X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X : % # X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- ,' X X X d _ 1.:.[ d % X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X * : : X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X 5 X X X X X X X X X X X X X X' -- +' X X @ % X X X X X X X X X X O O O O O O O O O O H o.N...V * X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X j ^ x' -- +' : X X X X X X X X X X X X X X d G d = X & & & X X X X X X # X X X X $ $ $ ' -- +'$ $ $ 9 9 7 $ $ $ $ $ $ $ $ $ $ $ $ : 5 $ $ $ $ $ $ X X # X X X X X X X X X' -- +' X X X X X X X X X * = = * X X X X X X * = - X X X X X X X X X X X X : t <.' -- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX,.: X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X * > X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' 5 % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X ' -- +'X X X X X X X X X X * a u * % X % q v E k ; % X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X % X X X X X X X' -- +' X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X X X X : X ' -- +'X X X X X X X X X X X X X 5 f G 5 X X X X X X X X X X O O O O O O 4 4 4 O 4' -- +' G J Z 2 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X * = ^ *.~ a X X X X X X X X X X X X X X : 5 5 % X X X X X X' -- +' X X X X X X X X X $ $ $ $ $ 7 h K 9 $ $ 7 7 $ $ $ $ $ $ $ $ $ $ : $ $ $ $ ' -- +'$ X X X X X X X X X X X X X < X X X X X X X X = * X X X X X X X X % % X X X' -- +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X = p j t X X X X X X X X X X X X * 5 v v 5 % X % X X ; % @ X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X % X X X X X X X X X : l l : * X X X X X X X X X' -- +' X * X % X X X X X X m X X X X X X X X X X X X X * b ( o.H = % % X X X X X ' -- +'X X O O O O O 4 3 y 5 O O O O O O X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X * b ~ v : X X X X X X X X X X X ' -- +'X X X X @ @ % X X X X X X X X X X X X X X X $ $ $ $ $ $ u h 9 7 0 Y Y 7 $ $' -- +' $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X < < X X X X X X X % X X ' -- +'X X X X X X X * X X X X X X X X X X X X < X = 5 >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXOX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X q T ! p X X X X X X X X X X X X X : l l' -- +' m X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X @ % X * X X X X X X X 5 ' -- +'c b : X * X X X X X X X X - ; * @ X X X X X X m X X X X X X X X X X X X X @' -- +' z o.X.J 2 % % # X X X X X X O O O O O O 4 4 4 O O O O O O X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X X = u 8' -- +' X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X $ $ ' -- +'$ $ $ 7 7 7 0 Y `.Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X < X : 8 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - j c t % X X ' -- +'X X X X X X X X X % X = = X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * *' -- +' X X = - * X X X X X X # t t * : 8 = X X X X X X % * ; * X X X X X X X X X ' -- +'X X X X X X X X X X X X X y H J d * X X X X X X X X X O O O O O O O O O O O' -- +' O O O O X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X X X ' -- +'X X X X X X X X X * X X # X X X X X X X X X X X X X t X X X X X X X X X X X' -- +' X X X X X # X X X X $ $ $ $ $ $ 7 $ 9 Y Y Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ : ' -- +': * X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X = = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X % X * X X X X X X X X X X X X t t 5 : X X X X t t : t : t t t : X X' -- +' X X : 8 : : X X X X X # X X X X X * X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X * = ; * X - - * X X X X X X X * X * 5 8 = X X % X X * X' -- +' X @ X % X X X X X X m i : X X X X X X X X X X X X X = m % X X X X X X X X ' -- +'* O O O O O O O O O O O O O O O O X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'t : X X X X X X X X X X X X X X X = = X X X X X $ $ $ $ $ $ $ $ 0 0 K 7 $ $' -- +' $ $ $ $ $ $ $ $ $ $ $ X X : * X X X & & & & & < X X X X X X X X X X * - - ' -- +'X X X X X X X X X X X X X X X X X X X X X X N : ,.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X m i = X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X m m 5 m X X X t j l u X X X X : t : t X X X X X X % X X ' -- +'X X X X X X t X X X X X X X X X X * X X X X : : 5 : X X X X : : : : * X : m' -- +' : t t X X X X X X X X X X X X X X X X X X X X % = * X X % X X X X X X X X ' -- +'X X # = = # X X X ; l T c m % X X X X X X X * b ~ j > X X X X X X X X X X X' -- +' X X X X X X X X X X X X X % + O O O O O O O O O O O O O O X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X * X' -- +' X X X X X X X X X X X X : X X X X * > # X X X X X X X X * : : * X X X X X ' -- +'$ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X # # X X X & & & & & X X' -- +' X X X X X X X X X * - = X X X X X X X X X X X X X X X X X X X X X X : 4.<.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -- +' : v ! l = m = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - ' -- +'= X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X m m 5 m X X X X X X X X X X : c Q u X X X X X' -- +' X X X X X X * X X X X X X X X X X X : X X X X X X X X X X X X X X X * X X ' -- +'X X X X X X * X X X X X X X X X X X X : t t : X X X X X X X X X X X X X # #' -- +' X X X X X X X X X X X X X X X X X X X X X j ] :.] j X X X X X X X X = v ] ' -- +'T ; X X X X X X X X X X X X X X X X X X X X X X X % - 4 O O O O O O O O O O' -- +' O * % O X X X @ * X X X X X X X X X X X X X X X X X X X X o & & & X X X X ' -- +'X X X X X X X X X X q g g = X X X X X X X X X X t X X X X * * = * X X X X X' -- +' X X X * : = # X X X X X X X $ $ $ $ $ $ 7 7 $ $ $ $ $ $ $ $ $ $ $ X X X X ' -- +'X * = = X X & & & & & X X X X X X X X X X X X * * X X X X X X X % X X X X X' -- +' X X X X X X X # * = t >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX|.y X X X ' -- +'X X X X X X X X X X X X X 8 ^ ] v m 5 : X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X * - % X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X % % q 2 X X X X : : t t X X X X X X X X X X X X X X ' -- +'X X X X = g l q X X X X X X X X X : l x 5 X X X X X X X X X X t X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X # : : 2 q % X X X : % % X X X X X X X X X X X X X X X X X X X X X b @.<.@' -- +'.l X X X X X X X X q i c w & & % % X X X X X X X X X X X X X X X X X X X X ' -- +'X * * O O O O O O O O O O O X O X X X X % = * X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X ; c +.[ j X X X X X X X X X X X ' -- +'X X X X X * * # * # X X X X X X X X X X X X X X X X X X X * % = X X X X X X' -- +' X X X X X X X X X X X X X * = % * X : & M < o X X X X X X X X X X X X X X ' -- +'X X X X * > * X X X X X X X X X X X X X X X : t b.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoXn.d X X X X X X X X X X X X X X X X * g x i = = = X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X : : X X X : q : X X X X X * X X X X X' -- +' X X X X X X X X X X X X X X X X X = ; # X X X X X X X X X u ^ ` g X X X X ' -- +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X % % X X X X : t : X 5 8 t X X X X X X X ' -- +'X X X X X X X X X i [ ] ! t X X X X X X X t % & & & & & X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X O O O O O O O O O O O X X X X X = a : * X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : R @.O' -- +'.g X X X X X X X X X X X X X X X X X X u h 8 * X X X X X X X X X X X X X X ' -- +'X X X X X = : * X X X X X X X X X X X X X X X X X X X X X X X X 8 X X X X X' -- ,' X X X X X X X X X X X X X X X X = : > X X X X X X X X X X X X X X X : q <.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX,.5 X X X X X X X X X X X X X X X X' -- +' X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X t X X X X X X X X X X X % % X X X X X X X X X X X X X X : * * X X X * ' -- +'X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X t v V u X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * > * X * X' -- +' X X X X X : X X X X X * X * * - > X X X X # m y t X X X X X X X X t X & & ' -- +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X - q : * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X g P P t X X X X X X X X X X X X X X X X X * g P h * X X' -- +' X X X X X X X X X X X X X X X * : : * * % X % X X X X X X X X X X X X X X ' -- +'X X X X X X X * : X X X X X X X X X X X X X X X X X X X X * = % X X X X X X' -- +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X % : X X X X X X X X X # % % % X X X X X X t : 8' -- +' 5 X X X X X X X X X X X X X X X X X X * ; = * X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X % : : * X X X X X X X X * X X X X : : : 8 - : - X X X X X X X X' -- +' X X X X X X X X t X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X * % : : X X X X X X X X X t X X ' -- +'X X X X X X X u h q X X X X X X X X X X X X X X X X X X = u : * X * X @ * *' -- +' X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X X X ' -- +'X X X X % X X X X X X X X X X X X X X X X X ; 2 >.oXoXoXoXoXoXoXoX<.",'#10 -- +'"oXoXoXoXoXoXoX>.: : > X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X ' -- +'X X X % 8 : X X X X X X X X X X X X X X X X X X X X X X X X X X = q : % * X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X = : * X X X X X X X X X X X X X X X ' -- +'X X % * * X : 5 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X * : X X X X X X X X X X * * X X X X X X X X X X X X X X X ' -- +'X X X * : : X X X X * : * X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * # X : 2 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXOXb.8.v v u X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X * ; % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X % % X X X X X X X X X X : 2 X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X % = = * X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X ; = X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % % % X X X' -- +' X X X X X X X X X X X X X X X X X X % % 5 : X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X # X X X X X X * > = * X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X * 8 8 * : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v.'' ` l' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X % X X t : t : X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X - : ; * ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # X X X X X ' -- +'X X : t t t X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- ,'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ X X ' -- +'X X X X X X X X X X X X X X X X < X X X X X X X % X % 2 : X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X 8 h g ; ; t >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.` ` ^ F X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X : 2 X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X : X * - * X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X : m X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * m ' -- +': X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X * X X X X X X X X < X X X X X X X % %' -- +' % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - h u - : 8 >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t u t * % X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # * X X X X' -- +' q : * : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X : l l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X % : X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X : 2 X ' -- +'X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X p R v t X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q h : X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X * % = % : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -- +'X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ; : * X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X 5 : X X X X X X X X t X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X : l l : X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X # X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X * : * X % % X X X X : m X X X X X X X X X = : ; * X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X c 2.` g X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X - h K 8 X X X X < < X X X X X X X X X X X X X X X X X : X X X X X ' -- +'X X X X X X X X X X X X X X X X X X # X # % : 5 >.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.: + o X X X X < X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X # = - X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X : : 8 X X X X X X X % X t X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X X X' -- +' X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -- +' X X X X X X X X X X X X X X X X X : u : # * X X X X X X X X * X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X X : X X % % X X X X X t m m X X X X X X' -- +' X > : : X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X i T ' -- +'T t X X X X X X X X X X X X X X X # * X X X X X X X X X X * # X X X X X X X' -- +' X X X # % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -- +'X X X X X X X X X X X X X X X X X X : u : # X X X X X X X X X X X X X X X X' -- +' X # X X X X * : : # X X * X X X X X X X X X X X X X X X X X X X % % : : >.' -- +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t N : = = ; : : = > N : : = - : =' -- +' : : ; = : : : = : = : = : : - = : : : : : : : : : : : ; = : : = : : ; : : ' -- +': = : : ; = = : - : - : : = : : : : = - : : : : = l = : : : : : : : : : : =' -- +' : : : : : : = ; : ; = : : : : : = : : = = : : ; = : : : : : : = : - : : ; ' -- +': = : : : : : : : : = ; : : : - : : = : - : : : : : : : = ; : ; = : : ; : :' -- +' ; : = ; : ; : = : : : : : = - : : : : : = : : : : = : - : - : = : : : : : ' -- +'; = : : : : - = : : : : : : = : = : : - = : : : ; : : = : = T O.! 8 : = : :' -- ,' : : : : v '' ^ : : : : = : : ; = : : = ; : : : = : : : ; = : : : : : : ; :' -- +' : = : ; m 2 y m : ; : l = : : : : : : : = = : - : : : ; = : : : : : : : = ' -- +': : : - : ; : : : = : : j p : : : ; ; = ; = : ; ; : : = : : : = = : : - : :' -- +' = : : : = = : ; = : - = : : : : : ; l = ; : : : - = : : : : : : : = = : : ' -- +'- : : : : = ; : = = : ; : = : : : : : = : = : - : : : : : = : : : : : - : :' -- +' : ; : : : = ; - = : : : : : : = : : - : = : l = : : : : : : = : = ; : : : ' -- +': : = - : : : : : ; 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t' -- +' : t t t 8 t t t 8 5 q q : t t t q q q t t t t 8 8 q q 5 q q q t t t t t : ' -- +'t t t q q t t : t t t t 5 q q t t t t t t t t 2 q t t t t t t q q q 5 v L ^' -- +' : q t t t t 8 t 5 : t 8 5 t t t t t t 8 5 : t t t 8 t t t t t t t : t t t ' -- +'q q t t t t t 8 : t t t t t t t t t q 2 : t t t q q t t t t 8 5 : t t e e e' -- +' q : t t t t : t t t t t u 2 t q q q : t t t t t 5 t t t : q : 5 8 5 t t t ' -- +'t t t t t 2 q t t q q t t 8 5 q q : t t t t t 5 t t t q q : t t t q q t t t' -- +' t t t t t T O.! 8 t t 8 ^ ` v 5 t %.OX&.l 5 t t t t t t t t t t t u ` '' l' -- +' q q : t t t 5 8 t t 5 q q 2 t t t p X.!.X.y t q 2 T T v a q 8 t t t 8 5 q ' -- +'q : t t t q q t t 8 5 q q : t t t 5 q q q t t t t m 5 q 5 t t t t t t t t 2' -- +' t t t t t t 5 t t t t : q q t 8 5 q 8 t t t t 8 q t t 5 8 5 2 v t t 5 : t ' -- +'t t q t 5 t q 2 q q 8 8 t t t t t t t t q q : t t 8 q q t t t t t 8 8 5 8 t' -- +' t t t t 8 5 q q 8 t t 4.q 2 q 5 t t t t 8 q t t q q 8 5 5 8 t t t t t t V ' -- +'T q t t q u t q 5 8 t t t 5 t t t t t : t t t q t <.oXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoX>.t t t t 4.4.t t q 2 t t t 4.8 2 8 t t t 2 8 t t 5 t t 5 2 ' -- +'q t 8 2 8 5 8 5 t t t t t t t q 2 t t t t t q : t q 2 t t t t t t t t q q t' -- +' t t t t t t q 2 8 8 5 q 2 q 2 t t t t t 8 8 5 t t q 2 t t t 8 5 8 t t t t ' -- +'5 t t t t t t t 8 t t t q 2 t t t t t 5 t t t t t t t t t t q u t t t t 2 8' -- +' t t 5 t t 8 t t e e r r e q t t t t t t t t 5 x ` ^ t 5 q 2 t t t t t t 8 ' -- +'t t t q q v u 8 t t : t t t t t t q q t t 2 8 t t 5 q q 2 t t t t t t 8 t :' -- +' t t 2 8 t t t q 2 t t t t t : t t t p t 5 t t u %..X'' t t ^ '' ~ t 8 t : ' -- +'t t t t t t t t q b &.,.~ t 2 t t t t t t t t 8 q q 5 t t t H (.iX^.J t q q' -- +' 5 : t 8 5 5 8 t t 5 q q 2 t t t t 2 8 t t 5 8 q 2 8 5 5 8 t t 2 q t t t t ' -- +'5 m t q t t t t t t t t q q t t 5 8 t 8 t t t : 8 2 t t 5 q 8 5 t t t t 2 q' -- +' t t 8 : 8 ^ t t t 8 t t t t 5 q 8 t q q q 2 2 q t t t t t t t t t 2 t t t ' -- +'t q 2 t t t t t 5 5 8 t t t t t t t t t 2 t t t t 5 q q q t t t t 2 q t t q' -- +' 2 5 8 t t t t t t t t q G v t u ` | v 5 8 t t t t 8 t t t t t t t t t q 2 ' -- +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX.X>.>.>.>.>.>.>.<.n.>.>.>.>.>.n.>' -- +'.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.' -- +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.,.,.XX,.>.>.>.>.>.<.<.>.>.>.>.>.<.>.>.>.>.>.>' -- +'.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' -- +'>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.<.>.>.<.<.<.<.<.<.<.>.>.>.>.>.>.>.>.>.>.X' -- +'XoX.X,.>.>.>.>.>.<.>.>.>.>.>.>.>.<.<.n.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' -- +'<.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>' -- +'.XXXXXX>.>.<.>.<.>.>.>.>.>.>.>.>.>.>.>.>.,.XX.X.X<.<.>.>.>.>.>.>.>.>.>.>.>.' -- +'>.>.>.<.<.,.+XOX+X,.>.>.>.>.>.>.>.>.<.>.,.,.,.XX>.>.>.>.>.>.>.>.>.<.>.>.>.>' -- +'.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.' -- +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<' -- +'.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.' -- +'>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<..XoXXX>.>.>.>.>.>' -- +'.>.>.>.>.>.>.>.>.>.>.>.>..XoXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX>.",'#10 -- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX'' ",'#10 -- +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoX.X^ ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX,.p ",'#10'".XoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXX^ q ",'#10 -- +'"~ XXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -- +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -- +'oXoXoXoXoX,.~ u 2 "'#10'};'#10#7'Stretch'#9#0#0#6'TLabel'#6'Label1'#4'Left' -- +#3')'#1#6'Height'#2' '#3'Top'#2'l'#5'Width'#3#144#0#9'Alignment'#7#14'taRigh' -- +'tJustify'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#10'Sky Charts'#10 -- +'Font.Color'#7#7'clWhite'#11'Font.Height'#2#230#10'Font.Style'#11#6'fsBold'#0 -- +#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'H' -- +'eight'#2#25#3'Top'#3#151#0#5'Width'#2'_'#7'Caption'#6#10'Version 3 '#10'Fon' -- +'t.Color'#7#7'clWhite'#11'Font.Height'#2#236#10'Font.Style'#11#6'fsBold'#0#11 -- +'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Heig' -- +'ht'#2#14#3'Top'#3#240#0#5'Width'#3#208#1#7'Anchors'#11#6'akLeft'#7'akRight' -- +#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6#14'Copyright (C) '#10'Font.Color'#7 -- +#7'clWhite'#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label4'#4'Lef' -- +'t'#2#16#6'Height'#2'*'#3'Top'#3#190#0#5'Width'#3#204#1#7'Anchors'#11#6'akLe' -- +'ft'#7'akRight'#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6'yThis program is fr' -- +'ee software; you can redistribute it and/or modify it under the terms of th' -- +'e GNU General Public License'#10'Font.Color'#7#7'clWhite'#11'ParentColor'#8 -- +#10'ParentFont'#8#8'WordWrap'#9#0#0#6'TLabel'#9'LabelDate'#4'Left'#3#128#0#6 -- +'Height'#2#19#3'Top'#3#157#0#5'Width'#2' '#7'Caption'#6#4'Date'#10'Font.Colo' -- +'r'#7#7'clWhite'#11'Font.Height'#2#241#11'ParentColor'#8#10'ParentFont'#8#7 -- +'Visible'#8#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#3#184#11#7'On' -- +'Timer'#7#11'Timer1Timer'#4'left'#2#8#3'top'#2#16#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tf_splash','FORMDATA',[ -+ 'TPF0'#9'Tf_splash'#8'f_splash'#4'Left'#3#165#1#6'Height'#3#7#1#3'Top'#3#156#0 -+ +#5'Width'#3#240#1#13'ActiveControl'#7#6'Panel1'#11'BorderIcons'#11#0#11'Bord' -+ +'erStyle'#7#6'bsNone'#7'Caption'#6#8'f_splash'#12'ClientHeight'#3#7#1#11'Cli' -+ +'entWidth'#3#240#1#10'Font.Color'#7#7'clBlack'#11'Font.Height'#2#245#9'FormS' -+ +'tyle'#7#8'fsSplash'#8'OnCreate'#7#10'FormCreate'#9'OnMouseUp'#7#11'FormMous' -+ +'eUp'#6'OnShow'#7#8'FormShow'#8'Position'#7#14'poScreenCenter'#10'LCLVersion' -+ +#6#6'0.9.29'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#3#7#1#3'Top'#2#0#5 -+ +'Width'#3#240#1#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#7'Caption' -+ +#6#14'Cartes du Ciel'#12'ClientHeight'#3#7#1#11'ClientWidth'#3#240#1#8'TabOr' -+ +'der'#2#0#10'OnDblClick'#7#12'logoDblClick'#0#6'TImage'#6'Image1'#4'Left'#2#0 -+ +#6'Height'#3#7#1#3'Top'#2#0#5'Width'#3#240#1#5'Align'#7#8'alClient'#10'OnDbl' -+ +'Click'#7#12'logoDblClick'#12'Picture.Data'#10#182#21#4#0#7'TPixmap'#170#21#4 -+ +#0'/* XPM */'#10'static char *splash[] = {'#10'/* columns rows colors chars-' -+ +'per-pixel */'#10'"496 263 256 2",'#10'" c #00090009000A",'#10'". c #0411' -+ +'040B0AF1",'#10'"X c #0F640F630F63",'#10'"o c #087D07CA06D8",'#10'"O c #0' -+ +'01C0D101A81",'#10'"+ c #081208301667",'#10'"@ c #0CC4119214A6",'#10'"# c' -+ +' #11AB0E410D7B",'#10'"$ c #1A9A003F003F",'#10'"% c #10FC106B0E9D",'#10'"&' -+ +' c #1A7E1A7B0D09",'#10'"* c #13C4139D1353",'#10'"= c #16311A1F1A95",'#10 -+ +'"- c #1977163F1535",'#10'"; c #1B1B1A381648",'#10'": c #1B461B3D1B20",' -+ +#10'"> c #123012E019DA",'#10'", c #068C068C26D5",'#10'"< c #002E002B3D8C"' -+ +','#10'"1 c #08B309093636",'#10'"2 c #1597177B286D",'#10'"3 c #1741172C38' -+ +'1C",'#10'"4 c #0BB6182424C0",'#10'"5 c #1BEC220F2385",'#10'"6 c #1B71352' -+ +'D3670",'#10'"7 c #24700AA80A5D",'#10'"8 c #22BD1DA11C1E",'#10'"9 c #2872' -+ +'170015AC",'#10'"0 c #334D18DA1847",'#10'"q c #234921C81D9D",'#10'"w c #2' -+ +'7C727A81802",'#10'"e c #373737371B1B",'#10'"r c #39BA390E1CF2",'#10'"t c' -+ +' #203D203C203B",'#10'"y c #255129D92A44",'#10'"u c #29732612256D",'#10'"i' -+ +' c #2A8B2998265E",'#10'"p c #2BC72B442AA9",'#10'"a c #24E425562A69",'#10 -+ +'"s c #29552AAD358E",'#10'"d c #2CAF32EA3381",'#10'"f c #2BC037D039B6",' -+ +#10'"g c #326B2DA92C55",'#10'"h c #38702868269A",'#10'"j c #32FF31AC2E04"' -+ +','#10'"k c #395C373727C1",'#10'"l c #344733E13302",'#10'"z c #338C3B623C' -+ +'47",'#10'"x c #3A98349A32AF",'#10'"c c #3B2F39AA3545",'#10'"v c #3BFB3BE' -+ +'23B09",'#10'"b c #33E134D539EF",'#10'"n c #30302F2F3F3F",'#10'"m c #1F77' -+ +'206D1C58",'#10'"M c #109410AD4DAB",'#10'"N c #0E940E946C52",'#10'"B c #2' -+ +'81F288146B9",'#10'"V c #379E38F24629",'#10'"C c #3782377757F8",'#10'"Z c' -+ +' #2AA32EFB5046",'#10'"A c #39C739C766E1",'#10'"S c #37E237F876F6",'#10'"D' -+ +' c #2833284A7166",'#10'"F c #1F1F20205252",'#10'"G c #3ABA42F543F6",'#10 -+ +'"H c #39F346AE485B",'#10'"J c #3D604CBC5223",'#10'"K c #445D2C312ABA",' -+ +#10'"L c #434D3CDB3A2C",'#10'"P c #4617395F370D",'#10'"I c #4E5437043039"' -+ +','#10'"U c #7291000A000A",'#10'"Y c #55432DFF2C50",'#10'"T c #444E42823D' -+ +'3F",'#10'"R c #4A4245163BFF",'#10'"E c #4ED647A231E6",'#10'"W c #630D5A5' -+ +'A3D3D",'#10'"Q c #40A740A34099",'#10'"! c #4C6D4AC14505",'#10'"~ c #4BE7' -+ +'4BC14B2B",'#10'"^ c #461E481E487C",'#10'"/ c #46CA48965860",'#10'"( c #4' -+ +'801563F585D",'#10'") c #558D4A23469F",'#10'"_ c #58A155E04B83",'#10'"` c' -+ +' #540053BD53BD",'#10'"'' c #5C185C085BE8",'#10'"] c #5A4F5A03553F",'#10'"' -+ +'[ c #4E55511C444E",'#10'"{ c #469846A86677",'#10'"} c #4958493A762A",'#10 -+ +'"| c #569B59366572",'#10'" . c #54085ACF7064",'#10'".. c #567E67C869AB",' -+ +#10'"X. c #5B7072B1752F",'#10'"o. c #5309676069F4",'#10'"O. c #66E6591E5412"' -+ +','#10'"+. c #6CB3544C5052",'#10'"@. c #681963F15A0A",'#10'"#. c #772D66F45D' -+ +'19",'#10'"$. c #6D636C17528D",'#10'"%. c #644C644C6483",'#10'"&. c #6DCB6DC' -+ +'A6DC7",'#10'"*. c #681B6989680D",'#10'"=. c #682B681B783B",'#10'"-. c #6457' -+ +'77FD79D1",'#10'";. c #77126ABF641D",'#10'":. c #7910770D6947",'#10'">. c #7' -+ +'62F76307630",'#10'",. c #7B2C7B387B33",'#10'"<. c #793F79DF769B",'#10'"1. c' -+ +' #6AB672B86A4F",'#10'"2. c #62B85FB55C5C",'#10'"3. c #3EBF41414B4B",'#10'"4' -+ +'. c #000F000E80F1",'#10'"5. c #0B8B0B8B8606",'#10'"6. c #1305134993E4",'#10 -+ +'"7. c #14431489B1C8",'#10'"8. c #2F1A2EC69283",'#10'"9. c #2FB52FEDB24D",' -+ +#10'"0. c #0E5F0E5FCF63",'#10'"q. c #00D100D4FFD3",'#10'"w. c #0BC30B92FFE7"' -+ +','#10'"e. c #012C012CF4F4",'#10'"r. c #139D139DFF4D",'#10'"t. c #1B2F1B11FF' -+ +'C4",'#10'"y. c #18C3186EFCFC",'#10'"u. c #099C09AEEA57",'#10'"i. c #30C830C' -+ +'8CF14",'#10'"p. c #23E123E1FFC8",'#10'"a. c #2C242C12FFFF",'#10'"s. c #2811' -+ +'283FF99C",'#10'"d. c #33E633DBFFEE",'#10'"f. c #3BFC3BF8FFF1",'#10'"g. c #3' -+ +'7CA376EFA55",'#10'"h. c #2F402F40EF44",'#10'"j. c #1F1F2020E8E8",'#10'"k. c' -+ +' #3F3F4040FFFF",'#10'"l. c #40963EE9FFFF",'#10'"z. c #5631560D9704",'#10'"x' -+ +'. c #4C3C4C648C8C",'#10'"c. c #56BD569BB73F",'#10'"v. c #4D4C4CF1AC51",'#10 -+ +'"b. c #68F869078947",'#10'"n. c #705274D58E51",'#10'"m. c #6A226A22A7E5",' -+ ,#10'"M. c #7272727CB4F2",'#10'"N. c #5F5F7B7B8484",'#10'"B. c #52FB52FBD130"' -+ +','#10'"V. c #43A943A7FFE0",'#10'"C. c #4BBD4BBFFFE0",'#10'"Z. c #492C4910F8' -+ +'DB",'#10'"A. c #53D553C2FFE2",'#10'"S. c #5BE55BE1FFF9",'#10'"D. c #593B58E' -+ +'FF9DB",'#10'"F. c #50154FD9EDF7",'#10'"G. c #5F2C60FAFFFF",'#10'"H. c #60C7' -+ +'5EC5FFFF",'#10'"J. c #71897159D2E4",'#10'"K. c #65A565A5EA9D",'#10'"L. c #6' -+ +'40B6404FFF4",'#10'"P. c #6BB86BA8FFF8",'#10'"I. c #6846685DFB96",'#10'"U. c' -+ +' #6F4470DBFF54",'#10'"Y. c #742D7434FFF1",'#10'"T. c #7C117C14FFED",'#10'"R' -+ +'. c #785278CEFBFB",'#10'"E. c #754E750EF0BD",'#10'"W. c #3ABB41C7AB07",'#10 -+ +'"Q. c #79F9828272F2",'#10'"!. c #6AA384DA8824",'#10'"~. c #74378AD08B9F",' -+ +#10'"^. c #7A3396799A44",'#10'"/. c #74748DB291DA",'#10'"(. c #7CD29E9EA54F"' -+ +','#10'"). c #7D7D80DDFFD0",'#10'"_. c #7F7FA6A6FFFF",'#10'"`. c #8594685964' -+ +'64",'#10'"''. c #88337D227703",'#10'"]. c #91067676705B",'#10'"[. c #8E386F' -+ +'C562B8",'#10'"{. c #ABAB42C342C3",'#10'"}. c #80807F7FFF29",'#10'"|. c #8CD' -+ +'3868678DC",'#10'" X c #AAD58AE07BA6",'#10'".X c #8BE88BF08BDA",'#10'"XX c #' -+ +'856384F884A3",'#10'"oX c #948F948F948F",'#10'"OX c #9AC59B1A9B36",'#10'"+X ' -+ +'c #9150907B8EE6",'#10'"@X c #8D458E04B0C4",'#10'"#X c #8D98AD8BB1C2",'#10'"' -+ +'$X c #AE4392D28B0A",'#10'"%X c #B088A7CF92E1",'#10'"&X c #AAB9A95DAAD7",'#10 -+ +'"*X c #AF40AF95B613",'#10'"=X c #880787F7D797",'#10'"-X c #927B927BCD1E",' -+ +#10'";X c #83EE83E7FFDB",'#10'":X c #8BF88BFAFFE1",'#10'">X c #883F88D1FE34"' -+ +','#10'",X c #98879898EA50",'#10'"<X c #93F693F2FFF6",'#10'"1X c #9B9B9BA9FF' -+ +'DF",'#10'"2X c #98EA98ADF9D0",'#10'"3X c #897D8A72F2B5",'#10'"4X c #9B1ABAB' -+ +'AC6C6",'#10'"5X c #9555A9C9FFFF",'#10'"6X c #AE64AE7FD30F",'#10'"7X c #A80E' -+ +'A7ECEAB7",'#10'"8X c #A3E7A3E0FFED",'#10'"9X c #AC32AC23FFE6",'#10'"0X c #A' -+ +'8BFA8FAFD94",'#10'"qX c #AD96B10DFFFF",'#10'"wX c #B0B0AFAFFFFF",'#10'"eX c' -+ +' #B420B425FFFD",'#10'"rX c #BC2BBC2DFFD3",'#10'"tX c #B77CB89AFC85",'#10'"y' -+ +'X c #B77CB754E937",'#10'"uX c #A0A09F9FFFFF",'#10'"iX c #A9CFD100D43C",'#10 -+ +'"pX c #B825CC02F966",'#10'"aX c #B598E804EC08",'#10'"sX c #9CC7C771CBF6",' -+ +#10'"dX c #C9E6987B9321",'#10'"fX c #C8FBB5E8AE61",'#10'"gX c #E0C0B332A464"' -+ +','#10'"hX c #C0C0BF9AFC44",'#10'"jX c #E8E8A9A9FFFF",'#10'"kX c #D2D2CB20B6' -+ +'44",'#10'"lX c #EEEECE4EBC3C",'#10'"zX c #D133CEE7D01A",'#10'"xX c #C42CC43' -+ +'3FFE8",'#10'"cX c #CC00CC10FFEF",'#10'"vX c #C865CAA2FABF",'#10'"bX c #D40F' -+ +'D420FFEF",'#10'"nX c #DBFBDC01FFF2",'#10'"mX c #D86AD8A1FAD5",'#10'"MX c #D' -+ +'011D0C8F0F8",'#10'"NX c #C8C8FCB3FE0F",'#10'"BX c #D83EFFFFFFFF",'#10'"VX c' -+ +' #D990E375FC20",'#10'"CX c #F1C6D672D008",'#10'"ZX c #E449E453FFF2",'#10'"A' -+ +'X c #EC68EC85FFE7",'#10'"SX c #E719E89BFCE2",'#10'"DX c #E968F91DFFFF",'#10 -+ +'"FX c #FFCAEDCAEDDB",'#10'"GX c #FB2DE7A2E6E6",'#10'"HX c #F491F480FFE8",' -+ +#10'"JX c #FFA8F511F509",'#10'"KX c #FE1EFD20FEE6",'#10'"LX c #F98EF9F9FB25"' -+ +','#10'"PX c #EF83ED30EF32",'#10'"IX c #EE98E48EE3E3",'#10'"UX c #B8B8C7C7B7' -+ +'B7",'#10'/* pixels */'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXXl ",'#10'"oXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.* ",'#10 -+ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXv ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX-.",'#10 -+ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ ,'oXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX.X&.&.&.&.' -+ +'&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -+ +'.,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -+ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -+ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -+ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.,.&.&.&.&.&' -+ +'.&.&.&.&.&.&.&.&.&.''.''.<.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.<..X.X' -+ +'XX<.&.1.&.&.&.&.&.XX.X.X,.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -+ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -+ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.n.:.&.&.&.&.&.&.&.&.&.&' -+ +'.&.&.&.&.&.*.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.' -+ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&' -+ +'.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.>.&.&.&.&.&.&.&.&.&.&.&.&.&.&.,.' -+ +'&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&..XoXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. o : - ' -+ +' ' -+ +' ' -+ +' X % o ' -+ +' # t % ' -+ +' v Y ]. X{.2 ' -+ +' O.%XGXCX&XXX^ * X ' -+ +' ' -+ +' ' -+ +'v ' -+ +' ' -+ +' = : X X - # ' -+ +' &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' o = = . ' -+ +' % * o 4. ' -+ +' o : p = ' -+ +' L #.R o ' -+ +' ) dXgX[.' -+ +'h ) kXKXKXKXPXoXl ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +'- : o X v v ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' % ; o 4. ' -+ +' ' -+ +' * : o R ;.) o ' -+ +' ' -+ +' I `.].+.# % %XKXKX' -+ +'KXLXzX` ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' o o ' -+ +' o v &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. ' -+ +' o ' -+ +' ' -+ +' ' -+ +' 8 k q ' -+ +' 0 K - ' -+ +' %.IXKXKXLXpXB. ' -+ ,' ' -+ +' o o ' -+ +' o - X ' -+ +' ' -+ +' ' -+ +' &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' v o ' -+ +' 4.4. ' -+ +' ' -+ +' ' -+ +' ^ ' -+ +' 4.B.OXPXKXIXoX9. ' -+ +' X i i ' -+ +' ' -+ +' X u 2 o * i : ' -+ +' ' -+ +' ' -+ +' v ^ ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' v 4. ' -+ +' ' -+ +' . i t ' -+ +' U v ' -+ +' ` XX' -+ +'OX''.^ 4.4. q $.[ ; ' -+ +' ' -+ +' * i q o v o o - * ' -+ +' ' -+ +' ' -+ +' X j p o ' -+ +' ^ v &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. ' -+ +' v ' -+ +' X - X ' -+ +' p '' ~ * ' -+ +' U U U U ' -+ +' ^ ' -+ +' 4.4. : a = ' -+ +' ; R T % ' -+ +' X o v ' -+ +' ' -+ +' ' -+ +' w ] ] : ' -+ +' o o &' -+ +'.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' o X o ' -+ +' = p - ' -+ +' u ` ^ X ' -+ +' ' -+ +' U U U U U U * l p v ' -+ +' 4. ' -+ +' X o ' -+ +' o o : o ' -+ +' v ' -+ +' ' -+ +' ' -+ +' - R T % o # X ' -+ +' v v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' e e e ' -+ +' X t X o o 4. o' -+ +' - X ' -+ +' 5 X ' -+ ,' U U U U U ] +Xn.v ' -+ +' 4.4. ' -+ +' o # o 4. ' -+ +' - q % ' -+ +' o ` >.~ o v ' -+ +' ' -+ +' ' -+ +' o o X -' -+ +' X v v &.OXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. e e e e ' -+ +'e o X o o : > 4. ' -+ +' ' -+ +' y J 6 ' -+ +' U U U U U XzX&X' -+ +'~ 4. ' -+ +' o q - 4. ' -+ +' % q % ' -+ +' 2 >.*X&.; ' -+ +' ' -+ +' - 0 - ' -+ +' ' -+ +' o o &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' e e e e e e e ' -+ +' o * X ' -+ +' f o.G o ' -+ +' ' -+ +' U U U U +.''.<.l ' -+ +' 4.4. o X o ' -+ +' 4. ' -+ +' o X ] >.` o ' -+ +' ' -+ +' # I #.I # ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' e e e e e e e ' -+ +' o v 4. ' -+ +' ' -+ +' = d : ' -+ +' o o U o h t ' -+ +' ' -+ +' ' -+ +' ' -+ +' o t o ' -+ +' ' -+ +' # I `.I # ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. e e e e e ' -+ +'e e v 4. ' -+ +' ' -+ +' ' -+ +' > = ' -+ +' o v 4. ' -+ +' 4.4. ' -+ +' ' -+ +' v ' -+ +' ' -+ +' - o % x p 8 K 8 ' -+ +' ' -+ +' &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' e e e e e ^ ' -+ ,' ' -+ +' ' -+ +' ' -+ +' f X.N.J v ' -+ +' 4. ' -+ +' ' -+ +' ' -+ +' v o ' -+ +' o T O.R o ~ .X>.a ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' e e e ' -+ +' v o 4. ' -+ +' ' -+ +' : q ' -+ +' o o.#XsX!.5 v ' -+ +' 4. ' -+ +' 4.4. o % o ' -+ +' ' -+ +' o # o v ' -+ +' # - ' -+ +'; +.%X@.8 ..&X.Xl ' -+ +' > X ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. = * ' -+ +' # ; # ' -+ +' 4. ' -+ +' - R R : ' -+ +' o.#XsXN.2 ' -+ +' ^ 4. ' -+ +' ' -+ +' = p = ' -+ +' X ; o ^ ' -+ +' ' -+ +' % - o R +.R o b O.` = ' -+ +' ' -+ +' = l p o &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' * p p X X - X ' -+ +' ' -+ +' ' -+ +'X x P - o o Q Q' -+ +' Q X.o.X.G Q Q Q v v v ^ V T v ^ T ^ v v v v o v v ' -+ +'4.v o o o ' -+ +' o q = 4. X * o ' -+ +' o ' -+ +' ' -+ +' o ; o X ' -+ +' ' -+ +' * p p o ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' X t t o ' -+ +' o ' -+ +' ' -+ +' o # T V ^ v o v v v v ^ v v Q ' -+ +' % ) ^ Q Q o @ o ' -+ +' o 4. o v L ^ v Q Q T Q ^ v v v ' -+ +' ^ v v v o i ] R o 4.4. ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' X o ' -+ ,' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. o # o o o ' -+ +' ' -+ +' 4. ' -+ +' v v v Q ' -+ +' o o X ' -+ +' 4. ' -+ +' X o v v v ^ y _ v o ' -+ +' 4. ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' ,.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' - i - v ' -+ +' 4. ' -+ +' v v ^ v ' -+ +' o ' -+ +' v 4. ' -+ +' X : % ' -+ +' X u - Q Q Q Q 4.4. ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' % 8 % ' -+ +' ^ ' -+ +' 8 K 9 v ^ v v ^' -+ +' ' -+ +' v ' -+ +' % - o o % X ' -+ +' X * o v v G ' -+ +' . # o ' -+ +' v ' -+ +' ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXOXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. o ' -+ +' v ' -+ +' 4. # I `.I v T ' -+ +' v ^ v ' -+ +' ' -+ +' ^ 4.4. - 9 o ' -+ +' ' -+ +' X *.5 v v v 4.4. 7 u - ' -+ +' Q ' -+ +' ' -+ +' ' -+ +' ' -+ +' &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' v ' -+ +' 4. ' -+ +' ^ ;.+.x v ^ ' -+ +' ' -+ +' v ' -+ +' o o X t : ' -+ +' O o./.!.H o ^ 4.) ] - o ' -+ +' ' -+ +' Q ' -+ ,' ' -+ +' ' -+ +' ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' ' -+ +' v v X 7 o ' -+ +' ' -+ +' 4.4.4' -+ +'. ' -+ +' = x p X f ^.aXsXX.X ' -+ +' 4.o ^ v v v ' -+ +' Q % : - ' -+ +' ' -+ +' ' -+ +' X % o ' -+ +' v o &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' v v ^ ' -+ +' ' -+ +' ' -+ +' ' -+ +' o : = ' -+ +' f ^.aXsXX.@ 4.4. Q Q ' -+ +' ' -+ +'; p ; ' -+ +' ' -+ +' # ; o o & #' -+ +' o V &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' 4. ^ v ^ ^ ' -+ +' o @ o ' -+ +' : ^ v ' -+ +' 4.4. ' -+ +' ' -+ +' X ( !.X.z ' -+ +' v Q Q ' -+ +' o * o ' -+ +' o ' -+ +' o o ' -+ +' # X - g ; ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' o v v o - o ' -+ +' = y * ' -+ +' ' -+ +'T XX%.: ' -+ +' ' -+ +' . 4 5 ' -+ +' 4.4. Q Q Q v o ' -+ +' t t t t t t o' -+ +' o % c P # ' -+ +' ' -+ +' o % # X ; % ' -+ +' &.OXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. ' -+ +' v o' -+ +' v v X ^ ! : @ 5 X ' -+ +' ' -+ +' g ..~ * ' -+ +' 4.4. Q ' -+ +' ' -+ ,' ' -+ +' v ^ ' -+ +'t t t t t t t t : t t t d z y t 5 t t t t t t t t t t t T ;.#.T t t t t t t' -+ +' t t : t t t t ' -+ +' o ' -+ +' &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' o v ' -+ +' v ^ v v 4.c %X&X_ ' -+ +' o ' -+ +' : # ' -+ +' 4. G ' -+ +' ' -+ +' ' -+ +' 4.4. T v ' -+ +' o v t t t t t t t t t t t t d z u t t t t t t t t t t ' -+ +'t t t j _ _ v t t t 5 8 t t t t t t t t t ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' ' -+ +' v v ^ v v.dXfX' -+ +'O. o # o ' -+ +' ' -+ +' 4. Q ' -+ +' ' -+ +' ' -+ +' 4. ' -+ +' v v ^ v o v t t t t t t t t t t t t t t t t t t' -+ +' t q t t t t t t t t 8 t t t t t u g g t t t t t t t t t t t t t t t ' -+ +' ' -+ +' ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. ' -+ +' o v ^ ' -+ +' h #.[.h # - o ' -+ +' ' -+ +' ' -+ +' o v ' -+ +' ' -+ +' 4. ' -+ +' v ^ v v t t t : t t ' -+ +'t t t t t t t t t t t t t t q t t t t t t t t 5 t t t t t 8 5 t t t 5 t t t' -+ +' t t t t t t t t t q q t ' -+ +' ' -+ +' o v &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' % o v v ' -+ +' 8.q ' -+ +' o X ' -+ +' ' -+ +' 4.4. 5 z 5 ' -+ +' ' -+ +' ' -+ +' 4. o o ' -+ +' ^ ^ v t t t t t t t t t t : t t t t t t t q 2 t t t t t t t t t t ' -+ +'8 5 t t t 8 t t t 8 t t t t t t t t t t t t q 2 t t t t t t 8 5 t t 8 t t t' -+ +' ' -+ +' ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' < N 9.j.u.e.e.q.e.e.0.B.9' -+ +'.M 4. ' -+ +' ' -+ +' ' -+ ,' 4. = o' -+ +'./.o.> ' -+ +' ' -+ +' 4. ' -+ +' o ; - t t v v u 5 8 5 t 8 2 q t t t t t t q :' -+ +' 8 Z 8.v.B.F.D.H.L.H.D.B.B.x.D : 8 8 8 t t t t t t t 2 q t t q q q 2 t t t ' -+ +'t t q 8 5 t t t t t t t t t ' -+ +' ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. < 4.e.' -+ +'q.r.a.y.e.q.q.q.q.f.V.e.q.e.e.4.+ o ' -+ +' - h 9 ' -+ +' + 4.u.q.0.N ' -+ +' 4. ' -+ +' = X.(.X.5 ' -+ +' ' -+ +' N i.h.h.9., ' -+ +' 4.4. o ; % 8 t t u t 5 8 t ' -+ +'t v ^ t t t t 8 t t t B v.D.H.P.L.P.L.I.L.I.L.P.P.P.P.I.K.x.s q 2 t t t t t' -+ +' t q 5 u A c.K.P.K.c.Z t t u v l t t t t t 8 5 5 8 t t ' -+ +' 3 c.E.Y.v.2 ' -+ +' ^ &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' . < 7.q.q.q.q.q.w.w.f.q.q.q.q.q.q.q.q.q.q.q.e.4.. ` P R - ' -+ +' h +.K ' -+ +' o ^ ] d , u.w.' -+ +'w.w.w.q.N o u V i ' -+ +' 4. G ( H ' -+ +' ' -+ +' . 9.d.d.d.d.f.d., ' -+ +' o > X o ' -+ +' 5 t t t t t 8 5 t t t t v ^ q t t t B c.P.P.P.P.P.P.P.P.I.P.P.P.P.P.' -+ +'P.P.P.P.L.I.x.a 5 8 t t t 8 q s B.R.Y.P.Y.Y.Y.P.B t O.].#.l t t 5 t t t t t' -+ +' : t t t t t t t t 5 t D P.Y.' -+ +'>X>XY.K.= ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' . 4.e.q.q.q.q.q.f.f.f.q.q.q.q.q.q.q.q.q' -+ +'.q.q.q.q.e.u., %.#.#.g ' -+ +'4. - K 8 ' -+ +' x XX&X*.X . u.r.w.w.r.w.r.0. % = v ,.~ . ' -+ +' 4. v ' -+ +' o ' -+ +' 9.g.f.f.f.f.k.f.8. ' -+ +' 4.4. = ( #XiX^.' -+ +'> 8 t v t t t t t 8 t 5 8 t t t t t u v.T.P.P.P' -+ +'.P.P.P.P.P.Y.P.P.U.P.U.U.U.U.U.U.U.U.R.K.B q t t t 5 2 J.Y.Y.Y.Y.Y.Y.R.R.z.' -+ +'p ;.%X|.T t t 8 t t t t t t t t t t t t t t t t t ' -+ +' B Y.Y.T.;X}.Y.Y.8. ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. < 0.q.q.f.q.q.q.' -+ +'q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.0. ` R R ; o ' -+ +' 4. o @ ' -+ +' l XX&X*.* N w.r.r.r.r.r.r.r. ; : o ' -+ +' p ` l 4.4. ' -+ +' o v ' -+ +' ' -+ +' 1 f.f.f.k.k.k.V.f.9. ' -+ +' . ( aXKXKXBX!. t 5 5 2 ^ t t t t 5 8 t ' -+ +'t t t t t 2 B K.P.U.;X;X;XU.U.Y.Y.Y.U.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.B.5 t 2 t' -+ +' 8 z.Y.R.R.T.R.T.T.R.T.c.q ) ;.@.i t t t t t 5 t t t 8 t t t t t t t t t t ' -+ +'t J.Y.Y.R.R.T.T.Y.c. ' -+ +' X # &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' M e.f.f.f.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q. ^ o ' -+ ,' % : # X f G = ' -+ +' . ^ ` p 7.y.r.r.' -+ +'y.y.t.t.t.N . o X 4. ' -+ +' v ' -+ +' ' -+ +' 8.f.V.C.V.V.V.V.f.8. ' -+ +' @ !.NXKXKXKX#X t' -+ +' t q 8 q v t 5 t t t t t t t t t t C E.P.P.Y.R.Y.Y.Y.Y.Y.Y.Y.Y.Y.R.Y.R.Y.R.' -+ +'R.R.R.R.R.T.T.T.;Xu t t t t R.T.T.T.T.T.T.T.T.T.J.q 5 p q 5 t t t t t 8 t t' -+ +' t 5 t t t t t t 8 t t t t t t t t t t 3 T.T.T.T.' -+ +'T.T.T.T.J. o t 2 o ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' c N e.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q' -+ +'.q.q.q.q.q.q.e. # 8 # ' -+ +' 4. @ J J = ' -+ +' . y.t.p.s.t.p.p.p.t.1 ' -+ +' 4. v ' -+ +' ' -+ +' i.C.C.V.C.C.C.C.C.F .' -+ +' @ !.aXKXKXDX' -+ +'!. t t t 2 q T t t 8 t t t t 5 8 t t t } U.T.Y.Y.R.Y.Y.R' -+ +'.R.T.R.T.:X:X:X:XT.T.T.T.T.T.T.T.T.T.T.T.T.t t t q V T.;X}.}.;X}.;X;X;X;Xz.' -+ +'q t t 8 5 8 t 5 t t t t t t t t t t t t t 5 t q 5 t t t t : t t t ' -+ +' S ;XT.;X;X}.;X;X;Xc. o ' -+ +': : v &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX&. v v V M q.q.q.q.q.q.q.q.q.q.' -+ +'q.q.q.q.q.q.q.q.q.q.q.q.w.q.q.w.q.q.q.6. o ' -+ +' 4. = 5 ' -+ +' , t.p.d.f.a.d.f.d.p. ' -+ +' ' -+ +' ' -+ +' ' -+ +' o Z.C.C.L.L.C.C.C.A., ' -+ +' o ( (.aXaX5Xf t q q q t t t t t t t t t t ' -+ +'t t 8 A R.T.T.T.T.T.T.T.T.T.}.T.T.).T.}.T.T.}.}.:XT.}.;X}.}.;X}.}.m.t t t 2' -+ +' V ;X;X;X;X;X;X;X>X;X;XB t t 8 5 8 t t t t 8 t 5 8 t t t t t t t t 8 5 8 q ' -+ +'5 q t t t t t t t c.;X;X;X>X;X>X>X>Xx. ' -+ +' v o &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. o v ' -+ +' < e.q.q.q.q.q.q.q.q.q.q.e.4.M , + M N u.q.w.e.w.w.w.w.w.u.+ ' -+ +' ' -+ +' N p.s.d.d.' -+ +'a.a.f.a.i. 4.4. ' -+ +' ' -+ +' ' -+ +' 3 A.A.U.5X5X).C.A.F. ' -+ +' . H o.o.f 4. q t' -+ +' t t t t t 5 t t t t t 8 5 8 C R.T.T.T.T.T.;XT.}.}.T.E.z.A n t u s C x.E.>X' -+ +'2X<X<X;X>X;X;XE.s 8 5 5 8 u E.:X>X:X>X:X:X:X:Xx.q q 8 5 q q q t t t t 2 q q' -+ +' t t t t t t 5 t t t t t t t t t t t 5 8 t t 8 t 2 =X:X:X>X:X' -+ +':X:X>X:XZ : p X ' -+ +' v &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX&. ' -+ +' T v v , e.q.q.q.w.w.q.w.w.w.w.5.. . M 0.w' -+ +'.w.w.w.w.0., ' -+ +' 6 6 6 ' -+ +' 6.a.s.a.a.a.a.a.a.6. ' -+ +' ' -+ +' ' -+ +' D A.A.).pXpX5XS.A.B. ' -+ +' ' -+ +' q t t t t t t 8 t t t t t t t n E.;X;X;X;X;X;X;X;X;X;' -+ +'Xz.a t t t t : t t t t A J.3X>X>X:X3XJ.b 5 u 8 t q 2 { <X:X:X:X:X:X:Xz.q 5 ' -+ +'m 5 q 2 q t t t t t q 5 q t t t t t t t t t t t t t t t t t t t t t t 5 t q' -+ +' u > :X:X:X<X:X:X<X<X:X> ' -+ ,'> ] >.^ &.oXoXoXoXoXoXoXoX*.",'#10 -+ +'"oXoXoXoXoXoXoX>. V 0.w.w.w.w.w.w.w.w.w.u.< ' -+ +' < 6.u.0.N . v o ' -+ +' 6 H 4.4.6 o o ' -+ +' o i.a.a.a.a.d.a.d.a.M o ' -+ +' 4.4. o o . ' -+ +' ' -+ +' . ' -+ +' 9.S.S.).5X5X:XS.S.8. ' -+ +' 4. t q t t 5 q t t t t t t t t t ' -+ +'t J.;X;X;X;X;X;X>X;X3XE.C : 5 t t t t t t t t q q 2 V m.J.J.z.p G L v v q q' -+ +' 5 q C M.3X<X3Xm.C t t q t q q 5 q t 5 8 t q t q 2 t t 8 8 t q q t q 2 t t ' -+ +'q q t q 8 u t t t 8 t t q t 8 Z <X<X<X<X<X<X<X<X}. ' -+ +' = *..X` o &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>. v ^ 5.w' -+ +'.r.w.r.w.w.r.r.r.u., v ' -+ +' , N 7.0.j.t.s.0.N + M 7.j.p.0.N..XQ.6.6 ' -+ +' + 6.j.s.j.6.+ M 6.j.h.s.6.o + 7.h.d.d.d.a.d.d.g.d.' -+ +'d.d.f.l.d.d.d.g.i.N o + N 8.i.i.g.k.h.i.8.N' -+ +' o ^ + D 9.i.F.Z.Z.F.9.D 2 ' -+ +' ' -+ +' M 8.v.B.D.S.D.B.W.D o B.S.S.G.).).I.G.G.F . D B.I.B.D ' -+ +' 3 v.K.K.c.3 4. t t 2 t' -+ +' t 5 L t t t t t t 8 5 t z.>X>X:X>X:X:X:X:X:X}.V q q q t t t t t t t q 5 q ' -+ +'q t 2 q t t a q t t t q V T 2 5 : a s t t t t t t t q 2 q q t t t t 5 q q q' -+ +' q q 2 d } m.=X=X,X2X,X=Xm.} a q q 2 t t t 5 t t t t t t z.<X<X2X1X2X' -+ +'1X1X1Xm. x ~ u ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t ' -+ +' , r.r.w.r.r.r.r.r.r.y.< ' -+ +' ^ o M 7.p.p.s.p.p.p.p.p.p.p.7.+ 7.p.s.s.' -+ +'s.C.8XzX*X1.6 , j.a.a.a.d.s.h.. M i.a.a.d.a.d.d.N ' -+ +' + h.g.d.g.g.f.d.g.f.g.f.f.C.A.A.C.f.f.f.f.g.M N 4.o ' -+ +'M i.f.V.f.V.V.V.V.f.V.V.f.Z.8. X o v M i.A' -+ +'.C.C.A.C.C.A.C.A.A.C.i.3 ' -+ +' . D F.G.S.L.S.L.H.H.H.H.L.D.D L.G.L.L.L.L.L.L.L.+ ' -+ +' . c.L.P.P.P.P.S o D >X<X;XU.Y.P.3 o ' -+ +' t 8 5 8 t t t v 5 8 5 t t t t t V :X:X:X:X:X:X:X<X:X:XC t t' -+ +' t t 5 8 t t t t t t 2 q t t 5 8 t t t t 8 5 t t t t v / m.2X1X1Xm.i t t t ' -+ +'t t t 2 q 5 8 q 5 8 2 q q : { }.1XuXuX8XuXuX8XuX8X8XuX2Xm.y 8 5 t 5 8 t t q' -+ +' t t 5 t M.1X1X1X1XuX8X8XuX} ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t 0.y.r.t.t.t.r.t.t.p.N ' -+ +' v , 0.p.p.p.s.a.p.a' -+ +'.p.p.a.a.a.a.h.7.s.a.a.a.a.V.:XIX*XX.4. 9.d.d.d.a.d.d.d.N 6.f.d.d.' -+ +'g.g.g.g.g.i. i.f.f.f.f.f.f.f.f.f.f.f.C.A.A.S.C.f.f.f.f.f.8. ' -+ +' M i.Z.V.C.V.C.C.V.C.C.C.C.C.C.C.V.F.M - K h o ' -+ +' o v + 9.A.A.A.A.A.A.A.A.A.A.A.A.A.S.D.8. ' -+ +' F F.L.I.L.L.L.L.L.L.I.P.L.I.L.' -+ +'P.P.I.I.I.P.P.P.I.K. 8.R.P.P.U.P.P.K. B ;' -+ +'XuXeX<XY.Y.Y.c.t t t t t t o # # 4.4.8 t 5 8 q 8 5 8 ^ 8 q 8 t t t t q J.' -+ +':X<X<X<X<X<X<X<X1X .t t t t q t t t t t t t t u 8 t t t t t t t 8 5 8 t t t' -+ +' t V ,X1X1X1XuX1Xz.t t t t t t q q 8 5 8 t 5 q t / ,X8X7X7X8X8X8X8X8X0X8X8X' -+ +'8X9X9X8X,X/ u 8 t t t t 5 8 8 q t t 2XuX8X8XuXuX9X9X0Xn ' -+ +' ^ v &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t M t.t.t' -+ +'.t.t.t.t.t.t.0. ' -+ +' o M s.a.a.a.a.a.a.a.a.a.a.a.a.a.d.a.g.d.d.a.d.d.d.L.J.W - 4. + g' -+ +'.g.d.d.g.d.g.f.h.g.f.f.f.g.f.f.f.g.g. 1 f.f.f.f.f.f.V.V.f.f.f.l.' -+ +'C.C.V.C.l.V.V.V.V.V.9. 4.4. . 9.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C' -+ +'.C.C.A.A.M 9 ) I # V 3 F.S.S.A.A.S.A.S.A.A.S.S.S.S.S.S.S.' -+ +'S.8. 8.P.I.P' -+ +'.L.I.I.P.P.P.P.P.P.P.P.P.P.P.U.U.P.U.P.U.U.v. + I.Y.Y.Y.Y.Y.Y.' -+ +'Y.+ K.R.<X1X>XR.T.T.E.t t 5 t t t t t p g 2 q 5 t t q 5 q' -+ +' 5 2 R q 5 q 5 2 q t { 2X<X<X<X2X<X2X<X2XJ.t t t u j p t t 8 5 t t t t t t ' -+ ,'5 8 t t 8 5 t t 5 q q 5 t u =XuXuX8XuXuXeX-XQ t t t t t t 5 t t t t 8 d M.9' -+ +'X8X0X0X0X9X9X9X0X9X9X9X9X9X9X9X9X9X0X/ 2 t t t t t t 5 8 t t V 9XeX8X8X8X8X' -+ +'9X9X0X. v' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX<.t t t t ' -+ +' 0.p.t.p.t.p.p.p.p.p.1 ' -+ +' N a.a.a.d.a.a.d.d.a.d.d.d.d.d.d.d.d.d.g.d.d.d.' -+ +'d.g.f.6. N f.f.f.f.f.f.f.f.f.f.f.f.f.k.f.k.k.V.g. D' -+ +' f.V.V.V.V.V.V.V.V.C.V.V.C.V.C.V.C.V.C.L.Y.D.8. 3 F.C.C.A.' -+ +'C.A.C.A.C.A.C.A.A.A.A.A.A.A.A.A.A.F.2 8 9 3 D.S.S.S.S.S' -+ +'.S.S.S.S.G.S.S.S.S.L.S.S.G.K.o ' -+ +' v.U.P.P.P.P.Y.R.Y.P.P.U.U.P.U.U.U.U.Y.U.U.U.U.U.R.U.S ' -+ +' Z T.T.Y.R.R.R.R.T.Z B T.T.T.T.).T.;X2XJ.t t 8 t t ' -+ +'5 8 t u 8 u q q 4.t q q 2 8 q 5 q q 2 q q q w J.2X2X1X2X2X1X1X1X1XC t q 5 p' -+ +' L j u t t t t t t t t t t t t t t t t t t 8 5 q q } 8X8X0X8X8X0X8X,Xt Q t ' -+ +'t t t t : t t q q C ,X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9XeX9XeX9XeX9Xb t t t t t' -+ +' t 8 5 t 8 .eXtXeX9X9X9X9X9X=X o o o ' -+ +' o v &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t t t 8 1 p.p.p.p.p.p.p.p.a.7. ' -+ +' N d.d.d.d.d.d.f.d.d.d.d' -+ +'.f.f.d.d.f.g.g.f.f.g.f.f.f.f.f.M 8.f.V.f.f.f.f.k.f.V.V.f.V.V.' -+ +'V.V.V.f.V.9. D V.C.V.C.C.C.C.C.C.C.C.C.C.C.C.C.C.C.S.:X8XR.+ ' -+ +' 4. M F.A.A.A.A.A.A.A.A.A.A.S.A.A.S.A.A.S.S.S.A.S.S.9.o ' -+ +' + F.G.S.H.S.L.L.L.G.L.L.L.L.L.L.L.L.L.L.L.L.+ ' -+ +' o v.P.Y.P.Y.Y.Y.T.:X).Y.Y.Y.Y.Y.Y.Y.Y.' -+ +'Y.Y.Y.Y.R.R.R.R.R.F x.T.T.T.T.T.T.T.T.v. x.;X;' -+ +'X;X<X<X<X<X<Xm.q 2 q 5 8 t t q 5 u u t 5 4.4.t t t t t t t t t t t t V 1X1X' -+ +'1X1X1XuXuX1XuXM.q t t 2 q g p t t t t t 5 8 t t t t t t t t t t t t t 8 u 2' -+ +' M.9X9X9X8X9X9X9X9XV t t t t t Q t t t 8 / 0X9X9XeXwXwXwXwXwXwXwXwXwXwXwXeX' -+ +'eXwXeXeXtXeXeX@X2 2 q q t t t t 5 8 M.tXtXtXrXwXwXwX9Xm. ' -+ +' o = o &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t 5 6.a.a.a.a' -+ +'.a.a.a.a.a.M ' -+ +'F f.f.f.g.g.f.g.f.f.f.f.f.f.f.f.f.k.f.f.k.k.f.f.f.f.f.g.+ 4. i.V' -+ +'.V.f.C.V.V.V.V.V.C.V.V.C.V.C.C.C.V.3 1 C.C.C.C.C.C.C.C.C.C.A.C.' -+ +'A.A.C.A.A.A.S.:X8X . 4. 3 A.S.A.S.A.S.A.S.A.S.S.S.S.S.S.S.S.S.S' -+ +'.S.S.S.S.S.S.3 v.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.I.P.I.I.' -+ +'I.K. 8.Y.Y.Y.Y.Y.R' -+ +'.Y.;X:X;XT.Y.R.R.R.R.T.R.T.T.T.T.T.T.T.T.T.+ o B.;X).).;X;X;X;X' -+ +';XA c.;X;X<X<X<X2X<X2X} t q q 8 5 8 t t d G z t 8 t t t t t' -+ +' t t t t t t t t q M.8XuXuXuX8X8XuXuX8X{ 8 t t u t q 5 t t t t t t t t t t ' -+ +'8 t t t t t t t t t x V p 7XwX9XwX9X9X9X9X9X/ 5 8 5 t t t Q ^ v / 9XeXwXeXe' -+ +'XeXeXeXeXeXtXtXeXtXtXtXeXtXtXtXtXtXtXrXtXV u t t t t t t t t 6XrXrXrXrXrXrX' -+ +'rXrX=.8 t t t t t t t t t t t t t t t q 2 u u p u u t t t t t t t t t t t ' -+ +' &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t ' -+ +'8 t h.a.a.a.a.a.a.d.a.h. ' -+ +' / g.f.f.f.f.f.f.f.f.f.f.k.k.k.k.k.V.V.f.V.V.f.V.f.V.' -+ +'V.f.F. 4. Z.V.C.C.S.H.L.L.G.L.L.C.C.C.A.Z.V.F.F ' -+ +' D F.Z.A.A.A.A.A.A.A.A.A.A.A.A.A.S.A.F.c.C * 4.4. , F.S.H.P.L.S.S.' -+ +'G.S.S.S.H.S.G.G.S.S.L.L.L.L.L.L.L.L.L.D 3 L.I.P.I.P.I.P.I' -+ +'.P.L.P.P.P.P.P.P.P.P.P.P.P.D ' -+ +' 3 R.R.Y.}.}.R.T.T.T.T.R.T.T.T.T.T.}.T.}.T.}.}.}.}.}.}.}.J. ' -+ +' o ).;X;X;X>X;X>X;X>X3 3X;X1X1X1X1X1X1X1XV t 5 q q q ' -+ +'5 t t l H G u 5 t 8 t 4.2 2 2 u t t t t 2 t 2X8X8X8X0X8X0X8X0X,X8 t t t t t' -+ +' t t t t t t t t t t 8 t 5 t 8 t t t t t t a v ^ ^ eX9XwXeX9XwXwXwX9Xs 8 q ' -+ +'8 t t t t 2 v 7XtXtXtXtXtXtXtXtXtXtXtXrXtXtXrXtXrXrXrXrXrXrXrXrXrXn.t t t t' -+ +' t t t t a rXxXxXhXxXxXxXhXxXQ t 5 : t t t t t q t 8 p g u 8 q 5 q t u 5 t ' -+ +'t 8 : t t t t t t t t t t t t t t t t &.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t 8 5 5 t t M d.d.d.d.d.g.g.g.g.6. ' -+ +' . i.U.f.V.f.V.f.f.f.C.i.D , ' -+ +' o M i.V.V.C.V.V.C.C.V.C.C.C.9. 3 C.C.C.L.L.L.L.L.L.L.L.L.I.I.' -+ +'Y.B.8.a : t t t t t t : o 9.A.A.S.S.A.S.S.S.D ' -+ +' B.L.H.P.Y.P.L.G.L.L.D.v.F + B x.K.L.L.L.L.L.L.P.L.L.c. ' -+ +' v.P.<XP.P.P.P.P.P.c.2 . + 3 S v.K.Y.Y.U.x. ' -+ +' o J.}.}.}.}.}.T.T.T.;XE.x.3 . 2 x.T.;X}.' -+ ,';X;X;X;X;X>X;X;Xz. 2 >X>X:X:X:X>X>X:X>Xo t V 1X1X1' -+ +'X1X1XuX9X9X2Xu t q 2 q t t t t t d y t t t 5 t 4.N t T 8 t t t t 8 / 9X0X0X' -+ +'0X0X0X0X0X0Xm.t t t t t 8 t t t 5 8 t t t t t 5 t t t 5 t t t t t t t g b ' -+ +'.tXtXeXtXtXtXeXtX,X5 8 5 q : t q 2 q -XrXrXtXxXxXxXrXrXrXrX@X{ s u V b.yXrX' -+ +'hXrXhXhXrXxXxXxX-X8 5 q 8 t t 5 t / xXxXxXxXxXxXcXxXvX^ t u t t t t t t q 2' -+ +' u x R x t 2 q 2 t t 5 8 5 t t t t t t t t t t t : t t t t t t t &.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 8 6.g.g.g.f.g' -+ +'.g.f.g.g.M D V.' -+ +'Y.V.V.V.C.V.V.f.D . 9.V.C.C.C.C.C.C.C.C.C.D 9.C.C' -+ +'.L.P.L.P.L.P.I.P.P.I.K.x.B q t t t t t t t t t t 8 F.H.S.S.S.S.S.' -+ +'S.S.M o 4. D L.L.L.I.P.P.L.L.P.K.3 = J o.V K.L.P' -+ +'.P.P.P.P.P.P.B. I.U.<XU.Y.Y.Y.Y.Y.+ 3 B 4 ' -+ +' } }.}.:X<X:X}.;X;' -+ +'X>Xc.o Z ;X>X>X:X>X>X:X>X:X:XA A <X:X:X<X:X:X<X3X' -+ +'J. t t } 8X8X1X8X1X9XwX9X=X: 8 t t t t t 5 t t u 2 q q t t t 8 5' -+ +' v 8 5 t q t t t b.9X9XqXqX9X9XwX9XwX .t t 8 5 t t 5 t t t t t t 8 t t t t ' -+ +'t t t t t t t t t t t t n.hXtXtXrXtXrXtXtX@X8 t t t 8 5 8 u =.rXhXrXrXrXrXc' -+ +'XxXrXyX/ 5 q 2 q 8 5 V yXxXxXxXxXxXxXxXxX6Xq q 8 t 5 q 8 8 n.xXcXxXcXcXcXcX' -+ +'mXMXoX] t t t t t t t t 8 u x L g t t q 5 q 8 t t t t t t t t t t t v t t t' -+ +' t t t t t 8 t t &.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.L x u t ' -+ +'t t t t t 9.f.f.f.f.f.f.f.f.f.2 X ' -+ +' . g.Z.R.C.C.C.C.C.C.D . F.C.C.A.C.A.C.A.' -+ +'A.C.3 2 c.A.P.P.P.P.P.P.P.P.Y.K.C 5 2 t t t t t t t t t t t t t' -+ +' t o , S.L.L.L.L.L.L.L.L.. 4. . K.L.P.L.P.P.P.P.P.' -+ +'B.. = ( ( 6 D P.P.P.U.P.U.U.Y.K. 3 Y.Y.1XY.Y.T.R.Y.Y' -+ +'.F ' -+ +' X R.;X;X:X1X<X}.;X;Xm. m.:X:X:X:X:X:X:X:X:X3 o -' -+ +' % m.<X:X<X<X<X<X<X<Xz. t t t t t t m.8X0X8X0X0X8X9X9Xm.q q 8 t t t ' -+ +'t 8 t t 8 5 q 5 t t t t 8 ^ 4.5 t t t t 2 -XwXwXeXqXqXwXeXtXrX` g t t t t t' -+ +' 8 t 8 t t t t t t 8 t t t 8 t t t t t t t t t t -XrXrXrXrXrXrXrXtXb.5 t 8 ' -+ +'t q 5 5 u yXxXxXxXxXxXxXxXxX6Xp 2 q q q q 8 8 : b.xXcXxXcXxXcXcXcXyX2 8 5 t' -+ +' q 8 5 8 @XcXcXcXcXcXcXcXnXzX*X*.t t t t t t t t t 5 u p t t t q t q 5 t t ' -+ +'t t t t t t t t u v t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10 -+ +'"oXoXoXoXoXoXoXXX`.+.g t 8 5 t t t g.f.k.f.V.f.V.f.V.V.- - o ' -+ +' D C.C.C.C.C.C.A.C.8. ' -+ +' 8.A.A.A.A.A.A.A.A.A. 5 8 : K.U.U.U.U.U.U.Y.Y.Y.v.u t t 8 ' -+ +'t t t t t t t t t t t t t t t Z P.L.L.L.L.L.L.L.B. 4. o' -+ +' . D P.P.P.P.P.P.U.P.K.2 = 5 4 Y.Y.Y.Y.Y.Y.Y.R.J. ' -+ +' B T.T.1XT.T.T.T.T.T.T.x. t p # ' -+ +' } :X:X:X:X<X:X:X:XJ.. S <X' -+ +'<X:X:X<X<X<X2X<Xo - g 8 o J.1X2X2X2X2X1X1X1XC t t : 8 t 8 q -X9X0X9' -+ +'X0X9X9X9X9X .8 t t t t t t t t t t t t t t 8 5 t t ^ 8.) g t t t t 7XeXeXeX' -+ +'tXtXtXtXtXhXQ g u 2 t t t t t 5 t t 5 t t t 5 t t t t t t t t t t t t t a t' -+ +'XrXxXhXxXxXxXxXxX^ t t u 2 5 8 2 b.rXxXxXxXxXxXxXxXrXv t 8 8 G v ^ t q 8 V ' -+ +'cXcXcXcXcXcXvXcXyXt t t q q t t t yXcXbXbXbXbXbXbXmXOX>.^ 2 8 5 t t t t t t' -+ +' t t 8 t 8 t t t 2 q t t t 8 t t t 8 t t v ^ t t t t t t q t t t 8 5 t t <.' -+ +'oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXXX`.+.g t t t t t t q . V.V.V.V.C.V' -+ +'.V.V.C.Z.X X o V G = F.A.A.' -+ +'A.A.A.A.A.F.. D S.S.S.S.S.S.S.S.B. + u 8 8 s Y.Y.Y' -+ +'.Y.Y.Y.Y.Y.Y.c.q 2 t t 5 t t t t 8 5 t t t t t t t t t t 8.P.L.P.P.P.P.P.' -+ +'P.B.4. z ( f B.T.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.T.T.T.R.R.T.Y.R' -+ +'.T.T.R.T.R.T.B. 3 ;XT.T.T.T.T.T.;XT.T.T.E.A o = ' -+ +''' ,.^ J.<X:X:X:X<X:X<X<X' -+ +'B B <X<X2X2X2X2X2X2XJ. o ; % + 1X1X1X1X1XuX0XuX1' -+ +'X2 t t t t 5 8 5 q 0X9XwX9XwX9XwXwXeXV t t 5 t t t t t t t t t t t t t t t ' -+ +'t L ;.''.! t t t p rXtXtXtXtXtXtXtXtXrXg t t q t 8 5 t t t t t 8 t t t t 8 ' -+ +'5 t t 5 8 t t t t t t t ^ xXxXxXxXxXxXxXxXhXu t t t q q q q 6XcXcXcXcXcXcXc' -+ +'XcXcXcXcXcXcXcXcXcXcXcXcXbXcXcXbXcXbXbXbXcX6X8 5 t 2 q t t l bXbXbXbXbXmXbX' -+ +'mXnXV u q q t t t 5 8 t 5 8 t t t t 5 t t t q q t t t 5 t t t 5 t t L 5 t t' -+ +' t t t t 2 u 8 t t t t t >.oXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoX>.P P q ' -+ +'q q 2 5 8 t t B C.C.C.C.C.C.C.C.C.C. 5 ..-.b ' -+ +' 3 A.S.A.S.A.S.A.S.8. = - o D S.S.S.S.S.S.' -+ +'H.H.8.o X 5 j t t t A Y.R.Y.L.R.R.R.R.Y.s : q 2 q 5 q 2 t t t t t t t 5 8 t' -+ +' t t t t B.P.U.U.U.P.P.U.Y.D = o.(.o.B Y.Y.R.Y.Y.Y.T.Y.R.' -+ ,'T.R.T.R.T.R.;X:X;X;X}.T.T.T.T.T.T.;XT.T.z. E.;X;X;X;X;X;X>' -+ +'X;X;X>X>X>XJ.B = *..X[ ' -+ +' 2 <X<X<X<X<X<X<X<XJ. B 1X1X1X1X1X1X1X1Xz.o ' -+ +' Z 8X8X1X8X8X0XtXeX7X: 8 q q 5 t t t C eXeXeXeXeXqXtXtXwXt t t t t t ' -+ +'t 8 t t t t t 8 t t t t t t l @.#.8.4.t t V rXrXrXrXrXrXrXrXrXrX8 t t 5 t t' -+ +' t t t t 8 t 5 t t t t t t t t t t 5 8 t t t t 8 =.cXxXcXcXxXcXcXxX6Xt t t ' -+ +'t t t t G cXcXcXcXcXcXbXcXbXcXbXcXbXbXbXbXbXbXbXbXbXmXnXbXbXbXbXbXbX@X8 t t' -+ +' t t t t | bXnXnXmXnXnXnXmXhX8 8 t t t t t t t t t t t t t t t t t t t t t ' -+ +'t 5 t t t 8 5 t t t t t t t t t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.2 u t 5 q q 8 5 t t Z L.C.C.C.C.C.C.A.C.C.+ ' -+ +' > ^ ~ a 8.S.S.S.S.S.S.S.S.3 o q q 5 J J' -+ +' = D G.L.L.L.L.L.L.L.F X v p t t t z.R.T.T.T.T.T.T.T.J.8 8 t t q q ' -+ +'q q t t t t t t t t t t t t t 8 u T.;X>XY.Y.Y.Y.Y.T.3 X J X' -+ +'.H S T.T.T.T.T.T.T.T.T.T.T.T.}.T.}.;X}.:X<X:X}.}.;X;X;X;X;X;XT.A ' -+ +' Z >X>X;X>X>X>X>X:X>X:X:X:X:X:Xm.+ d L 2 ' -+ +' } 2X2X<X1X1X1X1X2X{ C 1X' -+ +'uX1XuXuXuXuX8XC } 8X0X8X8X0XwXtXeX-Xt 2 q t 8 t t t =.eXpXcXv' -+ +'XtXtXtXrX-Xt t t t t t t t t t t t 5 t t t t t t t t p l 2 t t t / hXhXhXxX' -+ +'xXxXxXxXxXxXg t 8 q t t t t t t t t 8 t t t t t t t t t t 8 5 t t t t 2 @Xc' -+ +'XcXcXcXcXcXcXxX@Xt t t t t t t n.bXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXmXbX' -+ +'bXmXnXnXnXmXnXmX=.t t t t t t t XXmXnXnXnXnXnXnXnX*X5 8 t t t t 2 q t q t t' -+ +' t t t t : t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 5 8 t t >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t q 2 q q t t C L.L.A.A.A.A' -+ +'.A.A.A.D.M o X B.H.H.H.' -+ +'L.>XL.H.D. * % f X.!.z x.L.I.I.L.P.P.L.P.2 q u t q t t J.R.T.}' -+ +'.T.}.}.}.;Xz.5 8 t t t t q t t t t t t t t t t t t t t 5 V >X>X>X>XR.R.T.T.' -+ +'R. @ 5 o c.T.;X;XT.;X).).;X}.;X;X}.}.;X;X;X}.<X<X:X;X>X>' -+ +'X;X;X>X>X;XT.o } :X:X:X:X:X:X:X:X:X<X:X<X:X:X3Xa ' -+ +' m.uX1X1X1X1XuX1X1X2 ' -+ +' z.uX8X8X9X9X0X8X9X2 o M.0X0X9X0XeXtXtXeXb.' -+ +'t t t t t 8 t w M.cXZXSXnXcXrXrXrXn.t t t t t t t 5 t t t t t t t t t t t t' -+ +' t t t 8 u q 8 / xXxXxXxXxXxXxXxXxXxX/ t 5 t t t t t t t t 8 5 t t t t t t ' -+ +'8 t t t q q t 5 t t 8 6XcXbXcXbXbXbXbXbX*.8 t t t t q q *XcXbXbXbXbXbXbXbXb' -+ +'XmXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXp : t t t t t t 6XZXZXZXZXZXZXZXZX' -+ +'n.8 5 t t t t q 5 q q t t t t t t t t t t t t 8 t t t q 2 t t t t t t t t t' -+ +' t t t t t t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 5 8 t ' -+ +'5 q q q t 8 Z P.P.S.A.S.S.S.A.S.S.D ' -+ +' F.L.L.L.L.>XL.P.B.o 5 J ( 5 B.P.P.P.P.P.P.P.' -+ +'K. 2 q t t q 2 u T.;X;X;X;X;XY.;X;XA 8 5 t t t t t t t t t t : t t t 8 t t' -+ +' t t t } :X:XT.T.:XT.T.;XB. E.;X;X;X;X;X;X>X;X;X;X' -+ +'>X>X;X>X>X:X>X:X>X:X>X:X>X>X:X:X:X:X} =.J.<X<X<X<X<' -+ +'X<X<X<X<X<X<X<X<X3X2 ' -+ +' =XuXuXuX8X8X8X8X8X. -X9X9X9X9XeX9X9X,X ' -+ +' ,X9XwX9XtXtXrXrXtX{ t t t t t q q : 7XbXDXLXBXbXrXxXrX .u t t t t t t ' -+ +'8 t t t t 8 t t t t t t v t t t q 2 q 2 8.xXcXcXxXcXcXcXcXcXcXn.t t t t t t' -+ +' t : t t q 5 t t t t t t 5 t t t q q t 8 8 8 s mXbXbXmXbXbXbXmXbXV t t t t ' -+ +'t 8 : hXmXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXZXnXZXnXZXZXnXZXoXv ^ t t t' -+ +' t t t MXZXZXZXZXZXZXZXSX'' t 8 t 8 5 t q q 2 q t t t t t t t t t 8 5 t t t' -+ +' t t t u 8 t Q t t t t t t t t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t 8 t t 8 t t t t s U.U.S.S.S.S.S.H.S.S.B. ' -+ +' + P.P.P.P.P.:XP.P.B. * @' -+ +' 2 U.U.Y.Y.P.Y.Y.Y.v.5 8 t 8 t t t V >X>X;X>X>X>XR.>X>Xs t t t t t t ' -+ +'t t 8 5 t t t t t t 8 t t t t t m.:X<X<X<X<X<X;X>Xx. ' -+ +' >X;X>X>X>X>X:X>X:X:X:X:X:X:X:X:X:X:X:X:X<X:X<X:X<X<X<XJ.} ' -+ +' V o C J.1X<X2X2X1X1X1X2X1X1X1X1X}.o ' -+ +' ,X0X8X8X0X0X8X0X8X B 9X9X' -+ +'9X9XeX9X9X9XM.o 2 wXeXeXrXrXrXrXrXrXp t t t t t t t s hXbXZXDXS' -+ +'XbXxXxXxXb t t t t t t t t t 5 8 t t 5 t t t t t T u 2 t q t t t b cXcXcXcX' -+ +'cXcXcXcXcXcX6Xt q t t t t t t t t t 5 q t t t t t t t q q q 2 t t t t ` mXm' -+ +'XnXmXnXnXmXmXMXt t t t t t t t nXnXnXnXZXnXnXZXZXnXZXnXZXnXZXZXZXnXZXZXZXnX' -+ +'ZXZXZXZXZXMXn.q t t t t t t q G AXSXSXSXSXAXAXAXAXp q q q q t t q q t t t t' -+ +' t t t t t t t t t t 5 8 t t t t t t Q t t t t t t t t t t t 5 t t t t t >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5 t t 5 t t t t a Y.Y.H.H.L.L' -+ +'.L.L.L.L.L.3 , P.P.P.P.' -+ ,'U.U.<XY.K. v.Y.Y.Y.Y.Y.Y.Y.R.z.8 q 5 5 t t 5 } >X:X:X:' -+ +'X>X:X:X:X3Xt t t t t t 8 t 8 5 8 t t t t t t 5 t t t t 4.E.:X<X<X<X<X<X<X>X' -+ +'C + :X:X:X:X:X:X:X:X:X o ' -+ +' T o B M.1X1X1X1X1X1X1X1X8X0X8XC ' -+ +' 9X9X9X9X9X9X9X9X9Xo ' -+ +' @X9XeXeXwXeXeXeXeXb. / eXtXhXhXxXxXxXxX@X5 ' -+ +'t t t t t t t ` xXvXbXnXbXvXpXcXyXt t t t 5 t t t t t t t t t 8 t t t t t v' -+ +' t q q 5 g c g p vXbXcXbXbXbXbXbXbXbXbX/ t t t t t t t t t t 8 t t t t 5 8 ' -+ +'t t 2 q 5 q t t t t n.mXnXnXnXnXZXnXmX6X2 8 t t t t t p ZXZXnXZXZXZXZXZXnXa' -+ +' 5 8 t t q 2 t t t t t t 5 q t t 8 5 w : t 8 5 t t t 2 =.AXAXAXAXAXHXLXHXMX' -+ +'8 5 8 q 2 t t q 2 q t 5 t t t t t t t t t t t t t t t t t t Q t t t t t t t' -+ +' t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t ' -+ +'t t t t 8 t t E.R.R.L.L.L.L.L.L.P.P.B.+ ' -+ +' 3 U.U.U.Y.Y.Y.Y.Y.Y.4 B R.T.R.T.R.T.T.:X:X' -+ +'C t 5 t q t : u m.:X:X<X:X<X:X:X<XB.t t t t t t 5 t t 5 q t t t t 5 t t t t' -+ +' t t y 2X1X2X2X1X1X1X1X1X2 . :X:X<X<X<X<X<X<X<Xa ' -+ +' o v 2' -+ +' m.uX1X8X8XuX8X9X9X0XM. t t t t t t t t t t t q q 2 ' -+ +' 9X9X9XqX9XqXwXwXwXB / eXtXtXtXeXtXtXtXtXV ' -+ +' b.rXxXxXxXxXxXxXxX3.t t 5 t t t 5 t @XcXvXvXcXcXcXcXcX-Xt t t t 8 t 8 t ' -+ +'t t t t t 5 t t 5 q t v t t t t t v ! l q MXbXbXbXbXmXbXbXmXmXmXyXp t t t t' -+ +' 2 u t t t t t t 2 8 t t t t 5 q t t t t 8 5 &XnXnXZXZXZXZXnXZX.Xt t t t t ' -+ +'t t p ZXZXZXZXZXSXSXSXAX^ 8 8 t t q t t t t t t t t t t t 2 q t t t t q t t' -+ +' t v &XHXAXHXHXHXHXHXLX&X5 q 2 5 q t q 5 q t t 8 t 8 t y v u 5 t 8 t t t t ' -+ +'8 5 t t t Q t t : t t t t t t t t t t t 8 t t t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t c.T.T.T.P.P.P.P.P.P.P.P.B.+ ' -+ +' > F 2 > R.R.Y.R.Y.R.R.Y.Y.x. ' -+ +' , E.T.T.T.T.T.).:X:X:Xy t 8 t t t q m E.<X<X<X<X<X<X<X<X9.u t t t t t t ' -+ +'t t t t t t t t 8 t t 4.4.t q A 1X1X1X1XuX1X1X1X,X2 u ' -+ +' <X2X2X<X2X<X2X2X1Xz. o A m.M.z.> ' -+ +' { 8X0X0X0X0X0X9X0X,X p p t t t t 8 t t 8' -+ +' 5 t q q t t 0XeXeXtXeXtXeXtXeXM. a 9XtXrXtX' -+ +'rXrXrXrXtXrX> @XcXxXxXcXxXcXcXxX| t t 8 t t t 8 V vXcXcXcXcXb' -+ +'XcXcXmXn.t t t t t t 5 q t t t t t 8 t t 8 5 q a t t t t t g x i u @XnXmXmX' -+ +'nXmXnXmXnXnXmXZX6Xb t t q q 8 t t t t t t q V ` ^ t t t t t t 8 t t t MXZXZ' -+ +'XZXZXZXZXZXAX| t t t t t t t q mXAXAXAXAXZXAXAXAXOXt 5 t t t t t t t t t t ' -+ +'u :.*X6XoXp q t t t 5 : t t t zXHXHXHXHXHXHXHXHX,.q q q 8 5 q q q 2 t t t t' -+ +' 5 8 '' >.` q t t 5 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t >' -+ +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t t 2 } }.}.}.U.' -+ +'U.U.U.U.U.U.Y.U.I.x.F . o + 2 F S z.B.E.R.Y.Y.K.2 . T.T.T.T' -+ +'.T.T.T.T.T.T.B o 3 E.T.T.;X;X:X<X1X<X<X=Xq t t 8 t t t s <X2X2X<X' -+ +'2X2X2X1X1XC t q q 5 q q 5 t t t t q q 5 q q 4.2 u t t t b.1X8X8X1X8X8XuX8X@' -+ +'X2 8 t t J.1X1X1X1X1X1X1X1X1XA . A =X' -+ +'uX8XtXpX-X@ 2 s X o 2 9X9X9X9X9X9XwXwX,Xq' -+ +' 8 t i l p t t t t t t t t t t t t t t t 7XtXtXrXtXrXtXrXrXhX' -+ +'/ V 7XhXhXhXhXxXhXhXhXhX7X u 5 8 t 6XvXcXcXcXcXcXcXcX6X8' -+ +' 8 t q 8 8 v yXbXcXbXbXbXbXbXbXbXV t t t q t t t t 5 t t t 5 t t t t t 2 q ' -+ +'q q 8 5 t t u q t =.mXnXnXnXZXnXnXnXZXnXnXZXmXoX( s t u d Q | n.OX6XZXSXZXZ' -+ +'XMX! t t t t 5 t t c ZXAXSXAXAXAXZXAXAXl t t t t t t t t zXAXAXAXAXAXAXHXAX' -+ +'AX>.w t 5 t t t t t t y >.MXHXHXHXHXzX2 t t t t t t t u HXLXHXLXLXKXLXLXKX~' -+ +' t t t t t t t 5 8 t t t t t p *..X2.t t t t t 8 t t t t t q q t t t t t : ' -+ +'t t t t t t t t t 5 8 t >.oXoXoXoXoXoXoXOX>.",'#10'"oXoXoXoXoXoXoX>.t t t 2' -+ +' 8 5 t t t t t a }.;X;XY.Y.Y.Y.Y.Y.R.Y.Y.R.Y.Y.Y.R.R.R.R.R.R.T.T.T.T.T.T.T.' -+ +'E.+ E.T.;X;XT.;X;X}.;X;X}.x.3 o + 3 z.;X;X>X>X>X:XqXpXtX1X<Xm' -+ +'.2 t t 5 t t t / 1X1X1X1X1X1X1XuXuXy t t 2 q q 5 m t t t t q 2 q 2 N 4.8 5 ' -+ +'t t t M.8X8X8X8X0X8X8X0Xm.t t t t t z.uXuXuXuXuXuXuXuX8X8' -+ +'XM.C > . . > s } M.,X0X9X8X8XpXbXxXV a ,X9X9X9X-Xm.} B 2 . ' -+ +'o 2 -XwXwXwXwXwXeXwXwX-Xq t t t i i t t t t t t t t t t t 8 5 t t t t t t t' -+ +' t t @XhXrXrXrXrXrXhXhXhXtXn.a o @ b M.hXxXxXxXxXxXxXxXxXxXxX@X q 2 q ' -+ +'t t yXbXcXbXbXbXbXbXcXbX6X/ u 2 b n.MXbXbXbXbXbXbXmXbXmX6Xt t t 2 q t t t t' -+ +' 8 t t t 8 t t 8 t t q 5 q 5 5 8 t t 2 q 5 j mXnXZXZXnXZXZXZXZXZXZXZXZXZXZX' -+ +'SXZXZXSXZXSXAXAXZXSXSXSXSXSXMXl t t t t t q %.AXAXAXAXAXAXAXAXMX5 t t t t :' -+ +' t t 5 .XAXHXHXHXHXHXHXHXHXHX6X*.b i i b ` XX*XPXHXLXHXHXLXLXLX! t t t t t ' -+ +'t t ~ KXKXKXKXKXKXKXKXHXu t t t t t t t t t t t t t 8 5 V ] v t t t t t 5 t' -+ ,' t t t t t q t t t t t t t t t t t t 8 5 t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t t t t t t 8 t t 5 8 z.:X>XR.R.T.T.T.T.R.T.T.T.T.T.T.T.' -+ +'T.T.T.T.T.).T.T.T.;X).T.;XS o c.3X;X;X;X;X;X8X>X>X>X>X>X>X>X>X;' -+ +'X>X:X>X>X>X5XpXVXpX8X1X} q t t t t w & z.1X1XuXuX1X1XuXuX=Xq t 4.u 5 8 m 5 ' -+ +'t t 5 8 2 u 2 q t t t t 8 t 8 ,X9X0X0X0X0X0X9X0X{ t 2 q t t t ' -+ +' 2 0X8X8X8X8X8X8X8X0X0X8X0X0X9X0X0X9X0X0X9X9X9X9X9XtXpXhXs ' -+ +'@ ,X9XeXwXwXwXwXeXtXeXeXeXtXeXeXeXeXeXeXtXrXhXn.t t t u q q 5 t t t t 2 q 5' -+ +' t t t t t t t t t t t t t u n.hXhXxXxXxXxXxXxXxXxXxXxXxXxXxXcXxXxXcXxXxXcX' -+ +'xXcXxXcXcX . u 2 t t t t 6XbXbXbXbXbXbXbXmXbXmXbXbXMXnXmXbXmXmXnXnXnXnXn' -+ +'XmXnX` 5 t t t t t t t t t t t t t t t t t q 2 q t t 8 t t 8 t 5 t t oXZXZX' -+ +'ZXZXZXZXZXZXAXSXSXSXSXSXAXAXAXSXAXAXAXAXAXAXAXAXAXAXAXXXu 2 t t 8 5 oXHXAXA' -+ +'XHXHXAXHXHX*Xq q t t t t t t 8 ^ HXHXHXHXHXHXHXHXLXHXLXHXLXHXKXKXKXKXLXKXKX' -+ +'KXKXKXKXKXKX` t t t t t t t ,.KXKXKXKXKXKXKXKXzXT t t t t t t t t t t t t t' -+ +' t t t t 5 q t t t t t t t t t t q 2 q 2 t t t t t t t t t t 5 8 t t t t >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t 8 8 s 3X:XT.T' -+ +'.T.T.T.}.}.}.}.}.}.}.;X}.;X;X;X;X;X;X;X;X;X;X>X;X;Xz. C >X:X>X' -+ +':X:X:X0X:X>X:X:X:X>X:X:X<X:X:X:X<X<XuXrXpXtXuX1XV q t t t t q & }.8X8X8X8Xu' -+ +'X8X8X8Xm.t t 4.t t t q m t t t t 4.N q t t 8 5 t 5 8 n wX9X9X9X9X9XwX9XwXd ' -+ +'q q t 8 5 t t y m o m.8X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XwX9X9X9XwX9' -+ +'XeX9XeX9XX b.tXtXeXeXeXcXtXtXtXtXtXtXtXtXrXtXrXrXtXrXxXhX3.t ' -+ +'t t 2 q 5 8 t t t t u 8 8 t t t t t t t t 8 5 t t t t V xXxXxXcXxXxXxXcXcXx' -+ +'XcXcXcXxXcXcXcXcXcXcXcXcXcXcXcXcXcXz 8 t t t 8 5 @XmXnXnXmXnXmXnXmXnXmX' -+ +'mXnXnXnXnXnXnXnXnXVXnXnXnXZX@X5 8 t t t t t t t t t t t t t t t t t t T q t' -+ +' t t t t t t 8 t t b mXZXSXAXAXSXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXHXAXAXHXAX' -+ +'HXHXOX5 q t t t t 6XHXHXHXHXHXHXHXHXXX: t t 5 t t t t t : *XKXLXLXKXKXKXKXK' -+ +'XKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXLXp t t t t t t t &XKXKXKXHXJXJXKXKXOXt ' -+ +'t t t 5 t t t t t t t t t t t 8 5 q q t t t t t t t t Q Q 5 q q q t t t t t' -+ +' t t t t t q t t t t t >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.t t t t ' -+ +'t t 5 8 t t t t t { :X}.}.;X;X;X}.;X;X;X;X;X>X;X;X>X;X>X;X>X>X>X:X>X>X:X>X:' -+ +'X} 3X:X:X:X:X<X9X<X:X<X:X<X<X<X<X<X<X<X<X<XuX8X8X9X8X7X,X8 ' -+ +'q t t 2 u q t 2X9X8X0X0X0X0X0X0X .t t t G -.^.!.^ t u 4.t t t t t t t t 8 5' -+ +' t } wXwXwXwXwXeXeXwX7Xt t t t q q q 5 q 2 t > 7X9X9X9X9XeX9X9X9X' -+ +'eX9XwXwXeXeXwXeXeXwXeXeXeXeXtXrXb. ,XtXrXrXrXrXcXrXrXrXrXrXr' -+ +'XhXrXrXrXrXhXhXxXxX@X8 t t t t 8 q q q t 5 t t t t t t 8 5 t 8 t t t 5 t t ' -+ +'t t t 6XbXbXbXbXcXcXcXcXcXcXcXcXcXcXbXcXbXcXbXbXbXcXbXmXbXbXo 8 5 t t t t t' -+ +' q =.nXnXnXnXnXnXnXZXnXnXZXZXnXnXZXZXnXZXZXZXZXZXAX6Xp q q t t t t t t t t ' -+ +'t t t t t t 8 t t t T q 5 t t t 5 t t t t t q .AXAXAXAXAXAXAXAXAXHXAXHXHXH' -+ +'XAXHXHXHXHXHXHXHXHXHXHXHXHXHXXX5 t t t t u PXHXHXLXLXLXLXLXLX` 8 q q q q 8 ' -+ +'5 8 t t v PXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXJXKXOXq t t t t t t' -+ +' q zXKXJXJXJXJXJXJXJX&.t t t t L ^ 8 2 q t t t t t t 8 5 t u 2 t t t t t q ' -+ +'t t Q t t t t t t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX<.",'#10 -+ +'"oXoXoXoXoXoXoX>.q t t t t t 8 q t t t t t t m.}.>X>X;X>X>X>X>X>X>X>X>X:X:X' -+ +':X:X:X:X:X:X:X:X:X:X:X:X3X@ A <X<X<X<X<X9X<X<X<X2X<X2X<X<X1' -+ +'X1X<X<X0XuX0X8X8X0X7X}.2 q t t q 8 q b 9X9X9X9X9X9X9X9X9XV t t l /.5XaXaX(.' -+ +'J 4.t t t t t t t t t t t t n.eXtXeXeXeXeXeXwX@Xt t t t t q 2 8 q t t t ' -+ +' V 0XeXeXeXeXtXtXeXtXeXtXeXtXeXtXtXtXtXtXtXtXtXrXM.. ' -+ +'yXrXrXrXhXrXcXhXhXhXhXxXhXxXxXxXxXxXxXcXcXpX] L t t t t 5 2 q t t 8 t t t t' -+ +' t t t t t t t t t 8 t t t t 8 3.bXbXbXbXmXmXcXbXbXbXbXmXbXbXbXbXbXmXbXbXbX' -+ +'mXbXnXnXyX8 t t t t q t q q p mXnXZXZXZXnXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZX6' -+ +'Xj q t t t t 5 8 q t t t t t t t t t 5 t t t v 2 8 t t t 8 t t t t t t u OX' -+ +'AXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXKXHXLXHXPXl q : t t t V KXKXKXK' -+ +'XKXKXKXKXLXp 5 q q q 2 5 q t t t 8 '' LXKXKXKXKXKXKXKXKXJXKXJXKXKXJXKXJXJXK' -+ +'XJXKXKXJX*Xu q : t t t t t p JXJXJXJXJXJXFXJXFXv t t t t 8 : ^ v t t t t t ' -+ +'t t t t t 8 t t t t t 8 5 t t Q t t t t t t t t t t t t t t t t t t t : 2 >' -+ +'.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t x.' -+ +'>X:X:X:X:X:X:X:X:X<X:X:X:X:X<X:X:X<X<X<X<X:X<X<XJ.2 m.<' -+ +'X<X1X2X1X1X1X1X1X1X1X1X1X1X1X9X9X9X9X9X9X9X9X9Xb.t t t t 8 5 q .eX9X9XwX9X' -+ +'wXwXwX7X5 t t | sXNXKXNXaX-.5 8 t t 8 t t t t 8 t t 5 @XeXtXrXtXtXrXtXtX .t' -+ +' t t t t t q 5 q t t t 8 5 t t t t / tXxXrXxXrXtXrXrXrXrXrXrXtXrXrXrXrXrXrX' -+ +'rXrXb. -XxXxXxXxXxXbXxXxXxXxXxXxXxXxXxXxXxXcXcXvX%.`.O.p' -+ +' t t t t t t q 5 t t 8 t t t 8 t t t 5 t t 5 t t t t t t u n.mXnXnXmXnXnXmX' -+ +'mXmXbXmXnXnXmXbXnXmXnXnXnXnXZXnXZXOX8 t t 8 t 2 q 5 q t n.AXZXZXZXZXZXZXZXS' -+ +'XSXSXSXSXSXSXAXAXAXAXAX&Xa q 5 t t t t 8 5 5 q t t t t t t 5 t t t t t v u ' -+ +'t t t t t t t t t t t 8 t OXHXLXLXHXKXHXHXLXLXHXHXKXLXLXKXLXKXLXKXKXKXKXLXK' -+ ,'XIX^ 2 q t t t t [ KXKXKXKXKXKXKXKX&X5 8 q 2 q q 2 q t t t 5 : '' PXLXKXJXJ' -+ +'XJXJXJXJXJXJXJXJXJXJXJXJXJXJXJXFXoXt t t t t 8 t t 8 c FXFXFXFXFXFXFXFXzX8 ' -+ +'8 t t 2 5 8 5 t t t t t t 5 8 t t 5 t t t t t t 5 t 5 t t t t t t t t t t :' -+ +' t t : t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t ' -+ +'t t t t t t t t t t t t 8 C 3X:X<X:X<X<X<X<X<X<X<X<X2X<X2X<X<X<X<X<X<XM.C o' -+ +' m.1X1X1X1X1X1X1XuX1XuXuXuXuX9X0X9X9X9X9X9XeX9XwXH ' -+ +'t t t t 8 8 a / tXtXeXeXeXeXeXeXb.t t : o.iXLXKXDXMX!.8 5 8 t 5 t t t t 5 t' -+ +' t 8 @XtXrXrXrXhXrXhX7Xa 8 5 t t t t t t t t t t t q 5 q t t t b @XxXxXxXxX' -+ +'rXrXhXrXhXhXrXhXhXxXhXxXhX@Xs a 6XxXxXxXxXxXcXcXcXcXc' -+ +'XcXcXcXcXbXbXcX&Xl L @.] p t t t t t 8 5 8 t t 5 t t t 5 t t 8 t t t 8 t t ' -+ +'8 5 t t t t .XnXnXnXZXnXZXnXnXnXnXnXnXnXyX&XnXnXZXnXZXZXZXZX..u t t 5 t q q' -+ +' q 2 t t &XAXZXAXAXAXAXSXAXAXAXAXAXAXAXAXAXAXMX%.t 5 8 t t t t t t 8 5 8 t ' -+ +'t t q q 2 8 t t t t t 8 5 t t t t t t t t t t t t t t =.PXLXLXKXKXKXKXKXKXK' -+ +'XKXKXKXKXKXKXKXKXKXKXKXzX&.2 : q q t t t t c KXKXKXKXKXJXKXPXv 8 5 5 q q 5 ' -+ +'q q t t t t t t c fXJXJXJXJXJXJXJXJXJXFXJXJXFXFXFXFXFX*X! q t t t q 2 u t t' -+ +' t t IXFXGXFXGXGXFXGX_ 8 t t t t t t t t t q t t t t t t t 8 t t t t t t 8 ' -+ +'t 8 t : t t t t t t t t t t q 5 t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t 5 8 t t t 8 t t t t t t t 5 t X x.3X2X2X2X<X<X<X2X<X1X' -+ +'2X2X2X1X1X2XM.A > A ,X8X8XuX8X8X8XuX9X8X8X-' -+ +'X/ b.9XeXeXeX9XeXeXn.5 t t t t t t t p 7XtXrXtXtXhXrXn.t t t a ^ #XNXNXNXsX' -+ +'o.u t t 5 8 t t t t t t t t ^ rXhXhXxXhXxX7Xv 5 t t 5 t t u u 5 t t q 8 t t' -+ +' t t t t t t t | -XcXcXxXhXxXxXxXxXxXxXxXxXyXn.a ' -+ +' .6XcXcXcXMXvXcXcXcXbXMXbXbXmX6X` t t t l p 8 t t t t t t t 5 8 t t t 2' -+ +' q 5 q 2 q t t t t t t t q 8 5 t t t =.MXnXZXnXnXZXZXZXZXZXzXb.t | AXAXAXZX' -+ +'SXSXSX*Xq 8 t 8 5 t t t t t t t a .XSXAXAXHXAXAXAXAXAXAXHXAXHXHXmX|.u 5 8 t' -+ +' t t t t t t t t 8 t t t t t t t 5 8 8 5 t t t t t t t t t t t t t t t t t ' -+ +'t t j +XPXKXKXKXKXKXKXKXKXKXKXKXKXKXJXLX*X''.l t t t t t q 2 q q 2 q *XJXJX' -+ +'JXKXJXIX~ q t t q q t t t t t t t t t 8 t t %.fXFXFXFXGXFXFXFXFXFXFXFXFXCXO' -+ +'X^ 8 t t t t t t t : q q 5 q ''.GXFXGXGXGXGX>.t t 8 t t t 5 8 q t t t t t L' -+ +' G v t t t t t 8 t t t t t 5 q t t t t 8 5 t t t 8 t 5 8 t t t t t t t t t ' -+ +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t t 5 t 8' -+ +' q 2 B x.M.=X2X1X1X2X2X=XJ.m.} B ' -+ +' o C m.=X,X0X2X-Xm.{ l 2 t : b.-XyXxXyX@X/ t t t t t t t t t t C @X7XtX,' -+ +'Xn.V a t t t t 8 ..#X5X#XN.p t 8 t t t t t t t t t 2 t 8 V @XtXhX6Xb.u q 8 ' -+ +'8 t t t t g x i t 5 8 5 t t t t t t 8 5 t t q v =.@X6XyXvXxXyX6X@X=.V ' -+ +' s %.@X6XhXMXcXMXhX6X@X=.b q 2 t t t t t ' -+ +'t t t t t t t t t t t t 5 q 5 8 t q t t t t t t t t 2 u 8 t t 2 8 u =.&XzXM' -+ +'XZXIX6X.X( q 5 t t | *XmXSXMX*X%.2 q 2 t t t t t t t t t q 2 t v OXSXHXHXHX' -+ +'HXHXHXLXHXAX*X&.5 m 5 8 t t t t t 8 t t t t 5 t 8 t t t t t t t t t t t t t' -+ +' t t t t t t 8 t t t t t t t t t 5 5 '' oXkXMXPXJXKXJXPXCXzX&X.X] u t 5 t t' -+ +' t t t t t q q 5 8 q i .XCXFXzX+Xg t t t t 2 q t t t t t t t t t 5 t t 5 5 ' -+ +'L >.&XzXCXGXGXCXzX&X''.` a t 8 a t t t t t t q 5 q q 8 5 q %.kXCXCX&X) t t ' -+ +'t 5 t t t t 5 8 t t t t t u 8 ^ t t t t t t t t t t t 8 5 t t t t t t t t t' -+ +' 5 t t t t t t t i c p t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 u ' -+ +'t t t t t t t t t t t 8 t t q ' -+ +' v o t t t t : t y &.oX*.a = t ' -+ +'t t t t t t t t t 2 q t t t t t t t t q q 5 t H ( ^ a 5 t t t t t 8 5 t t t' -+ +' t t t 5 t t t t t t 5 t t 5 t t t t g g p 5 q t t t 8 t t t t t t t t t t ' -+ +'t t t t t t ' -+ +' t t t t t t t t t t 8 t 8 t t t t t t t t t t 8 q q q q q q t t t t t ' -+ +'t t t 8 5 t t 8 8 t t t t q q t t 8 q 2 q t t t t q q t t t t q t t t t 8 8' -+ +' 5 t t t t t t 2 q t ~ ,.OX&X&XOXn.O.p t t 5 t t t t t t t t 5 t t 8 t 8 t ' -+ +'5 t t t t t t t t t q a t t t t t t t 8 5 t t t t t t t t t q 8 5 t t t t t' -+ +' t 5 t t t t : q 5 q t t q 2 q t t q 5 q q 5 2 q 5 t t t t t t t t t 5 t t ' -+ +'t t t t t t t t t t t 8 5 t t t t : t t t t t q t t t t t t t t t t t q q q' -+ +' 2 2 t a 8 t t t t : 8 5 t t t t t t t t t t t t t 2 q t t t t t t t 5 t t ' -+ +'t v q q q q t 5 t t t t t t 8 t t t t t t b ~ v t u >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.q 2 t t 5 8 t t t t t t t t t 5 t ' -+ +' v q t ' -+ +'t t t t t a *..X*.u 2 t t t t t t t t t t 8 q t 5 8 t t t t t t 2 u t 4.t 5' -+ +' t t t 5 8 t t t t t t t q t t 8 t t t t t t t t t t t t 8 t t t t q t t t ' -+ +'t 5 t t t t t t t t t t t t t t t t t ' -+ +' V 8 t t t t t t t t q t 5 t 5 t t t t t t 8 t t t ' -+ +'t t t q 2 q 5 t t t t t t t t q t t t t 8 t t t 8 q 5 t t 5 5 q q t t t t q' -+ ,' : t t t t t t t t t 5 t t t 8 5 q t t q q q q 2 u t t 8 t t t t t t t t t ' -+ +'t t t t t t t t 5 t t t t t t t t t t t t t 5 v t t t t t : 5 q 8 5 t t 8 5' -+ +' t t t t 8 5 t t t t t t t 4.t 8 t t t t u t t t 5 q q q t q q 2 q q q 5 5 ' -+ +'t t t t t t t t t 8 t q : t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t' -+ +' t t t t t t t t t 2 q 5 q q t t t t t t t 2 8 8 t t t t t 8 t t 5 u u t t ' -+ +'t t t t t t t v v t t 5 u v q 2 q 2 q q t 5 8 t t t t t 5 t t t q j v l u j' -+ +' <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' -+ +'8 t q ' -+ +' v t q t t t t t t t x ! l u 2 q q t t 8 t t t t t t 8 t 8 ' -+ +'5 t t t 8 5 t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' 5 t t t t t t t t t : t t t t t 8 5 8 u 2 q t t t t t t t t 8 t t 8 t ' -+ +' ^ t t : t t t t t t 8 t t q' -+ +' 2 t t t 8 t t t 5 q q t t t t t t t t t t t t t t 8 5 8 5 t 5 t t t 8 t t ' -+ +'5 t t t 8 t t t t t t t t t t t q 5 t t 5 8 t t t 8 5 t t t t t q 5 8 t t t' -+ +' t t t t 8 5 q q q 5 t t t 8 t t t t t t t t t 2 q q t t t 8 t t t t T 2 t ' -+ +'t t t t t 8 t t t t t t t t t t t t 5 t t t t t 5 q 4.4.t t t 8 u l l t t t' -+ +' t t t t t t t q q 2 q t t t t t t t t t t t t 5 q q q u 2 q t t t 8 5 t t ' -+ +'t t t t t : 5 q t t 8 t 2 t t t t t t t t t t t t t 8 q t t t t t t q t t q' -+ +' t t 5 t t t t u x g 8 : t t t t t t t t t T ^ 2 V T q q 5 q t t t t t t t ' -+ +'t 8 t 8 t t t t q t t 8 p <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -+ +' t t t t t t q t t t t t t t t t ' -+ +' 5 q 2 t t t t t t t t t t t t t t' -+ +' t t t t t 5 t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t 8 8 t t t t q t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t 5 t t u 2 q t t v ' -+ +': t t t t t t t 5 t t t t u t t t 5 t t t t q q 2 t t t 8 5 t t 5 8 t t q :' -+ +' 5 q t t t 8 t t t 5 t t 8 t t t 5 8 t t t t t t t t t t 8 q t t t t t t t ' -+ +'t t t t 8 t t 5 8 t t t t t t t t t t 2 q 2 q t t t 5 t t t t t t t t t u t' -+ +' p p t t t t t t t T q t t t t t t 5 t t 5 t t t t t t t t t 8 t t t t t t ' -+ +'5 8 t t t t t p v x u t t t t t t t t t 5 : q q t t t t t t t t t t t t q 2' -+ +' t t 8 t t t t t t t t t t t t t t t t t t t t 8 8 t t t t t t t t t t t t ' -+ +': 5 8 t t t t t t t t t t t t 8 t t 5 t u x g 5 8 t t t t t t t t t t q q T' -+ +' ^ t t q 2 t t t t t t t t 5 t t t t t t t 5 q 5 u >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 2 q ' -+ +' t t q q q t ' -+ +'t t t t t 8 5 t t t t t t t t t t t 8 t 5 t t t t t t t t t t t t q 2 t t t' -+ +' t t t t t t t t t t t t q t t 5 t t t t 2 t t t t t t t t t t t t t t t t ' -+ +'t t t t t 8 5 t t t t t t t t t t t t t t t t t t t 5 8 8 t ' -+ +' v t t t t t t t 8 t t t t t 8 t 5 t t t t 8 5 5 8 t ' -+ +'t t t t t q t q 5 q q 5 q t t t t t t t 5 t t t 5 t t t t t t t t t t t t t' -+ +' t t : 5 8 t t t t t t t t t t t 5 t t 8 q t 5 t t q t t t t t 8 5 q q t t ' -+ +'t t t t t t t q t t t t p v l t t t t t t t T 2 q t t t t t t t t 8 t t t t' -+ +' t t 2 u t t 5 t t t t t t 5 t 4.4.t t t i p t t t t t t t t t t t t t t t ' -+ +'t t t : t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t t t t t t' -+ +' t t t t t t t t t t t t t 8 t t 8 t t t 8 t t t t t t t t 8 5 u 2 t t t t ' -+ +'t t t t 5 8 t t t t 8 5 t v V ^ q 5 8 t t t t t t 8 t t 8 t t t t t t t 8 u' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 5 t t 5 8 t t 5 8 t ' -+ +'t t t t t ' -+ +' t t t t t t t 2 u t t t t t t t t t t 8 t t t t t t t t t 8 t t 5 8 ' -+ +'t t t t t t t t 2 N t t t t t 5 8 t t 8 5 t t t t t t t 8 t t t t t t t t 8' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t 8 5 t t t # # o t u a t t t t t t t t t t' -+ +' t t 8 t t 8 t 5 8 q 5 t 8 t t t t q q 2 8 5 q q 2 t t t q t t t 8 t t 8 t ' -+ +'t t t t t t 8 5 t t t t t t t t 8 5 t t t t t t t t 5 8 t t t 8 5 t t t t t' -+ +' t t t t t 8 5 q t q t t t t 8 5 t t t t t t t t t j g t t t t t t t 5 q q ' -+ +'q t t t t t t t t t t 8 5 t t q 8 t t 8 t t t t t t 8 t t 4.t t t t t t t :' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t 5 8 t t t ' -+ +'t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t 5 t t t 5 t t t t' -+ +' t t t 8 5 q q q t t t t t t t t t t t t t t t 8 t t q v q q 5 8 5 8 t t t ' -+ +'5 t t 5 t t t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t' -+ +' t 8 t t t t t t t t t 5 t t t t t t ' -+ +' t t t t t t 5 t u g p q t t 5 t t 8 t t t t t' -+ +' t t t t t t t 5 8 t t t t t t t t t t t t 4.t t t t t t t t t t t t t 8 t ' -+ +'t t t t t t t t t t t t t t q 5 8 5 t t 5 5 t t t t 8 t t t t t t 5 t t t t' -+ ,' t t t t t t t t t t t t t t q t t u g x u t t t 5 t t t t ' -+ +'p v v y t t t t t t t t t t t t t t t t t t t t u 5 t t t u t y u 2 t t t t' -+ +' t t q q t t t t t q 8 t t t t t t 8 5 t t t t t t t t t 8 t t t 5 t t t t ' -+ +'8 t t t t t t t t t t p l u t t t t 5 t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t t t t t t ' -+ +'t 8 t t t t t 8 t t t t t t 2 q q q 2 q t : t t t t t t t t t t u 8 t t t t' -+ +' t t t t : t t t t t t t t t t t t q t t t 5 t t t t t t t t t t t t t t t ' -+ +'t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t 5 q t 8' -+ +' 5 t 8 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t t 5 8 t t t 8 t t t t t t q ' -+ +' q w X : t t t t t v u q p c ' -+ +'p 5 8 t 8 t t 5 t t 5 8 t t t 5 t t t t t t t t 5 t 8 t t t t t t t t t t t' -+ +' t t 8 t 8 t t t t t t t t 8 5 t t 8 t t t t t t t q 2 q t 8 t t 8 8 t t t ' -+ +'t 5 t t t 5 8 t 8 t t t 8 t t t t t t t t t t t t t 8 5 t t t u u 5 t t t 8' -+ +' t t t t t t t t p ~ ~ p t t t t t t t t t t t t 5 8 t t t t t g l ' -+ +'p t t t t p v j q t t t t t t 2 t t t t t t 2 u t t t 5 8 t t t t t t t t t' -+ +' t t t 5 t t 5 8 t t t t t t t t t 5 t t t t t x P x t t t t 8 t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8' -+ +' 5 t t t t t t t t t t t t t t t t t 4.4.t t t t t t q q q 5 q q t t t t t ' -+ +'t t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t 2 8 t t 8 t t t' -+ +' t 8 5 t t t t t t t t t t 8 t 5 8 t t 5 t 8 t t t 8 t t t t t t t t t t t ' -+ +'t t t t : t t t t 8 L 5 t t t 5 t t t Q Q t t t t t t t t t t t t t t t t t' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 t 5 t 8 t t t t t t t t ' -+ +'t t t t t t t t k [.|.) t t t t' -+ +' t t t t t t t G 8 t u p u t t t t t t t t t 8 5 t t t 8 t t t t t t t t 8 ' -+ +'t 5 t t t t t t 2 2 t t q q t t t 5 t t t t t t t t t t t t 5 t t t t t t t' -+ +' q q 2 q t t t t t t 8 t t t 8 q t t t t t t t t 5 t t t t t t t t t 2 q t ' -+ +'8 5 8 t t t t t t t t t t t t t t 5 u t t t t t l x t t t t t t t t t t' -+ +' t t t t t t t t t t x ! l t t t t p l p q 8 t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t 8 t t t t t j x' -+ +' h t t t t t t t t t t t t t t t t t t t t t q t t t t t t t t t t v t t t ' -+ +'t t t t t 5 t 8 t t t t t t t t t t t t t t t t t t t 8 5 t t 5 4.t t 5 8 t' -+ +' t t 5 t t q 5 t t t t t t t t t t t t q t 8 5 t t t t q 2 t t t t t t : t ' -+ +'t t t t 8 u 5 t t t t t t t t t t 8 t t q 2 t t t t t t t t t 8 t t 5 t t 5' -+ +' t q t t v _ R t t t t t t t t t t t t t 8 5 v t t t 8 t t t t t t Q Q t 8 ' -+ +'q t t t t t t t t t 8 5 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 5' -+ +' t t t t t 8 t 5 8 t t t t t t t t t 8 5 t t t t ) XfX' -+ +'#.- t t t t t t t t t t t t L 5 8 5 t u t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t 8 5 8 t t t t N t t t q 2 t t t t t 8 5 t t t t ' -+ +'t t t t t t t t 8 5 t t 8 q 5 q q t t t t t t 5 t t t u 2 5 8 t t t t t t t' -+ +' t 8 5 t t t t t t q q t t 5 t t t t t 8 t t t 8 t 5 8 t t t t 8 v t t t t ' -+ +'t t t t 5 t t t t q t t t t t t t t t 5 8 t 8 p x p t t t t 5 u i 5 t 5 t t' -+ +' t t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t t t t t t t t t t t t ' -+ +'t 8 t t t t t t t t t u q 2 t t t t t t t t t t t t t t t t : t t t t 5 : t' -+ +' t t t t t t t t G t t : t t t t t t t t t t t t t t t t t t t 5 8 8 5 t 8 ' -+ +'t 5 t t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t t t t t' -+ +' t t q q q 5 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t u t t t ' -+ +'t t t t t t 5 t t t t t 8 t q 2 u ) ''.O.i t t t t t t t t t t t t 5 T a t ' -+ +'t t t t t t t t t t t t u 2 t t t t t t 8 5 t 5 8 t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.8 t t t t t t t 5 t t t t t t t 8 t t 5 t t t 8 t t t t' -+ +' x :.|.) u t t t t t t t t t t t t t t 2 q t t t v u 5 q ' -+ +'5 8 t q 5 q 2 t 2 q t t t t t t t t 8 8 t t t 5 t t t t t t t t t 4.t t t t' -+ +' q t t 8 t t t t t t t t t t t t t t 8 5 t t t t 5 t t t t t t t 5 t t t t ' -+ +'t t t 8 t t t 8 5 8 t t t 8 5 t t t t t t t t q t t t t 5 q : t 5 t 8 5 t t' -+ +' t t q t 5 5 5 v t t t t t t t t q q 5 t 8 2 t t t t t t 8 t t t t t t t t ' -+ +'t t t t t t l L j u 5 8 t t t t : t t t t t t t 5 t t 8 5 t t 5 8 t t t t t' -+ +' t t t t 2 q t 5 8 t t 5 8 q 5 t t t t t 5 8 t q q q t t t t t t t t t t t ' -+ +'5 q 8 5 5 q t t t t t t t t t t t t t t v u t t t t t t t t t t 5 8 t t t 5' -+ +' t 8 t t t t 8 t t t t t 8 5 t t t t 5 8 8 t 4.t 8 t t t t t t t t t t t t ' -+ +'t t t t t t t 8 5 t t t t 8 5 q 2 q q t t t t t t t t t t t t t t 5 t t t t' -+ +' t 8 t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5 v _ R 2 5 8 t t ' -+ +'t t t t t t t t t t t t q 2 q q t t t t t t t t t t t t t t t t q q t 8 q q' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t u 8 t t t ' -+ +'t t t t t t t t 5 t t 8 t u h j t t t t : t t t t t t t' -+ ,' t : t q t t t t t q 2 t t 5 t ` '' c u 8 u t t t t 5 8 t t t t 5 t 8 t 8 t' -+ +' t t 5 t t t t t p ( ` h q 5 t t 5 t t t t t t t t t t t t t t t t t t t t ' -+ +'t t 5 8 t t t t 8 t t t t t t t 5 t t t 5 t t t t t t t t t t t t t t : 5 t' -+ +' t t t q q t t 8 t t q t t t t q q q 8 u T t t t t t t t t q q t t l _ _ i ' -+ +'t 5 t t 5 t 5 8 t t t t t t t t t t t x T l t t 5 8 t t t q t t t t t 5 t 8' -+ +' t t t t t t t t t t t t t t t t 8 u t t t t t t t 5 8 t t t 2 t t t t t 5 ' -+ +'q 2 t t t t t t t t t t t 8 5 5 8 q q t t t t t t t t t t t t t t v t t t t' -+ +' t t t t t t t t t t t t 8 t 5 t t t t 5 t t t t t t t t t t t t t t t t t ' -+ +'5 t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t t 5 q q q t t t t t t' -+ +' : t t t t t t t 8 t t t t t 5 t 8 t 5 8 t t t 8 5 t t t 5 t t t 5 8 t t t ' -+ +'t t t t q g l 8 u q 5 u t t t t t t t t t t t t t q q 5 5 t : t t t t t : t' -+ +' t t Q Q t t : q 2 q 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t ' -+ +'t t t t 8 t q P l 2 5 8 t t t t t 8 t 5 t t t t u P ) x 8 t u # t' -+ +' t t t t t t t t t t t t t t t t q q t t t t q q q t 5 x >..X` 8 5 q t t t ' -+ +'t t t t 5 t t 8 t 5 t t t t t 8 t t t 8 t ..#X#X..q t t 8 t t t t 8 5 t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 8 ' -+ +'t t t t t t t t t t q q q q t t 2 q q q t t q q t t t 5 q 2 2 u 2 G 8 : t 8' -+ +' 2 t t t t 2 t t ) |.''.L t u t 8 t t t t t t t t t t t t t t t i g t t t t' -+ +' t t t q 5 q 5 t t t 8 t 5 t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t 8 t t t t q q 8 t q t q 2 t t 8 t t t t t t t t t t q 8 t t 2 t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t 8 u t t 8 t t t t t t t t 8 t t 5 t t ' -+ +'t t t t t t t t t t t t t 4.t t 8 t t 8 t t t t t t t t t t : t t t t 8 5 t' -+ +' t t t t t 5 8 t t t t t t t t t t t t t t t t 5 8 t t 8 t t t t t 5 8 t t ' -+ +'t t t t 8 t t t t t t 5 t t t 5 t c O.] j 5 t p j p t t t t t t t t t t t t' -+ +' q t m t t t t t t t t t t t t t t Q t t 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t 5 8 ! :.@.g t t t t t t t t t 8 t t t t p )' -+ +' `.P a x +.`.R t t t t t t t t t t t t t t t t t t t t t q 5 t 8 5 t t t q ' -+ +'q 2 p '' %.G 8 q 5 q t t t t t t 8 t t 5 t t t t t t t t t t t t 4.&.sXsX-.' -+ +'5 q 2 u t 5 8 t t t t t t t t t t t t t 5 8 8 t t t 5 8 5 8 t t t t 5 t t t' -+ +' t t t t t 8 t t t t t t t t 5 8 t t t t t t q 2 q V ^ v T 5 q 2 u v V ^ v ' -+ +'t t 8 5 T T v T T v ^ v ^ q q t t v ^ v ^ T #.O.c Q v v ^ t t t t 8 5 t t t' -+ +' t t t t t t t t t t t t t t t q q 2 q t : t t t 8 t t t t t t t t : t t t ' -+ +'t t t t t t t t t t t t t t q t t t t t 5 8 5 q q q t t 5 t t t j c p t t t' -+ +' t t t t t u g j u t t t t t t t t t t t t t t t t t t t t t q 2 t t 5 t t ' -+ +'t t 8 t t t 5 t t 8 t t t t 5 8 t t t t t t 5 8 t t 4.t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t ' -+ +'t t t 5 t t t t t t t t t t t t t t t t t t t 8 t 8 t 8 t T #.@.x 8 t u j p' -+ +' t t t t t t t t t t t t t t a p u t t t t t t t t t t t t t t t q q q t t ' -+ +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t [ ''.;.x q 2 ' -+ +'5 8 t t t t t t t t t 8 t L ) x 8 R ]. X+.2 8 8 t t t 5 t t t t t t t t t t' -+ +' t t t t 2 q t q t t t t t t t t u p t t t p p t t t t t t t t t t t t t t ' -+ +'q q t t a t t t 4.G n.!.G q t t t t t t t t t t 8 t t t t t t t 8 t t t t t' -+ +' t t t t t t t 8 t t t t t v v ^ v ^ L t t t t v ^ Q Q : t t t Q Q Q Q t t ' -+ +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 l p u' -+ +' t 5 t t t t u v ^ v v t t t t v v ^ L t t t 2 R T G L v v t t t t t : t t ' -+ +'t t t t t t t t t t t t q 5 q t t 5 t t 8 t t t t t t 5 8 t t t t t 5 8 t t' -+ +' t t t t t t t l T j t t t t t 8 5 q t j x u t 5 8 t t t 5 t t t 5 t t t t ' -+ +': t t t t t t t t t t t t t t 5 8 t t t t t t t t t t 5 t t 8 5 8 8 t t 5 8' -+ +' t t t t 5 8 t t t t q q q t t t t t t t t 5 t t t t t t t t t t t t t t t ' -+ +'q q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t q u T L t t q t q t t t t t t t t Q t t t t j ~ ~ l p t 5 t t t t t ' -+ +'8 t t t t 8 5 t t 5 v u a q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t' -+ +' t t t t t t j ) R 5 q q 8 5 t t 5 t t t t t t 5 8 u t u u x +.`.R t 8 a t ' -+ +'t t t t 8 t t t 8 t t t t t t t t q q 8 5 t t Q t t t t t 5 q t t i L c i t' -+ +' t a t t t t t t t t t t 5 v v p t t t 5 t q u i m t t t t t t t t 8 5 t 5 ' -+ +'t t t t t t 2 u t t t t t t t t t t t Q G T v t t t t t t t 8 5 t t t t q 2' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t ' -+ +'t t t t t t t t 8 5 t t t t 8 t t t t 2 5 8 t t t t t 5 u t t 5 8 8 5 t t 5' -+ +' 8 5 u t t t t ^ v Q Q t t t t 5 u t t t t t t t t 5 8 t t t t t t t t 8 5 ' -+ +'t t t t t t t t t t t t t t t 8 t t t t i p a t t t t t t q 5 t i i 5 t t t' -+ +' t t 8 t t t t 8 t t t t t t t t t t 8 5 t t 5 t t t t t t t t t 5 8 t t t ' -+ +'5 t 8 t t 5 q t 5 t t t t t t t 4.t t t t t t 2 u 5 q 8 t t t t t t 8 t t t' -+ +' t 8 5 t t t t t t t t : 5 q q t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t 5 : t t : t t t q 2 t t t t t t t t t t y q 5 q t t t t t t Q t t t t t' -+ ,' ` +X<.v u t q t q t 5 8 5 t 8 t t t t t t 8 q V v t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t q 2 q q t t 8 t t t t 5 t t 5 8' -+ +' t t t t a g t t t t t t t 8 t 5 t t t 5 t t t t t t t t 8 5 5 q t t v q t ' -+ +'t t t 8 5 t t i l l u u p u t t t t t t t t t 2 p ^ ~ l t t t q 2 q 5 8 5 5' -+ +' q t t t t t u 5 u t t t t t t u v T t t t 2 T Q Q Q t t t t 5 q q t t t t ' -+ +'t t t 8 5 t t t t t q q t t t t t t t t t t t t t t t t t t t t t t t t 5 t' -+ +' t 8 t 8 t t t Q t t t t t t t t t t t t t t t t t t t 8 t t q q t t t t t ' -+ +'t t q 8 5 t t t t t t t t 2 q t t t t t t t t t t t t v v v v t t q t t 8 t' -+ +' u t t t t t t 8 5 t t 8 t t t t t t t t t q 2 t t t 5 t t t m q t t t t t ' -+ +'5 8 t t t t t t 2 q t t 5 t t t t t t v t t t t t t t t t t t q t t 8 t t t' -+ +' t t t t t t t t t t t 8 t t t 8 t t t q t t t t 8 t t t 4.t t t t t p x j ' -+ +'t 5 t t t t t t t t t t t t t t t t t t t t t q q q 5 t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t q t t t t t t t 8 u t t t t t t 8 5 t p b l t t ' -+ +'t t t t t t Q t t t t t ] .X<.b t t t t 5 q q q 8 t 5 t t t t t t t q t t t' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t 5 q q ' -+ +'q t t t t t t 8 t t q 2 u t t t t u u t t t t t t t t t 8 t t t t t 8 5 t t' -+ +' t t t t 8 5 8 t t Q 2 t t t t 5 8 q 5 t t t t p v p t t t t t t t t t q 5 ' -+ +'x v p t t t 4.q q q t 8 5 q t t t t t v v v v t t t t v G v t t t t q q 5 :' -+ +' t t t t : q 2 q t t t t t t t 5 t t 8 t t t 8 5 t t t t t t t t : t t t t ' -+ +'t t t t t t t t t t t t t t t t 5 t t q v t t t t t q 8 5 t t t t t 5 t t t' -+ +' t t 5 8 5 t t t t t t t t t t 5 8 t t t t t t t t q q t t t t t t t t t t ' -+ +'t t t t u t t t 2 u v G v v t t t t t t t t t 5 t t t t 5 t t t t q q q t t' -+ +' t t t t t t t t t t 2 q t t t t t t t t u 8 t t 8 t t t t t u v t 8 t t t ' -+ +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 t t t q t t t t 5' -+ +' t t t t t t t t t p c l t t t t 8 t 5 t t t t 8 t t t t t t t t t t t q q ' -+ +'2 q t t t t t t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t 5' -+ +' t t t t t 8 5 p T Q i t t t t t t t t t t : t t p ~ ^ 5 t t t t q 2 q 5 t ' -+ +'t t t 5 8 t t t t t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t : t' -+ +' t t t t t t t t t t t t t t t 5 t t t t t t t t : t t t p h u t t t t t t ' -+ +'5 t t t t t t t t t t t t t t t t t t t t t v u t t t t t t t t t t t t u p' -+ +' u t t t t t t t t t q t a q t t t t 4.t 8 5 t u G L Q : q : t Q t t u 2 q ' -+ +'q q q t t t t t t q q 2 q t t t t t 5 t t t t t t t t t t t t 5 t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t t t t 5 T q t t t ' -+ +'t 2 t 2 q q t t t 8 t t t t t t t t t 5 q 8 t t t t q 2 t t t 5 t t 5 8 t t' -+ +' 5 8 q 5 t t q 2 q q t t 2 q t t t t t t t 5 t 8 2 q t t t 5 v ^ V T t 8 t ' -+ +'t 8 q 8 t t t t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t 8 t t' -+ +' t t t t t ^ 2 q 5 t t t t t t t t t t t t t t 8 5 5 t 8 5 t t 8 t t 8 t t ' -+ +'8 t t t u 2 q q t t t t t t t t t t 4.t t t t p u t t t t t t t t t 5 t 5 t' -+ +' 5 8 t t q t t t t t 5 q 8 5 t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t q q q 5 t t t t t t t 8 t t 8 5 t t t t p j 2 q t t t t : t t t t t t t t' -+ +' t u 2 t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoXn.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t t' -+ +' t t t u u a t t t t t t 8 t t t t t t t t t t 5 u 8 t t t t t t t t t t t ' -+ +'t t t t ! ] T t t t t 5 t t t t t t : t t t t t t t t t t t t t t t t t v 8' -+ +' 5 t t 5 q t t t t q q 2 q 8 5 t t t t t t q 5 q q q 2 t t t 8 t t t t t t ' -+ +'t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t 8 t t t q V t t t t t u t u t t t t t t 5 8 t t t t t t t q 8 5 t t 5 ' -+ +'8 t u 8 t t 8 t t t t t t 8 5 8 t t t 5 q t q t t q t t t t t t t 8 5 t q q' -+ +' t t t t 8 t t t q t t t t Q Q ~ t t e e e t t t t t t t t t t t t t t q q ' -+ +'q q t t t t t t t t 5 t t t t t t t v t q q t t t t t t t t t t t t t t t t' -+ +' t t t t t t 5 t t 5 t t t t t t 8 q q 2 t t t t t t 5 8 8 t t 4.t t t t t ' -+ +'t t t t t 8 t t t 8 t t t t 5 t t 5 t t t t t 8 5 5 8 t q t t t 5 8 t t t t' -+ +' t t t t t t t t t t t t t t q 2 q t t t t 5 8 t t t t t t 8 5 t t t t u 8 ' -+ +'t t t t t t t t t t t 5 t t q q t t t t t t t t t t t t t t t t t t t t t t' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t ' -+ +'t t 5 t t 8 t t t t t t t t q t t t t t t t t t t t t 8 5 t t 8 t 8 t t 8 2' -+ +' t t t t t t t t t t t t t 5 m j $.|.$.t t t t t t t t t t t t t t t t t t ' -+ +'t t t v Q Q v u t t t t 5 8 t t t t t t t t 5 2 q 5 5 q q t t t t t t t t t' -+ +' 8 u t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t ' -+ +'t t t t t t t u t t t t t 8 t 5 t t t t t t t 5 8 t t g g i t t t 8 5 5 8 t' -+ +' t t t t 8 t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t q q t t t t ' -+ +'q q t t t t t t 5 8 q q q q t t t t t t 5 t t t t t a ) `.].E e e e r u t t' -+ +' t t q 5 t t t t 5 t 8 5 q t t t u 8 t t t t t t t t t t t 5 t t t t : t t ' -+ +'t t t t t q q t t t t t t t 8 5 t t t t t t t t t t t 5 8 t 2 t t t t t t t' -+ ,' t t t t t t t t t t t t t t t 8 5 t t t t t t t 8 t l ` ! t t t t 8 t t t ' -+ +'8 t u 2 t t t t t t t t t t t : t t t t t t t t t t t t q q t t t t t t 5 8' -+ +' t t t t t t t t t t t q t t t t t t t t t t 5 8 q q q 5 t : t t t t t t t ' -+ +'t 5 t t t 5 t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -+ +' t t t t t t t t t t t t q t 8 t t 5 t t t t t t t q 5 8 5 t t t t t t t t ' -+ +'t t t t t t 5 t 5 t t t q t t t 5 8 t t 5 8 t t t t m m y _ :.[ t t t t t t' -+ +' t t t t t t t t t Q v t t t t t t 4.q 2 t t t t t t t t t t t t t t q q q ' -+ +'q q 2 q t t t t t t t t t t t t 5 8 t 8 t t t t t t t t t 5 8 t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t g x u t t t 5 t t t t t t t t t 8 q ' -+ +'t u x P p t t t t t t t t t t t t 5 t t t t t t t t t t 5 8 t t t 5 t t t t' -+ +' t t t t t t 2 q t t t t t t t t t t t 5 q t q 2 q 5 t 8 t t t t 8 t t t t ' -+ +'t g `.dX XW e e e G v Q v t t t t t t t t 8 t t 8 5 q t q 2 t t t t t t t t' -+ +' t t t t 8 t t t t t t t t t t t t 2 t t t t t t t t t t t 8 t t t t t t t ' -+ +'t t t t t t t t t h 8 a 8 5 t t t t 5 8 t 4.t t t t t t t t t 5 8 t t t t t' -+ +' u ] +X|.v t t t 5 t t t t t 8 t t t 5 8 t t t t t t t t t t : t t t t t t ' -+ +'t t t 2 q t t t t t t t t t t t t t t t t t t 5 t t t t Q t t t t t 8 8 q 5' -+ +' q 2 q t t t t t t t t t t 8 t t t 8 t 5 8 t t t t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 8 5 t u 2 t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t 5 5 8 5 t t t t 5 y q 5 t t q 5 t t t t t t t ' -+ +'t t t t y j q a t 8 8 t 8 u 5 q q 5 8 q T v t t t t t t t t 4.q t t t 8 t t' -+ +' t t t t t t t q t 8 t t t t t t t t t t t 5 8 t t t t t 8 t t t t t t t t ' -+ +'t 8 t t t t t t t t t t t t t t t t t t 8 5 5 q q 2 q : t t t t g x t t t t' -+ +' t t t t 5 t t t t t t t t t i i t t t t t t t t t t t 8 t t 2 q q q 2 q 8 ' -+ +'t t t t t 8 5 8 t t t t t q 2 q t t t t t t t 8 t t t t t t 5 8 t t t t t t' -+ +' t q 5 8 5 t t t 5 t t t t g #.$X].W e e e e 8 t t t t t t v T u 5 8 t t t ' -+ +'t t t t t t t t t t t t t t 8 5 8 t t t t t t t t t t 5 8 t t t t t t t t t' -+ +' t t t t t t t t t t 5 t t t t 8 q 2 q u ) +.T t t 5 t t t t t t t t t t t ' -+ +'t t t t t t t t t t t q 5 q ] |.>.v t t 5 5 t t t 8 5 t t t t t t 8 t t t t' -+ +' t t t t t 8 t t t 5 q 2 q t t t t t t t t t 8 t t t t t t t t t t t t t t ' -+ +'q q 5 T t t t t t t t t t t t t : t t t t t t t t t t t 2 u t t t t 5 8 q q' -+ +' >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8 t t t t 8 ' -+ +'t t t t t t t t t t t t t 8 t t t t t t t t t t t t t q 8 8 t t t t t L *.]' -+ +' u t t 8 t t t : t t T t t t t t t t t q p g p 2 ^ v v T 2 q 5 5 2 u t t t ' -+ +'t t t 8 t t 5 t t t 5 t 8 t t t 8 5 t t 2 u 5 t t t t t t t t : t t t t t t' -+ +' t t t 5 t t t t t t t t t 5 u t t t t 8 t t t t t t t t t t t t 5 8 q q q ' -+ +'q 5 t t t t t u t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 5' -+ +' 8 t t t t q t q 5 q q 5 t t t t t 5 q t t t t t t t t q q t t t 8 t t 5 t ' -+ +'5 t t t t t t t t t t t t t 5 : t t t t t t 8 t t t t P +.) u e e e t 8 t t' -+ +' t : t t 5 t V T t t 8 5 t t 8 5 t t t t t t t t t t q 5 5 8 t t t 8 t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t 5 5 q q x `.].) t t' -+ +' 8 t t t t t t t t t t t t t t t t t t t t t t 2 8 5 p ^ Q q t t 8 8 t t t ' -+ +'t t t t 5 8 t t 5 t t t t t t t t t t t 5 t q q q 5 t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t q 2 T V t t t t t t t t t t 8 5 t t t t t t t t t ' -+ +'t t t q 8 t t t 8 t 5 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t' -+ +' t t t t t t t t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t ` XX>.l t t 5 t t t t t : 5 Q t t t t t t t T g L c i t' -+ +' t t 5 8 t q q 2 t t t t 8 t t t t t q t t t t t t 5 8 5 t t 8 t t 8 t t t ' -+ +'t t t t t t t t t t t t t t 5 t t t t t t t 5 t t t 5 q v ~ i q 5 8 t t t t' -+ +' t q 2 t t t t 8 t 2 q q 5 t t t t t t t t t t t t t t t t t t t Q : t t t ' -+ +'t t t t t t t t t t t t t t t 8 t t t t t t t 8 5 t q 5 t t q 5 u 8 t t t 8' -+ +' t t t t t 5 t t t 8 t t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t a q t 2 u t t t t t t t q t 5 8 t q 2 t t 5 8 v L v L 5 5 t t t t t t t' -+ +' t 5 8 2 T t t t 5 t t t t t t t 5 t t t t 8 t t t t t t t t t t t t 5 t t ' -+ +'2 u t t t t 2 u ) +.P 8 t t t t t q t t t t t t 4.t t t q 5 q 2 5 8 t t q q' -+ +' t t m m t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 8 5 t ' -+ +'q t t t t t t t t t t t t 5 t t t t q t t t t t t t t v u t t 8 t t 8 t t t' -+ +' t t t t t t t t t t t t t t t t t 5 t t t q 8 t t >.oXoXoXoXoXoXoXoX>.",' -+ +#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t 8 t t t 5 t 8 5 t t 8 5 t t t' -+ +' t t t t t t a t 8 t t t t t t t t t t t 2 u b '' ~ u t t t t t t t t t t Q' -+ +' t t t t Q Q Q t p x l u q t t t t t q q q t t t t 5 t t t 4.5 t t 8 5 8 t ' -+ +'t t t t t t 5 t t t t t 8 5 t t 8 5 t t t t t t t t t 8 t t 8 5 t t t 8 t t' -+ +' t 8 c >.XX` 5 8 5 t t t t t t u t t t t t t q 5 8 q t t t t t t t t t t t ' -+ +'t t t t t t t t Q t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t q 5 8' -+ +' t q t t t t q 2 t t t t 5 t t t t t 8 t t t 5 t 5 t t t t q t t t t t t 5 ' -+ ,'t t t t t t t t t 8 t 5 t t t t 5 q q t t t t t t t t 2 t q 5 8 q q t t 8 5' -+ +' u 5 u 5 t 8 : t v t t t t t q q q T t t t t t t t t t t 8 8 t 8 5 t 5 t t ' -+ +'t t : t t t t t t t 8 t t q 8 t t t q q t q u t t 8 t 8 5 q 5 t t t t t t t' -+ +' t t t t q q q t t t t q q t t 5 m t t t t t t t 5 8 t t t t t t t t t t t ' -+ +'q t t t t t t t t t 5 8 t t t t t t 5 p u t 5 8 t t 8 t t t 8 5 t t t t t t' -+ +' ^ ] v t t t 5 t t 5 t t t t t t t t t t t t t t t t t t t t 8 t t t 5 t t ' -+ +'t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q 2 8 5 t t t t 8 t t t 8 5 t' -+ +' t t t 8 5 t t t 5 8 t t t t t t t t t a ^ ^ t t t t t t t t t t t q 5 q t ' -+ +'t t t t t t t t t t Q Q Q t t t t t t t t t t u t t t t t t t t t t t t t t' -+ +' t t t t 4.8 8 5 t t t t t t t 5 8 t t t t t t 5 t t t t t t t t t 8 t t t ' -+ +'t t t t t t t t t t t t t t t c &.''.~ t t t t t 8 t t t 8 t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t 2 ^ t t t t t t t t t t t t t t 5 8' -+ +' t t t t t t t t t t q t q 2 2 q d ` ~ t t t 8 5 q q t t 5 t t t t t t t t ' -+ +'8 t t t t 2 q 5 q t t u u t t t 5 t t t t t t t 8 t t t t t t t t t t t t t' -+ +' t 8 u t q 8 5 q 2 q q t t t t q q q t t t u v v v t t t t v q t t t t t t ' -+ +'t t t t 8 5 t t t t 8 5 t 8 t t t t t t t t t t t t t t t t 8 t t t 8 5 t t' -+ +' 5 t t t t t t t t t t t t t t 4.8 5 t t t 5 t t 5 8 t t t t t t t t t i p ' -+ +'8 u 2 8 t t t t t t t t q q 5 q q t t y q 8 5 t t t t t t t t i v b t t t t' -+ +' t 5 t t t 5 t t t t t t d &..X] 2 t t t t 8 t t t t t 8 5 t t t t t t t t ' -+ +'t t t t 8 5 t t t t t t t q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q q' -+ +' 5 q t t 5 : 5 t t t t t t t t t t t t t t t t t t t t t t t t t ^ ,.>.v t ' -+ +'t t t t t t t t t q t t t t t t t 8 5 t t t Q Q t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t 5 8 t t t 5 t t t t t t t t t t t t t t 5 t t t t 8 ' -+ +'t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 v ^ u t t t t t 5' -+ +' t 5 t t t 8 5 t t t 5 t t t t t t t t t t t t t t t t t t t t 8 q v t t t ' -+ +'t t t t t t t t 5 8 t t t t t t t t t t t 5 8 5 q q q t q ~ .X<.v t t t t 2' -+ +' t d x p t t t t t t t t t t t t 8 q q q 2 t a l l u t t 8 t t t t 5 8 t t ' -+ +'t t t t t t t 8 t t t t t h p t t 2 u 8 5 q t q t t t t t q 2 t t t 5 t u 5' -+ +' t t t t ^ V v t t t t t t t t t q 5 t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t 5 t t t t t t t t t t 8 t t t t t t t t t t t 4.4.t q q 8 q t t 8' -+ +' 5 t t t t t t t t t b ^ p q q t t 5 t t t t 8 t 5 5 8 q 2 a l v p u 8 t t ' -+ +'t t t t t t i c l i t t 8 5 8 t t t 8 t t t t t t u '' &.~ q t t t t t t t ' -+ +'5 t t t t t t t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' -+ +','#10'"oXoXoXoXoXoXoX>.q t q q 5 q q q t t t t t t 8 t t t t t t 8 t t t t ' -+ +'t t t t t t t t ^ >.>.v t t : t t t t t t t t t t t t t Q Q v t t 8 t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t 5 8 t t 8 t t t 8 4.t t t t t t t ' -+ +'t t 5 t t t t 8 t t t t t t 8 8 t q q t 8 5 t t t t 8 5 t t 8 5 t t t t 5 t' -+ +' t t t t t 5 5 t t 5 t t t t 8 t 5 t t t t t t 8 t t t t t t t t t t t t t ' -+ +'t t t t t t t t q q 8 t 8 q t t t t t q t t t t t t t t t 8 t t t t q q 8 5' -+ +' q 5 t t ~ >.*.l 8 5 t 8 5 u b T p t 8 5 t t t t t t t t t 5 8 5 q q t u p ' -+ +'j u 2 t t t t t 5 t t t t t t t t t 2 8 t t t t t a g g t t t 8 5 t t q 5 t' -+ +' t t 8 t t t t t t t t t t t t t t t t v ^ t t t t t t : q 2 q t t t t t 8 ' -+ +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t 5 t t t t t t t t' -+ +' t t t t t t q q 5 t t t t t t t t t t t t t t v Q p 5 q t t t t 8 5 t 5 t ' -+ +'t 8 t q q q c v p 2 q t t t t t t t t t u t t 8 5 t t t t t t t t t t t p b' -+ +' p ~ x q t t t 8 5 t t t 8 t 5 t t t t t t t t t t t t t t t t 8 t t t t t ' -+ +'q t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t q 2 q q q 2 t t t t t t' -+ +' t t t 5 8 t t t t 5 t t 5 8 t t t t t t 8 L V t t t t t t t t t t t t t t ' -+ +'t t Q Q t u t t t t t t t t t : t t t t t t t t t t t t t t 8 5 t t t t t 5' -+ +' t t t t 4.t t t t t t t t t 8 t t t t t t t 8 t t 5 t 5 8 5 q 5 q 8 5 t t ' -+ +'t 5 t t t t 8 t t t t 8 t t t t t 8 5 8 t t t 8 t t t t t 8 t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t 5 8 5 5 t t t t t 2 u 8 5 8 t ' -+ +'t t t t 5 t t t t t q 2 q q q t t H ` x 5 5 8 t t t t i p t t t t t t t 8 5' -+ +' t t t t t t 8 5 q t t t 5 q q t t t t t 8 t t t 8 t t t t t 8 8 t t t t t ' -+ +'8 a u 8 t t q 5 t 8 5 8 t t t 5 t t t t t t t t t t t t t t t t t t t t t t' -+ +' Q Q G q q q t t 8 5 t t t t t t t t t t t : t t t t t t t t t t t t t t t ' -+ +'t t t t t t q H ....p t t t t t t t 4.4.2 8 5 8 t t 8 5 t t t t t t t t t u' -+ +' q q 2 t 5 8 t t t t t t t t t 5 t q i i 5 q t t t t t t t t q 5 t t t t t ' -+ +'t t t t t t t t 8 5 5 x ! l G t t t t t t t t t t t t 8 t t t t t t t t t t' -+ +' t : t t t t 5 t t t t t q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: ' -+ +'t t t t t q t t t t t t t t t t t t t t t t 8 t 8 t 8 t t t t 5 t t t t t t' -+ +' t t t t t t t Q v Q : t t t t t t 5 2 t t t t t t 8 G 8 t t t t t t t t t ' -+ +'t t t t t 8 5 t t t t t t t t t t N 2 2 t t t t t t q q q 5 t t t t t 5 t t' -+ +' t : t t 2 q t t t t t t t t t t t t t t 5 8 t 8 5 t t t t 5 t t t t t 8 t ' -+ ,'t t t t 5 t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t q t t 2 : G -.-.G t q q t t ' -+ +'t t t t t t t t t t t t t t u t t t t t t t t t t t t t t t t t t t t t t 5' -+ +' t 5 t t t t t t t t t t t t t t t t t t 2 q q q 2 q t t t t t t t 5 8 t t ' -+ +'t t t 8 u 2 q t t t t 5 t t t v L t t t 5 t t t t t t t t t t t t t q 5 q t' -+ +' 2 q t t t t : t t t t t t t t t t q d -.#X#X..t t t t t t t t 4.t t t t t ' -+ +'t t t t t t t 8 t t t t 5 8 t t t 8 t t t t t t t t t t t q q 2 t t 5 t t t' -+ +' 8 5 t t t t t t : t t t t t t t t t q q q 8 t p j ! t t t t 5 t t t t t t ' -+ +': 5 q 5 8 5 q t t t t t t t t t t t t t t t t 8 5 t t >.oXoXoXoXoXoXoXoX>."' -+ +','#10'"oXoXoXoXoXoXoX>.t t t t t t q q t t t t t t t t t t t t t t t t t 5 ' -+ +'t t t t t t t t t t t t t t t t t t t v v u t t t t t t t t q q t t t t t t' -+ +' q G t t t t t t t t t t t t t t t t t t t 8 t t t t t q t t t q t t t t t ' -+ +'t 2 q 2 q t t t t t 8 t t t t t t q 5 t t t t t t t t t t t t t t t t t t t' -+ +' t t 5 t 8 t t t 8 t 5 t t t 5 t 8 t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t 5 t t t t t t 5 8 t 5 8 t t t t t : t t t t t t t t t 5 t' -+ +' t q t G -.-.G t 5 q t t t t t t t t t t t t t t t p x x t t t t t t t t t ' -+ +'t t t 8 5 t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t q t q 5 q' -+ +' q q q t t 5 t t t t t t t t t 5 v q q t t 5 8 8 t t t u 5 t t t u v v v t ' -+ +'t t t t t t t q t t 8 5 t t q q 5 q t t t t t t t t t t t t q b /.aXsXX.u t' -+ +' 5 t t t t t t t t t t t t t t 8 t t t 5 t t t t t t t t t 5 t t t t t t t ' -+ +'t t t 5 l T j t t 8 t t t t t t t t t t t t t t t t t t t t t 2 q q 5 t t 2' -+ +' ^ t t t t 8 t t t t t t t 2 q q q q 2 t t t t t t t t t t t t t t t t t t ' -+ +'t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 8 2 5 5 8 t t t' -+ +' t 5 t t t t t t 8 t t t 8 t t t t 5 t t t t t t v V T t t t t t a t t t t ' -+ +'t t t t t q 5 8 t t t 5 8 q T t t t 5 8 t 8 t t t t 5 t t t t t t t t t t t' -+ +' t t 2 4.t t t t t t t : t t q q q 5 8 t t t t t t t t t q 2 q t t t t t t ' -+ +'t t t t t t 8 u t t t t t t t 8 t t t t t t t t t t t 8 t 5 t t t t t t t t' -+ +' t t 2 u u d p a t t t t t t t t t t t t t L t t t t t t t t t t 8 5 t t t ' -+ +'t t t t t t t 5 t t t u t t t t t H H t t 2 q t t t t t t t t t t t t t t t' -+ +' p L P 8 t t t t t t q t t t t t t t 8 t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t 8 5 q t t 8 t t t t t t t t t 5 T 5 q t t t t t t' -+ +' t t 5 8 t t t t t t ^ V t t t t t t u 2 t t t t t t 5 8 8 5 t t t t t t t ' -+ +'t t t t t 2 q o.^.~./ t t 8 t t t 8 5 t t 4.4.t t t t t 5 t 5 t t t t t 8 t' -+ +' t t 5 t t 8 q t t t t t t u 8 t @.''.@.u 5 q t t t t t t t t t t t t t t t' -+ +' t t t t t t q 5 q t t t t t t t t t t t 8 5 t t t t q 5 q q q t t t t t t ' -+ +'t t t t t 5 t t t t 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' -+ +' t t t t 5 5 q q 8 5 8 t t t 8 t t t t t t 5 t t t 5 t t t t 8 t q t t t T ' -+ +'^ 8 t t t t t t t t t t t t t t t t t t t t t t t t 2 u v t t t t t 5 t t t' -+ +' p p u t 5 8 t t t 5 8 t t t u u 4.t t t t t t t t t t 5 q q 8 5 t t t t t ' -+ +'t t t 5 q q q t : t t t t t t t t t t q 2 t t t t 5 8 t t t t 8 5 t t t t t' -+ +' t t t t 8 8 t t t 5 t t t t t q 8 t j p q t t t t t t t t t t t t 5 G q t ' -+ +'t t t t t t 8 t t t t t t t t t t t t t q 5 j ..-.o.t q u t t t t t q 5 t t' -+ +' t t t t t t t t 5 8 t t t u x g 8 2 t t t t t t t t 8 t t t t 5 t t t t q ' -+ +'t 8 t t 8 5 t t 8 t t t t t t t t t t t t t t t t q 5 q 2 t t t t t t t t t' -+ +' t 8 5 8 T q 2 t t t t t t 8 5 8 5 t t t t t t q q 8 5 t t Q Q v t t t t t ' -+ +'t t 8 5 8 q t t t t t t t t t t t t q 5 8 G b q t t t t t t t t 8 5 t 4.t t' -+ +' t t t t t 8 t t t t t 5 t t t 8 t t u 2 t t t t t q 2 t g #.$X@.p q t t t ' -+ +'5 8 t t t t t t t t t t t t t t t t t q q 2 t t t t t t t t t 8 t t t t t t' -+ +' t q q 2 q q t t t t : t t 8 5 t t 8 t t t t 5 t t t 8 >.oXoXoXoXoXoXoXoX>.' -+ +'",'#10'"oXoXoXoXoXoXoX<.t t t t q q q 5 t t t 5 t t t 8 t t t t t t t t t t' -+ +' t t t t v ^ v ^ 2 t t t 8 t t t t t t q q 2 t t t t t t t t t 8 t t t q 2 ' -+ +'q t t t t 8 t t 5 t t t t p l a t t t 5 t t t t t 5 a l d t t t t t t t t t' -+ +' t t t t t 8 t t t t 5 t t t t q : t t t t t t t t t t t t t t t t t 5 t 8 ' -+ +'t t t t t t t t t t t 8 t t t t t t 8 5 t q 8 t t t t t t t t a q 5 u 2 q t' -+ +' t t t t t t t t 8 v t t 5 8 t t t t t t t t t t t t t t u 8 t t q 5 ( #XiX' -+ +'^.H q 5 8 t t t q 2 q t t t t t t t : t 8 t t 8 u t q t t 8 t t t t t t t t' -+ +' t t t t t t t 2 q 5 q t t 5 t t t t t t 5 t t t t q t t t t t q q 5 8 5 8 ' -+ +'t t t t t t q 2 5 8 t t t t 5 8 v t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t 5 q V T t t 5 u 5 u t 5 2 q t t t t t t t t t t t t 5 q 5 8 5 t t ' -+ +'t t 5 8 t t 8 5 t t 5 8 t t t 5 t t 8 t 5 t t t t t t 5 8 t t t t t t t t 8' -+ +' 5 t t 8 ! _ R t t t t t 8 t t t t t t t t t t 5 q q 2 t t t t t t t t 2 t ' -+ +'t t 5 t t t 5 t t t t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t t t t' -+ +' t u >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t q 2 q 8 t t 8 t ' -+ +'t t 5 t t t t t t t 5 t t t 8 t t T 2 8 5 q q t 5 t t t t t 8 t 5 q q t t t' -+ ,' t t t t t t 5 t t t t q q t t t t t t t t t t t t u u t t t t 8 t t t t t ' -+ +'8 u l p t t t t t t t t t t t t t t 5 t t t t 8 t t t t 5 t t t t t t t t t' -+ +' t t t t t t t t t 8 t t t t t t t t t t t q t 5 t t t t t t 5 q t 5 t t t ' -+ +'5 5 8 t t t t 5 q 8 5 t t t u p i t t t t 2 ^ t t t t t 5 t t t t t t t t t' -+ +' t t t 2 t t t t 8 | #XiX^.H t 8 5 t t t t q q t t t t t t t t t 5 t t q 2 ' -+ +'t t t 2 8 t t t x R i 2 t t t t 8 t t t u 8 t : t t t t u 8 t t t t t t t t' -+ +' q 2 t t t t q q q 5 t t t 8 5 8 t t q q t t t t t t t t t t t t t t t t t ' -+ +'t t t 8 5 t t t t t 8 t t t t t t q q q q t 8 2 v L v v u t q t t t t t t t' -+ +' t t t t t 2 q q q q t t t t t t t t t t t t t t 4.4.t 8 t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t 8 q' -+ +' q q t t t t 8 5 t t q t t t 8 t t t t t t 8 t t t t t t t t t t t t t t t ' -+ +'t t t t t t 5 8 t t t t t t 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t' -+ +' t t t t t t : u 2 t t t 5 t t t t t t t t 5 L v ^ t 5 q t q t t t t t t 8 ' -+ +'t t t 5 8 5 q q q 5 t t t t t t t t t t 5 8 t q 5 q 8 t t t t t t 8 t t p u' -+ +' 5 q t t t t t t 5 8 t t t t u 4.t t t t t t q 2 t : t t t 8 t t t t t t t ' -+ +'t t t q 2 t t t t t t t t t t t t t t t t t t t 5 8 t t t 5 t t t 2 q t t t' -+ +' t t t t t 8 t t t t t t 8 t t t t t t 8 t 5 8 t t 5 p c g t t 8 5 q t t t ' -+ +'t t t t t t t t 8 5 t t t t t t q t 8 5 t t b X.~.o.5 t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t q u x g O.:.) u t t 5 t t t t t t p x u u ' -+ +'t t t 2 q t t 5 8 q 5 t t t t t t t : q 2 2 q t t t t 8 5 q q q 5 t t t t 8' -+ +' 5 t t t t t t t t t t t t t t t t t t t 8 5 t t t 8 t t 5 q q 5 q 8 5 q q ' -+ +'t t v q t t t t 2 u t t t t t t : t q 5 q q t t t t t t t 8 t t t t t t t t' -+ +' 4.t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t 5 q q 5 q q t t t t q q T T 5 8 t t t t 8 t t t t t t' -+ +' t t t : t t t t t t t t t 5 t t t t t t t t t t t t q >.oXoXoXoXoXoXoXoX>.' -+ +'",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t q t t t 8 t t t t t t t v T q t :' -+ +' t 8 5 t t t t t t t t t t 5 t 8 5 q t q 2 q t t t t t t t : t t 8 5 q q q ' -+ +'2 5 t t t t t t t q p c c t t t t t t t t t t t t t t t 4.t t t t t q q q 5' -+ +' q t t 5 t t 5 8 t t t t t t q q q t t t t t t t t t : t t t t 8 5 t t t t ' -+ +'t t t t 8 t t t t t t t t t 8 5 t t t t t t t t t t t t 8 5 t t t t 8 q t t' -+ +' t u p i t t t t q q t t t t 8 t v ~ v t t t t t t t t t t t t t t t t t d ' -+ +'m t t t t t t t q 5 t t t t t t t t t t t 8 5 t t t t t t u ) `.+.O.:.[ t t' -+ +' t t 8 5 8 t t g +.;.I 2 q t t t t t t 8 5 8 q t t t t t t t t 5 q q q t t ' -+ +'t t 5 q t q 2 q t t 8 t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t' -+ +' t 5 t : q 2 8 5 5 8 t q : 5 u t t t t Q R v 5 8 t t t t t t q q 2 q t t t ' -+ +'t t t t t t t 5 8 t t 8 t t t 4.t t t t 8 t 8 t 5 t t t t t t t t t : t t t' -+ +' 5 8 t t t t t t t t t t 8 5 t t t t : t t t t 5 8 q q 2 5 : t t t q 2 T 5 ' -+ +'q 5 t t t t t t t 5 t t t t t t t t t t t t t t t t 8 t t t 5 8 t q t t t t' -+ +' t 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t q 5 t t t t t t t t t ' -+ +'t u t t t t t t t t q t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t v t t 8 t 8 u x l u 2 q 5 q q q t 5 8 5 t ' -+ +'t t t t t t t t t t 5 8 t t t t t t 8 t t t t t t 5 8 t t t t t t t t t t t' -+ +' t t 5 8 t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t t q 2 8 ' -+ +'q t t t t t t t t t t t t t t u q t t t t t t t t t t m j >.OX<.l 8 t t t t' -+ +' t t t t t t t 8 5 t t q q q 5 t 5 t t t 5 t t q 5 q q q t t t t t t t t t ' -+ +'t t t t p +. X#.P v p t t t t t t t 5 8 x `.].) t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t 5 t t t t t t ' -+ +'t t t t 2 q t t t t 8 5 t t t 8 t t t t t 5 8 t 5 t t t t t t t t t 8 v ^ t' -+ +' t t t q q t 8 t t t t t t t 5 q 5 t t t t t t t t t t t 4.t t t t t t t t ' -+ +'t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' -+ +' t t q 8 5 8 t t t t v u 2 q t t t t t t t t t t t 5 t t t t t t t t t t t ' -+ +'q q q q 5 t t t 5 t t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.q' -+ +' q 8 q t t t t t t t t t g x ~ ^ : t t t t q 2 t t t t t t t t t t t t t 5 ' -+ +'t t t t t t t 8 t t t t 5 8 t t t t t t t t t t t t t t t Q t t 5 t 5 t u u' -+ +' t t q q 2 q t t 8 q t 8 t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t 8 5 t t t t t t t 5 8 t t 8 t t 5 q t t t t t' -+ +' 8 t t t t t t t t q u p g t t t t t t : t t t t t t t 2 q t t t t t t t t ' -+ +'t t t v XXzX.XG t t t t t t t t 8 t t 5 t t t t q q 2 q t 8 t t t 8 t t : t' -+ +' 2 q t t t t t t t t t t t t t t q ) +.) t t t t t t t t t t 8 8 8 R +.c t ' -+ +'t t t t t t t t t 8 5 t t t t t t t t t t q t t q t t t t t t 5 8 t t t t t' -+ +' t q V t t 8 t t t t t 8 t t t 8 u t t t t e e e t t t t t t 5 t t t t 8 q ' -+ +'t t t t 8 5 t t t 5 t : t t t t q 2 t 5 t t t t t t t : t 8 t t t t t t 5 8' -+ +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t 8 ' -+ +'5 t t t t t t t t t t 5 8 t t 5 q 8 5 t t t t t t q q t t t t t t t t t t t' -+ ,' 8 t t t t t t 2 q t t t 5 2 q 2 q t : t t t t t t t t >.oXoXoXoXoXoXoXoX>.' -+ +'",'#10'"oXoXoXoXoXoXoX>.t t 5 8 t t t t t t t t t ~ ] j q 5 t t t t 5 q 8 t' -+ +' t t t t t t t t t t t 8 t t t t t t t 5 t t 5 8 t t t t t t t t 5 8 t : t ' -+ +'q t t t v 5 t t t 2 q : 5 5 t t t t t t t t 5 t t 5 t 4.t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t q 8 q 2 5 t t t t t ' -+ +'t t t t t t q 8 5 t t t t t t t t t t t t t 8 u x x p t t t t t t t t t t t' -+ +' 8 5 t t q 2 q t t v t t t m t t ..''.| t t t t t t t t t 5 t t 8 t t t t 5' -+ +' 8 q 5 t t t 5 t t t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'5 t t t t t u 2 u 2 8 8 t t t t t t t t t t t t 8 t t t 5 t t t t t t t 2 q' -+ +' t 5 8 t 5 8 t t 8 t t t 8 t t ^ t t 8 t t t t t 5 t t 5 t t t t 5 e e e e ' -+ +'e t 8 t t t 8 8 5 t t 5 t t t t t t t t t 8 5 t t t t t t T T t t t t t t t' -+ +' t t t t t t t 5 q t t t t t t 5 8 t 4.q q 5 8 t t t t t t t t t t t t t t ' -+ +'t t t t t t t t 8 5 t t t t t t t t 5 8 t t t t t t t 5 q q 5 q q 2 t t t t' -+ +' t t t t t t 8 t t t t t t t t t t t q 2 q q t t t t 5 8 q q t t t t t t t ' -+ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t 8 5 t t t t t t t t t' -+ +' u p i t t t t t t 8 5 5 t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' -+ +'t t t t t t t t t t t t t 2 t t t ^ 8 t t t q t t t 8 t t t t t t t t t t t' -+ +' 8 t 4.t 8 5 t t t t t t t t t t 5 t t t t t t 8 8 t t t t t t t t t t t t ' -+ +'t : t 5 q q q 8 t t t u 8 t 5 8 t t t 8 5 8 t t t t t t t t 5 t t t t 8 5 g' -+ +' x i t t t t t t t t t t t t t t 5 5 q q q : ^ t t : 5 t t 8 p t p p t t t ' -+ +'8 5 t t t t t t t t t t 8 5 t t t t t 8 t t 5 t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t 8 t t t t t t q 5 8 t t t t t t t t t t : t t t t ' -+ +'t t t 8 t t p u t 5 t t t t t t t t t t t 5 t t t 5 t t v t t 5 q 5 q t t t' -+ +' t t 8 t t t t 8 e e e e e t t t t t t t t t t 8 5 8 t t t t t t 8 5 q t t ' -+ +'t t t t q 2 ^ v t t t t t t t t t t t t q q 8 5 t t t t t t t t 4.2 p G d t' -+ +' t t t t t t t t t t t t t t t t : t t t t t t t t t t 8 t t t t t t t t t ' -+ +'t t 8 2 q t t i u t t t t t t t 8 5 t 5 t t t 8 t t t t t t t q q 5 q t t t' -+ +' t 8 5 q q t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -+ +'t t t t t t t Q Q Q : t t u t t t t 5 q t t 5 q t t t t t t t t t t t t t t' -+ +' 5 8 t t t t 8 t t t t t 2 q t t t t t t t t t t 8 u t t 5 8 t t t t q q t ' -+ +'t t t t t t t t t t : t t t t q 2 q q t t t t t t t u t a t t t t t t t t 5' -+ +' t 5 t t t t t t t t t t t t t 5 q 8 t t t t t 2 t t t t t 5 t t t t t t t ' -+ +'t 5 t p x p t t t t 5 t t t t t t t t t t t t t t t t t t 8 t t t t t ^ 8 5' -+ +' t t t t m q ..4X4XX.5 2 t t t t t t 8 t t t t t t t t t t t t t 8 t t t t ' -+ +'t t t t t 2 u t t t t t a t u P Y h 2 t t t t q t t t : t t t t t t t t t t' -+ +' t t t t t t t t t t 8 5 t t t t t u z v u t t t t t t t t t t 8 5 t t t t ' -+ +'5 8 u v t t t t t t t t t t t t t t t t t e e e e e t t t t t t t t t t t t' -+ +' 5 t t t t t 5 q 2 q : t t t t t t t t t t t q 2 t u t t t t p p t q t t t ' -+ +'t t t t t t 8 8 G !.#X!.J t q t q t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t 5 t t t 2 q t t t t t t t j R l t t t t t t t t t t t t t t 5 t ' -+ +'u 2 q t t t q t t t t t q q t t t t t t t q t t t 5 8 t >.oXoXoXoXoXoXoXoX<' -+ +'.",'#10'"oXoXoXoXoXoXoX<.u t t t q t Q t t t q 5 : 5 t t t 8 q q p l u t t ' -+ +'t 8 5 t t t t t t t t t t t t 5 8 t t t t t t t t u 8 t t t t t t t t ! O.R' -+ +' q t t 8 5 t t t 8 t t t t t t t t t t t t t t t t t t 5 q q q 8 t 8 t t t ' -+ +'t H ( G t t t t t t t t t t 8 t t t t t t t t t t t t t q q 5 t t t t t q t' -+ +' t t t t 8 t t t t t t t t 8 t p v j t t t t 8 5 t t t q t t t t t t t t t ' -+ +'t t t t t t t t t t v t t t t t t m z sXLXKXiXG q t t t t t t 5 t t t t t t' -+ +' t t t 5 t t t t t t t t t t t t t q 8 t t t t q 2 P `.$X$X].) t a t t q q ' -+ +'t t q t t t t t t t t : t t t t t t t t t t t t t t t t t t u l l 5 t t t t' -+ +' t t t t t t t t t t t t 8 q 5 t t t 8 5 t t t t t i 5 t t t t t t t e e e ' -+ +'t t t 5 8 t t t t t t t t 8 t t t 5 u q q q q t t t t t t t t 8 5 t t q ^ v' -+ +' v t t t p G v p 2 t : t t 5 8 t t t 5 8 X.5XNXiX-.t 5 t t t t t t t t t t ' -+ +'t t t t t t t t t t t 5 5 8 t t t t 8 t t t u 8 t t t t t t q x ! ] t t t t' -+ +' t t t t t 5 t 8 t t t t 8 t t t t t 5 q t t t p b p t t t t t t a g p t t ' -+ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXXXa G t t 8 5 8 q t t t q t' -+ +' t t t t t t 2 p x y a t 2 q q t t t t l x 5 t t t t t t t t t t 5 8 t t t ' -+ +'t t t t t t 8 t t p @.+XO.u t t t q t t t 5 5 5 8 t t t t 8 t t t t t t t t' -+ +' t 4.q q 5 q 8 5 5 t t 5 d ..^.o.t t t t t t t t t 5 t t 8 q t t t t t t t ' -+ +'t t t 2 q : t t t t t t t t t t t t t 5 8 5 8 5 t t t t u y u t t t t t t t' -+ +' t q q q q t t 8 t t t t t t t t 8 t t t t t t t 8 t t t t 5 G iXKXKXiXH q ' -+ +'t t t t t 8 t t t t 8 5 t t 2 u t t t t t t t t t t t t t t t t 5 8 t 2 a h' -+ +' ].gXGXGXlX XP t t t q 2 q q 5 q t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t 8 t t t u t t t t 5 t t t 5 8 t t t t 8 t t t 5 t t t t b H u t t 5 t g' -+ +' j u t t t t t t t t t t t 8 t t t t t 5 8 t t t t t t 5 j l u 2 q t t t t ' -+ ,'t t t t t t 8 t 5 t q t t t v t t u b x u t t t t t t t t 5 t t t X.sXNXiX!' -+ +'.t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t 5 t t t t t t t ' -+ +'t t t t 8 5 i g ~ 8 t t t t t 8 t t 8 t t t t t 5 t t t t t t 8 2 q t t b ~' -+ +' b t t t t t t p L c i q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoX' -+ +'] v t t 5 8 u 2 t t t : t t t t t t t u a u t t 8 u q 5 t t t p ^ v p t t t' -+ +' t t t t 8 5 t t t t 8 5 t t t t t t 5 t t t O.;._ q t t t t t t t t q 8 5 ' -+ +'8 t t t 5 t t t t t t t t t 4.2 q 8 5 5 8 t t t 8 8 ( X.^ t t t t t t t t t' -+ +' 8 t t u 2 t t t t t t t t t t q 5 q t t t t t t t t t t t t t t t 8 q t t ' -+ +'a u t t t u t t t t t t t t 2 q 5 q 2 q 5 t t t t t t t t 5 t t 8 5 t t t t' -+ +' t t t t t t ~.aXaX/.p t 8 5 t t t t t 5 8 t t t t t j x u t t t t 8 5 t t ' -+ +'t t t t t t t t 8 8 8 9 ) dXGXKXJXFXgX#.t t t 5 8 5 q q 2 t t t t t t t t t' -+ +' t t t t t t t t t 5 8 t t t 5 t 8 5 t t t t t 8 t t t t t t 8 t t 5 t t t ' -+ +'t 8 q t G N.~.( q 5 q m p g t t t t t t t 5 8 t t t 5 t t t t t t t t t t t' -+ +' t q t l v u q q 5 t t t t t t t t t 5 8 q t t t t t t t t 5 u T 5 t q 5 t ' -+ +'t t t t 8 t t t ^ ~.#X^.( t t t t t t t : t t t t t t t t t t t t t t t t t' -+ +' t 8 5 t 8 t t 8 5 t t t t 5 8 t t u 2 v ^ t t t t t t 5 t t t 5 t 8 t t 8 ' -+ +'t t t t t t 5 q q q t p v p t t t t t t t p p t 5 8 t t >.oXoXoXoXoXoXoXoX>' -+ +'.",'#10'"oXoXoXoXoXoXoXXXu t t t t t t t t t t t t t 8 t t t t t t t 2 u t ' -+ +'t t p p t : p b v u t t 5 t t t t t t t t t t t t t t t t q q t t q 5 i x u' -+ +' 5 t t t t G u t t t t t t t 5 t t t t t t t t 8 t 2 u t t 8 t t t t t t t ' -+ +'t q d u t t 5 8 t 8 t t t t t t t t 5 t t t t t t t t t 5 8 t t t t t t t t' -+ +' t t t t t q t t t t u g v p t t t t t t t t t t t 5 t t t 5 8 t 5 t t t 8 ' -+ +'5 t 8 5 t t t t t t 2 q t t t t t t t y ~ ( d q : t t t t q 2 t t t t t t t' -+ +' u G ^ l 8 8 t t t t t 8 5 t t t 8 t 8 t t t t 8 O.dXJXKXKXKXgX`.8 t t t t ' -+ +'t t : t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t u ^ ^.#Xo.t t t t u 5 t 8 t t t t t t t t t ' -+ +'t t t t : t t t t t t t t t t t u p 5 8 t t t t t t t t 8 t t t t t t t t t' -+ +' t t 8 5 t t v ^ R t t t t 8 5 5 q t t t t G ~ G t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t 8 t t t t t t t t 8 5 t t t t v t t 8 5 t' -+ +' t t t t t t t t 2 u t t t t t t t t t t t t 5 t t t t t t t t t t t t 5 t ' -+ +'t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t t t t t 8 t' -+ +' t 5 t t t t t t t q 8 t t p c g t t t t t t t t 8 t t t t t t t t t t t t ' -+ +'t t t t q 2 t t : t q q 2 8 t t t t 8 v t t t t t t t 8 t t t t t 8 t t 5 t' -+ +' q 8 t t 5 t t 5 t t t t q 2 : t t t t t t 5 t t t 8 5 t t t 8 t t t t t t ' -+ +'t t t t t t t t t t t 8 5 t t t t t t q 5 t t 2 p l p t t t t t t t t t t t' -+ +' 8 t t t t t t 8 t t t t t t t t t 5 8 t t 8 u t t t t t t t t t t 5 t t t ' -+ +'t t t t q q 8 5 t t t t t t l c u 5 5 8 t t t t t t t t t 5 t t t t 5 t t )' -+ +' $XCXKXKXGXdX+.a t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t : t t t t t t t t t t t t t t t t t t t t t t t v t d o.-.J t t t t 5' -+ +' 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t q t t t t 8 5 ' -+ +'t t t 5 t t t t 5 8 t t 5 8 t t t t t t 8 2 Q t t t 5 8 q q t t t 4.5 t : t' -+ +' t t t t t 5 8 t t t t 8 t t t 8 t t t 8 t t t t t t t t t 5 t t t t t t 8 ' -+ +'t 5 8 q t t t u t t 5 8 t t t t t t t t t q 8 t t t t t t t t t t : t q t t' -+ +' t t t t t t t t t t 8 t t t : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -+ +'8 2 t t t t t t t t t t t 8 t t t t t t t t t t t t u g p t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t 5 q t t t t t t t t t t t t t v t t t t q ' -+ +'t t t 5 t t t t t t 8 t t N 2 5 t t t t 8 t t t t t t t t t t t t t t t q t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 5 q q t t 8 5 t t t t ' -+ +'t t t t t t q 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t Q t t' -+ +' t t t t t t t t t t t t t t t t q 5 q 8 t 8 t t 8 t q q u q 5 5 t t 5 8 t ' -+ +'t t t t t 8 t t t 8 t t t ;.dXlXjXgX].x t t t t t t t t t t t t t t t t t t' -+ +' t t t t : t t t t t t t t t t t t t t t t t t t t t t t t q 2 t : t t t t ' -+ +'5 ^ 2 q t t u t t t t t 8 t t t t t t t t t t q t t t t t t t t t t t t t t' -+ +' t t q q 5 q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t ' -+ +'t 8 v u 2 t t t 4.t t t t t t t t t t t t t t t 5 t t t 5 t t t 5 t t t t t' -+ +' t t t t t t t t t t t t t 5 q 5 q q q a u 5 8 t t t t t t t t t t t t t t ' -+ +'5 8 q 5 t t t t t t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>' -+ +'.",'#10'"oXoXoXoXoXoXoX>.q q 8 5 t t 8 5 5 t t t 5 t t t t t t t t t t t t ' -+ +'t t t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t q : t t t t t t t' -+ +' t t t q q 2 u t t t t 2 u 8 t 8 t 8 5 t t t 5 t t 4.2 8 t t t t t q t t t ' -+ +'t t 8 5 t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t 8 5 8 t' -+ +' t t 2 t t t 5 8 t 8 t t t t t t t : 5 q 5 8 t t t t t t t 8 t t t t t 5 8 ' -+ +'t t t t 8 t t 8 5 t Q t t t t t t t t t t t t t t t t t t t t 8 5 t 5 t t 5' -+ +' q 5 2 2 q q 8 t t t t t t t t t t 5 t t t t t t t g +.].].`.K t t t t t t ' -+ ,'t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t q q q 5 t t t t 8 v q q t t t t t t t t 5 8 t t t t t t t t t 2 t ' -+ +'t t t t t t t t t t : t t t t 5 q 2 q t 5 8 t t t t t t t t t t t t t t t t' -+ +' t t t 5 8 8 t t t t t t t 5 u T v t t t t t t t t t t t p u t 5 8 t t t t ' -+ +'t t t t t t t t t t 8 5 t t 8 5 t t t t 8 t t t t t q q q 2 2 u b l u t t t' -+ +' t t t t t t t t t t 8 5 8 5 8 q t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.q 2 q q t t t t 8 t t t t' -+ +' t t 5 t t 5 q t t t t t t t t t t t t t t t t t t t t 8 t t t t u g g t t ' -+ +'t q t t t t t t t t t t t t t q 8 5 t t t t t t t t 8 5 t t t t t t t t t 5' -+ +' t t t t t t t t 5 q 8 5 t t t t t t t 8 t t t t t t t t 8 5 8 t t t : t t ' -+ +'t t t 5 8 t t q 2 t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t' -+ +' t 8 5 t 5 5 t t t t t t t t t t 5 t t 5 8 t Q t t t t t t t t 5 8 t t t t ' -+ +'t t t t t t t t t t t t 8 5 8 u 5 8 t t t t t t t t t t t t t t t t t t t t' -+ +' t u t u t t t t t t t t t t t t t t t t : t t t t t t : t t t t t t t t t ' -+ +'t t t t t t t t t t t t t q 2 t t q 2 q q t t t t t v t t t t 5 q t t 8 t t' -+ +' t 5 8 t t t t t t t u 5 8 t t t t t t t t t t t t t t q q q t t t 8 t t 8 ' -+ +'t t 8 5 t 8 5 t 8 t t t t t t 2 q t t t t 5 t t t t 2 q t t t 4.t t t 5 q 5' -+ +' q 5 p T x t t t t t t t t 2 q q t q 5 8 2 q t t 8 t t t t t t t t t t t t ' -+ +'8 t t t t v p v v u t 5 8 t t t t t t t t t t t t t t t 2 q t t t t t t t t' -+ +' t t : t t t t t t t t t t q 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -+ +'5 q t q t t t t t t t t t t t 8 t t 5 q t t 8 5 t t t t t t t t t t t t t t' -+ +' 5 8 t t t t t u p i t t 8 5 t t t t t t t t t 8 t t t 5 5 8 t t t t t t t ' -+ +'t t t t t t t t t t t t 8 t t t t t t t t 8 5 5 8 t t t t t t t 5 t t t t 8' -+ +' 5 t t q 5 5 8 t q 5 t t t t t t 8 t t q q t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t 5 t t t t t t 8 t t t t 8 t t t t t t t t 8 5 t Q t t' -+ +' t t t t 8 5 8 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t 5 8 t t t 8 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t q q t t 5 q q q t t t t ' -+ +'t t t t t t q t t t 5 8 8 5 8 q t t q 2 t 5 t 8 t t t t t t t t t t t t t t' -+ +' t 8 2 q 5 q t t 5 t t 5 t t t t t t t t 5 t t t t t 8 u t t t t t 8 t t t ' -+ +'t q q t t t 4.8 5 Q v t 8 q 2 p T b t t t t t t t t t q q t q q 5 q q t t t' -+ +' t t t t t t t t t t t t 5 t t t u ^ t i i 5 t t t t t t t t t t t 8 5 t t ' -+ +'t t t t q t t t t t t t t t t t t t t t t t t t t t t 5 <.oXoXoXoXoXoXoXoX>' -+ +'.",'#10'"oXoXoXoXoXoXoX>.q t t t 8 t t t t t t t 8 t t t t t 8 5 8 5 t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t q 5 q t t t t t t t t t 5 t' -+ +' t t t 8 t t t 5 8 t t t t t t t t 5 t t t t t t 4.t t t t t t t t t t 8 t ' -+ +'t t t 8 t 5 t t t t 5 : q q 8 5 5 8 q q t t t t t t t t 8 5 q q q 5 t t 5 t' -+ +' t t 5 t t t t 5 t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t ' -+ +'t t t t t t t q 8 t t t : t t t t t t t 5 t t t t t q t t t t t t t t 8 t t' -+ +' 8 5 t t t 5 t t t 5 8 t t t t t 5 t t t 5 8 t t t t t t 4.t t t t t t t t ' -+ +'t t t t q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t :' -+ +' q 5 t t q q 5 8 t t t t t t t t t t t t t t 5 5 t t t 5 t t q q t 8 t 5 t ' -+ +'t t t t t t t t t t t t t t 5 t t 8 5 5 t t t t t t t t 8 5 t t t t t t t t' -+ +' t t t t t t t t 8 q 5 t t 5 8 t t t t t t t t v v t u t p u t t t t t 8 5 ' -+ +'5 q 5 q t 5 t t 5 t t t t t t t t t t u t t 8 5 t t t t t v 8 t q 5 q t t t' -+ +' t t t t t : 8 5 t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t y l <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.5 t t t t t t 5 5 t t t 5' -+ +' t t t t t t 8 t t t t t t t t t ^ v t t t t t t t t t t t t t t t t t t q ' -+ +'q 2 t t t t t t t t t t t t t t t t t t v q t t t t t t t t 8 t t t 8 5 t 4' -+ +'.t t t t 8 5 t t t t t t t t t 5 t 8 t t t t t u i 2 u t q t q 2 t t t t t ' -+ +'t t t 5 q t q 2 q t t t 8 t t 8 t t t t q t t t t t t t t t t t t t t t t 8' -+ +' 5 t t t t t t t t t t 8 5 t t t 8 5 t 5 8 t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t 5 t t t t t t t 8 t t t t t t t t t t 8 t t t t t t t t' -+ +' t t t a t t t t t t t t t t t t q 2 t t t t t t t t t t t t t t t t t t t ' -+ +': t t t t t t t t t t t t 2 q t t q 2 q 5 t t t t t t t u g p t t t t q q t' -+ +' t t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t 8 8 t t t t t ' -+ +'t t t t t t t 8 t t t t t t t t t t t t t 5 t 8 t t 8 5 q 4.t t t t t t 5 u' -+ +' 8 5 8 t 5 t t t t 8 5 8 q q q 2 t t t t q t t t t t t 5 t t l L l t t t t ' -+ +'t t t t v 5 q 5 t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t x ^ ,.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.' -+ +'t t t t 8 5 t 8 8 t q 2 q t t t t t 5 t t t t t t t 5 t &.&XOX%.5 8 5 t t t' -+ +' t t t t t 8 u t t t t t 8 q t t t t t t t t q q q 5 t t t t t t V q t t 8 ' -+ +'5 t 5 t t t t t t 5 8 t t t t t t t t t t t t t 8 5 t t t t t t t t u l ] O' -+ +'.x t t t t 5 q t t t : t t t t t t t t 5 8 t t t t t t t t t t t t q 5 q q ' -+ ,'q q t t t t t t t t t t 5 t 8 t t 5 t t t t t t t t t t t t 2 q q 5 t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t 5 q 2 q t t t t 8 t t t t 8 5 t t ' -+ +'u 2 q t t 8 t t t 5 8 t t t t t t q : t t t t q q q 8 5 t q G G a t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t q 5 q 2 q q t t t t t t q t t t ' -+ +'G 8 5 t g g t t t t q 2 t t t t t t t t t t t t t 5 8 t t t t t 5 8 t t t t' -+ +' t 8 5 t t t t t t t t t t t t q 2 q t t t t t t t : t t t t t 5 t t t t t ' -+ +'t t t t 4.t t 5 8 t t t t 8 5 8 5 q t t t t t t t t t t t t t t t 8 5 t t t' -+ +' 5 8 t t t x ! x t t t t t t t t t t t 8 5 t t t 8 t 8 t t t t t t t t t 5 ' -+ +'8 t t t t t t t t t t t 8 5 : t t t t t t t t t t t p x >.oXoXoXoXoXoXoXoX>' -+ +'.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t 5 q t t t t t 8 t t t 8 5 t ' -+ +'t q b oXPXIX.Xj t 8 5 t 8 8 5 t t t t 2 q t t t t u 2 t t t t 8 5 t t 2 q 2' -+ +' q t t t t t t G u : t q 5 t 8 t t t t t t t t t t t q t t t t t t 5 8 t t ' -+ +'t t t t 8 t t 8 t t L ''.''.! t t t t q q t t t t t t t t t t t t t t t t t' -+ +' t t t t t t q t t q q 2 q 8 5 t t t t t : t t t t 8 t t t t t t t t t t t ' -+ +'t t t : t t q 5 q q t m t t t t t t t t t t t t t t t t t t t t t t q q q t' -+ +' t t t t t 5 8 t t t t t t 8 t t t t 5 t t t t t t 5 8 t 8 4.q 2 t t t t 2 ' -+ +'q q 5 t t ~ !.!.^ t t t t t t t t t t 8 q t t t t t t t t t t t 8 5 t 8 q q' -+ +' q t q t t t t t t 5 q t t v t 8 5 t u t t t t t 8 t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t 5 t t t t t 5 8 t t t t 5 q j j t q q q t t t t t t' -+ +' t t t 8 t t t 8 t t t t t t 5 t t t t t t t t t t t t t t t Q v Q t t t t ' -+ +'t t t t t u d d u 5 8 t t t t t t t t p p i t t t 8 5 t t 8 5 t t t t t t t' -+ +' 5 t t t t t t t t t t t t t t t t t 8 t t 8 5 t t t t t t t t t t t t t t ' -+ +'t t u 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 t t t t 8 5 t t t t a' -+ +' p i t t t t t t t t t t t t t l .XCXzX.Xp t t t t t t t t t 8 t t t t t 5 ' -+ +'t t t t t t t t t t t 8 5 q q t t t t p u 8 L t q 2 q t t t 8 8 t t t t t 4' -+ +'.t t t t 8 t t t t t t 5 8 t t t t t t t 5 t t g _ O.l t t t q t q t t t t ' -+ +'t t t t t t t t t t t q t t t t t t u 2 t t 5 2 8 5 5 q t t t t t t t t t t' -+ +' t t t t t 8 t t 8 5 t t t t t t t t q q q 5 t Q t t t t t t t t 5 t t t 5 ' -+ +'8 t t q 2 t t t t 2 q t t 5 8 t t t t t t t t t t t t t t 5 t 5 8 t 8 t t t' -+ +' t t t 8 4.t u t t t t q 5 q q t t ..#X#X( t t t t t t t t t t t t t t t t ' -+ +'5 8 t t t t t t t t 5 q q 5 t t t t q g x i 2 q q t ` l u u t t t t t t g x' -+ +' i q u l t t t t t t t t t t t t t t 2 q t t 5 t 8 t t t 5 8 t t t t t t : ' -+ +'u x l p 5 : 5 t t t t t t t t t 5 t t t t t 8 t t t t 8 t t t t 5 t t t t 8' -+ +' 5 t 8 5 t t t Q t t t t t t t t t y d d t t t t t t t t t t t t t 5 t t t ' -+ +'t t t t t t 8 5 t t 5 q t t 8 t t t t t t t t t t t t t t t t 5 t q q q t t' -+ +' t t t t t t t t t t t t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' -+ +'>.5 t t t t t t t t p x v R l t t t t t 8 t t t t t t t t ( XX~.~ t t t t t' -+ +' t t t t t 5 t t t t t 8 t t t t t t t t t t t 5 q t q t t t p x g 8 5 q 5 ' -+ +'q q t t t 5 t t t 5 t t 4.t t t t 5 t t 8 5 t t t t t 8 t t t t t t t t t t' -+ +' t t t t t 5 q 2 t t t t t t : t t t t t t t t q t t t t t t 8 t t t q q t ' -+ +'8 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t q 2 q : 5 v t' -+ +' t t t t t t t 8 t t t t t t t i h t t t t q q t t t t t t t t t t 5 8 t t ' -+ +'t t t t 8 t t q t t t t 5 8 t t t t 8 5 t t t t q q 2 5 t t G X...z 5 8 q t' -+ +' t t t t t t t t t t t t t t t t t t t t q q q 2 : t t t t t u x L g u t 8 ' -+ +'^ v ^ p t t t t t t t g c i i *.n.2.t 5 t t t t t t t t t t t u 8 t t 8 t t' -+ +' t t t t t t t t t t t t t p i t q t t t t t t t t t t t t t t t t t 5 t t ' -+ +'q t t 4.t t t 8 t t t t t t t t t t t t t t t t t t t t t t t a t t 8 t t t' -+ +' t t t t t t t 8 8 t t t t t t t 8 t t t t t 8 t t t 5 t t t t t t t t t 8 ' -+ +'t t t t t t t q 2 q 5 t 5 8 t t t t t t t t t t t t t q 2 >.oXoXoXoXoXoXoXo' -+ +'X>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t p v Q b j t t t t 5 t 8 t t t ' -+ +'t t t t t t t t t t t t t t t t t t 5 q t t t t t t t 5 t t t t t t t t 8 5' -+ +' t 8 t t t u g g t 5 8 5 t t 8 t t t t t t 8 t t t 8 t t t t t t t t t t t ' -+ +'t t t 8 5 t t t t t t t t t t 8 t t t t t t t t t t t t t t 5 2 q q q 2 q t' -+ +' t t t 8 5 t t 8 5 t t t t t t t t t t t t t t t t t t t 8 5 t 5 t 8 u 2 q ' -+ +'t t t t t t t t t t q G 8 t t t t t t t t t t t t t t u g j u t t t t t t t' -+ +' t t 5 t t t t t t t 5 t t t t t t t q 5 t t 8 t t t t t t t 5 t t 8 5 8 t ' -+ +'t t t t t t y u t 5 q t t t t t t t t t t t t t t 5 t t t 2 q t t t t t t t' -+ +' t t t t t 8 i g u t t t t l v p t t t t t t t u u q v XXfXXXd t t t t t t ' -+ +'t t t t t t t t 8 5 t t t t t t t t 8 t t t t t t q u t t 8 5 t t t t t t t' -+ +' t t t t 5 8 t 8 t t t t t t t t t t t 8 5 t t t t t 8 t t t t t t 5 t t 5 ' -+ +'T Q t t t t t t t t 8 t t t 5 8 t t t t 5 t t t t 2 u G L 5 t t t t t t 5 t' -+ +' t t t t t t t t t t t t t t 5 t t t t t t t t t 5 t t t t t t t q 8 t t t ' -+ +'t 5 5 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t d p' -+ +' t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t q 5 t q t t t ' -+ ,'t t 8 t t t t t t t 8 t t t t t t t t t t t q t t t t t t t t 5 8 t t t 4.t' -+ +' 5 t 5 8 t t t t t t t t t t t t t 8 t t t t t t t t t 5 t 5 t t 8 t t t t ' -+ +'t t t t t 8 q t q 5 q 5 t t t : t t t t t t t t t t t t t t t t t 5 8 t t t' -+ +' 8 5 t t t t t t t t t t t t t t t t t t t t 5 L t t t t m t t t t t 8 5 t ' -+ +'t t t p p t t t i j y t t t t 8 t 8 5 t t 8 5 8 t t t t t t t q q t 5 t t 8' -+ +' 5 t t t 4.8 t 5 q t 5 : t t t t t t t t t t t t t t p x g t t t t t t t t ' -+ +'8 t t t u 8 t t 5 t t t t t t t t q u 2 t u p 5 t t t t t t t t t t t 8 5 8' -+ +' t t %.~.| u t t t t 5 8 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'q 2 t t t t t t t t t t t t t t t 8 5 t 5 t t t t t 2 t t t t t t t t t t t' -+ +' t t t t 5 8 t t 8 t t 5 t t Q Q t t t t t t t t t t t t t t t t t t t t t ' -+ +'q 5 L 5 t t 8 t t 8 t u p u t t t t t t t t t : t 5 t 8 t t t t t t t t t 8' -+ +' t t t t t t t 2 u t 8 t t 8 q 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX' -+ +'>.q 5 t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t 2 t t' -+ +' t 5 8 t p ^ V t q t t 8 5 t t 5 8 t t t t t 5 t t t t t t t t t t q q t t ' -+ +'t t t t t 5 t t 5 8 t 4.t t t t t t t t t 8 5 8 t t t t t t t t t t t t t t' -+ +' 5 t t t 8 t q 5 t t t t t t t t t t t t 2 q t 8 t t t t t t t t t t t t t ' -+ +'t t 5 t t t q t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t' -+ +' t t t t t t t q j j t 8 5 t t t t t t q j ^ x t t t t t t t t t t t t t t ' -+ +'t t t t t : q 2 t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t' -+ +' q p L x t t t t t t t 5 t t 8 t t t t t 8 t t t t t t t u 2 5 8 u ] &.^ t ' -+ +'t t : t t t t t t t 5 t t t t u x t t t t t t t t t t t 8 t t t t t t t t t' -+ +' t t t 8 5 t t t t t t t t 8 t t t t t t t t t t t t t t 5 q 8 t t 8 q t t ' -+ +'t 4.t t 8 t 5 t t t t t 8 5 t t t 8 5 t t t t t 8 t t t t t t t t t t 5 8 5' -+ +' t t t t t t t t t t t t q t v u 8 t t t 8 5 q y d y t t t t t t t t t t t ' -+ +'8 t 5 t t 8 t t t t t t t t t t t t t t t t t 5 t t t t t >.oXoXoXoXoXoXoXo' -+ +'X>.",'#10'"oXoXoXoXoXoXoX>.5 q t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t q q q t t t t t t ..^.~.H 5 t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t 2 u v t t t t t t 8 t t t t t 4.t t 8 t 5 8 t t t 5 t t t ' -+ +'t t t t t t t t t q t t t 8 t t t t t t t t t t t t t t t t t t t q q q 5 t' -+ +' t t t t 5 8 t t t t t t t t 8 t t t 2 u 8 5 8 t t t t 5 8 t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t p _ ] l t t t t t t t t 2 u d p t t' -+ +' t t t t t t t t t t t t t t t t t t 5 q t t t t t i a t t t t t t t 8 t t ' -+ +'t t t t t t t t t t t t t t t g u t t t t t t t 8 t t 5 t t t t t t t t t t' -+ +' t t t 8 5 8 : d &.+X'' t t t t t t t t t t 8 y l t t t t t q t t t 8 5 t t' -+ +' t t t 5 t t t t t t t t 8 5 t t t t t t t t t t t t t t t t 5 8 t t t t t ' -+ +'t t t t q 5 q t t u 2 t t N 2 8 5 t t t t 8 t t t t t t t t t t t t t t t t' -+ +' t t t : t t t Q Q t t t t t 5 8 t t t t t t t t t t : t t t 5 t t 5 q 5 a ' -+ +'p a t 5 t t t t t t t t t t t 8 t t 5 t t t 8 5 t t t 8 t t t t t t t 5 t t' -+ +' t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 q 8 t t t t t t t t ' -+ +'t 8 t t 5 8 t t t t t t t t t t t 5 8 t t t t t t t 8 5 t p -.sX#X( t t t t' -+ +' t t t t t 5 t t 5 8 t t t t t t t 8 5 t t t 8 ^ t t t t t t t t t t t t t ' -+ +'t t t t 5 t 8 t t 5 t 8 t 5 8 t t t 5 8 t t t t q t q 5 q 2 t t t t t t 5 8' -+ +' t t t t t t 5 t 5 8 t q t t t t t t t t t t t t t q q 2 t q 8 5 8 u t t t ' -+ +'t t t t t t t 5 8 q 5 t t 8 t t t t t t t t t t t t t t t t t 5 8 p _ _ j 8' -+ +' 5 8 t t t t t u 2 t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t t ' -+ +'u d l u 4.5 8 5 t t u 2 t t t 8 t t 5 8 t t t t t t t t u t t t 8 t t t t t' -+ +' 8 t t t t t t t q 5 8 t t t t t 8 t 5 t u ~ ] v v u 5 t 8 5 q q q 2 g %.&.' -+ +'^ t t t t t t t t t t t t t t t t t t : q t t t t t t t 8 5 t t t t t t t t' -+ +' t t t t t t t t t t t t t t t i g u 8 5 8 q q t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t v T q t t 5 8 t t t q t t t 5 8' -+ +' t t t t t t t t t t t t t 5 q 8 t t t t t t t q q q q q q t t t t t t t t ' -+ +'t 5 q q q q 5 t t t 8 t 8 t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXo' -+ +'X>.t t 5 8 t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t t t t t 5 8 ' -+ +'t t t t 8 o./.!.H t t t t t t t t t 8 t t t t t t t 5 8 t t t t t t 2 u v t' -+ +' t t 8 t t t t t t t 4.t t t t t t 8 t t t t t t t t t t t t t t t t t t q ' -+ +'q 5 8 q q t t t t 8 5 8 q e e e t t t 8 t q 5 q q t t t t t t t t t t t t :' -+ +' 5 q q t t 5 8 q 2 t t t t t t t t t t 8 5 8 q t t 5 t t t t t 5 t t 8 8 5 ' -+ +'t t t t t t t t u p j 5 5 8 t t t 8 t t q q t t t t t t t t t t t t t : t t' -+ +' t t 5 t t t t t t 5 t t u j p t 4.q t t u l j i t t t 5 t t t t t t t t t ' -+ +'t t t 2 t t t 5 t t 5 t t 5 t t 5 8 t 2 q t q 5 8 5 t t t t t 8 t t t 8 5 T' -+ +' 2 q t t t 2 q 5 q v ,..X` t t t t t t t t t t t t t t t t t t q 5 t t t t ' -+ +'t t t t t t t 8 t t t t t t t t t t : t t t t t t t t t x ^ p 5 8 q 5 q t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t : t t t t t t t t t u 2 t ' -+ +'t t t t t t t 5 q t t t t t t : t t t t t t t t t t t q 5 t t t t t t q 2 q' -+ ,' 5 2 q t t t t t t t t t t t : 2 q 2 q 5 8 t t t t t t t t >.oXoXoXoXoXoXoX' -+ +'oX>.",'#10'"oXoXoXoXoXoXoX>.t t : 5 t t t t t t t t t t t t t t t t t t 8 5' -+ +' t t t t t t t t t t t t q q t t t t z b t t t t t t t t t t t t t t t t t ' -+ +'t t t t 8 5 t t t q t v t 8 q t t t t t t 5 8 4.t t t t t t t t t t t t t t' -+ +' t t t t t t t q q q q q 2 t 5 t t t t t t t t t e e e e e t t t t 2 q 2 q ' -+ +'t t t t t t t t t t t t q q q 5 t t 8 q q q x ! g u t t t t t t t t q 5 t 8' -+ +' 8 5 5 8 t t 8 t t t t ^ : t t t t t t t t t t q 5 q t t t 5 t t t t q q t ' -+ +'t t t t t t t t t t t t t t 8 t t t t t t t t t t u 5 t t 8 5 t t u b c u t' -+ +' t 8 t t t t t t t 8 5 t t t t q q 5 t t t t 8 t 8 t t t t t t q 5 q q t t ' -+ +'8 t 5 t t t t t t t 5 t Q u t t t t t t 5 t i ` '' c u 2 t t t 5 t t t t q ' -+ +'t t t t t t t : t t t t t t t 8 t t 8 t 5 t t t t t t t t t t t t t t t t t' -+ +' t t u j c p u 5 t q 2 4.t t t 5 t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t 8 5 t t t t v t t 2 q t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t 5 t 2 q q 5 t t t t t t t t t t t t 5 8 q q t t t t t ' -+ +'t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t e r r t t 8 5 t t t' -+ +' t t t t t 2 t t t t t t t t t t t t t t t 8 5 t t t 2 u u d p t 8 t t t t ' -+ +'t t t t t t t 8 t 5 8 t t t t t t t t t t t t t 5 8 5 5 t t t t t t t t t 8' -+ +' 5 t t t t t t 5 8 t t t t t 5 t t t t t q 2 2 q 5 q t g _ ) i t t t t t t ' -+ +'e e e e e t t t t q q q 5 t t t t t t t t t t t t q q 2 q 5 8 5 5 5 g @.''.' -+ +'] t t t t t t t t t t q 2 u t q t t t t t t t t t v t t t 5 8 t t t t t 5 q' -+ +' 8 5 t t t t t t t t q 2 q t t t t t t t t t t t t t t 5 t 5 8 t t 8 t t t ' -+ +'t t t t t 5 8 t t 5 u p 5 t t t t t t t t 8 t t t t t t t 5 q 8 t t t t t t' -+ +' t t 5 8 t t t q q 2 q t t t t 8 t t t t t t t 8 5 L 5 t 5 8 t t t q t q q ' -+ +'5 t q q t t t 8 t 8 t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t' -+ +' t t t t t t t t : t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t ' -+ +'t t : t t t t t t t t t t t t t t t t t t t t 5 q t t t t u v v u t t t t t' -+ +' v t t t t t t t t t t t t t t t t t t t t t t 8 t q q 5 8 t 8 5 t t t t t ' -+ +'t t t t q 5 q q t t t t t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' -+ +'XoX<.e e r r r q q t t t t t t t t t q q 8 5 8 5 t t t t 8 t t t t t t t t ' -+ +'5 t t 5 i l p 5 q q q 2 q t t t t q t t t t t t t t 8 8 t t : t t t t t t 5' -+ +' q 2 q t t t t t t t t t 8 t t t t t t t t t t t t u 8 8 t t t t t t q t t ' -+ +'t t t L #.O.x 5 t t t t t e e e e e t u t t t q 2 q t t t t t t t t 2 q t t' -+ +' 5 q 2 q t t t t 2 j #.|.O.: t t t t t t t t t p j u 5 5 t t t t t t t t 2 ' -+ +'^ t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t' -+ +' t t t 8 u t t t 5 t t t t 5 q t t 4.q t t q t t t t 8 t t t t t 8 5 t 8 u ' -+ +'2 q t t 8 t t t t t t t t t 5 8 8 t t t 5 8 t t t t t t t t t 5 t t t t t t' -+ +' t 8 t 5 t t t t : t t t t t t t t t 5 q 5 5 8 t t t t t t t t t t t t t t ' -+ +'t 8 5 t t t t t t : t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t' -+ +' t t t t t t 8 5 t t t t t t t t t t t u 2 q t 8 t t t t t t t t t t t 8 t ' -+ +'5 8 t t t t 5 8 t t t t t v t t t t t t t t t t t t t t t t t t 2 q q q t t' -+ +' t t 5 8 t t t t 2 q t t 5 8 t t 8 5 5 8 t t 5 8 t t t t t t >.oXoXoXoXoXoX' -+ +'oXoX>.",'#10'"oXoXoXoXoXoXoX<.e e E E k e 5 q t t t t t t t t t q q 5 t t t' -+ +' t t t t t t t t t 8 t t 8 t t t t u u t 5 5 q q 5 t t t t 5 8 t 5 5 8 5 t ' -+ +'t t 5 t t t t t t t t t q q q q t t t t 5 8 t 4.5 t t t t t t t t t 5 8 t q' -+ +' 2 t t t 8 t t t q 5 t t t q t p ! T t 5 t t t t t t r r e t j c j t t t q ' -+ +'q t t t t : t t t q t t t 8 5 q q t t t t q t c ! l t t t t t t t t t 2 p x' -+ +' j t q t t t t t t 8 5 q v t t t 8 t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t q t t t t t t t t t t q 2 t t t t 2 t t t 5 8 t t 4.t t t 5 q t t' -+ +' t t t 5 t t t 5 t t t t t t t t 5 8 t t t t t t t t t t 5 t t t t t t t t ' -+ +'t 5 t t t t 8 t t t t t t t 5 t 8 t t t t t t t t t t t t t t q q q 8 t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t 8 t 8 t 4.t t t t t t t t t t t t t t : t t t t t t 8 t t t 5 t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t v ^ t t t t t t t t t t t ' -+ +'t t t : t t t q 5 5 q t t 5 t 8 5 t t q t u 8 t t t t t t 5 8 t t t t t t t' -+ +' t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.e e K E r e q t t i ' -+ +'t t t t t : t t t t 8 t t t t 8 5 t t t t 8 t t 5 t t q t q t t q q 8 5 q q' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t 2 q t t t 5 t t t t t 4.t ' -+ +'t 8 t 5 t t t 5 t t t t t t t 8 t 5 t t t t t t t t t t t t u t t t t t t 5' -+ +' 8 t t t t l L l 8 t t q q t t t t t t t t q q t t 8 5 t t t t t t q q 5 q ' -+ +'8 t t t t t t t t t q q p t u 8 t t t t 8 5 t t q q t t t 8 t t 5 8 q 5 t t' -+ +' t t t t q t t t t t t t t t t t g ! T t t t t t t t t t t t t t t t q t t ' -+ +'t 8 t 8 t 2 q t t t t t t t t t t t 8 t t t 8 5 t t t t t t t t t t t t t t' -+ +' t t t t t t t t t 8 5 t t 8 t 5 8 t t t t t t t t t t t t t 8 t t t t t t ' -+ +'t t t t t t 2 p g u 8 t t u t t t t t t t t t 5 : t t t t t t t t 5 t t t t' -+ ,' t t t t t t t t t t t t 5 8 t t t t t t t t 4.t t t t t t t 8 t t u 2 t t ' -+ +'t t t t t t t t t 5 8 t t 5 8 t t t t t t t t t t t t t t t t t t 5 q u v ^' -+ +' L t t t t t t : t t t t t t t t t : q 2 q 8 2 q t 8 t t q 2 q 2 q t t 5 8 ' -+ +'t t 8 5 8 t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXo' -+ +'XoX<.e e e e e e t t c [ v t t t t t t t t t t t t t 5 q 8 5 t t t 5 t t 8 ' -+ +'q 5 q q 2 t t t q 2 q q 2 t t t t t t 8 t t t 8 t t t t t t t t t t t t t u' -+ +' v t t t 8 t t t t 8 5 t t t t 8 t t t 8 t t t t t t t 5 t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t p u 5 t t q 2 t t t t t t t t q 5 t t' -+ +' t t t t t t t t t t q 5 t t t t t t t t t t t t t q 2 t t t 5 8 t t t 5 8 ' -+ +'5 t t t 5 t t 8 q 5 q t t t t t : 5 : t t t t t t t t t t R ;.O.j t t t t t' -+ +' t t t t t t t t 8 q q t t 5 t t t q q t t t t t t 5 8 t t t 5 t t t t t t ' -+ +'t t t t t 8 5 t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t u b L s ! #.+.p t t t t t t t t t u t ' -+ +'t t t t t t t t 8 t t t t t t t t t t t t t t t t 8 q 5 t t t t t t t t t t' -+ +' t t t t t 5 t t 8 q t t t t t t t t t t t t t t t t t t t t t t t t : t t ' -+ +'t t t t 8 5 t t q q 2 t 8 G Q t t t t t t t t t t t t t t t 5 q q q 5 q q q' -+ +' t t q q q 5 q q t t t t t t t t t t t t t t t t 5 8 t t 5 8 >.oXoXoXoXoXoX' -+ +'oXoX>.",'#10'"oXoXoXoXoXoXoX>.e e e e e t t t T ] T q 5 q t t t t t t t t :' -+ +' t t t t 5 t t t t t t t t t t 5 8 t t t t t t q q t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t v t t t 8 t t t t q t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t p t t t t 8 t t t t t t t t t t t 5 t u t t u q q 5 e ' -+ +'e e t 5 8 t t 5 t 2 q t t t t t t t t t t t t ] Q.@.a t t t t t t t t t t t' -+ +' t t t t t t t t 5 t 8 t t t t u 2 q t q j ..X.( : t t t t t t t t t t t q ' -+ +'t t t u l _ ! u t t t t t t 8 5 t t t t t 5 t t t t t t t t 4.t t t t t 8 u' -+ +' t t t t t t t t t t 8 5 5 q t t t t u G f t u t 8 5 t t t 8 t t 8 t t t t ' -+ +'t 8 t t 8 u 2 t t t t t V q t t t 8 t t 8 5 t q q q t t t : t t l x p +.$X]' -+ +'.) 9 2 t t q 2 u p u t t t t t t t t t 5 t t t t 5 t t t t t t 5 8 8 5 t t ' -+ +'5 8 t t 5 t t t 4.u 2 t g t 2 q t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t 8 t t t t t 5 q q 5 q t t 8 5 8 5 t t t t t t t Q t t t t t t q 5 t ' -+ +'t t t t t 8 t 5 8 t t q 2 t t t t t t t t t t t t t t t t 5 q t t t t t t t' -+ +' t t t 8 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; e e e t t t t i l ' -+ +'i q t t t t t t t t t t t t 8 t t 8 t t t t t t t t t t t t t t t t t t 5 :' -+ +' t t t t t t t t t t t t t t t : t t t t t t t t t t v u t t 5 t t t 4.2 t ' -+ +'t t t t t t t t t t t t t t t t t t t 8 5 t '' <.%.t q t 5 t t 8 5 t 8 t t ' -+ +'t t t 8 q 2 t t 2 q 8 e e e e e t t t t 8 t q q q q t t 8 5 t t t t u v oXk' -+ +'XOX[ t t t t t t q t t t t t t t t t t t t 8 t t t t t t 8 t t t 5 o.#XsX~.' -+ +'z t t t t t t t t t t t t t t t t 2 t t t t q t t 5 t t t t t 5 8 t t t 5 8' -+ +' t t t t t 4.t t t u t q 2 t t t t 5 t t t t t t 8 q t t t t H ~.#X^...t t ' -+ +'t t t t t t t t 5 t 8 t t t 5 t t t t q t t t t v u t t t t 5 t t t t t 2 q' -+ +' t t t t t t t t t 5 +.].[.P a 8 t t q u p v p t t t 8 t t t 8 t t t t 5 t ' -+ +'8 t t t t t t t t t t t t t t t t 8 t 2 u 4.^ ^ i j i u t t t t t t t t t t' -+ +' t t t t t t t t t t t 8 5 t t t t t t 8 t t 8 q 2 q q t t t t t t t t t t ' -+ +'t t t t t t t t t t 2 q : t t t t t t 5 8 q t t q t t t t 8 t t t t t t t t' -+ +' t t t t q t t t t t t t t t 8 t 5 8 >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoX' -+ +'oXoX>.m m 5 q t t t t 5 q 2 u t t t t t t t t t t t t 5 t t t t 8 t t 5 t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t N 2 t t t t t t t t t t t t t t t t t t t t 5 q b XXzX.' -+ +'Xv 2 t t t t t t t t t t 5 t t t q t t t t t 5 e e e e e t t t t t t t 8 5 ' -+ +'q t t t t t t t t 5 v oXkXOX[ t t t t 5 8 t t t t q 5 t t t t 8 5 t t t t u' -+ +' v t t t t 8 t t ..#XaX^.G t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' -+ +'q 8 t t t t t t t t t t t t t t q t p a t L #.+.g t t 8 t t 8 t t t t t 8 5' -+ +' 2 q t t u !.iXBXNX#X( t 8 5 t t t t t t t t t t 5 t t t t t t t t t t : V ' -+ +'q t t t t 8 5 t t t t q 5 t t t t t t t t t t p L P t t t t 2 5 q p d y t 5' -+ +' 8 5 t t 5 t t t 8 t 8 t 5 t 2 q t 8 5 t t t t t t t t t t q 5 q q ~ XXXX^ ' -+ +'u t q t t t t t t t t : t t t t t t t t t t 5 8 t t t t t t 8 5 5 t t t t q' -+ +' 2 q t t t t t 8 5 t v t t t t t t t t Q Q t q q t t t t t t t t t 5 t t t ' -+ +'t t t t 5 t t t t 5 8 t t t 8 t t 2 q t t t t t t t t t 5 t t >.oXoXoXoXoXo' -+ +'XoXoX>.",'#10'"oXoXoXoXoXoXoX>.m m q 5 t t t t t q q t t t t t t t t t t t ' -+ +'t t t t t t t 5 t 8 8 t t t t t t t t t t t t t t t t t : t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t : q 5 p >.oX>.d 8 t t t t t t t t t t 8 t t t t t t 5 8 t q e e' -+ +' e e e t t 5 8 t t q 5 q 2 t t t t t 8 5 t 8 t ] :.@.q q q 2 q t t t t t t ' -+ +'2 q t t t t t t t t t t 5 v t t t t 5 t t ^ -./...t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t 5 8 5 t t t t t t 8 t 5 8 t t t t 5 p l p t O.$X].) ' -+ ,'t t t 5 8 t t t t t t q 5 q q t 4.6.#XNXKXLXiXX.t q 5 t t t t 5 8 t t t t 8' -+ +' t t t t t t t t t t q T q 5 t t t t t t t 5 8 : t t t t t t t t t t t t t ' -+ +'t t 8 8 t t t t t 8 5 u 8 5 t t t 8 t t t t t t t 8 8 u t t t t t t t t t t' -+ +' t t t t q t 4.t ` oX.X~ t u q 8 t t t t t t t t t t t t t t t t t 8 t 5 t ' -+ +'t t t 5 t t t t t t t 8 5 q t t t t t t t t v u t t t t t t t t t t Q v q t' -+ +' t t t t t t t t t t q t t t t t t t t 5 8 t t t t t 5 t t q q t : t t t 5 ' -+ +'t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t 5 8' -+ +' t t q q q 5 t t t t t t t t t u 2 q t t t 5 t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t t : t t' -+ +' t t t t t t : t t t t t t t t t t t t t t t x ~ c t t t t t t t t t t t 5 ' -+ +'8 q t t t t 5 8 t t 5 t e e e t 8 t t t t t t t 5 t t t q 2 t 8 t t t t t t' -+ +' t t t t t t t t 2 q q q q t t t t t t t t t t t t v t t t t t t t t d l t ' -+ +'5 t : t t t t t t t t t t t t q t 8 t t t t t t t t t t t t t t t t t t t t' -+ +' 8 t t t u 5.p 2 ) [.#.P a t t t t t t t 4.4.t t 4.N 2 2 t d /.aXDXBXsXo.: ' -+ +'t t t t t t t t t 5 t t t 5 5 t t t t t t t q 5 q 5 t t 5 8 t t t 8 t t t t' -+ +' t t t 5 5 t t t t t 8 5 t t t t t t 5 t t t t t t u u q u t t t 5 8 t t t ' -+ +'t t t t t t 8 5 t 8 t t t t 5 8 q 2 q 4.t p ] ` u u 8 t t t t t t t t t t t' -+ +' t t t t t t t t t t 8 t t t t 8 t t t t t t t 5 t t 5 q t t t t q u v t t ' -+ +'t t t t t : t t t t t q t t q t t t t t t t t t t t t t 8 5 t t t t 8 5 8 t' -+ +' t t 5 q 5 8 5 8 t q t u t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoX' -+ +'oXoX>.t t t 8 t t t t 8 5 t t q 2 q : t t t t t t t t t 8 t t t t t t t t 8' -+ +' t 8 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t : t ' -+ +'t t t t t t t t t 4.t t t t t t t t t t t t t t t t t t t t t t t t a q t 2' -+ +' u t t t t t t t 8 5 t 8 5 5 : t t t t t t t 8 t t t t t t t t t t t t 8 t ' -+ +'8 t t q q t t t t t t t q t t t t t t t t q 5 q 2 q q t t 8 t t t 8 t t 5 8' -+ +' ^ t 8 8 t t t t t t t t q t t t t t t t t t t t t t q t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t q q t t 4.t t u P K t 4.4.t t 4.4.5 8 t t t 5 t' -+ +' t t q t t '' #XsX#X~.d t t t t t t t t t t 8 t t t 8 8 t t t t t t t q q 8' -+ +' q t t t t t t 2 u t t t t t t t 8 q t t a 5 q t t t t t t t t 8 t t t t t ' -+ +'t p l i 2 t t t t t t t t t t t t 8 t t t t 5 t t t t 8 5 5 q q t t 5 q 5 8' -+ +' 2 t t t t t t t t t t t t t t t t t t : t q 5 q t t t t t t t t t t t t 8 ' -+ +'t t 8 q q t t t q 2 t t t t t t t t t t t t t t a q 5 2 u t t t t t t t t t' -+ +' t t t t t 8 5 t t q 5 5 8 t t 8 5 q e e r t q z G d t t t 8 5 >.oXoXoXoXoX' -+ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 q 5 t t q 8 q q 5 q t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t u v t t t t t 4.t t t t t t t t t t t : t t t' -+ +' t t t t t t t t t t t q t 5 t t t 5 8 8 5 t t t t t t t t t t t t t t t t ' -+ +'t t t t 5 t 5 8 t t t t 8 5 q q q 5 t t t t t t t 5 q 5 t t q q 5 8 q q t q' -+ +' t t t 5 t t 8 t 5 t t 8 e e e 5 5 t t 5 t t t t t t t t t t t t a x ( X.( ' -+ +'l q q t q 8 5 2 q t t t 8 t t t t t t t t t t q 2 u 2 u 2 t 4.4.t t 4.4.t t' -+ +' t 8 5 t t t t t t t t 8 t t t t t t t ^ o.( l t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t : q 2 5 8 t t t t t t q t t t t t t t 8 5 t t q i p t t t' -+ +' t t 8 5 t t t t t t t t t i j a t t t t t t t t t t t t t 5 t t t t t t t ' -+ +'t t t t t t t t t t t t t q t 8 5 t t t t t t t t t t t t t t t t t t t q t' -+ +' t t t t t t t 8 t t t t t t t q 2 q t t t 8 5 t t t 5 t t t t t t t t 2 u ' -+ +'u x x L v u t t 5 8 8 t t t t t t t t t 8 5 5 8 t q t t q q e e e e e i H ^' -+ +' l t t t q q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t 8 5 8 t t t 5 ' -+ +'8 5 q q 2 t t t t t t t t t t t t t t t t t t 8 5 5 8 t t t t t t t t : t t' -+ +' t t t t t t t t q t t t t t t t t t t t t t t t t t t t v t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t 8' -+ +' t t t t t t t t t t t t t t t t 8 t t t t t t t 5 q t q 2 q 5 8 t t t t t ' -+ +'8 5 q t t q 2 q 5 q t t t t t t 8 t t 5 t t t t e e e e e t t t 8 t t t t t' -+ +' t t t t t t t H /.sXiX4X^.^ 2 t 5 5 8 q q t t t 5 t t t t t t t t 2 4.N 5 ' -+ +'u 8.v.[ t t t t t 8 t t t t t t t 5 8 t t t t t t t t t t t t t 5 u t t t t' -+ +' t : t t t t t t t t t t t t t t t t t t t t 5 T 8 5 t t t t t t t t t t t ' -+ +'t t t t t q 5 t j c i t 5 8 t t t 8 5 t t t t t t t 5 q 5 t t t t t t t 8 5' -+ +' t t t t t t t t 8 t t t t 8 t t t 4.t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t q 2 t t 8 5 t t t 5 t t t t t t t 5 8 5 t t t t t t t' -+ +' t 8 t t t t t t t t q 8 g P L i ^ v t t t t 5 t t t t t t t 8 t t t q t t ' -+ +'q q 2 q 2 e e e e e 2 d d a t 5 8 q 2 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -+ +'XoXoX>.t t t 5 t t t t t 8 u 2 t t t t t t t t t t t : 8 t t t t t t t t 5 ' -+ +'8 t q 8 5 8 t t 5 8 t t t t t t t 8 5 t u 2 t t t t t t t t t t t t q 2 8 5' -+ +' 8 5 8 v u 5 8 5 8 t 5 8 t t t t t t t t t t t t t t t t : t t t t b l a 5 ' -+ +'t t t t t t 8 t t 5 8 t t t t t t t t t t t t t 2 u q t t t t t t t t t t t' -+ ,' t t t t t t 8 t t t : q : t t t t t t t t t t t t t t t t t t t t t t t e ' -+ +'e e e e t t t t t t t t t t t t t t 5 y ~.aXDXKXBXaX~.y t t t t t p t t 4.t' -+ +' t 4.N 2 2 4.4.t t t q 8 j :.%XQ.z m N 5 5 8 t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t 5 8 t t q q q 5 t t t t t t 5 8 q 5 t t t t t t t Q 5' -+ +' 8 t t t t t t t t t t q q q 5 t 8 t t q i p i t t t t t t t t t t t t t t ' -+ +'5 t t t 8 5 5 t t t 8 t t t t t t t t t t t t t t t q q 5 4.5 8 t t t t t t' -+ +' 5 8 t t t : t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t 5 q t ' -+ +'t t t t t q t 5 5 q 8 u q 8 t t t t t t 8 t 5 t t t x g t t t t t t t 8 t t' -+ +' t t t t t t t t t t t t 5 t t t 5 e e e e e t t t t t t t t t >.oXoXoXoXoX' -+ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX<.t t t 8 t t 5 8 t t t q t t t t t t t t t t' -+ +' t t t t t t 5 t t t t t t t 5 t 8 5 t t t t t t t t t t t t t t 8 t t : t ' -+ +'t t t t t t t t t q q 5 q t t 5 u v 8 5 8 4.t t t t t t t t t t t 5 t t t 8' -+ +' 5 t t t t t t p ! ~ p q t t t t t t 5 t t t t t t t t 8 t t t 5 t t t u p ' -+ +'j p t t t t t t t t t t t t 8 5 t t t 5 t t t t 5 q t t 5 w t t t t t t t t' -+ +' : t t q t t t t t t t r e e e e t t t t t t t t t t t t t t t ^ #XBXKXKXKX' -+ +'BX#XJ 4.t t 4.9.,.1.6.u 5 t t 5 q t t t t t t 8 5 p 1. X:.k 5 4.5 t t t t t' -+ +' t t t t t t t t t t t t t t t t t q t t t t t t t t t 2 q 2 q t t 5 t t t ' -+ +'q 5 q t t t t t t t Q t t t t t t t t 8 t t t 8 t q 2 8 t t t t 2 u t t t t' -+ +' t t t t t t t t t t t t 8 t t t t t 8 t t t 5 t 8 t t t t t t t t t t t t ' -+ +'t q 2 q 8 t t t t t t 2 t t t t t t t t t t t t t t t t t t t t t t t t t 5' -+ +' 8 t t t t t t t t 5 8 t t t t 8 5 q 2 T t u u j g t t t t 5 u u 5 t 8 t t ' -+ +'t t t t t t t t t t 5 t 8 t t t t t t t t t t t t 8 t t t t 8 e e e t t t t' -+ +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t 8 t t' -+ +' t 5 8 t t t 5 t t t t t t t t t t t t t t q 2 q t t t 8 5 8 5 5 q 4.t t t ' -+ +'5 t t t t t t t 8 t t t t t 8 5 t t t t u v v u t 8 t 5 t t t t t t t t t t' -+ +' t 5 t t 8 t 8 t t t q p x p t t t t t t t t 5 t t t c p t t 5 8 t t t t t ' -+ +'t a j T k 5 t t t t t t p b t t q t t t t t t t t e v e t t t t t t t t t t' -+ +' t t t t t 5 ( *XDXKXKXKXNX#X~ t t t p !.iX#X..t q t t t t t t t t t t : q ' -+ +'q c _ v t t 5 t t t t t t t t t t t t t t t t t t t t t t t 8 5 t 8 t t t t' -+ +' t t t t q t t t 8 t t t 8 5 t t t t t t t t Q t t t 8 5 t t t 5 t t t 5 t ' -+ +'t q 5 t t t t t 8 t 5 t t t t 5 : t m t t t t 5 t t t 5 t t t t t t t t t u' -+ +' 2 t t t t t t t t t t t t 5 q 4.t t 5 8 t t t q q t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t q 5 t t t q q t t t 8 5 t t 5 t t t t u G 8 2 i x g' -+ +' u t t 8 a x x u t t t t t t t t t t t t 5 t T V 5 t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -+ +'XoXoX>.t t t 8 8 5 t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t ' -+ +'t t t t t t t t t t 5 t t t t t t t t 8 t t t t t t t t t t t 8 5 t 5 q q q' -+ +' t 8 5 8 5 8 q q t t t t 8 t t t t 8 5 t t t t t 8 t t t t t t t 5 t t t t ' -+ +'5 8 q t t t 8 t t t t t t t 8 t t 5 t t t t t t 5 u q t 8 5 t t t t t 8 t t' -+ +' ! 1.@.p t t t t t t t t t i ] |.~.~ q y t t t p @.:.[ u 2 t t t t t t t : ' -+ +'u T t 5 8 t t t t t t t t t t t t t m z #XNXKXKXKXNX#XG t t t p <.*X&Xo.t t' -+ +' t t t t t t t t t t t 5 q q t t t t 5 8 t t 2 t t t t t t t t t t t t t t ' -+ +'t t t t t 5 8 t t t t t t t t t t q q t t t t t 8 5 8 t t t t t t t : t t t' -+ +' t t t t t t t t t t t t t q q t 8 5 t t t t 8 t t t t q t t t 8 5 t t 8 t ' -+ +'t t t t 8 t t t t 8 t t t q t t t t t t t t t t t t q 4.t t t t t t t t t q' -+ +' t t t t t t t t t t t t : t t t t t t t t t t t t t t t t 2 q t t t 8 t 8 ' -+ +'t t t t t t v 8 5 q q i t 2 t t t u c c p t t t t t t t t t t t t 8 t t u v' -+ +' t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoX' -+ +'oXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 5 t t t t t t t t t t t t t t t t t t' -+ +' t t t t 8 t 8 5 t t t u q q m m 5 q 5 t q q t t t 8 t t t t t 8 t 5 t t t ' -+ +'t t t t t t t t t q q t t t t t t t t u 2 t t 2 u t t t t 8 5 8 t q 2 5 : 5' -+ +' t t t t t t t t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t t t ' -+ +'t t t t t t t 8 t t t t u ~ ,.*.l t t t t t t t t t w :.UXiX^.^ 5 q q q l >' -+ +'.+X] t q t t t : 5 q 5 q 2 G 8 t t t t t t q 8 5 t t t t t t t t -.4XNXBXNX' -+ +'4XX.q t t t t G 1.| d t t t t t : t t t t t t t t t t t t t t 4.t t t q t t' -+ +' t t t t t t t t t t t 8 8 t 2 t t t t t t t t 5 8 t t t t t t t t t t u 2 ' -+ +'u u 2 t t t t t t t t t 8 t t t t t t t t q q q q q 5 q t t t t t t t t t t' -+ +' t 8 5 t 5 8 t t t t t t t t t t t 5 8 t t 5 t t t t t t t t y l p u t 5 q ' -+ +'5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t' -+ +' t t t 8 5 t t t t t t t t t t t t 8 G t t 5 t t t t t t t t p p t t t t t ' -+ +'t t 5 8 t t t t t t t t t t t t t t t t t t t t 8 5 t t t 5 t t t t t t t t' -+ +' t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t 8 t t t ' -+ +'t t t t t t t t t t t t t t t t t 5 t t t t t 5 v _ k t t t t q 8 5 q t t t' -+ ,' 5 t t t t t t t t t t t t t t t t q q t t q 2 t t t t t t t t 2 4.t t q 8 ' -+ +'t t 5 8 5 8 t t q q q t t t t t t t t t t t t t t t t t 8 t t 5 t t t t t t' -+ +' t t t t t 5 t t 8 t t t t t t t t t t t t t t t 8 l [ T t t t t t t t t t ' -+ +'t 5 ( *XNX4Xo.t m q q 5 ! ] v t a t t t t t t q a q T t t t u t 5 t 5 q t t' -+ +' t t t t t 5 q u X.^.#X^...u q t t t t t q q q t t t t t t t t t t t t t t ' -+ +'t t t t t t 4.t t 8 q q t t t t t t t t t t t t 8 8 t t t t t t t t t t t t' -+ +' t t 5 8 t t t 5 t t q i L G i q t t t t t t t t 5 t 8 t t t t t q 2 q 5 q ' -+ +'2 q 2 t t 8 5 t t t t t t t 5 8 t t t t t t t t t t t 8 t t t t t t t t t t' -+ +' t t t t t p l p t t q 5 8 t t t t t t t t t t t 8 t t t t t t t q t t t t ' -+ +'t t t t t t t q : t t t t t t t t t t t t t t t t t 8 t t t t 8 t t 8 t t t' -+ +' t 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t v t t t t t t t ' -+ +'t t t t 8 t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXo' -+ +'XoXoX>.t t t t t t 5 t t t t t t : t t t t t t t t t t 5 t t t t t t t c ''' -+ +'.%X|.v m t t t t u 2 t 5 t t 8 t t t t t 8 t t t t t t t t t 2 q 5 q t t t ' -+ +'t t t t t t ^ 2 N t t t t 5 8 t t 5 q q q q 5 t t t u 2 t t t t t t t t t t' -+ +' t t t t t 8 t t t t t t t t t 8 t t 8 t t 5 8 t t t t t t t t t t 8 5 t u ' -+ +'5 t t t t t 8 u 2 t t t t t 5 f !.#X~.^ t Q T 2 q 5 q T Q v Q t t t t Q Q v' -+ +' L ^ v v v v 5 t t t V T v Q 5 m t t T 5 5 t l V d q t t t t t t 5 8 2 q 8 ' -+ +'5 t t t t t t t t t t t t t t t t 5 t t t t t 5 8 t t t t t t t t t t t t t' -+ +' 2 t t t t t t t t q q t t t t q q t t t t t t t l ~ ` d t t t t t t t t t ' -+ +'8 5 t t t t t 8 5 q 2 q t q t t t t t t t t t t t t t t t t t t t 8 5 8 t t' -+ +' t t t t t t t t t t t t t t t t t t 5 u t t t t 8 4.4.t t t t t t : t 8 5 ' -+ +'t t t t 8 t t 2 i i 5 t t t t t t t t u 2 5 t t t t t t t t t t t t t t 5 8' -+ +' 5 t t t t q 5 t 5 t t 8 t t t 8 5 t t t t t t t t 2 u t t 8 5 t 5 8 t q t ' -+ +'t t t t 5 q v ^ t t t t t t t t t t t 8 5 8 t t t t : t t t t t >.oXoXoXoXo' -+ +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t 8 5 t 8 t t t t t t t t t t t t t t ' -+ +'t t t 8 t t t t t t t ! %XkX%X! m t t t p p t t 8 t t 5 t t t t t t t t t t' -+ +' : t t t t q 5 8 t t t t t t t 5 8 t v q q t t t t t t t t 8 5 q q 2 q t t ' -+ +'t 8 q t t t t t t t t 5 t t t t t t 5 t t t t t t t 5 8 5 t t t t t 8 5 q t' -+ +' t t t 8 5 t t t t t t v L G v a v Q G L q t t t Q Q T T z J G 5 ^ Q 5 8 5 ' -+ +'t t t q q t t t t t t : t 5 v 5 u t t 8 t t t t q q 5 q 5 t t 5 L T t p b u' -+ +' Q ^ [ ~ t t t u v ^ L G L ^ v Q t t t t t q q t t t t t t 8 t t t 5 t 8 5 ' -+ +'q t t t t t t t t t t t t t t t t q t t t t t t 2 u t t q 2 q t t t t t t t' -+ +' c v t t t t t t t Q t t t t t t t 8 5 5 8 t q q t t t t t t t t t t 8 5 t ' -+ +'t t t t t t t t t t 5 u t t t t t t t t t t t t t t t t t t t q 2 t t t t t' -+ +' 4.t t u t t t t t 5 q 8 5 t t t 5 t t u v ^ j t t t t t t t t 8 t q t t t ' -+ +'t t t t t t t t t t t 8 t t t 5 8 t q q t 8 t t 5 t t t t t t t t t t t t t' -+ +' q 8 t t t t t 8 5 8 5 t t t t t 8 q q 2 t 8 5 8 t t 8 5 t t t 5 t t t t t ' -+ +'t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.2 t t t 8 5 t t t' -+ +' t t t t t t t t t t t t t t t t t t 8 t t t t j :.$X:.g 5 t t u j l t t t ' -+ +'t t q 2 q q 8 5 t t t t t t q q 5 t t t t t t t t t 8 5 8 5 q T q 5 t t t t' -+ +' t t t t t t t t t t t t t t t 8 5 q 2 q 5 t t t t t t 5 8 t t t t t t t t ' -+ +'8 t t t : t t t t : t t 8 5 8 t 5 T L G L t t t t 5 u t t t t t t t t t t t' -+ +' t q 5 t t t t t t t t t 8 t t 2 q q q 5 q t t t t 8 v 5 8 5 t t 5 q 5 m y ' -+ +'q q 5 m t t t q t t p l p t u j p t t t 2 t t t t t t 8 t t t t L ^ V V q 5' -+ +' t t t t t t 4.t t t t t t 2 t t t t t t t t t t t t t t t t t t t t u g p ' -+ +'8 8 t t t t t t t t t t t t t t a t t t t t Q t t t t 5 8 t t t t t t t t t' -+ +' t t t t t t t 8 t t t q 2 8 5 8 t 5 8 t t t t p p t t t t 5 t t t t t q t ' -+ +'t t t t t q t p u 5 8 8 t t t p x c u 8 t t 8 t t t t t t 5 t t u Q ~ l t 5' -+ +' t t t 8 8 5 t t q u i 5 t t t t t 8 t 8 t 5 t t t t t t t v 2 q t t t t t ' -+ +'t t t t t 8 5 t t t q 8 t t t t 8 5 t t t t t t t t t t t t t t t 5 t q q q' -+ +' q t t 8 t t t t t t t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' -+ +'oXoXoX>.q q t t t t t t t t t t t t t t : t t t t t t t 5 8 t t t t t t q d' -+ +' T j t t t t 2 i p t t t t t 5 q 5 q t t t t t t t t q 2 q t t t t t : t 5 ' -+ +'q t t t 8 t V 4.q t t t t t t t t t t t t t t t t t t t 5 q q q q 8 t t t t' -+ +' t t t t t t t t t 5 t 5 t t e e e t t t t ^ v v ^ t t t t 8 5 2 u t 5 t j ' -+ +'b p t t t t t t t t t t t t 5 m t t t t t t t t t 5 t t t t q 2 q q t t t 5' -+ +' u ^ q t 8 t t 8 5 q 5 r W $.e 6 ! T 5 m t t t t t t 5 t t t t t q t 5 q t ' -+ +'t t 5 t t t t 5 t q q 8 t q t v ^ v v 4.t t t t t q q t t t t t t t t t t t' -+ +' t t t t t t t t t u x p q 5 t t t t t t t t t t t t t t q t t t t Q t t t ' -+ +'t t t t t t t t t t t t t t t t t 8 t t 5 t t 5 q q 5 q t t t t t t t p l g' -+ +' t t t t 8 t t t t t 2 t t t 5 t t 5 j c p t 5 4.4.t t p P P p 8 t t t t t ' -+ +'5 8 t t 8 t t 5 j d u t 8 t t t t t t t t t l b u t t t t t 5 t t t t 8 t t' -+ +' t t t V u q 5 t t t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t 8 ' -+ ,'t t t t 8 5 8 t t t q 2 T 2 t t 5 t t t t 5 t 8 t t t t t t t t >.oXoXoXoXo' -+ +'XoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 8 t t t t t t t t t t t t t t ' -+ +'t t t t t 5 8 t t t t m 5 t t t t t t t t t t t t t t t 8 q 8 t t t t q q t' -+ +' 5 l ` ~ 5 t t t 5 t t t t t t q 5 t t 4.t t t t t t t t : t t t t t t t t ' -+ +'5 8 5 8 2 q q 5 t t t t 8 t 8 5 q q t t u t t t t t L G G T e t t 5 t t 8 t' -+ +' t t t t 8 5 q 8 5 8 t l v l t t 5 8 t t t t t t t t q t q t t t t t t t t ' -+ +'t t t t t t q 2 q t t q u d u 8 q t t t t w 5 r XkXkX$.] .X|.T m t t 5 q t' -+ +' t t q t t t t t 8 q t t t t t t t t t t t t t 5 8 t t u 2 5 t t t t t ^ v ' -+ +'T v t t t t t t t 8 t t t t t t 8 t t t t t t u t t 8 5 u a t t t : t t t t' -+ +' t t t t t t t t Q t t t t t t t 5 8 t t t t t t t t t 8 t t 5 t t t t 8 q ' -+ +'2 q t t t t t 5 8 q a p u t t t t t t t t t t q q t t 8 t q q p p p t t 4.t' -+ +' t t u g g u t t t t t t 8 5 t t t 2 q q 5 e e e t 5 t t t t t 8 t t j j a ' -+ +'t t t t t t 8 t t t t t 8 t 8 T T q 2 q t t t t t t t t t t t t t t t t 8 t' -+ +' 5 t t t t t t t t 8 t t t t t t t t t t t t 5 q 8 ^ v u t t 8 t t 8 t 8 t ' -+ +'t t t q 2 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t 5 t t' -+ +' t t t t : t t t t t t t t t t t t t t t t 5 8 t m t t t t t t t t t t t t ' -+ +'t t t 5 8 5 t 5 8 t q 2 q q ~ ,.&.x t t t 8 t t t t t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t q t q q q 2 t t t t 5 8 5 u v V ^ v v v t t t ' -+ +'t e e e e e t t 8 t t 5 t t t t 8 5 q 5 q t t t a p u t t t t 5 8 8 5 t t 8' -+ +' 5 m 5 5 q t t t t t t t t t t t t 8 5 q t t t 5 j v d u 2 t t t t 5 w W *X' -+ +'JXkX$.$.OX|.*.T t t t t q 5 t t t t t t t 5 t t t t 8 t 5 t t t t t t t 8 5' -+ +' t t q q 8 t 5 8 t t t t t t t t t t V Q Q Q Q Q Q t t t 8 2 t t t t t t t ' -+ +'t 5 8 d d p t t t t t t t t t t t t t t t t t t : t t t t t t t t t t t t t' -+ +' t t 5 t t 8 t t t t t 5 q q q t t t t t 8 5 t q t t t t t t t t t t t 5 q ' -+ +'t t t t 2 u 5 q t t t t 8 5 t t t t 2 q t t t t t t t t t t q 5 8 e e e e e' -+ +' 8 t t t t t 5 t t 5 t t t t t t t t 5 t t t t t 5 8 5 G 5 q q q t t t t t ' -+ +'t t t t 5 8 t t t t t 5 t t t t t t t t t t 5 t t t t t t t t t t t t t t l' -+ +' l u G t 5 5 t t t t 5 t t t t t u t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoX' -+ +'oXoXoX>.q 5 t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t t t t 5' -+ +' q t t t t 8 t t t t t t t t t t t t t t t t 5 q t t v '' ] a t t t t t t t' -+ +' t t t t t u 4.2 t t t t t t t t t t t t t t t t t t t t t t t t u 5 8 T 2 ' -+ +'q q t v t t t t t t t t 8 t r e e e e t t t t t t t t 8 t t t t t t t t t t' -+ +' t t q t t t t t t 8 t t t t t t t t t t t t 5 8 t 8 t t t t 5 q q q t t u ' -+ +'u p a t 8 t t t t 2 q E Q.%X|.r v ] *.@.! t t t t t t t t t t t t t t t t 8' -+ +' 5 5 t 8 t t t 8 5 8 t t t t t t t t 4.5 t t t t t t t t t t t t t t t t t ' -+ +'t Q t t t t t t u t 5 t t t 8 u y d y t t t t t t q t t t t t t t t t t t t' -+ +' t t q 2 t t 8 5 t : t t t t t t t 8 t t t t t t t t t t t t 5 t q t t 8 t ' -+ +'t t t t 5 t t t t t t q q q 5 t t 8 t t t t t t t t t t q t t 5 t t t 5 t t' -+ +' t t t t t q q t e e e e e t t 5 8 t t t t 5 t t 8 t 8 u t t t t 8 t 5 8 t ' -+ +'5 q 2 q t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u t t t t' -+ +' t t t t 8 5 t t t t t a l x p t t 8 2 u 5 t t t t t t t t 8 8 8 >.oXoXoXoX' -+ +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 t t t t t t t t t t t t t t t t t t t' -+ +' t t t 8 t t t t t t t t t t t 5 8 t t t t t t t t t t t t t 8 t t t 8 8 5 ' -+ +'q q 5 u t t 5 8 q 2 t t t t t t t t 2 4.q q t t t t t t t t t : t t t t t t' -+ +' t t t t t t t v ^ v 5 q q q t 8 t t t t t t t t t t 5 e e e t t t t t t t ' -+ +'t t 5 t t t t t t t t t t t t q 2 t t t t t 5 t 8 t t 5 t t t t t t t 8 5 5' -+ +' t t t t t q 2 t t t t 2 q 5 u t t t t 8 5 q 5 m r W r t t t y v l t t t t ' -+ +'t t t t t t t t t t t t t t t 8 t t t t t t t t t t t t t 5 t 4.8 t t 8 t t' -+ +' t t t t t t t t t t t t t t t t t t ^ v v Q u p t t q 2 8 5 2 u t t t 8 5 ' -+ +'5 t t t t t t t t t t t t t t t u t t t t t t t t t t t t t 5 t t t t t t 8' -+ +' t t t t t t t u p u 5 t t 8 t t 8 t t t t t t 2 q 8 q t t t t t 5 8 4.t t ' -+ +'t t t t t t 8 t t t 8 t t t t t t t 5 q t e e e e e t t t t t t t 5 q t t 5' -+ +' t t 2 q t t t 5 t t t t q q q q t t t t t t t t t t t g x x t 2 t t t t t ' -+ +'t 8 5 t t 8 5 2 5 g p t t t t t t t t t t t t t t a u t t t t q v 8 q t t t' -+ +' t 5 8 t t 5 : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t 5 t q 5 t t t 5 t t t t t t' -+ +' t t t t t 5 t t t 5 t t t q q t t t t t t u t q 5 t t t t 5 t N Q t t t t ' -+ +'t t t t t t t t t t t t Q Q Q v u t t t t 2 q q q 5 8 t t t t t t t t t t t' -+ +' t 8 5 t t t t t t t t 2 u t t t t t t t t t t t t t t 8 u t t t t t t t t ' -+ +'5 8 q 8 t t t t t t q q q 5 q 2 t t 8 5 t t t t t t q G t t 8 t t t q q 5 m' -+ +' 5 q t t t t t t t t t t t t t t t t t t t 5 t e e e t t t t t t t 8 t t 5 ' -+ +'t t t t 8 t t t t 8 5 t t t t t t 9 u ) ) u t t t t t t t t t t t t t l v p' -+ +' t T G t u q t t t t t t : t t t t t t t t t t t t t t t 8 t t t t t t t t ' -+ +'t : t t t t t t t t t t t t t t t t t t p l p t t t t t t t t 8 t t t t t 8' -+ ,' 5 8 5 t t t t t t t t t t t t t q 2 t t t t 8 5 t t t t t t 8 t t t e e e ' -+ +'t t t t t t t t 8 t 5 t t t t t t t 8 t t t t t t 2 q t t t 5 t t 5 q t t t' -+ +' t t g ) P u 8 t t t t t t t t t t t t q t g g u t t t t 8 t t t t t t t t ' -+ +'t m : t q q q T T q 8 5 t t t t 5 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' -+ +'XoXoXoX>.5 8 t t 5 8 t t t t t t t t t t t t t : t t t t t t t t 8 5 t t 8 ' -+ +'8 5 q t t t 8 t t t t t t t t t t t t t t t t t t t 2 : t t t t t x ` ~ t q' -+ +' t t t t 8 t t : Q t t t t t t t t Q Q Q t t t t t t q q 2 t 8 5 t q q 2 q ' -+ +'8 5 5 t t t t t t t t t t t t 8 t t t t t t t t q 8 t t t t t t t t t t t t' -+ +' t t q t g g u t t t t t t t t 5 t t t t t t q q 2 q q q t t t t t t 8 5 t ' -+ +'t t L t t 5 t t t 5 t q 5 m 5 t t t t t t t t t t t t t t t t t t t 8 e e e' -+ +' e e t t t 8 5 t t 5 t 8 t t t t t t t t t 5 q t t t t t t g `.dX$X#.u t t ' -+ +'t t t t t t t t t t l v d t 5 L v T q t t t t t t t t t t t t : t Q t t t t' -+ +' t t t t t 5 8 t t t t t q 5 t t t t t t t t t t t t t t t t t t u p t t t ' -+ +'t 5 8 t t t 5 t t t t t t 5 t 8 t t t 5 8 t t t t 8 5 t t q p t t t t t t p' -+ +' u t t t t 5 8 t t 5 8 t t t t t t t t t t t 8 t t 5 8 t t t 5 t t t t t t ' -+ +'u v t t t 8 8 5 8 t t t t t t p x g t 8 t q t t 8 t t t t t t t q q t u t t' -+ +' t t t 5 t t t t c L t t t 5 q 5 q 2 q 5 2 ^ v t t t t t t t t t >.oXoXoXoX' -+ +'oXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t 5 t t t t 5 q t t t t t t t' -+ +' t t t t t t t t t q 2 q q 5 8 5 t t t t t t t u a t t t t t t t t t t t 8 ' -+ +'5 q 2 q t t 2 t ^ ,.*.l t t t t 8 5 4.2 u G 8 t v u 2 5 q v t t t q q 2 5 8' -+ +' t t t t t t t t 8 t t t t t t 5 t t t t 5 8 t t t t t t t t t 5 q 2 q t t ' -+ +'t t t t t q q t 8 5 8 q t t t t t g c p t t t t t t t t t t t q 5 t t t t t' -+ +' t t t 2 q q 5 q q q q t t t ^ 2 q t t t t t t 5 8 5 8 t t t t t 5 q 8 t t ' -+ +'t t t t t t t t 5 8 e e e e e t t t 5 t t t 5 8 t t t t t t t 4.t t t t t t' -+ +' 5 8 t t _ $XCXlX X) 9 2 8 t t t t t t t q 5 u p t t t t t t t t 8 2 v v ^ ' -+ +'t t t t t t t t ^ q 8 5 t t t t t t t : t t t t t t t t t t t 8 5 t t t 8 t' -+ +' t t 8 5 t 5 t t t t t t t t t 5 8 t t t t t t t t t t t t t t t 4.q t t t ' -+ +'t t t t l L p t 5 8 t l L j t 5 t t t t t t t 8 t t t t t t t t t t t 8 t 5' -+ +' t t t t t t t t t t t 8 5 L 5 t t t 8 5 t t t t t t t t t t t 5 t t t t t ' -+ +'5 t t q q q t t 5 t t t t t t 5 8 q 5 w ] +X%X@.5 t t t t t t t : t t t t q' -+ +' 5 q q q t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t 8 t t 8 ' -+ +'t t t t : t t t t t t t t t t t t t t t t t q q q q 8 5 8 t t t t t t j L l' -+ +' t t t t t t t t t 2 t 5 8 t q t t t q 5 x ] ~ t t t t t t t N q V T ^ v t ' -+ +'t q q t t t t t 5 q q 8 5 t t t t t t t t u t t 5 8 t t 8 t 5 8 t t t t t t' -+ +' t t t t t 8 q 5 8 q q t t t t t t q 2 q 5 t t 5 m t t t t i p u t t t t t ' -+ +'t t t t t t 5 q t t t t t t t t q q q q 2 q 8 5 t t t v q q t t t t t t 8 q' -+ +' t t t t t t t t 8 5 t t t t t t t t t t 8 5 e e e e e t t t 8 t t t t t t ' -+ +'t t t t : t 4.t t t t t t t t t t +.dXCXlX$X) a 8 t t t t t t t t t t 2 t t' -+ +' t t t t t t t 8 t t t t v t t 8 5 t t v q 8 5 t t t t t t t t t t t t t t ' -+ +'t t t t 8 5 t t t t t 5 t t t t t t 8 t t t t t t t t t t t t t t t : t t t' -+ +' t 8 t t t t t 4.t t t t t t t t c R g t t t : l L j t 8 t t t 5 8 t t 5 t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t 5 L 5 t t t t t t t t u 8 t' -+ +' t t t t t t t t 5 8 t t 8 t t 5 q 2 t t 8 t t t t t t 8 5 q t d |.CXCX$Xv ' -+ +'t t t t t t t t t t t t t 8 2 q t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXo' -+ +'XoXoXoX>.t t t t 5 t t t t t t t t t t t t t : t t t t t 2 q t 8 5 q 8 2 u ' -+ +'8 t t t t t t t t q g L x t t t t t t t t t 8 t t q q q q t t q t t t t t t' -+ +' t t t t t T G t Q : 5 8 t t t t t t t : t q 2 q q t t t 5 t t t t 2 q t 8 ' -+ +'5 t t t t t t t t t t t t t 2 q 8 t 5 8 q 5 t q t t t t t q q q t t t 5 m 5' -+ +' q q t t t t 8 u 2 t t t t t t t t t 8 t t t 5 t t t q q q 5 q 2 t t 5 5 8 ' -+ +'t t t t t t t t t t t t 5 t t t t t t t t 5 t t t 8 p l t t t t t t t t r e' -+ +' e t t t t t t 8 t t t t t t t 5 q r r r 5 8 t t 5 t t t t x `.dXdX`.g 8 t ' -+ +'t t t t t t t t t t q q t t t t t t t t t t t t t t t t t t v v ^ V 5 u t t' -+ +' t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t t t 5 t t t t t t t ' -+ +'t t t t t t t t t t t t t t 5 t 8 t t t t t t t t t t t t p j u t t t t u p' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t 8 t t t t t t 8 t 5 t t ' -+ +'v u t 8 t 8 5 t t t 2 q t t t t t t t t t t 8 5 t t 5 t q 8 t t t t t t t t' -+ +' t t t t t t y |.zXCX+Xc t t t t 5 u a t q t t t t t T q t t t 5 <.oXoXoXoX' -+ +'oXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.t t t t t t t t t t : t t t t t t t t t t' -+ +' t t t u 8 c c q p l u 2 q 5 t t t t 8 t t 2 u u u t t t t t t t t t t t t ' -+ +'q 2 q 5 t q t t t t t t Q Q u t t t a t t t v u t t t t t t t t t t 5 q q q' -+ +' t t t 8 t 8 5 t t t t t t t t t t 8 5 8 t t t t t t q q t t 5 t t t t q t ' -+ +'t 5 8 q 2 q 5 t t t t m z ( z t t t t 5 8 q t t t t t t t t t 5 8 t t 8 t t' -+ +' t 5 q 2 q q 5 : t q 8 5 8 t t t t : t t t t t t t t t t t t t t t 8 t t t ' -+ +'! ''.|.O.t t t t 2 u t 8 t t 5 8 t t t t t t t t t 5 8 t 5 e e r e e t t t ' -+ ,'8 t t t t t l ) ) 0 8 a t t t t t t t : t t t t t t t 8 t t t t t t t t t t' -+ +' t t t t t t t v u V v t 8 t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t 8 5 t t 8 t t t t t t t t t t t t t t t t t t t t t t t 5 t 4.t t t t t t' -+ +' t t t t t t 5 t t t t 5 8 t t t t t 5 8 t t t t t t t t t t t t t t t t t ' -+ +'8 t t t t t t t 5 t 8 t t t t t 5 t t t t t t t t t t t t t t t t t 8 q 5 8' -+ +' t 8 t t 5 t t 8 t 5 8 t t t 8 t t t t t [ |.|._ t t t t t u j p q 5 t t t ' -+ +'t t 2 ^ v t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v _ R 5 t q 5 t' -+ +' t t t t t t t t t t t t t t t t q j 2.&.V g L p q t t 5 8 t t 5 t t t t t ' -+ +'t t t t t t q t t t t t 8 t t q 8 5 q q t t t G v t t H ( H W.H 5 t t v t t' -+ +' t t t t t t t t t t t t t t t 5 t t t t t t t t t t t t t t t t t t t 5 t ' -+ +'t t t t t t t t t t t q t t t t t t t t t t t t v #XiX#XG t 5 q t t t t t t' -+ +' t t t t t t t 5 t t t t t 8 q 8 5 8 t t t t t t t t q 2 t t t t t t 5 8 t ' -+ +'t 5 t t t t t t t t t q q #.fXkX].x q t p i 5 q q 5 t t t t t t t t t t 5 t' -+ +' t t t t e r 4.e r t t t t t t t u 2 t q 5 q t t 8 t t t t t t t t t t t t ' -+ +'t t t 8 t t t t t t t t t t t t t t 5 8 v 8 q 5 8 t t t Q t t t t t t t t t' -+ +' t t t t t t t t t t 8 u t t t t q t t t 5 t t t t t t t t t t t t t t t t ' -+ +'8 5 8 t t 4.4.t t t t t t t u t 8 t 5 t t t t t 5 8 t t t t 5 t t t 8 t t t' -+ +' t t 5 q 2 t t t t t t t t t t t t t 8 t t t 2 q q t t t t 5 8 t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t t t t t t d l a t t t t i p q q' -+ +' t t q 8 u j p t g g u t t t t 8 5 t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoX' -+ +'oXoXoXoX>.'' .X@.i t t 8 t t t t t t t t t t t t t t t q t 2 l ..%.T h g u ' -+ +'q t t t t t t t t t t t t t t t t t t t t t t t t 5 t t q 2 T V t t t t t q' -+ +' t b ( X.X. .( f t t t t t t t t t t t t t t t t t t t t 8 t t t t 8 t t t ' -+ +'t t t t t t t 8 5 t t 8 t 5 t t t t t t t t t t 2 t t t t t t t t 8 t t t `' -+ +' aXKXzX| t 8 q t t t t t t t t t t t t l x u t t t t 5 8 5 t t t t t t t t ' -+ +'t t q q t t t t t t t t t t 8 t t t t t t t t q 5 2 O.%X%X''.p a p b p q q ' -+ +'2 8 t t t t t 8 5 t 5 t 8 5 8 t t u e k N k r t t t t t t t t q q 8 q 5 t t' -+ +' t t t t t t t t t t t 8 5 t t 2 q t t t t t t t t t t t t t t 8 G u 5 q q ' -+ +'8 5 t t t Q Q Q t t t t t t t t t t t t t t t t q 2 t t t t 5 t t t 8 t t t' -+ +' t t t t t t t t t t t t t 5 8 q t t 8 t t t t t t t p l p 5 u j g t t t t ' -+ +'t t t 8 t t 8 t t t 5 8 5 t t t q q q t t t t t t t t t t t t t t t t t u t' -+ +' q t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t 8 ' -+ +'t t p v v p t p y t t t t t t t 8 5 t t t i v L p t t t t t t t t t >.oXoXo' -+ +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.! *.~ 5 t t t t t t t t t t t t t t t ' -+ +'t 2 q 2 q 8 t l c t t t t 5 8 t t t t t t t t t t t t t t t 8 g p t t t t t' -+ +' t t t T ^ v t 8 t t 5 t 5 H ( X.,.,.,.X.( H t t t t t t t t t t t t t t t ' -+ +'t t t 5 t t 8 t t t t t t t 5 8 t t t t t t t t t t 8 t t t t t t t t t 5 t' -+ +' t t t t t t t t t q t t ( #XMX#X^ 5 t 5 t t t t t t t t t t t y T Q p t t ' -+ +'t t t t t t t t t t t t t t t q V q t t t t t t t t t t t t t t t t t t t t' -+ +' u l @.#.^ 8 2 i g p t q q t t 8 t t t t t t 8 t t t t t d v p k E E m t t ' -+ +'t p g u 5 8 t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t t t t t' -+ +' t t t t t t t t 5 8 t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t 8 5 t t t t 8 t t t t t t t q t t a t t u 2 q 5 q 4.5 t t t t t t' -+ +' t i g u 5 u x l u t t t t 8 t 5 t t t t t t t t t t t 5 8 q 5 t t t t t t ' -+ +'t t t 5 5 t 5 t 8 5 u g g t t 8 t 5 t t 5 t t t t t t t t t t t t t q t m t' -+ +' 2 u t t t t t t t t t t t t : l l u a d f u 8 5 t t t t t t t 5 t t l l u ' -+ +'t 5 q t t t 8 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t p t q t t t' -+ +' t t t t t t t t t t t q q q 5 q q 5 8 5 t t t 8 5 q 5 t t t t t t t t t t ' -+ +'t t t t t u ) R g t t Q t t t t t t t t 5 5 8 q 5 m z o.,.,.,.,.Q.o.G t t t' -+ +' t t t t t t t t t t t t t t t 8 t t 5 t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t 8 5 t t t q t : t t t t t t t t q 2 u w ( ..( y t t t t t t t t' -+ +' t : t t t t t j j t t t t t t t t t t t t t t t t t t 5 T q t t t t t t t ' -+ +'8 5 t t t t t : t t t t 8 t 8 5 8 5 8 u q 5 t t q 5 t t 5 t t t t t t t t t' -+ +' t t u x ^ j i i q m t t t p l u t t t t 8 5 t t t t t t t t t t t t t t t ' -+ +'t t t t t t t t t t t t t t t t t t t t t 8 5 u t t t : t t t t t t t t t Q' -+ +' Q Q v t t t t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t t q v _ ! t ' -+ +'q q q q 2 4.t t t t t t t t 5 q t t 8 p i t t t t t t t t t t t t t t u p u' -+ +' u t 8 5 8 q t t t t 5 8 t t p p t t t t 5 8 u ~ ) t t t t 8 t t 8 t t t t ' -+ +'t t t t t t t t t 5 t t q ^ -...z q 5 t t t t t t t t t t 5 t q y p a t t t' -+ +' t t t t t t t t t u t t t 5 8 t t t 5 t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoX' -+ +'oXoXoXoXoX>.t t t t t t t t t 5 t t t t 8 t t t t t t t : t t t t 5 8 t t t' -+ +' t t t 8 t t 5 8 t t 5 8 t t t t u p ) R ~ Q Q t t t t 8 5 t t t t t t 5 8 ' -+ +': H X.,.,.<.,.,.X.G : t t q t t q 8 5 2 q q t t t q q t : t t t t t t t t :' -+ +' t t t t t t t 8 t t t t t t t 8 5 t t t 8 5 t t t e e e q t t t t t t t t ' -+ ,'t t t t t t t t t t t t t 8 5 t t t t u t t t t 8 t t t t t 8 t t 8 5 t t t' -+ +' t t t Q t t t t t t 8 5 8 t t t t t q 5 q q q 5 8 5 t t 8 5 t t 8 5 2 q 8 ' -+ +'t t t t t t 5 8 t t t t t t t t p p a 2 4.q 5 t t t u u t t t t t t : t t t' -+ +' t t t t t t t t t 8 t t 5 8 t t t t t t t t t t t t 5 t t t t t t t t p p ' -+ +'t t t t t 8 5 t t t t t t t t t t t t t t : u 5 8 5 t 2 q t t t t t t t t t' -+ +' 5 q 8 t t 8 t p %XkX%X) 5 t t t t t t t t t t 5 t t t t t t t t t t t t t ' -+ +'t t t t t t t t t q x R P a t 2 q q t t t t t t t t p H H d t 8 t 8 t u ^ t' -+ +' q t t t t t t t t t t : v &.1.~ t t t t t t t t t X.#X#X( a 5 t t t t t t ' -+ +'t 5 8 t t t t t t q t t t t t 8 t t 8 t t t t t t t t t t t t t 5 8 >.oXoXo' -+ +'XoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t : t 5 t p x p t t t 5 t t t t ' -+ +'t t t t t t t t t t t t t t t t 5 t t t t t t 8 5 t t u v v t p h t a t t 8' -+ +' 5 t t t t 5 8 t t t q q 2 z o.,.<.,.,.,...z q u v q q t 5 8 t q 5 q t t t ' -+ +'q 2 t t t t t t t t t t t t t t t t t t 5 t 8 t t 8 t t t t t t t t t t 8 e' -+ +' e e e e t t t t t t t t t t t t t : t t q p g i q 5 8 t t t q 2 t t t t 5 ' -+ +'t t t t t 5 t t t t t t t t t t Q : t t t t t t t t t t t t t : t 2 q 8 q q' -+ +' 5 t t t t t t t t q q t t t t t t t t t t t t t 8 t t t t t u u N t q t t ' -+ +'5 q t t t t t t t t t t t t t t t t t t t t 5 8 t t t t t u g t t t t t 8 t' -+ +' t 8 5 t t t 8 5 t t l L g t 5 8 t t t t t t t t t 8 t t t 8 t Q G T v 8 5 ' -+ +'8 8 u t t t t t t t t t t q q 5 t u 5 t ] kXLXkX_ q t 2 q t t t t t t t 8 t' -+ +' t t t t t t t 8 q t 5 t t t t t t 8 5 t t 2 x I ` H d u 8 t p j u t t t t ' -+ +'t d ^ ^ d t t t 5 t 2 T t t t t t t t t t t t t t '' *XzXXXa t t t t t t t ' -+ +'t ( #X/.~ t t t t 5 t t t t t t t t t t t q 5 t t t t t t t t 5 t t t t t t' -+ +' t t t t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t ' -+ +'t u T ~ l 5 t 8 t t t t t t t t t t 8 t t t t t t t t t t t 8 t t t t t t q' -+ +' T V V q t t t t 8 t t t t t t t 8 t t t t t t t q 4.8.( X.,.,.,.X.( H t 5 ' -+ +'v t 2 t t 5 t 5 8 q 2 t q q q t t t t t t t t t t t t t t t t 5 t t t t t t' -+ +' 5 t t t t 8 t t t t t 5 e e e e e t t t t t t t t t t t t t t t t 8 g g u ' -+ +'5 q t t t t q 5 t t t t t t 8 5 t t t t t t t t : t t t t t t t t t t t t 8' -+ +' t t t t t t t t t t 5 q 2 q t t t t t t t t t 8 5 t t t t t t t t 8 t t t ' -+ +'5 t t t t 5 t 2 q t t t t t t t t t t t t t t t t 5 8 t t 5 8 t t t t t 5 t' -+ +' t t t x +.+.x a t t t 5 t t t 8 t t t v q q t g c p t t t t t t u 2 t 8 5 ' -+ +'t 5 t t t 5 5 8 8 5 t t 8 5 t t t t t t q q t t t t 2 q 5 u g y t ` kXJXfXT' -+ +' q 2 q N 8 t t t t t t t t t t t t t t t t 5 q q t t t t t t 8 5 t t t u j ' -+ +'^ ( v t t t j c p t t t t t t z d a t t t t t t t t q t t t t t t t t t t t' -+ +' ` OX*X.Xx t t t t t 8 t t d ( ~ a t t t t 8 t t t t 5 t t t t t t 5 8 t t ' -+ +'t t t t t 8 t t t t t t t t t t 8 t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -+ +'XoXoXoXoXoX>.t t t t t t t t l v p u t t t 5 t t t t 5 t t t t t t 5 t t t ' -+ +'t t t t t t t t t t t v ^ q q 5 q t t t t 8 t t t t t t t 5 t t t t t 4.t q' -+ +' 5 : d ( o.X.o.( f t t t t ^ 8 8 t t t q q q q q 2 q 5 t t t t t t t t t t ' -+ +'t t t t t t 8 t t t t t t t t 5 8 t 5 t t t t t t e e e e e t t t t t t t t' -+ +' t t t t t t t t u t t t q t t t t t t i i t t t 8 t t t t t t 8 t t 5 8 t ' -+ +'t t t t t t t t t t t t t t 5 t t 8 5 t t t t t t q q t t t t t t t t 5 q 8' -+ +' 5 t 8 5 t t t t 5 t t t t t t t t t t t t t t t t t t t t t t t t t t t t ' -+ +'t t t t t t t 8 t t t q t t t t P +.#.P t t t t t t t t t t t t ^ 2 q t t t' -+ +' t t t t t t t 8 q t t t t t t t t t 8 5 8 q t 5 t 8 t Q Q Q t t t 2 t t 8 ' -+ +'5 q t t p j p l T 1.|.` t q u 4.2 5 t t t 8 t t t t t t t t t t t t t q 2 t' -+ +' t t t t t t t t t t t 5 y b y q 5 t i p t t t t t t t t t t t t t t t t t ' -+ +'8 5 t t t t t t t t t t t t ] <.] l t t t t t 5 t u q 5 5 t t t t t t t t t' -+ +' t 8 t t t t t t 8 5 t t t t 5 t t t t 5 t t t t t t t t t t t 5 t t >.oXoX' -+ +'oXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX<.5 q 2 q t q 8 q t i q 5 t t t 8 t t t' -+ +' t q q q q t t t 8 t t 8 5 t t 5 8 u 5 t t t t t t t q 8 5 t 8 5 t t t t t ' -+ +'t t t t t t t 8 t 4.4.t t t t t J ( G ( H t t t q q v t t t t t q 2 q 5 t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t 8 u q ' -+ +'t e e r 5 t t t t t t t t t t t t t t t t 2 q t t t t t t t t i l p t t t 5' -+ +' t t 5 8 t t 5 t 8 t t t t t t t t t t t t t t t t t 5 t t t t t t t t t t ' -+ +'u 8 8 t t t t t t t t t t 5 t t t t q q q 8 t t t t t t t t t t t 4.t t t t' -+ +' t q t t t t t t t t 2 u t t t t t t 5 t 8 t t t t t t t a L P a 8 a u P g ' -+ +'t 8 8 t 5 8 t v t t t t t t t t t t t t t t t t 8 5 t t t t t t t t t t t q' -+ +' t q t 5 q G T G 8 t t t t q 2 t t a u v ^ p u t t 5 q t t t t t t 5 t 8 5 ' -+ +'t t t t t t t t t t : p u 2 t t t 5 t t t t t t 5 t t t 5 q t t e e e e r 5' -+ +' q 2 5 8 5 t t t q q t t t t t t t t t t t t t t t t t p p q t q 2 q t t t ' -+ +'t t t t t t t t t 5 q t t t 8 5 t u 2 q t t t t t t t t t t t t 8 t t 5 t t' -+ +' t t t t t t 8 t 8 >.oXoXoXoXoXoXoXoX,.",'#10'"oXoXoXoXoXoXoX>.q t q q t q ' -+ +'2 5 t t 5 q 5 8 t t 5 t t t q 2 q 5 5 8 t t t t t t t t t t v v t t t 8 5 t' -+ ,' t 5 5 8 t t t t t t t t t t t t t t 4.4.t t t t t t t t 5 q q 5 t q t t 5 ' -+ +'2 u t t t t t q 5 q q t t t t t t t t t t t t t t t t t t t t t t 8 5 t t t' -+ +' t t 8 t t t t t t q 2 5 m t t m t t t t : t t t t t t t t t t t t t t t t ' -+ +'t t : t t t t p p t t t t t t t t t t t 2 u t t t t t t t Q t t t t t t 8 t' -+ +' t 8 t t t t t t t t t q 2 t 5 t 8 t 8 t t t 8 t t 8 t t t t 2 q q 5 t 8 t ' -+ +'t t t q t t t t 4.t t t t t 5 t t t t t t t t q 8 t t 5 8 8 t t t 5 t t q t' -+ +' t 2 u t t u t t q ) `._ u q 2 t 8 t t ^ t t t t t t t t t 5 8 t t t t t t ' -+ +'t t t t t t t t t t t t 5 t l b u q 5 8 u v v t t t q q t 8 t t l l q 2 t t' -+ +' 2 4.t t t t t t t t t t t t t t t t t t t t l ^ c q t t t 8 t t t t t t t ' -+ +'t t t t q e e e e e e r e r q 8 q 8 t q t t 2 t t 5 8 t t t t t t t t t t t' -+ +' t 5 8 2 q 5 q q q t t t t t t t t t t t p p y t t t t t t 8 t t t 8 t t t ' -+ +'5 8 t t t 8 t t t t 8 t t t t t 5 8 t t t 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -+ +'XoXoXoXoXoX>.t t t t t t t t t t 8 t t t t t 8 t t t 8 5 2 q t t 5 8 t t t ' -+ +'t t q v ^ t t t t t t t t t t t t t t t t t 8 t t t t t t 8 5 t t t t t t t' -+ +' t t t q q 5 8 q q q q q t t t t t 5 8 t : t t t t t t t t t t t t t t : t ' -+ +'t t t t t t t t 8 5 t t 8 t t t t t t t t t t t t g l y t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t u t t t t t t t t t t t t t q t t t t ' -+ +'t t t t Q t t t t 8 t 5 t t t t t t t t t t t t t t t 8 t 5 t t t 8 t 5 t t' -+ +' t t t t t q 5 t t t t 5 t 8 q 2 q t t t t t t t t t t t t t t t t t t t t ' -+ +'5 8 t t t t 5 8 t t t u l t q q t t t t t u +.].+.u t t 8 5 t t q 2 t t t t' -+ +' t t t t t t t 5 8 t t 5 t t 8 t 8 5 t 8 t t t 8 t a v v i 5 8 t t t u q 5 ' -+ +'t q 2 q 5 t t 5 t t t t t N t t t t t t t t 8 5 t t 2 q t t t t t t d J ~ c' -+ +' t q t t t t t t q t t t t u t q e r r r e e e e e e e t 5 t q 5 q ^ 8 t t ' -+ +'t t t t t t t t t t t 5 t t t t t t q t t 5 u g u t t t t t t t t d b y t t' -+ +' t q t t t t 8 t 5 t 8 t t t t t t 5 t t t t t t 5 8 t t t t 5 8 t t >.oXoX' -+ +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t t t t t t t t t t t t t t t' -+ +' 8 5 q q q t t t t t t t t t q q 2 t t t t t t t t t t t 8 5 8 t t t 5 t t ' -+ +'8 5 4.4.t t t t t t t t t t t t q 2 q 5 2 q 5 q 2 q t t t t t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t t 5 t 5 t 8 t 5 8 t t t t u ' -+ +'v R j m t t t t t t t t t t t t t t t t t t t t t t t t t t t t 5 t t t t t' -+ +' 8 t t t t t t t t t t t t t t t Q t t q 2 u t t t t t t t 8 5 t t t t t t ' -+ +'t t 5 t t t 5 t t t t t t t t 8 5 t 5 u p a u t 8 t 5 5 q q t t t t t t t t' -+ +' t t t t t t t t t t t t t t t t t t t t t t t ] 1.! 5 q t t e e e 8 P ) c ' -+ +'t t t 5 q t q q q t t t t t t t t t t t 8 t t t t t 8 t t 5 8 t 5 t t t 5 t' -+ +' u p i t q 5 8 t t 2 q q t 5 T T q t t q t q t t t 2 t t t t t 8 t t t t t ' -+ +'8 u t t t t t t u z ~ z u 5 5 8 t t t t q 5 t t t j c p q e e W $.W e e e e' -+ +' e e t t t q q 2 v t t t t t t u t t t t t u u u t t t t t t t t t j Q V p ' -+ +'u t t t t t t q y d t t t t 2 u 8 t t 5 t t t 5 t t t t t t t t t t t t t 8' -+ +' 5 q t t t t t t t <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.8 5 8 u 2 t ' -+ +'t t t t t t t t t t t t t t t t t t t t t t v v t t t t t t t t 5 t t t t 8' -+ +' t 8 5 t t t q t t t t 4.t t t t t 8 t 8 5 t t t t t t 8 t t t 5 8 t t t t ' -+ +'t 5 t t t t t t t t t u 2 q q 5 8 t t t q 2 q t t t t t t t : t t t t t t t' -+ +' t t t v c t t t t t t t g l i u t t t t t t t t t t t t t q q 5 8 5 8 t t ' -+ +'t t t t t t t t t t t : t t t t t 5 8 q t t t t q 2 t t t Q t : t t t t t t' -+ +' q 2 q 5 q 2 t t t 5 t t t t t 8 u 2 t 5 8 t t t t t t t t t m l [ d m 5 t ' -+ +'t t t t t m 5 t 4.u 2 t t t u p u t t t t t t t t t t 5 t t t t 8 5 t d 1.+' -+ +'X] q q t e e e e E v j t t t t t t t t t 2 t 5 q 8 5 t t t t t t t t t t t ' -+ +'t t t t t q t q 2 q t t t t t t t t 5 t q 2 u t t t t t t v v t t t t t t t' -+ +' t t u 8 t t t t t t t t t t t t t t t t t p d a t t t : t t t t 5 q q q u ' -+ +'v @.@.E r r $. X[.r r e e e e e q t m : ^ T 2 t t t 2 i g i t t t t g l u 8' -+ +' t t t 5 8 t 5 P +.+.v p u 2 q t t t t t t t t u q t t t t t t t t 5 q 8 5 ' -+ +'8 t t t 5 t t t t t t t t t t q 5 q 2 q t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXo' -+ +'XoXoXoXoXoX>.t t t t q t t t t t t t 5 t t t t t t t t t t t t t t v u 5 t ' -+ +'t t t t t t t 8 t t t t 5 t t t t u 8 q 2 t t 4.q t t t t t 5 t t t t u 8 t' -+ +' t t 5 t t t t t t t t t t 8 v t t t t t t 2 u p p q 5 t t t t t t q q t t ' -+ +'t t t t t q t t t t t t t t t ! Q.Q.^ t t t t t t t q q 2 t t t t t t t t t' -+ +' t t t t q 2 q 5 t t t t 8 t t t t t t t t t t q t 8 5 t t 8 5 5 t t t t q ' -+ +'q t t t t t t t t t t t t t t q q q q t t t 8 t t 5 8 t t t q t t t t t t t' -+ +' 8 t t t t 5 2.|._ t q t t t t q 5 t v R 5.q q 5 8 t g v g t 5 t t t t t 5 ' -+ +'t 8 t t 5 8 t t t t t ! ] T t q q e e e e E T j t t t t t t t t q q t t 8 5' -+ +' t 8 t t t t t t t t 8 5 t t t t t 5 t q q 5 t t t t t t t t q q i l p t t ' -+ +'t t t t 5 a t t t t t 4.t t q 2 t t 5 8 t 8 t t 5 t t t t t t t t t t t t t' -+ +' t t t t t t t q 2 5 q t #.%X%X XW e W $.W r r e e e e e m t t t v q q t t ' -+ +'8 u i g p t t t q p p u t t t t t t u u P #.+.x 8 5 2 q t t t t t t t t 2 q' -+ ,' t t t t t t t t t t 5 8 t t t t 8 t t t 8 5 t t q t q q 8 5 q q t t >.oXoX' -+ +'oXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t 8 5 t t t t t 5 8 q 5 8 t t t 8 5 u' -+ +' x g q v t t t t t t t t t 8 t t 8 t t t t t t t t t t t 5 2 2 N 4.4.t 5 8 ' -+ +'8 t t 8 t t 8 t t t 2 q t t t t t t t t q 2 t t t t a v t t 5 t t t q i x d' -+ +' u t t t 5 t t q 5 q t t q q t : t 5 u t t t t t t t t '' %X+X_ t t t t t q' -+ +' 5 5 q t t t 5 t t t t t t t t 5 8 t t q q t t 8 5 5 t t t t t t t t t q 5 ' -+ +'t t t t t t q q t t q t q 5 q t t t t t t t t t t t t t 8 5 q t t t t t t t' -+ +' t t t t t t t t t t t t t 5 q q t t p $.|.] t t t t t t t t l #.''.` 5 5 q' -+ +' t t g l p q 8 t t t t t 8 t t t 8 t t t t t 8 u t t t t t q r e e e e i a ' -+ +'t t t t 8 t u v t t t t t t t t t t t t t t 5 t t t t 8 t t t t t t t q t t' -+ +' q t t t t t 8 5 y v l 5 t t t t q 8 q 5 t t t v 4.t t t t t t t t t t t t ' -+ +'8 8 5 t t t t t t t t : t t t t t t t t t t t 8 5 k |.CXFXgX$.e e r e r r e' -+ +' e e e e t t t 5 8 q 5 t t t t q t t t t t q t t t t t t t t p x g u P x t ' -+ +'t t q q t t t t t t t t 5 8 t t t t t t t t t t t t t t t t 8 t t t t t t t' -+ +' 2 q 5 q t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t t ' -+ +'t t t 8 5 8 8 t t t t 5 q x <.''.` a t t t t t t t t t 5 t t 5 5 8 t t 5 8 ' -+ +'t t 5 8 t 8 N 2 2 u t t t t 5 t t 5 t t 5 t t t t t t t t t t t t t q q t t' -+ +' 8 5 q t v u t t t t t q p u 5 t t t 8 t q q q 2 t t t q t t t u j v l u t ' -+ +'t t t q T *.%.x t t t t t t t t t 8 5 t 8 t t t t t t t t t t t t q q t t t' -+ +' t t t 8 5 t t t t t t q q t t t t t 8 q 2 t t q q 2 q q q t t t t t t t t ' -+ +'t t t t t 8 5 q t t t t 8 5 t t t t t t t t t t t t t t q q 2 t m R _ c t t' -+ +' t t t t t t v :.:.[ t q t t t t t t 5 t t t t t t t t t t t t t t t t t 2 ' -+ +'q t 8 5 q 2 q e r e ; m m t t t t 5 8 G t t q t t t t t t t t t t t t 8 t t' -+ +' t t 5 t t t t q 5 t t t t q 2 t t t t t t u p p 8 t t t t q q t t t t t u ' -+ +'t v t t t t 5 8 t 5 t t t t t t t t t t t t t t q 5 t t t t t t t t t t t 8' -+ +' w |.kXCX%X$.e e r e r r e e e e e m t t 8 5 8 q t t t t t t t t t t t 8 8 ' -+ +'5 q t t t t u j p q 2 t t t t q t t t t t t t 8 5 8 q t t t t t t t t t t t' -+ +' t t t t t 5 t t t t t t t q q q 2 t t t t t t >.oXoXoXoXoXoXoXoX>.",'#10'"' -+ +'oXoXoXoXoXoXoX>.5 8 t : t t t t : t t 5 t t 5 m q t l O.O.l : t t t t : t t' -+ +' t t : t t 8 t t t : t t : t t t : 4.t q q 2 t : t t : t t 8 8 q q 2 t t : ' -+ +'t t t : t t : 8 5 q : t t t t 5 : ^ t t t t t : t t t : t 5 8 t : 5 : t t :' -+ +' t t 2 t t : u c ! v i t t : t 5 t t t q t 2 q t t t t : 8 5 8 t t t t : t ' -+ +'t : t : t t : t t 2 8 t t t : t t t t : t t : t t 2 t 2 q q : t t q t : t t' -+ +' : t t 2 t t t t t t : t t : t t t 2 q q : 8 5 8 8 8 q 2 t t : t t t : t 2 ' -+ +'q t : 5 : t t : t t t q 5 t : t t : t d ~ Q 4.t t 8 : t q 5 q t t t 8 q 2 t' -+ +' : t t : t t t : 8 5 8 t : t t t t : 8 2 q t 8 t : t t t t t t v t 5 q q 2 ' -+ +'t 8 t 5 : t t : t t t : 8 t 2 q q q : t 8 2 q q : 8 5 8 t t t t q 5 t 8 5 8' -+ +' 2 q : 8 u 2 q t p u 4.: 2 q t : t t v t t 8 t t t t : t t t t 5 8 t t t t ' -+ +'q t t t t t t t t t t : t t ) |.|.$.e e e r e e e r e e e r : t t t t : 8 5' -+ +' 8 : t 5 8 8 2 t t t t 2 q q t t : 5 8 t t 5 8 5 8 t p p u t : t t t t q : ' -+ +'t 5 t q q 2 t t : t t t : t t t 8 : t 8 t t t t t : t t t t t 5 : t t t >.o' -+ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: : : = ; = : : : = : : ; : l = : ' -+ +': : p i : : : : : = : : : : : = : : : : : = ; : : : : N : : : : : ; : : : :' -+ +' : = : : : = ; : : ; : : = : : : : : = : : : : : : ; : q T T t : : : : ; = ' -+ +': : : : : : : : : : : : : : : : : = = : : p g = : : : : : ; : : = : ; ; : :' -+ +' : : : : : : u p t : : : : : : : : : : ; : : = : : : : : : : : : : : : : : ' -+ +': : : : : = : : : : : : : : = : : : l : : ; = = : : : : ; : : : : : : = : =' -+ +' : ; : = : : ; : : : : ; : : : : : : : : : : : : : : : : : : : : t > N : = ' -+ +'= : : : : : : : : = ; : : : : : = : : : = : : : : : = : : : : : ; : = : = :' -+ +' : : : : = ; l : : : ; : = : : : : : : : : : : : = = : : : : : : : : : : : ' -+ +': : : : : : : = : : : : : ; : = : = = : = a p N : ; : : : : : : l l l = : :' -+ +' : : : = : : : : : : : : = : : : : = m : : : : = : : : t p w e w e e e w w ' -+ +'w w e w : = : l : = : : = = : : : ; : : = : : = : : : ; : : : : : : ; : : :' -+ +' : t i t : : : : : : = : : : : ; : : ; = = : : : : : : = = : = : : = ; = : ' -+ +': : : = ; ; : : : 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X' -+ +' X X X X X X t t t X X X X X X % X X X # * X X X X X X X X X X # * X X X X ' -+ +'X X . X X X X X X X X X X X X X X X * X X X X X X X X X X X * X X X X X X X' -+ +' X X : j j : % X X X X X * X X X # X X X X X X X X X X X * # X X * - : - X ' -+ +'X X X X X X X X X X X X X X X X X X # : q : % X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X ' -+ +'X X X X X X X X X X X X * X X X X X X X X X X X % % X X X X X X X X X X X X' -+ +' X X X X X X X X X X * * X X X X X X X X X X % % X X X X X X * X X X # X X ' -+ +'X X X X X X X X X * * X X % X X X X X X X # X X X X X # X X X X X X X X X *' -+ +' X * # : t : # X X X X X X X X X X X X X X X X X X % X X X X X X * % = * X ' -+ ,'* * X X X X X X X X X X X X * X X # X X * * = - X X X X y d 5 % X X X X X X' -+ +' * X X X & & & & & & & & & & & & X X t X * X X X * X X X X X X X X X * X X ' -+ +'X X X # X X X X X X X X X X * - X X X X X X X X X X X a y = * X X X X # X X' -+ +' X * X X X X X * X X X X X X X X X # X X X ; q >.oXoXoXoXoXoXoXoX>.",'#10'"' -+ +'oXoXoXoXoXoXoX>.: X X X X X X X X m t : X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X * t q = % % X X X X X X & & & X X X X X X X X' -+ +' X X X X X X X * = - % X X X X X X X X X X X X X X X X X X X X * : % % X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -+ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X # X X t L ) R q X X X X X X X * X X X X X X X X X X' -+ +' X X X X X * X X < # X X X % X X X X X X X X X X X X : X X % X X X = = * % ' -+ +'X X = z J d @ % X X X X X X X X X % % & & & & & & & & & X X X t X X X X X #' -+ +' X X X X X X X * X X # X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X = f H y X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : q >.o' -+ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X & & & X X X < X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 2 % % X X X X ' -+ +'X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X * X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X X < X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X % j O.:._ j X X X X X ' -+ +'X * - % * X X * = * X % X X X X X % = = % < X X % % % X X X X X X X X X X X' -+ +' X X : : 5 X X X # * X X X X * d z y * X X X X X X X X X X % % X X & & & & ' -+ +'- X X X X X X X X X X X X X X X X X X X X = ; % # X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X = d f 5 # X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X * X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X < X X X X X ' -+ +'X X X X X X X X @ % % X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X * : % % X X X X X & & & & & X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X < X X X X X X X X X * # X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X % j _ #._ p X X X X X % = - * X X * 8 : = X - = X X X X X - = * X X X X ' -+ +'; : = X X X X X X X X X X X X * X X : : X X X X X X X X @ 5 ; * % X X X X X' -+ +' X X X X X @ X X X X X X X X X X X X X X X X X X X X X X X X X X X ; : = * ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X = = * # X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' -+ +'oXoXoXoXoXoXoX>.: X : : : X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' & & < < & X X X X X X X X X X X X X X * t u = X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X : X X X X X X X & & & & & X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X * ; % * X X X X X X X % % X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X % - X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ; ; % X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X ' -+ +'X X X X X X X X X X X X X X X ; x R l ; X X X X X - ; = X * X X - : : * : q' -+ +' = X X X X X X X X X X X - - % # X X X X X X X X X X X X X X * X X X X X X ' -+ +'X X X % X @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X * X X X # X X * = % X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : >.o' -+ +'XoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X 8 X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X t ! ! j X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : X X X X X ' -+ +'X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X = : = # # X X X X X - : % # X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ; ; = X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ ,'X X X X * % q : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X * : * X X X X X X X X X X X X X X X X X X X X X # X - X X X X X X X ' -+ +'- 8 % X X X % # y z d : t - X X X X X < X X X X X X * % * X X X X X X X X X' -+ +' X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X # u c x q X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X * X X X X X X X # X = % X X X X X X X X X X X * X X X X X X X ' -+ +'X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X' -+ +' X X X X X X % X X X = i y m X X X X X X X X X X < X & & & X X X X X X X X ' -+ +'X X X X X X X p [ ] c X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * * X' -+ +' X X X X X X ; : = X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X * ; : - * X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X < X X X X X X X X * - = X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X * * X % X X * * f ^ f = * X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X 2 q m X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X 8 X X X X X X X X X X q ! @.O.L - X X X X X ' -+ +'X X X X X X X X X X X X X X X X X * - * # X X X X X X # 8 K x i X X X X X X' -+ +' X X X ; = * X X X X X X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"' -+ +'oXoXoXoXoXoXoX>.: X X X X X X X X X X X X @ j [ @.$._ c m X X X X < < X X X' -+ +' X X X X X X X X X X X X X X X X X X X m l c i # X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X * X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X * - * X X X X X X X X X X X X X X X X' -+ +' X X X X X t X X X X X X X X X X X X X X * * # X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X % t g x d 5 X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -+ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X' -+ +' X h '' ,.<.! : X X X X X X X X X X X X X X X X X X X X X X - ; = X X X X X' -+ +' X X % x +.+.P - X X X X X X X * 2 : = X X X X X X X X X X X X X X X : : >.' -+ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX>.: * X X X X X X X X % % % l $.<.,' -+ +'.<.Q.:.^ m X X X < X X X X X & & & X X X X X X X X X & & & X X X X X * X X ' -+ +'X X X X X * > * # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X % = : : X X X X X X X X X X X X X X X * ; : ' -+ +'% X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X' -+ +' X X X X X X X X X X X X X X X X X % 5 X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = ' -+ +': * X X X X X X X X X X X X X X X X # = - * X X X X X X X X X X X X X X X X' -+ +' X X X % X ; c ) T u = X X X X X X < X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X % % % X % # X X X X X X X X % X % @ X X X X X X X X' -+ +' X X : X X X X X X X X X X X t [ ;.@.T - X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X = - X X X # # # # * x +.+.P - X X X X X X X X > = X X X X X X X' -+ +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoXXX",'#10'"oXoXoXoXoXoXoX&.: X X X ' -+ +'X X X X X X X % i _ ,.,.,.,.,.,.:.Z < X X X X X X X & & & & & X X X X X X X' -+ +' & & & & & X X X X X X X X X X X X * u : @ X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : t : % X X X X X' -+ +' X X X X X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # : X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X * : : > X X X X X X X X X X X X X X X X * : t = X X X ' -+ +'X X X X X X X X X X X X X X X X % % : L O.! x : * X X X X < X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X ; p i & & & 5 m 5 X X X ' -+ +'X % % % % @ % X X X X X X X * : X X X X X X X X X * * % i L c q X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X * + # # # u P P q X X X X X ' -+ +'X X X X # * - X X X X X X X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX,.",'#10 -+ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X l :.,.,.,.,.,.,.,.^ * X X X X X X ' -+ +'X & & & & & X X X X o X X & & & & & X X X X X X X X X X X X = : : X X X X X' -+ +' X X X X X X X X X X X X X X X X X * % % 2 X X X X X X X X X X X X X X X X ' -+ +'X X * - 8 t - * X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X' -+ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X = = % X X' -+ +' X X X X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X % ; = * X X X X X X X X X X X' -+ +' X X X X X * : 5 = # X X X X X X X X X X X X X X X X X X X X * p x j u t * ' -+ +'X X X X = * % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X *' -+ +' c _ W c & & & % X m X X X @ = m m : - X - = % X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & &' -+ +' & & * * m ; * X X X X X X X X X # = q 5 = * X X X X X X X X X X X X : t >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X c <.,.,.<' -+ +'.,.<.,.,.[ m % X X X X X X & & & & & X X X X X X X & & & & & X X X X X X X ' -+ +'X X X X X X * % * # X X X X X X X X X X X X X X X X X X X X X % % 8 X X X X' -+ +' X * X X X X X X X X X X X X % : h 8 X X X X X X X X X X X X X X X X X X # ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X u Q v t X X X X X X X X X X X X X X X X X X X X X X X M @ X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ ' -+ +'X X X * : X X X X X X X X X X X X X X X * # X X X X X X X X X X X X X X X X' -+ +' X X X X * ; - % % = * X X X X : p i % X X X X = d d 5 X X X X X X X X X X ' -+ +'X X X X X X X X X X X X = R :.$.R w & & & * X X X X = 5 m 5 : * * = : * X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X & & & & & & & X % @ X X X X X X X X X X X - q t = @ X X X' -+ +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X l :.<.,.,.<.,.<.,.R m % X X X X X X X & & & X X X X X X X X' -+ +' X & & & X X X X X X X X X X X X X X - ; * # X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X : X X * ; ; % X X X X X X X X X X X X X - 8 ; X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X x ] ` i X X X X X X X X X X X X X X ' -+ +'X X X X X X X d o.=.X./ = X X X X X X X * * X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X = & & & X X X X X < q b j = X X X * y J' -+ +' J d X X X X X X X X X X X X X X X X X X X X X X X l [ _ R w & & & X X X X ' -+ +'X 5 y 5 = = X X * - X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X & & & & & & & & & X X X X X X X X ' -+ +'X X X X X # * = * X X X X X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X i @.<.,.,.<.,.<.:.c % % X X X X & ' -+ +'& & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - % * X X X' -+ +' X X X X X X X * X X X X X X X X X X X * : X X * : t * X X X X X X X X X X ' -+ +'X X X X * & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X p T Q t % X' -+ +' X X X X X X X X X X X X X X X X X X d -.,.,.,.>.o.* X X X X X * : : * X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X : % X % = * X X X X' -+ +' X X * * * X X X X X X X X X X X X X X X X X X X X X X X X * & 8 8 w & X X ' -+ +'X X X - q q X X X X X 5 G J y X X X X X X X X X X X X X X X X X X X X X X X' -+ +' * e e w w & & & X X X X X % % m m X X X X X X X X : X % ; : X X X X X X X ' -+ +'X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X & & & & & &' -+ +' & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : 5 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % % c :.<.:' -+ +'.<.,.Q.R t X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X * * * # X X X X X X X X X X X X =' -+ +' - X X X X X X X X X X X X X X X & ; w & & X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t j' -+ +' t X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X 5 : X X X X X X X X X X X X X X X X X X X X X ( ,.,.,.>.,.,' -+ +'.z X X X X X * : : * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X t X X y z f = X X X X X % : = X X X X X X X X X X X X X X X X X X X X' -+ +' X = g v a & w w & & % X X X X X X X X X X X * * 5 u > X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X & & & & m & & X X X X X X % X X X X X X X X X X t' -+ +' X X - g j q % # X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X ' -+ +'X X X X X X X & & & & & w w & & & & X X X X X X X X X X X X X @ X X X X X X' -+ +' X X X o X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X % ; c _ :.:.@.T i * X X X X X & & & & & X X X X X X X X X X' -+ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & q w w & X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X = p T t X X X X X X X X X X X X X X X X X : X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' -+ +'X X X X X = X.,.,.,.,.,.<.J X X X X X X * X X X X X X X X X X X : - X X X X' -+ +' X X X X X X X X X X X X X X X X X * d J z : X X X X X = = * X X X X X X X ' -+ +'X X X X X X X X X X * # X X p ~ '' L w ; & & & % X < < X X X X X X X * ; 8 ' -+ +'% X X X X X X X X X X X X X X X X X X X X X X X X & & & & & & & % X X X X X' -+ +' X % % X X X X X X : X t t X X ; g x : X X X X X $ $ $ $ $ $ $ $ 9 0 $ $ $ ' -+ +'$ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X & & & & m k j & & & & X X X X X X X' -+ +' X X X * w k e @ X X X X X X X X X X X X X X = 8 >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.- X X X X X X X X X X X % X % m p j i * X X X X X X X & & ' -+ +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X * # X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X & q q w & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X * * X X X X X X X X t i ; X X X X X X X X X X X ' -+ +'X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X X X % X o X X' -+ +' X X X X X X X X X X X X X X X X X * X.<.,.>.,.,.,.H X X X X X X X X X X X ' -+ +'X X X X X X t c j = X X X X X X X X X X X X X X X X X X X X X 5 z d * X X X' -+ +' X X # X X X X X X X X X X X X X X X X X X q x g % # u ^ ] v = & & & % # X ' -+ +'< X X X X X X X X X - ; * * X X X X X X X X X X X X X X X X X X X X X X X &' -+ +' & & & & @ @ X X X X X X X X X X X X X X X X t t : X X X : : * X X X X $ $ ' -+ +'$ $ $ $ $ $ 7 K P 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X & & & & & k' -+ +' j & & e w X X X X X X X X X X w [ @.W w X X X X X X X X X X X X X X : : <.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X % X % X % X' -+ +' X X X X X X X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X' -+ +' X X X X X X X X X X X X X X X % % & & & X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X - : * # X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X # 5 X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X H ,.,.,.,.,.-' -+ +'.y X X X X X X X X X X X X X X X X X d ^ v : X X X X X X X % X X X X X X X ' -+ +'X X X X X X X = @ # X X X X X X X X X X X X X X X X X X X X X X X = x _ R u' -+ +' * X a l 5 X X X X X * X X X X X X X X X X X * % * X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X & & & & & @ % % X X X X X X X X X X X X X X X t t :' -+ +' : X X * % * X X X X $ $ $ $ $ $ $ $ 7 x L 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ' -+ +'X X X X X X & & & & & & w & & i T k = X X X X X X X X X e ] &.] c X X X X X' -+ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXOXoXoXoX>.= # X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X * u = X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X ; : * X X % = - X X X X X X X X X X X X X X X X X X X X X # : * X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'* @ % X X X = ( ,.,.,.-.V X X X X X X X X X X X * - X X X X X : j u % X X X' -+ +' X X X X X * * % X X X X X X % = % X X X X X X X X X X X X X * X X X X X X ' -+ +'X X X X X X X X - L _ ) u X X * X X X X X X X < X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X ' -+ +'X X X X X X X X X X t X X X : * X X X X X X $ $ $ $ $ $ $ $ $ $ 9 9 7 $ $ $' -+ +' $ $ $ $ $ $ $ $ $ $ $ $ $ * % - X & & & & & & & & & & w T j = X X X X X X ' -+ +'X X X q A [ R w @ % X X X X X X X X X X X X : q <.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.: * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X * * * 5 X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X % * X X X * : : * X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X t l i % X X X X = d H H y X X X X X X X X X X X % = ' -+ +'m - X X X X X X X X X X X X X X X = 5 ; % % X X X X X y t : X X X X X X X X' -+ +' X X X X - t = X X X X X X X X X X X X X % t x g = X X X X X X X X X X < X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X & : & X X X X X X X X X X $ $ $ ' -+ +'$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ % h j u k E j & & & & &' -+ ,' & & & m ; X X X X X X X X X X X w k w % X * X X X X X X X X X X X X ; 2 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * % X t X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = = X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X * j ! b : X X X X X X X X X X' -+ +' X X X X X X X X X X X * = % X X X X X X X X X X X X X X X - m 5 % X X X X ' -+ +'X X i i m * X X X X X X X X X X = l ^ p # X X X X X X X : e y * X % % X X #' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' -+ +' X X X X X : : X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ 0 h h $ $ $ $ ' -+ +'$ : g I x ! @.T & & & & & & & # X X X X X X X X X X X < X & & & < X X X X X' -+ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X # * - X m X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X % X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q ' -+ +'j i % X X X X X X X X X X X X X X X X X X X X X % # X X X X X X X X X X X X' -+ +' X X X X X y G f m % X X X t % = - X X X X X X X X X X X : v ~ l * X X X X ' -+ +'X X X j _ R p % X % * # X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X & & & & & X X X X X X * t : $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $' -+ +' 9 $ $ $ 7 K O.I 9 $ $ $ $ X 8 u 8 c R k & X X X X X X # X X X X X X X X X ' -+ +'X < < & & & & & < X X X X X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X % X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X = G o.J f & & & X : * X X % X X X X X X X' -+ +' X X X X t j q X X X X X X X % c _ _ j % % - : - X X X X X X X X X < X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X 5 $ $ $ ' -+ +'$ 7 $ $ $ $ $ $ $ $ $ $ $ 7 $ $ $ $ h I K 7 $ $ 7 7 # X X X ; m % X X X X X' -+ +' * = X X X X X X X X X X X X * & & & & & % * o X X X X X X X X X X X : : >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X - = * X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X * : X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : % % X X X' -+ +' X X X X X X X X X X X X X X X X X * = - X X X X X X X X X * z ( X._ k & & ' -+ +'& X X X X X X X X X X X X X X X X * % X X X X X X X X X q c k m % = : ; * X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' -+ +' X X X X X X X X # $ $ $ 7 9 7 $ $ $ $ $ $ $ $ & ; & $ $ $ $ 7 0 7 $ $ $ 7 ' -+ +'Y K 9 X X X X % % X X X = g j : X X X X X X X X X X X # & & & & & ; - M X X' -+ +' X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X - ; - X X X X X X X X X X X X * - X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X - * X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 5 # X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X = p b t X X X X X X X X X X X X X X X X X X X X X = t = X X X X X' -+ +' X X X X X 5 ( 1.:.[ e & & X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X & @ % @ : : = X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X * X X X X X t X X X X X X * * * X X X X * $ $ $ a y $ $ $ 0 h 0 $ $ & w <' -+ +'.,.,.$ $ $ $ $ $ $ $ $ K Y ) x * X X X X X X X X t v R p X X X X X X X X < ' -+ +'X X # X & & & 8 g u < < X X X X X X X X X X : t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.= X X X X X X X X X X @ % % X X X X X X X X X X X * : : * ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * : = *' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X : * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X # : v ^ p X X X X X X X X X X X X X X X X ' -+ +'X X X X X X = * X X X X X X X X X X X k @.<.] j & & X X X X * * X X X X X X' -+ +' X X X X X X X X X X X X X X = - @ % % % : : % X X X X X X X X < X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X % = : - X X X X m X X X X X * ; t : % X X X X $ $ $ ' -+ +'$ $ t t 7 P ) x $ $ & k ,.,.,.$ $ $ $ $ $ $ $ $ K +.+.k % @ % X X X X X X *' -+ +' i p : X X X X X X X X X X X X X % % * 8 h q * X X X X X X X X X X X : t >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X % ; ; * X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X * 8 u ; * X X X X X X X X X X 5 X' -+ +' X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X % 2 X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X u p : % X X X' -+ +' X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X * u ! ] R e & ' -+ +'X X X X * = : = t t @ % X X X X X X X X X X X X X @ u l p * X X X # * X X X' -+ +' X X X X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X % - : - X X X t : X X X X X' -+ +' * t c k : X X X X $ $ $ $ $ $ $ 7 h P 0 $ $ & w ,.,.,.$ $ $ $ $ $ $ $ $ 0 ' -+ +'I c 8 > : * X X X X X X X X X % X X X X X X < X X X X X X X X X % : - X X <' -+ +' X X X X X X X X X : 5 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X % @ X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * p x 8 ' -+ +'X X X X X X X X X X X 8 X X % X # X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X % % * X % X X X X X * X % X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X t g t @ @ m X X X X % ; t Q T m @ X X X X X X X X X X X X X ' -+ +'X p ^ l - X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'* - * X X X X X X X X X X X q P L t X X X X $ $ $ $ $ $ $ $ $ 7 $ $ $ $ & &' -+ +' & $ $ $ 7 9 7 $ $ $ $ $ $ * X = = > X X X X X X X X X X X X X X = M < X X ' -+ +'X X X X X X @ X % % % X X < X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X 8 t ; X X X X X X X X X X X : X X ; g x t % X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & & &' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X % = : * X X X X X X X X d z f = % X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X m X X X X * X t Q v 5 X X' -+ +' X X X X X X X X X X X X X : p u X X X X X X X X X X X X @ < X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X % - * X X X X X X X X X X - t u - * X X X $ $ $ ' -+ +'$ $ $ $ $ $ $ : 2 $ $ 7 $ $ $ $ $ u P 0 $ $ $ $ $ $ # % * * X X X X X X X X' -+ +' X X X X X # y R R l * X @ % X X X X X X X % X X X X X X X X X X X X ; : >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X * X * : - * X X X X X X X X * :' -+ +' X g _ _ L ; X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X' -+ ,' X X X X X a J o.( f X X X X X X X X X X X * - X X X X X X X X X X X X X m ' -+ +'X X X X X X # * t t % X X X X X X X X X X X X X X X X X X O O O O O O O O O' -+ +' O O X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X * - - X X X X X X X X X' -+ +' X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ 7 t d 0 w & & $ $ 9 0 0 $ $ $ $ $ ' -+ +'$ % % X X X X X X X X X X X X X X X = A *.:.` i X X = ; X X X X - : : X X X' -+ +' X X < X X X X # * = t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ' -+ +'8 : % * X X X X X X X X X X g _ O.L ; X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X & & & & & X X X X X @ X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X ; : : X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X * X X X X X X * X X X X X X X X y ( !.o.z X X X X X X X X X X % = = % X' -+ +' X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X ' -+ +'X X X O O O O O O O O O O 4 d 3 X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X * X X X X X & & & X X X X X X X X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 9 k q' -+ +' & & & $ $ $ $ $ $ $ $ $ 7 g g - X X X X X X X X X X X X X % : { >.,.] p % ' -+ +'m c l : X X X = t q * X X X X < X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X = % X X X X X X X X X X X # : x P i - = X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X & & & X' -+ +' X X % @ ; & * X X X X X X X X X X X X X X X X X X X X X X X X X X X : t : ' -+ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X * a q X X X X X X X X X X X * 5 H ( ( y X X ' -+ +'X X X X X X X X % @ % X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X O O O O O O O O O , s / o.( B X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X t X X & & & & & X X X X * * # X X X $ $ $ ' -+ +'$ $ $ $ $ $ $ $ $ $ 7 g w & & & $ $ $ $ $ $ $ $ $ K _ ) i X X X X X X X X X' -+ +' X X X X X X b ] 2.! m % u T Q 8 X X X - : ; X X X X X X X X X X X X ; 2 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X * - X = - * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X j T _ R k = X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X * = * X X X X X % : X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X y Q b m X X X X X X' -+ +' X X X X X X 5 d a * X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X % X X X X X X X X X X O O O O O O O O O 4 J' -+ +' -.<.=./ : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X a * X & & & & & X' -+ +' X X X = = # X X X $ $ $ $ $ $ $ $ $ $ $ $ $ 7 i w & & t y $ $ $ $ $ $ $ $ ' -+ +'K ) R i * X X X X X X X X X X X X X X - p j m @ X ; i u * X X X * % % X X X' -+ +' X X X X X X X X X : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X & c 1.:.:._ i X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X t X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X t v l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X X ' -+ +'X X O O O O O O O O O 4 / ,.,.,.( t X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X # : > X X X X X X X X X X X X ' -+ +'X X X p d 5 % & & & & & X X X X * = X X X X $ $ $ $ $ $ $ $ $ $ $ $ $ $ 7 &' -+ +' & & $ a a $ $ $ $ $ $ $ 7 g i = # X X X X X X X X X X X < X X X X X % * = ' -+ +'X X X X X X X * - % X X X X X X X < < X X X : : >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % : * X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X : % # X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ ,' X X X d _ 1.:.[ d % X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X * : : X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X 5 X X X X X X X X X X X X X X' -+ +' X X @ % X X X X X X X X X X O O O O O O O O O O H o.N...V * X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X j ^ x' -+ +' : X X X X X X X X X X X X X X d G d = X & & & X X X X X X # X X X X $ $ $ ' -+ +'$ $ $ 9 9 7 $ $ $ $ $ $ $ $ $ $ $ $ : 5 $ $ $ $ $ $ X X # X X X X X X X X X' -+ +' X X X X X X X X X * = = * X X X X X X * = - X X X X X X X X X X X X : t <.' -+ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX,.: X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X * > X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' 5 % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X ' -+ +'X X X X X X X X X X * a u * % X % q v E k ; % X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X * X % X X X X X X X' -+ +' X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X X X X : X ' -+ +'X X X X X X X X X X X X X 5 f G 5 X X X X X X X X X X O O O O O O 4 4 4 O 4' -+ +' G J Z 2 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X * = ^ *.~ a X X X X X X X X X X X X X X : 5 5 % X X X X X X' -+ +' X X X X X X X X X $ $ $ $ $ 7 h K 9 $ $ 7 7 $ $ $ $ $ $ $ $ $ $ : $ $ $ $ ' -+ +'$ X X X X X X X X X X X X X < X X X X X X X X = * X X X X X X X X % % X X X' -+ +' X X X X X X X X X : : >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX<.: X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X = p j t X X X X X X X X X X X X * 5 v v 5 % X % X X ; % @ X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X % X X X X X X X X X : l l : * X X X X X X X X X' -+ +' X * X % X X X X X X m X X X X X X X X X X X X X * b ( o.H = % % X X X X X ' -+ +'X X O O O O O 4 3 y 5 O O O O O O X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X * b ~ v : X X X X X X X X X X X ' -+ +'X X X X @ @ % X X X X X X X X X X X X X X X $ $ $ $ $ $ u h 9 7 0 Y Y 7 $ $' -+ +' $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X < < X X X X X X X % X X ' -+ +'X X X X X X X * X X X X X X X X X X X X < X = 5 >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXOX>.: X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X q T ! p X X X X X X X X X X X X X : l l' -+ +' m X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X @ % X * X X X X X X X 5 ' -+ +'c b : X * X X X X X X X X - ; * @ X X X X X X m X X X X X X X X X X X X X @' -+ +' z o.X.J 2 % % # X X X X X X O O O O O O 4 4 4 O O O O O O X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X & & & X X X X X X X X X X X X X X = u 8' -+ +' X X X X X X X X X X X X X X X X * X X X X X X X X X X X X X X X X X X $ $ ' -+ +'$ $ $ 7 7 7 0 Y `.Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X < X : 8 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - j c t % X X ' -+ +'X X X X X X X X X % X = = X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * *' -+ +' X X = - * X X X X X X # t t * : 8 = X X X X X X % * ; * X X X X X X X X X ' -+ +'X X X X X X X X X X X X X y H J d * X X X X X X X X X O O O O O O O O O O O' -+ +' O O O O X X X X X X X X X X X X X X X X X X X X X X X X X & & & & & X X X ' -+ +'X X X X X X X X X * X X # X X X X X X X X X X X X X t X X X X X X X X X X X' -+ +' X X X X X # X X X X $ $ $ $ $ $ 7 $ 9 Y Y Y 0 $ $ $ $ $ $ $ $ $ $ $ $ $ : ' -+ +': * X X X X X & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X : 2 <.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.= X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ ,' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X = = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X % X * X X X X X X X X X X X X t t 5 : X X X X t t : t : t t t : X X' -+ +' X X : 8 : : X X X X X # X X X X X * X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X * = ; * X - - * X X X X X X X * X * 5 8 = X X % X X * X' -+ +' X @ X % X X X X X X m i : X X X X X X X X X X X X X = m % X X X X X X X X ' -+ +'* O O O O O O O O O O O O O O O O X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X & & & & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'t : X X X X X X X X X X X X X X X = = X X X X X $ $ $ $ $ $ $ $ 0 0 K 7 $ $' -+ +' $ $ $ $ $ $ $ $ $ $ $ X X : * X X X & & & & & < X X X X X X X X X X * - - ' -+ +'X X X X X X X X X X X X X X X X X X X X X X N : ,.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.; X X X X X X X X X X X X X X X X X m i = X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X * X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X % X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X m m 5 m X X X t j l u X X X X : t : t X X X X X X % X X ' -+ +'X X X X X X t X X X X X X X X X X * X X X X : : 5 : X X X X : : : : * X : m' -+ +' : t t X X X X X X X X X X X X X X X X X X X X % = * X X % X X X X X X X X ' -+ +'X X # = = # X X X ; l T c m % X X X X X X X * b ~ j > X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X % + O O O O O O O O O O O O O O X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X & & & & & X X X X X X X X X X X X X X * X' -+ +' X X X X X X X X X X X X : X X X X * > # X X X X X X X X * : : * X X X X X ' -+ +'$ $ $ $ $ $ $ $ 7 $ $ $ $ $ $ $ $ $ $ $ $ $ $ X X X # # X X X & & & & & X X' -+ +' X X X X X X X X X * - = X X X X X X X X X X X X X X X X X X X X X X : 4.<.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X X X X X X X X X X X X X X' -+ +' : v ! l = m = X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - ' -+ +'= X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X m m 5 m X X X X X X X X X X : c Q u X X X X X' -+ +' X X X X X X * X X X X X X X X X X X : X X X X X X X X X X X X X X X * X X ' -+ +'X X X X X X * X X X X X X X X X X X X : t t : X X X X X X X X X X X X X # #' -+ +' X X X X X X X X X X X X X X X X X X X X X j ] :.] j X X X X X X X X = v ] ' -+ +'T ; X X X X X X X X X X X X X X X X X X X X X X X % - 4 O O O O O O O O O O' -+ +' O * % O X X X @ * X X X X X X X X X X X X X X X X X X X X o & & & X X X X ' -+ +'X X X X X X X X X X q g g = X X X X X X X X X X t X X X X * * = * X X X X X' -+ +' X X X * : = # X X X X X X X $ $ $ $ $ $ 7 7 $ $ $ $ $ $ $ $ $ $ $ X X X X ' -+ +'X * = = X X & & & & & X X X X X X X X X X X X * * X X X X X X X % X X X X X' -+ +' X X X X X X X # * = t >.oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoX|.y X X X ' -+ +'X X X X X X X X X X X X X 8 ^ ] v m 5 : X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X * - % X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X % % q 2 X X X X : : t t X X X X X X X X X X X X X X ' -+ +'X X X X = g l q X X X X X X X X X : l x 5 X X X X X X X X X X t X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X # : : 2 q % X X X : % % X X X X X X X X X X X X X X X X X X X X X b @.<.@' -+ +'.l X X X X X X X X q i c w & & % % X X X X X X X X X X X X X X X X X X X X ' -+ +'X * * O O O O O O O O O O O X O X X X X % = * X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X ; c +.[ j X X X X X X X X X X X ' -+ +'X X X X X * * # * # X X X X X X X X X X X X X X X X X X X * % = X X X X X X' -+ +' X X X X X X X X X X X X X * = % * X : & M < o X X X X X X X X X X X X X X ' -+ +'X X X X * > * X X X X X X X X X X X X X X X : t b.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoXn.d X X X X X X X X X X X X X X X X * g x i = = = X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X t X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X : : X X X : q : X X X X X * X X X X X' -+ +' X X X X X X X X X X X X X X X X X = ; # X X X X X X X X X u ^ ` g X X X X ' -+ +'X X X X X X t X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X % % X X X X : t : X 5 8 t X X X X X X X ' -+ +'X X X X X X X X X i [ ] ! t X X X X X X X t % & & & & & X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X O O O O O O O O O O O X X X X X = a : * X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : R @.O' -+ +'.g X X X X X X X X X X X X X X X X X X u h 8 * X X X X X X X X X X X X X X ' -+ +'X X X X X = : * X X X X X X X X X X X X X X X X X X X X X X X X 8 X X X X X' -+ ,' X X X X X X X X X X X X X X X X = : > X X X X X X X X X X X X X X X : q <.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX,.5 X X X X X X X X X X X X X X X X' -+ +' X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X t X X X X X X X X X X X % % X X X X X X X X X X X X X X : * * X X X * ' -+ +'X X X X X X X # X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X t v V u X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * > * X * X' -+ +' X X X X X : X X X X X * X * * - > X X X X # m y t X X X X X X X X t X & & ' -+ +'& & & X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X - q : * X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X g P P t X X X X X X X X X X X X X X X X X * g P h * X X' -+ +' X X X X X X X X X X X X X X X * : : * * % X % X X X X X X X X X X X X X X ' -+ +'X X X X X X X * : X X X X X X X X X X X X X X X X X X X X * = % X X X X X X' -+ +' X X X X X X X X X : q >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X % : X X X X X X X X X # % % % X X X X X X t : 8' -+ +' 5 X X X X X X X X X X X X X X X X X X * ; = * X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X : : X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X % : : * X X X X X X X X * X X X X : : : 8 - : - X X X X X X X X' -+ +' X X X X X X X X t X X & & & X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X * % : : X X X X X X X X X t X X ' -+ +'X X X X X X X u h q X X X X X X X X X X X X X X X X X X = u : * X * X @ * *' -+ +' X X X X X X X X X X X X X X X X X X < X X X X X X X X X X X X X X X X X X ' -+ +'X X X X % X X X X X X X X X X X X X X X X X ; 2 >.oXoXoXoXoXoXoXoX<.",'#10 -+ +'"oXoXoXoXoXoXoX>.: : > X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * - * X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X ' -+ +'X X X % 8 : X X X X X X X X X X X X X X X X X X X X X X X X X X = q : % * X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X = : * X X X X X X X X X X X X X X X ' -+ +'X X % * * X : 5 * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X * : X X X X X X X X X X * * X X X X X X X X X X X X X X X ' -+ +'X X X * : : X X X X * : * X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * # X : 2 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXOXb.8.v v u X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X * ; % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X % % X X X X X X X X X X : 2 X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X % = = * X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X ; = X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % % % X X X' -+ +' X X X X X X X X X X X X X X X X X X % % 5 : X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X : X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X # X X X X X X * > = * X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X : % X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X * 8 8 * : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.v.'' ` l' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X * * * X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X % X X t : t : X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X t X - : ; * ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # X X X X X ' -+ +'X X : t t t X X X X X X X X X X X X # X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ ,'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X @ X X ' -+ +'X X X X X X X X X X X X X X X X < X X X X X X X % X % 2 : X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X 8 h g ; ; t >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.` ` ^ F X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X : 2 X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : : X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X : X * - * X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X : m X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X * m ' -+ +': X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X * X X X X X X X X < X X X X X X X % %' -+ +' % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X - h u - : 8 >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t u t * % X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X # * X X X X' -+ +' q : * : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X : l l : X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X % : X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X : X : 2 X ' -+ +'X X X X X X X X X X X X X X X * * X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X p R v t X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X q h : X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X * % = % : 8 >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.: X X X ' -+ +'X X < < X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % ; : * X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X 5 : X X X X X X X X t X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X : l l : X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X % X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X # X * X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X * : * X % % X X X X : m X X X X X X X X X = : ; * X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X c 2.` g X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X - h K 8 X X X X < < X X X X X X X X X X X X X X X X X : X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X # X # % : 5 >.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.: + o X X X X < X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X # = - X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X : : 8 X X X X X X X % X t X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X = : * X X X X' -+ +' X X X X X X X X X X X X X X X X X X X X X X X X % % X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X' -+ +' X X X X X X X X X X X X X X X X X : u : # * X X X X X X X X * X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X X : X X % % X X X X X t m m X X X X X X' -+ +' X > : : X X X * X X X X X X X X X X X X X X X X X X X X X X X X X X X i T ' -+ +'T t X X X X X X X X X X X X X X X # * X X X X X X X X X X * # X X X X X X X' -+ +' X X X # % X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X ' -+ +'X X X X X X X X X X X X X X X X X X : u : # X X X X X X X X X X X X X X X X' -+ +' X # X X X X * : : # X X * X X X X X X X X X X X X X X X X X X X % % : : >.' -+ +'oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t N : = = ; : : = > N : : = - : =' -+ +' : : ; = : : : = : = : = : : - = : : : : : : : : : : : ; = : : = : : ; : : ' -+ +': = : : ; = = : - : - : : = : : : : = - : : : : = l = : : : : : : : : : : =' -+ +' : : : : : : = ; : ; = : : : : : = : : = = : : ; = : : : : : : = : - : : ; ' -+ +': = : : : : : : : : = ; : : : - : : = : - : : : : : : : = ; : ; = : : ; : :' -+ +' ; : = ; : ; : = : : : : : = - : : : : : = : : : : = : - : - : = : : : : : ' -+ +'; = : : : : - = : : : : : : = : = : : - = : : : ; : : = : = T O.! 8 : = : :' -+ ,' : : : : v '' ^ : : : : = : : ; = : : = ; : : : = : : : ; = : : : : : : ; :' -+ +' : = : ; m 2 y m : ; : l = : : : : : : : = = : - : : : ; = : : : : : : : = ' -+ +': : : - : ; : : : = : : j p : : : ; ; = ; = : ; ; : : = : : : = = : : - : :' -+ +' = : : : = = : ; = : - = : : : : : ; l = ; : : : - = : : : : : : : = = : : ' -+ +'- : : : : = ; : = = : ; : = : : : : : = : = : - : : : : : = : : : : : - : :' -+ +' : ; : : : = ; - = : : : : : : = : : - : = : l = : : : : : : = : = ; : : : ' -+ +': : = - : : : : : ; 2 t >.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX>.t t t t' -+ +' : t t t 8 t t t 8 5 q q : t t t q q q t t t t 8 8 q q 5 q q q t t t t t : ' -+ +'t t t q q t t : t t t t 5 q q t t t t t t t t 2 q t t t t t t q q q 5 v L ^' -+ +' : q t t t t 8 t 5 : t 8 5 t t t t t t 8 5 : t t t 8 t t t t t t t : t t t ' -+ +'q q t t t t t 8 : t t t t t t t t t q 2 : t t t q q t t t t 8 5 : t t e e e' -+ +' q : t t t t : t t t t t u 2 t q q q : t t t t t 5 t t t : q : 5 8 5 t t t ' -+ +'t t t t t 2 q t t q q t t 8 5 q q : t t t t t 5 t t t q q : t t t q q t t t' -+ +' t t t t t T O.! 8 t t 8 ^ ` v 5 t %.OX&.l 5 t t t t t t t t t t t u ` '' l' -+ +' q q : t t t 5 8 t t 5 q q 2 t t t p X.!.X.y t q 2 T T v a q 8 t t t 8 5 q ' -+ +'q : t t t q q t t 8 5 q q : t t t 5 q q q t t t t m 5 q 5 t t t t t t t t 2' -+ +' t t t t t t 5 t t t t : q q t 8 5 q 8 t t t t 8 q t t 5 8 5 2 v t t 5 : t ' -+ +'t t q t 5 t q 2 q q 8 8 t t t t t t t t q q : t t 8 q q t t t t t 8 8 5 8 t' -+ +' t t t t 8 5 q q 8 t t 4.q 2 q 5 t t t t 8 q t t q q 8 5 5 8 t t t t t t V ' -+ +'T q t t q u t q 5 8 t t t 5 t t t t t : t t t q t <.oXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoX>.t t t t 4.4.t t q 2 t t t 4.8 2 8 t t t 2 8 t t 5 t t 5 2 ' -+ +'q t 8 2 8 5 8 5 t t t t t t t q 2 t t t t t q : t q 2 t t t t t t t t q q t' -+ +' t t t t t t q 2 8 8 5 q 2 q 2 t t t t t 8 8 5 t t q 2 t t t 8 5 8 t t t t ' -+ +'5 t t t t t t t 8 t t t q 2 t t t t t 5 t t t t t t t t t t q u t t t t 2 8' -+ +' t t 5 t t 8 t t e e r r e q t t t t t t t t 5 x ` ^ t 5 q 2 t t t t t t 8 ' -+ +'t t t q q v u 8 t t : t t t t t t q q t t 2 8 t t 5 q q 2 t t t t t t 8 t :' -+ +' t t 2 8 t t t q 2 t t t t t : t t t p t 5 t t u %..X'' t t ^ '' ~ t 8 t : ' -+ +'t t t t t t t t q b &.,.~ t 2 t t t t t t t t 8 q q 5 t t t H (.iX^.J t q q' -+ +' 5 : t 8 5 5 8 t t 5 q q 2 t t t t 2 8 t t 5 8 q 2 8 5 5 8 t t 2 q t t t t ' -+ +'5 m t q t t t t t t t t q q t t 5 8 t 8 t t t : 8 2 t t 5 q 8 5 t t t t 2 q' -+ +' t t 8 : 8 ^ t t t 8 t t t t 5 q 8 t q q q 2 2 q t t t t t t t t t 2 t t t ' -+ +'t q 2 t t t t t 5 5 8 t t t t t t t t t 2 t t t t 5 q q q t t t t 2 q t t q' -+ +' 2 5 8 t t t t t t t t q G v t u ` | v 5 8 t t t t 8 t t t t t t t t t q 2 ' -+ +'>.oXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoX.X>.>.>.>.>.>.>.<.n.>.>.>.>.>.n.>' -+ +'.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.' -+ +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.,.,.XX,.>.>.>.>.>.<.<.>.>.>.>.>.<.>.>.>.>.>.>' -+ +'.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' -+ +'>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.<.>.>.<.<.<.<.<.<.<.>.>.>.>.>.>.>.>.>.>.X' -+ +'XoX.X,.>.>.>.>.>.<.>.>.>.>.>.>.>.<.<.n.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.' -+ +'<.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>' -+ +'.XXXXXX>.>.<.>.<.>.>.>.>.>.>.>.>.>.>.>.>.,.XX.X.X<.<.>.>.>.>.>.>.>.>.>.>.>.' -+ +'>.>.>.<.<.,.+XOX+X,.>.>.>.>.>.>.>.>.<.>.,.,.,.XX>.>.>.>.>.>.>.>.>.<.>.>.>.>' -+ +'.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.' -+ +'>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<' -+ +'.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.' -+ +'>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.<.>.>.>.>.>.>.>.>.>.>.<..XoXXX>.>.>.>.>.>' -+ +'.>.>.>.>.>.>.>.>.>.>.>.>..XoXoXoXoXoXoXoXoX>.",'#10'"oXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX>.",'#10 -+ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoX<.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX&.",'#10'"oXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX'' ",'#10 -+ +'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoX.X^ ",'#10'"oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX,.p ",'#10'".XoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ ,'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXOXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXXX^ q ",'#10 -+ +'"~ XXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXo' -+ +'XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX' -+ +'oXoXoXoXoX,.~ u 2 "'#10'};'#10#7'Stretch'#9#0#0#6'TLabel'#6'Label1'#4'Left' -+ +#3')'#1#6'Height'#2' '#3'Top'#2'l'#5'Width'#3#144#0#9'Alignment'#7#14'taRigh' -+ +'tJustify'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#10'Sky Charts'#10 -+ +'Font.Color'#7#7'clWhite'#11'Font.Height'#2#230#10'Font.Style'#11#6'fsBold'#0 -+ +#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#16#6'H' -+ +'eight'#2#25#3'Top'#3#151#0#5'Width'#2'_'#7'Caption'#6#10'Version 3 '#10'Fon' -+ +'t.Color'#7#7'clWhite'#11'Font.Height'#2#236#10'Font.Style'#11#6'fsBold'#0#11 -+ +'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#16#6'Heig' -+ +'ht'#2#14#3'Top'#3#240#0#5'Width'#3#208#1#7'Anchors'#11#6'akLeft'#7'akRight' -+ +#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6#14'Copyright (C) '#10'Font.Color'#7 -+ +#7'clWhite'#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label4'#4'Lef' -+ +'t'#2#16#6'Height'#2'*'#3'Top'#3#190#0#5'Width'#3#204#1#7'Anchors'#11#6'akLe' -+ +'ft'#7'akRight'#8'akBottom'#0#8'AutoSize'#8#7'Caption'#6'yThis program is fr' -+ +'ee software; you can redistribute it and/or modify it under the terms of th' -+ +'e GNU General Public License'#10'Font.Color'#7#7'clWhite'#11'ParentColor'#8 -+ +#10'ParentFont'#8#8'WordWrap'#9#0#0#6'TLabel'#9'LabelDate'#4'Left'#3#128#0#6 -+ +'Height'#2#19#3'Top'#3#157#0#5'Width'#2' '#7'Caption'#6#4'Date'#10'Font.Colo' -+ +'r'#7#7'clWhite'#11'Font.Height'#2#241#11'ParentColor'#8#10'ParentFont'#8#7 -+ +'Visible'#8#0#0#0#6'TTimer'#6'Timer1'#7'Enabled'#8#8'Interval'#3#184#11#7'On' -+ +'Timer'#7#11'Timer1Timer'#4'left'#2#8#3'top'#2#16#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/skychart/pu_splash.pas skychart_3.2_up/skychart/pu_splash.pas ---- skychart_3.2/skychart/pu_splash.pas 2010-09-07 13:29:16.000000000 +0200 -+++ skychart_3.2_up/skychart/pu_splash.pas 2011-03-09 15:18:23.206265473 +0100 -@@ -1,113 +1,113 @@ --unit pu_splash; -- --{$MODE Delphi}{$H+} -- --{ --Copyright (C) 2002 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} --{ -- startup splash screen --} -- --interface -- --uses u_translation, u_constant, u_util, -- LCLIntf, Classes, Graphics, Forms, Controls, StdCtrls, -- ExtCtrls, LResources, Buttons; -- --type -- -- { Tf_splash } -- -- Tf_splash = class(TForm) -- Image1: TImage; -- Label1: TLabel; -- Label2: TLabel; -- Label3: TLabel; -- Label4: TLabel; -- LabelDate: TLabel; -- Panel1: TPanel; -- Timer1: TTimer; -- procedure FormCreate(Sender: TObject); -- procedure FormMouseUp(Sender: TOBject; Button: TMouseButton; -- Shift: TShiftState; X, Y: Integer); -- procedure Timer1Timer(Sender: TObject); -- procedure FormShow(Sender: TObject); -- procedure logoDblClick(Sender: TObject); -- private -- { Private declarations } -- public -- { Public declarations } -- procedure SetLang; -- end; -- --var -- f_splash: Tf_splash; -- --implementation -- --procedure Tf_splash.SetLang; --begin --Caption:=rsAbout; --if rsSkyCharts='Cartes du Ciel' then Label1.caption:='' -- else Label1.caption:=rsSkyCharts; --Label3.caption:=cdccpy; --Label4.caption:=rsThisProgramI; --end; -- --procedure Tf_splash.FormCreate(Sender: TObject); --begin --label2.caption:=cdcversion; --if pos('svn',cdcversion)>0 then begin -- LabelDate.caption:=compile_time; -- LabelDate.Left:=label2.Left+label2.Canvas.TextWidth(cdcversion)+8; -- LabelDate.Visible:=true; --end else -- LabelDate.Visible:=false; --SetLang; --end; -- --procedure Tf_splash.FormShow(Sender: TObject); --begin -- Timer1.Enabled:=true; --end; -- --procedure Tf_splash.Timer1Timer(Sender: TObject); --begin --Timer1.Enabled:=false; --Close; --end; -- --procedure Tf_splash.logoDblClick(Sender: TObject); --begin --Timer1Timer(Sender); --end; -- --procedure Tf_splash.FormMouseUp(Sender: TOBject; Button: TMouseButton; -- Shift: TShiftState; X, Y: Integer); --begin --logoDblClick(Sender); --end; -- --initialization -- {$i pu_splash.lrs} -- --end. -- -+unit pu_splash; -+ -+{$MODE Delphi}{$H+} -+ -+{ -+Copyright (C) 2002 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+{ -+ startup splash screen -+} -+ -+interface -+ -+uses u_translation, u_constant, u_util, -+ LCLIntf, Classes, Graphics, Forms, Controls, StdCtrls, -+ ExtCtrls, LResources, Buttons; -+ -+type -+ -+ { Tf_splash } -+ -+ Tf_splash = class(TForm) -+ Image1: TImage; -+ Label1: TLabel; -+ Label2: TLabel; -+ Label3: TLabel; -+ Label4: TLabel; -+ LabelDate: TLabel; -+ Panel1: TPanel; -+ Timer1: TTimer; -+ procedure FormCreate(Sender: TObject); -+ procedure FormMouseUp(Sender: TOBject; Button: TMouseButton; -+ Shift: TShiftState; X, Y: Integer); -+ procedure Timer1Timer(Sender: TObject); -+ procedure FormShow(Sender: TObject); -+ procedure logoDblClick(Sender: TObject); -+ private -+ { Private declarations } -+ public -+ { Public declarations } -+ procedure SetLang; -+ end; -+ -+var -+ f_splash: Tf_splash; -+ -+implementation -+ -+procedure Tf_splash.SetLang; -+begin -+Caption:=rsAbout; -+if rsSkyCharts='Cartes du Ciel' then Label1.caption:='' -+ else Label1.caption:=rsSkyCharts; -+Label3.caption:=cdccpy; -+Label4.caption:=rsThisProgramI; -+end; -+ -+procedure Tf_splash.FormCreate(Sender: TObject); -+begin -+label2.caption:=cdcversion; -+if pos('svn',cdcversion)>0 then begin -+ LabelDate.caption:=compile_time; -+ LabelDate.Left:=label2.Left+label2.Canvas.TextWidth(cdcversion)+8; -+ LabelDate.Visible:=true; -+end else -+ LabelDate.Visible:=false; -+SetLang; -+end; -+ -+procedure Tf_splash.FormShow(Sender: TObject); -+begin -+ Timer1.Enabled:=true; -+end; -+ -+procedure Tf_splash.Timer1Timer(Sender: TObject); -+begin -+Timer1.Enabled:=false; -+Close; -+end; -+ -+procedure Tf_splash.logoDblClick(Sender: TObject); -+begin -+Timer1Timer(Sender); -+end; -+ -+procedure Tf_splash.FormMouseUp(Sender: TOBject; Button: TMouseButton; -+ Shift: TShiftState; X, Y: Integer); -+begin -+logoDblClick(Sender); -+end; -+ -+initialization -+ {$i pu_splash.lrs} -+ -+end. -+ -diff -ur skychart_3.2/varobs/aavsob1.lfm skychart_3.2_up/varobs/aavsob1.lfm ---- skychart_3.2/varobs/aavsob1.lfm 2009-01-11 10:36:02.000000000 +0100 -+++ skychart_3.2_up/varobs/aavsob1.lfm 2011-03-09 15:18:23.213264612 +0100 -@@ -1,120 +1,120 @@ --object Form1: TForm1 -- Left = 161 -- Height = 406 -- Top = 161 -- Width = 420 -- ActiveControl = Button1 -- Caption = 'AAVSO Bulletin' -- ClientHeight = 406 -- ClientWidth = 420 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- OnCreate = FormCreate -- OnShow = FormShow -- Position = poDefaultPosOnly -- LCLVersion = '0.9.27' -- object Label2: TLabel -- Left = 32 -- Height = 14 -- Top = 224 -- Width = 276 -- Caption = 'AAVSO LPV Bulletin Single file, Plain Text - By designation' -- ParentColor = False -- end -- object Label3: TLabel -- Left = 144 -- Height = 14 -- Top = 376 -- Width = 1 -- Alignment = taCenter -- ParentColor = False -- end -- object Label4: TLabel -- Left = 32 -- Height = 14 -- Top = 288 -- Width = 185 -- Caption = 'Varobs GCVS by constellation directory' -- ParentColor = False -- end -- object Label6: TLabel -- Left = 32 -- Height = 89 -- Top = 16 -- Width = 344 -- AutoSize = False -- Caption = 'Use this form to refresh the Long Period Variables maxima epoch using the AAVSO Bulletin for the current year.'#10'This produce the file aavsoYYYY.dat that can be use in input to VarObs.' -- ParentColor = False -- WordWrap = True -- end -- object Label7: TLabel -- Cursor = crHandPoint -- Left = 32 -- Height = 14 -- Top = 144 -- Width = 210 -- Caption = 'http://www.aavso.org/publications/bulletin/' -- Color = clBtnFace -- Font.Color = clBlue -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- ParentColor = False -- ParentFont = False -- Transparent = False -- OnClick = Label7Click -- end -- object Label8: TLabel -- Left = 32 -- Height = 14 -- Top = 120 -- Width = 247 -- Caption = 'Get the AAVSO Validation file and LPV Bulletin from:' -- ParentColor = False -- end -- object Label1: TLabel -- Left = 32 -- Height = 14 -- Top = 184 -- Width = 23 -- Caption = 'Year' -- ParentColor = False -- end -- object Button1: TButton -- Left = 144 -- Height = 25 -- Top = 344 -- Width = 75 -- Caption = 'GO!' -- OnClick = Button1Click -- TabOrder = 0 -- end -- object FileNameEdit1: TFileNameEdit -- Left = 32 -- Height = 23 -- Top = 248 -- Width = 304 -- ButtonWidth = 23 -- NumGlyphs = 1 -- TabOrder = 1 -- end -- object SpinEdit1: TSpinEdit -- Left = 88 -- Height = 23 -- Top = 181 -- Width = 80 -- MaxValue = 3000 -- MinValue = 2000 -- OnChange = SpinEdit1Change -- TabOrder = 2 -- Value = 2008 -- end -- object DirectoryEdit1: TDirectoryEdit -- Left = 32 -- Height = 23 -- Top = 312 -- Width = 304 -- ButtonWidth = 23 -- NumGlyphs = 1 -- TabOrder = 3 -- end --end -+object Form1: TForm1 -+ Left = 161 -+ Height = 406 -+ Top = 161 -+ Width = 420 -+ ActiveControl = Button1 -+ Caption = 'AAVSO Bulletin' -+ ClientHeight = 406 -+ ClientWidth = 420 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ OnCreate = FormCreate -+ OnShow = FormShow -+ Position = poDefaultPosOnly -+ LCLVersion = '0.9.27' -+ object Label2: TLabel -+ Left = 32 -+ Height = 14 -+ Top = 224 -+ Width = 276 -+ Caption = 'AAVSO LPV Bulletin Single file, Plain Text - By designation' -+ ParentColor = False -+ end -+ object Label3: TLabel -+ Left = 144 -+ Height = 14 -+ Top = 376 -+ Width = 1 -+ Alignment = taCenter -+ ParentColor = False -+ end -+ object Label4: TLabel -+ Left = 32 -+ Height = 14 -+ Top = 288 -+ Width = 185 -+ Caption = 'Varobs GCVS by constellation directory' -+ ParentColor = False -+ end -+ object Label6: TLabel -+ Left = 32 -+ Height = 89 -+ Top = 16 -+ Width = 344 -+ AutoSize = False -+ Caption = 'Use this form to refresh the Long Period Variables maxima epoch using the AAVSO Bulletin for the current year.'#10'This produce the file aavsoYYYY.dat that can be use in input to VarObs.' -+ ParentColor = False -+ WordWrap = True -+ end -+ object Label7: TLabel -+ Cursor = crHandPoint -+ Left = 32 -+ Height = 14 -+ Top = 144 -+ Width = 210 -+ Caption = 'http://www.aavso.org/publications/bulletin/' -+ Color = clBtnFace -+ Font.Color = clBlue -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ ParentColor = False -+ ParentFont = False -+ Transparent = False -+ OnClick = Label7Click -+ end -+ object Label8: TLabel -+ Left = 32 -+ Height = 14 -+ Top = 120 -+ Width = 247 -+ Caption = 'Get the AAVSO Validation file and LPV Bulletin from:' -+ ParentColor = False -+ end -+ object Label1: TLabel -+ Left = 32 -+ Height = 14 -+ Top = 184 -+ Width = 23 -+ Caption = 'Year' -+ ParentColor = False -+ end -+ object Button1: TButton -+ Left = 144 -+ Height = 25 -+ Top = 344 -+ Width = 75 -+ Caption = 'GO!' -+ OnClick = Button1Click -+ TabOrder = 0 -+ end -+ object FileNameEdit1: TFileNameEdit -+ Left = 32 -+ Height = 23 -+ Top = 248 -+ Width = 304 -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ TabOrder = 1 -+ end -+ object SpinEdit1: TSpinEdit -+ Left = 88 -+ Height = 23 -+ Top = 181 -+ Width = 80 -+ MaxValue = 3000 -+ MinValue = 2000 -+ OnChange = SpinEdit1Change -+ TabOrder = 2 -+ Value = 2008 -+ end -+ object DirectoryEdit1: TDirectoryEdit -+ Left = 32 -+ Height = 23 -+ Top = 312 -+ Width = 304 -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ TabOrder = 3 -+ end -+end -diff -ur skychart_3.2/varobs/aavsob1.lrs skychart_3.2_up/varobs/aavsob1.lrs ---- skychart_3.2/varobs/aavsob1.lrs 2009-01-11 10:36:02.000000000 +0100 -+++ skychart_3.2_up/varobs/aavsob1.lrs 2011-03-09 15:18:23.213264612 +0100 -@@ -1,37 +1,37 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('TForm1','FORMDATA',[ -- 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#161#0#6'Height'#3#150#1#3'Top'#3#161#0#5 -- +'Width'#3#164#1#13'ActiveControl'#7#7'Button1'#7'Caption'#6#14'AAVSO Bulleti' -- +'n'#12'ClientHeight'#3#150#1#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9 -- +'Font.Name'#6#13'MS Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'F' -- +'ormShow'#8'Position'#7#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.27'#0#6 -- +'TLabel'#6'Label2'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#20#1 -- +#7'Caption'#6';AAVSO LPV Bulletin Single file, Plain Text - By designation' -- +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#144#0#6'Height'#2#14#3 -- +'Top'#3'x'#1#5'Width'#2#1#9'Alignment'#7#8'taCenter'#11'ParentColor'#8#0#0#6 -- +'TLabel'#6'Label4'#4'Left'#2' '#6'Height'#2#14#3'Top'#3' '#1#5'Width'#3#185#0 -- +#7'Caption'#6'&Varobs GCVS by constellation directory'#11'ParentColor'#8#0#0 -- +#6'TLabel'#6'Label6'#4'Left'#2' '#6'Height'#2'Y'#3'Top'#2#16#5'Width'#3'X'#1 -- +#8'AutoSize'#8#7'Caption'#6#182'Use this form to refresh the Long Period Var' -- +'iables maxima epoch using the AAVSO Bulletin for the current year.'#10'This' -- +' produce the file aavsoYYYY.dat that can be use in input to VarObs.'#11'Par' -- +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label7'#6'Cursor'#7#11'crHandPoin' -- +'t'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#210#0#7'Caption'#6 -- +'+http://www.aavso.org/publications/bulletin/'#5'Color'#7#9'clBtnFace'#10'Fo' -- +'nt.Color'#7#6'clBlue'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif' -- +#11'ParentColor'#8#10'ParentFont'#8#11'Transparent'#8#7'OnClick'#7#11'Label7' -- +'Click'#0#0#6'TLabel'#6'Label8'#4'Left'#2' '#6'Height'#2#14#3'Top'#2'x'#5'Wi' -- +'dth'#3#247#0#7'Caption'#6'4Get the AAVSO Validation file and LPV Bulletin f' -- +'rom:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2' '#6'Height'#2#14 -- +#3'Top'#3#184#0#5'Width'#2#23#7'Caption'#6#4'Year'#11'ParentColor'#8#0#0#7'T' -- +'Button'#7'Button1'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3'X'#1#5'Width'#2 -- +'K'#7'Caption'#6#3'GO!'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#13 -- +'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3#248#0 -- +#5'Width'#3'0'#1#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#1#0#0#9 -- +'TSpinEdit'#9'SpinEdit1'#4'Left'#2'X'#6'Height'#2#23#3'Top'#3#181#0#5'Width' -- +#2'P'#8'MaxValue'#3#184#11#8'MinValue'#3#208#7#8'OnChange'#7#15'SpinEdit1Cha' -- +'nge'#8'TabOrder'#2#2#5'Value'#3#216#7#0#0#14'TDirectoryEdit'#14'DirectoryEd' -- +'it1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3'8'#1#5'Width'#3'0'#1#11'ButtonWid' -- +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#0#0#0 --]); -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('TForm1','FORMDATA',[ -+ 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#161#0#6'Height'#3#150#1#3'Top'#3#161#0#5 -+ +'Width'#3#164#1#13'ActiveControl'#7#7'Button1'#7'Caption'#6#14'AAVSO Bulleti' -+ +'n'#12'ClientHeight'#3#150#1#11'ClientWidth'#3#164#1#11'Font.Height'#2#245#9 -+ +'Font.Name'#6#13'MS Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'F' -+ +'ormShow'#8'Position'#7#16'poDefaultPosOnly'#10'LCLVersion'#6#6'0.9.27'#0#6 -+ +'TLabel'#6'Label2'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#224#0#5'Width'#3#20#1 -+ +#7'Caption'#6';AAVSO LPV Bulletin Single file, Plain Text - By designation' -+ +#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#144#0#6'Height'#2#14#3 -+ +'Top'#3'x'#1#5'Width'#2#1#9'Alignment'#7#8'taCenter'#11'ParentColor'#8#0#0#6 -+ +'TLabel'#6'Label4'#4'Left'#2' '#6'Height'#2#14#3'Top'#3' '#1#5'Width'#3#185#0 -+ +#7'Caption'#6'&Varobs GCVS by constellation directory'#11'ParentColor'#8#0#0 -+ +#6'TLabel'#6'Label6'#4'Left'#2' '#6'Height'#2'Y'#3'Top'#2#16#5'Width'#3'X'#1 -+ +#8'AutoSize'#8#7'Caption'#6#182'Use this form to refresh the Long Period Var' -+ +'iables maxima epoch using the AAVSO Bulletin for the current year.'#10'This' -+ +' produce the file aavsoYYYY.dat that can be use in input to VarObs.'#11'Par' -+ +'entColor'#8#8'WordWrap'#9#0#0#6'TLabel'#6'Label7'#6'Cursor'#7#11'crHandPoin' -+ +'t'#4'Left'#2' '#6'Height'#2#14#3'Top'#3#144#0#5'Width'#3#210#0#7'Caption'#6 -+ +'+http://www.aavso.org/publications/bulletin/'#5'Color'#7#9'clBtnFace'#10'Fo' -+ +'nt.Color'#7#6'clBlue'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif' -+ +#11'ParentColor'#8#10'ParentFont'#8#11'Transparent'#8#7'OnClick'#7#11'Label7' -+ +'Click'#0#0#6'TLabel'#6'Label8'#4'Left'#2' '#6'Height'#2#14#3'Top'#2'x'#5'Wi' -+ +'dth'#3#247#0#7'Caption'#6'4Get the AAVSO Validation file and LPV Bulletin f' -+ +'rom:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label1'#4'Left'#2' '#6'Height'#2#14 -+ +#3'Top'#3#184#0#5'Width'#2#23#7'Caption'#6#4'Year'#11'ParentColor'#8#0#0#7'T' -+ +'Button'#7'Button1'#4'Left'#3#144#0#6'Height'#2#25#3'Top'#3'X'#1#5'Width'#2 -+ +'K'#7'Caption'#6#3'GO!'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#0#0#13 -+ +'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3#248#0 -+ +#5'Width'#3'0'#1#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#1#0#0#9 -+ +'TSpinEdit'#9'SpinEdit1'#4'Left'#2'X'#6'Height'#2#23#3'Top'#3#181#0#5'Width' -+ +#2'P'#8'MaxValue'#3#184#11#8'MinValue'#3#208#7#8'OnChange'#7#15'SpinEdit1Cha' -+ +'nge'#8'TabOrder'#2#2#5'Value'#3#216#7#0#0#14'TDirectoryEdit'#14'DirectoryEd' -+ +'it1'#4'Left'#2' '#6'Height'#2#23#3'Top'#3'8'#1#5'Width'#3'0'#1#11'ButtonWid' -+ +'th'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#3#0#0#0 -+]); -diff -ur skychart_3.2/varobs/aavsob1.pas skychart_3.2_up/varobs/aavsob1.pas ---- skychart_3.2/varobs/aavsob1.pas 2009-01-11 10:36:02.000000000 +0100 -+++ skychart_3.2_up/varobs/aavsob1.pas 2011-03-09 15:18:23.213264612 +0100 -@@ -1,330 +1,330 @@ --unit aavsob1; -- --{$MODE Delphi} -- --{ --Copyright (C) 2005 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- --interface -- --uses --//Shellapi, --{$ifdef mswindows} -- Windows, --{$endif} -- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -- StdCtrls, ComCtrls, LResources, EditBtn, Fileutil, u_param, u_util2, Spin; -- --type -- -- { TForm1 } -- -- TForm1 = class(TForm) -- Button1: TButton; -- DirectoryEdit1: TDirectoryEdit; -- FileNameEdit1: TFileNameEdit; -- Label1: TLabel; -- Label2: TLabel; -- Label3: TLabel; -- Label4: TLabel; -- Label6: TLabel; -- Label7: TLabel; -- Label8: TLabel; -- SpinEdit1: TSpinEdit; -- procedure Button1Click(Sender: TObject); -- procedure FormShow(Sender: TObject); -- procedure FormCreate(Sender: TObject); -- procedure Label7Click(Sender: TObject); -- procedure SpinEdit1Change(Sender: TObject); -- private -- Procedure ConvAAVSOb; -- Procedure GetAppDir; -- public -- end; -- --var -- Form1: TForm1; -- lpvlst,pulslst : array[1..1000] of string; -- nLPV,curvar : integer; -- --implementation -- --Procedure TForm1.GetAppDir; --var buf: string; --{$ifdef darwin} -- i: integer; --{$endif} --{$ifdef mswindows} -- PIDL : PItemIDList; -- Folder : array[0..MAX_PATH] of Char; --const CSIDL_PERSONAL = $0005; // My Documents -- CSIDL_APPDATA = $001a; // <user name>\Application Data -- CSIDL_LOCAL_APPDATA = $001c; // <user name>\Local Settings\Applicaiton Data (non roaming) --{$endif} --begin --{$ifdef darwin} --appdir:=getcurrentdir; --if not DirectoryExists(slash(appdir)+slash('data')+slash('varobs')) then begin -- appdir:=ExtractFilePath(ParamStr(0)); -- i:=pos('.app/',appdir); -- if i>0 then begin -- appdir:=ExtractFilePath(copy(appdir,1,i)); -- end; --end; --{$else} --appdir:=getcurrentdir; --GetDir(0,appdir); --{$endif} --privatedir:=DefaultPrivateDir; --configfile:=Defaultconfigfile; --{$ifdef unix} --appdir:=expandfilename(appdir); --privatedir:=expandfilename(PrivateDir); --configfile:=expandfilename(configfile); --{$endif} --{$ifdef mswindows} --SHGetSpecialFolderLocation(0, CSIDL_LOCAL_APPDATA, PIDL); --SHGetPathFromIDList(PIDL, Folder); --buf:=trim(Folder); --if buf='' then begin // old windows version -- SHGetSpecialFolderLocation(0, CSIDL_APPDATA, PIDL); -- SHGetPathFromIDList(PIDL, Folder); -- buf:=trim(Folder); --end; --privatedir:=slash(buf)+privatedir; --configfile:=slash(privatedir)+configfile; --{$endif} --skychart:=slash(appdir)+DefaultSkychart; --if not FileExists(skychart) then skychart:=DefaultSkychart; --if not directoryexists(privatedir) then CreateDir(privatedir); --if not directoryexists(privatedir) then forcedirectory(privatedir); --if not directoryexists(privatedir) then begin -- MessageDlg('Unable to create '+privatedir, -- mtError, [mbAbort], 0); -- Halt; --end; --if not directoryexists(slash(privatedir)+'quicklook') then CreateDir(slash(privatedir)+'quicklook'); --if not directoryexists(slash(privatedir)+'afoevdata') then CreateDir(slash(privatedir)+'afoevdata'); -- --if (not directoryexists(slash(appdir)+slash('data')+'varobs')) then begin -- // try under the current directory -- buf:=GetCurrentDir; -- if (directoryexists(slash(buf)+slash('data')+'varobs')) then -- appdir:=buf -- else begin -- // try under the program directory -- buf:=ExtractFilePath(ParamStr(0)); -- if (directoryexists(slash(buf)+slash('data')+'varobs')) then -- appdir:=buf -- else begin -- // try share directory under current location -- buf:=ExpandFileName(slash(GetCurrentDir)+SharedDir); -- if (directoryexists(slash(buf)+slash('data')+'varobs')) then -- appdir:=buf -- else begin -- // try share directory at the same location as the program -- buf:=ExpandFileName(slash(ExtractFilePath(ParamStr(0)))+SharedDir); -- if (directoryexists(slash(buf)+slash('data')+'varobs')) then -- appdir:=buf -- else begin -- MessageDlg('Could not found the application data directory.'+crlf -- +'Please check the program installation.', -- mtError, [mbAbort], 0); -- Halt; -- end; -- end; -- end; -- end; --end; -- --ConstDir:=slash(appdir)+slash('data')+slash('varobs'); --end; -- -- --Function CleanMag(mag:string):string; --var i:integer; -- c:char; --begin --mag:=trim(mag); --result:=''; --for i:=1 to length(mag) do begin -- c:=mag[i]; -- if ((c>='0')and(c<='9'))or(c='.')or((i=1)and(c='-')) then result:=result+c; --end; --while length(result)<5 do result:=' '+result; --end; -- --Function CleanDat(dat:string):string; --begin --result:=stringreplace(dat,'|','',[rfReplaceAll]); --result:=stringreplace(result,'+','',[rfReplaceAll]); --result:=stringreplace(result,'-','',[rfReplaceAll]); --result:=stringreplace(result,' ','',[rfReplaceAll]); --end; -- --Procedure GetGCVSInfo(nom : string; var vartype,per,slope,jdt : string); --var f : textfile; -- buf,id1,id2,constel : string; -- p : integer; --begin --vartype:=' '; --per:=' '; --slope:=' '; --jdt:=' '; --buf:=trim(nom); --p:=pos(' ',buf); --id1:=uppercase(copy(buf,1,p-1)); --constel:=copy(buf,p+1,99); --if constel='*' then exit; --constel:=stringreplace(constel,'?','',[]); --buf:=slash(form1.DirectoryEdit1.Directory)+constel+'.dat'; --if not fileexists(buf) then exit; --assignfile(f,buf); --reset(f); --repeat -- readln(f,buf); -- id2:=trim(uppercase(copy(buf,1,5))); -- if (copy(id2,1,1)='V')and(length(id2)=5) then begin -- id2:='V'+inttostr(strtoint(copy(id2,2,4))); -- end; -- if id1=id2 then begin -- vartype:=copy(buf,12,10); -- per:=copy(buf,52,15); -- slope:=copy(buf,69,3); -- jdt:=copy(buf,37,13); -- break; -- end; --until eof(f); --closefile(f); --end; -- --Procedure Tform1.ConvAAVSOb; --var fb,f : textfile; -- buf,design,nom,mag,dat,mag1,mag2,datm,vartype,jdt,per,slope,puls,v1,p1,j1 : string; -- i,n,p,year1,year,mois,jour : integer; -- jdm : double; --begin --i:=0; --n:=1; --year1:=SpinEdit1.Value; --buf:=FileNameEdit1.FileName; --assignfile(fb,buf); --reset(fb); --buf:=slash(privatedir)+'aavso'+inttostr(year1)+'.dat'; --assignfile(f,buf); --rewrite(f); --try --repeat -- inc(i); -- label3.caption:='Progress: '+inttostr(i); -- application.processmessages; -- readln(fb,buf); -- design:=copy(buf,7,8); -- if (trim(design)='')or(design='DESIGN. ')or(design='--------') then continue; -- nom:=copy(buf,16,9); -- mag:=copy(buf,28,11); -- dat:=copy(buf,40,999); -- p:=pos('-',mag); -- mag1:=cleanmag(copy(mag,1,p-1)); -- mag2:=cleanmag(copy(mag,p+1,99)); -- p:=pos('M',dat); -- if p<=0 then continue; -- p:=p-2; -- datm:=cleandat(copy(dat,p,2)); -- jour:=strtoint(datm); -- if length(datm)=1 then p:=p+1; -- mois:=1+( (p-2) div 6 ); -- year:=year1; -- if mois>12 then begin -- mois:=mois-12; -- year:=year+1; -- end; -- jdm:=jd(year,mois,jour,12); -- str(jdm:10:1,jdt); -- GetGCVSinfo(nom,vartype,per,slope,j1); -- puls:=nom+', '+vartype+', '+mag1+', '+mag2+', '+jdt+', '+per+', '+slope+', '+design; -- writeln(f,puls); -- lpvlst[n]:=trim(design); -- pulslst[n]:=puls; -- inc(n); --until eof(fb); --nLPV:=n-1; --closefile(f); --closefile(fb); --label3.caption:='Finished'; --except --showmessage('Error for line :'+buf); --raise; --end; --end; -- --Function IsLPV(design : string):boolean; --var i : integer; --begin --result:=false; --design:=trim(design); --for i:=1 to nLPV do begin -- if design=lpvlst[i] then begin -- curvar:=i; -- result:=true; -- break; -- end; --end; --end; -- --procedure TForm1.Button1Click(Sender: TObject); --begin --screen.cursor:=crhourglass; --try --convaavsob; --finally --screen.cursor:=crdefault; --end; --end; -- --procedure TForm1.FormShow(Sender: TObject); --begin --GetAppDir; --OpenFileCmd:=DefaultOpenFileCMD; --DirectoryEdit1.Directory:=slash(appdir)+slash('data')+slash('varobs'); --SpinEdit1.Text:=formatdatetime('yyyy',now); --FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+formatdatetime('yy',now)+'.TXT'; --end; -- --procedure TForm1.FormCreate(Sender: TObject); --begin --decimalseparator:='.'; --end; -- --procedure TForm1.Label7Click(Sender: TObject); --begin --Executefile(label7.Caption); --end; -- --procedure TForm1.SpinEdit1Change(Sender: TObject); --begin --FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+copy(SpinEdit1.text,3,2)+'.TXT'; --end; -- --initialization -- {$i aavsob1.lrs} -- --end. -+unit aavsob1; -+ -+{$MODE Delphi} -+ -+{ -+Copyright (C) 2005 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+interface -+ -+uses -+//Shellapi, -+{$ifdef mswindows} -+ Windows, -+{$endif} -+ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -+ StdCtrls, ComCtrls, LResources, EditBtn, Fileutil, u_param, u_util2, Spin; -+ -+type -+ -+ { TForm1 } -+ -+ TForm1 = class(TForm) -+ Button1: TButton; -+ DirectoryEdit1: TDirectoryEdit; -+ FileNameEdit1: TFileNameEdit; -+ Label1: TLabel; -+ Label2: TLabel; -+ Label3: TLabel; -+ Label4: TLabel; -+ Label6: TLabel; -+ Label7: TLabel; -+ Label8: TLabel; -+ SpinEdit1: TSpinEdit; -+ procedure Button1Click(Sender: TObject); -+ procedure FormShow(Sender: TObject); -+ procedure FormCreate(Sender: TObject); -+ procedure Label7Click(Sender: TObject); -+ procedure SpinEdit1Change(Sender: TObject); -+ private -+ Procedure ConvAAVSOb; -+ Procedure GetAppDir; -+ public -+ end; -+ -+var -+ Form1: TForm1; -+ lpvlst,pulslst : array[1..1000] of string; -+ nLPV,curvar : integer; -+ -+implementation -+ -+Procedure TForm1.GetAppDir; -+var buf: string; -+{$ifdef darwin} -+ i: integer; -+{$endif} -+{$ifdef mswindows} -+ PIDL : PItemIDList; -+ Folder : array[0..MAX_PATH] of Char; -+const CSIDL_PERSONAL = $0005; // My Documents -+ CSIDL_APPDATA = $001a; // <user name>\Application Data -+ CSIDL_LOCAL_APPDATA = $001c; // <user name>\Local Settings\Applicaiton Data (non roaming) -+{$endif} -+begin -+{$ifdef darwin} -+appdir:=getcurrentdir; -+if not DirectoryExists(slash(appdir)+slash('data')+slash('varobs')) then begin -+ appdir:=ExtractFilePath(ParamStr(0)); -+ i:=pos('.app/',appdir); -+ if i>0 then begin -+ appdir:=ExtractFilePath(copy(appdir,1,i)); -+ end; -+end; -+{$else} -+appdir:=getcurrentdir; -+GetDir(0,appdir); -+{$endif} -+privatedir:=DefaultPrivateDir; -+configfile:=Defaultconfigfile; -+{$ifdef unix} -+appdir:=expandfilename(appdir); -+privatedir:=expandfilename(PrivateDir); -+configfile:=expandfilename(configfile); -+{$endif} -+{$ifdef mswindows} -+SHGetSpecialFolderLocation(0, CSIDL_LOCAL_APPDATA, PIDL); -+SHGetPathFromIDList(PIDL, Folder); -+buf:=trim(Folder); -+if buf='' then begin // old windows version -+ SHGetSpecialFolderLocation(0, CSIDL_APPDATA, PIDL); -+ SHGetPathFromIDList(PIDL, Folder); -+ buf:=trim(Folder); -+end; -+privatedir:=slash(buf)+privatedir; -+configfile:=slash(privatedir)+configfile; -+{$endif} -+skychart:=slash(appdir)+DefaultSkychart; -+if not FileExists(skychart) then skychart:=DefaultSkychart; -+if not directoryexists(privatedir) then CreateDir(privatedir); -+if not directoryexists(privatedir) then forcedirectory(privatedir); -+if not directoryexists(privatedir) then begin -+ MessageDlg('Unable to create '+privatedir, -+ mtError, [mbAbort], 0); -+ Halt; -+end; -+if not directoryexists(slash(privatedir)+'quicklook') then CreateDir(slash(privatedir)+'quicklook'); -+if not directoryexists(slash(privatedir)+'afoevdata') then CreateDir(slash(privatedir)+'afoevdata'); -+ -+if (not directoryexists(slash(appdir)+slash('data')+'varobs')) then begin -+ // try under the current directory -+ buf:=GetCurrentDir; -+ if (directoryexists(slash(buf)+slash('data')+'varobs')) then -+ appdir:=buf -+ else begin -+ // try under the program directory -+ buf:=ExtractFilePath(ParamStr(0)); -+ if (directoryexists(slash(buf)+slash('data')+'varobs')) then -+ appdir:=buf -+ else begin -+ // try share directory under current location -+ buf:=ExpandFileName(slash(GetCurrentDir)+SharedDir); -+ if (directoryexists(slash(buf)+slash('data')+'varobs')) then -+ appdir:=buf -+ else begin -+ // try share directory at the same location as the program -+ buf:=ExpandFileName(slash(ExtractFilePath(ParamStr(0)))+SharedDir); -+ if (directoryexists(slash(buf)+slash('data')+'varobs')) then -+ appdir:=buf -+ else begin -+ MessageDlg('Could not found the application data directory.'+crlf -+ +'Please check the program installation.', -+ mtError, [mbAbort], 0); -+ Halt; -+ end; -+ end; -+ end; -+ end; -+end; -+ -+ConstDir:=slash(appdir)+slash('data')+slash('varobs'); -+end; -+ -+ -+Function CleanMag(mag:string):string; -+var i:integer; -+ c:char; -+begin -+mag:=trim(mag); -+result:=''; -+for i:=1 to length(mag) do begin -+ c:=mag[i]; -+ if ((c>='0')and(c<='9'))or(c='.')or((i=1)and(c='-')) then result:=result+c; -+end; -+while length(result)<5 do result:=' '+result; -+end; -+ -+Function CleanDat(dat:string):string; -+begin -+result:=stringreplace(dat,'|','',[rfReplaceAll]); -+result:=stringreplace(result,'+','',[rfReplaceAll]); -+result:=stringreplace(result,'-','',[rfReplaceAll]); -+result:=stringreplace(result,' ','',[rfReplaceAll]); -+end; -+ -+Procedure GetGCVSInfo(nom : string; var vartype,per,slope,jdt : string); -+var f : textfile; -+ buf,id1,id2,constel : string; -+ p : integer; -+begin -+vartype:=' '; -+per:=' '; -+slope:=' '; -+jdt:=' '; -+buf:=trim(nom); -+p:=pos(' ',buf); -+id1:=uppercase(copy(buf,1,p-1)); -+constel:=copy(buf,p+1,99); -+if constel='*' then exit; -+constel:=stringreplace(constel,'?','',[]); -+buf:=slash(form1.DirectoryEdit1.Directory)+constel+'.dat'; -+if not fileexists(buf) then exit; -+assignfile(f,buf); -+reset(f); -+repeat -+ readln(f,buf); -+ id2:=trim(uppercase(copy(buf,1,5))); -+ if (copy(id2,1,1)='V')and(length(id2)=5) then begin -+ id2:='V'+inttostr(strtoint(copy(id2,2,4))); -+ end; -+ if id1=id2 then begin -+ vartype:=copy(buf,12,10); -+ per:=copy(buf,52,15); -+ slope:=copy(buf,69,3); -+ jdt:=copy(buf,37,13); -+ break; -+ end; -+until eof(f); -+closefile(f); -+end; -+ -+Procedure Tform1.ConvAAVSOb; -+var fb,f : textfile; -+ buf,design,nom,mag,dat,mag1,mag2,datm,vartype,jdt,per,slope,puls,v1,p1,j1 : string; -+ i,n,p,year1,year,mois,jour : integer; -+ jdm : double; -+begin -+i:=0; -+n:=1; -+year1:=SpinEdit1.Value; -+buf:=FileNameEdit1.FileName; -+assignfile(fb,buf); -+reset(fb); -+buf:=slash(privatedir)+'aavso'+inttostr(year1)+'.dat'; -+assignfile(f,buf); -+rewrite(f); -+try -+repeat -+ inc(i); -+ label3.caption:='Progress: '+inttostr(i); -+ application.processmessages; -+ readln(fb,buf); -+ design:=copy(buf,7,8); -+ if (trim(design)='')or(design='DESIGN. ')or(design='--------') then continue; -+ nom:=copy(buf,16,9); -+ mag:=copy(buf,28,11); -+ dat:=copy(buf,40,999); -+ p:=pos('-',mag); -+ mag1:=cleanmag(copy(mag,1,p-1)); -+ mag2:=cleanmag(copy(mag,p+1,99)); -+ p:=pos('M',dat); -+ if p<=0 then continue; -+ p:=p-2; -+ datm:=cleandat(copy(dat,p,2)); -+ jour:=strtoint(datm); -+ if length(datm)=1 then p:=p+1; -+ mois:=1+( (p-2) div 6 ); -+ year:=year1; -+ if mois>12 then begin -+ mois:=mois-12; -+ year:=year+1; -+ end; -+ jdm:=jd(year,mois,jour,12); -+ str(jdm:10:1,jdt); -+ GetGCVSinfo(nom,vartype,per,slope,j1); -+ puls:=nom+', '+vartype+', '+mag1+', '+mag2+', '+jdt+', '+per+', '+slope+', '+design; -+ writeln(f,puls); -+ lpvlst[n]:=trim(design); -+ pulslst[n]:=puls; -+ inc(n); -+until eof(fb); -+nLPV:=n-1; -+closefile(f); -+closefile(fb); -+label3.caption:='Finished'; -+except -+showmessage('Error for line :'+buf); -+raise; -+end; -+end; -+ -+Function IsLPV(design : string):boolean; -+var i : integer; -+begin -+result:=false; -+design:=trim(design); -+for i:=1 to nLPV do begin -+ if design=lpvlst[i] then begin -+ curvar:=i; -+ result:=true; -+ break; -+ end; -+end; -+end; -+ -+procedure TForm1.Button1Click(Sender: TObject); -+begin -+screen.cursor:=crhourglass; -+try -+convaavsob; -+finally -+screen.cursor:=crdefault; -+end; -+end; -+ -+procedure TForm1.FormShow(Sender: TObject); -+begin -+GetAppDir; -+OpenFileCmd:=DefaultOpenFileCMD; -+DirectoryEdit1.Directory:=slash(appdir)+slash('data')+slash('varobs'); -+SpinEdit1.Text:=formatdatetime('yyyy',now); -+FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+formatdatetime('yy',now)+'.TXT'; -+end; -+ -+procedure TForm1.FormCreate(Sender: TObject); -+begin -+decimalseparator:='.'; -+end; -+ -+procedure TForm1.Label7Click(Sender: TObject); -+begin -+Executefile(label7.Caption); -+end; -+ -+procedure TForm1.SpinEdit1Change(Sender: TObject); -+begin -+FileNameEdit1.FileName:=slash(privatedir)+'BULLET'+copy(SpinEdit1.text,3,2)+'.TXT'; -+end; -+ -+initialization -+ {$i aavsob1.lrs} -+ -+end. -diff -ur skychart_3.2/varobs/aavsochart.lfm skychart_3.2_up/varobs/aavsochart.lfm ---- skychart_3.2/varobs/aavsochart.lfm 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/aavsochart.lfm 2011-03-09 15:18:23.214264489 +0100 -@@ -1,204 +1,204 @@ --object chartform: Tchartform -- Left = 308 -- Height = 295 -- Top = 147 -- Width = 247 -- HorzScrollBar.Page = 246 -- VertScrollBar.Page = 294 -- ActiveControl = OnlinePanel -- Caption = 'AAVSO Chart List' -- ClientHeight = 295 -- ClientWidth = 247 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- OnShow = FormShow -- LCLVersion = '0.9.29' -- object CdromPanel: TPanel -- Left = 0 -- Height = 256 -- Top = 0 -- Width = 242 -- ClientHeight = 256 -- ClientWidth = 242 -- TabOrder = 0 -- object Label1: TLabel -- Left = 8 -- Height = 25 -- Top = 6 -- Width = 225 -- AutoSize = False -- Caption = 'Label1' -- ParentColor = False -- WordWrap = True -- end -- object ListBox1: TListBox -- Left = 8 -- Height = 209 -- Top = 32 -- Width = 225 -- ItemHeight = 0 -- OnClick = ListBox1Click -- TabOrder = 0 -- TopIndex = -1 -- end -- end -- object Button1: TButton -- Left = 80 -- Height = 25 -- Top = 264 -- Width = 75 -- Cancel = True -- Caption = 'Close' -- ModalResult = 1 -- TabOrder = 1 -- end -- object OnlinePanel: TPanel -- Left = 0 -- Height = 272 -- Top = -16 -- Width = 242 -- ClientHeight = 272 -- ClientWidth = 242 -- TabOrder = 2 -- object Label2: TLabel -- Left = 8 -- Height = 19 -- Top = 24 -- Width = 130 -- Caption = 'Online AAVSO chart for ' -- ParentColor = False -- end -- object StarLabel: TLabel -- Left = 136 -- Height = 15 -- Top = 24 -- Width = 56 -- Caption = 'StarLabel' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label3: TLabel -- Left = 88 -- Height = 19 -- Top = 59 -- Width = 37 -- Caption = 'Scale :' -- ParentColor = False -- end -- object Label4: TLabel -- Left = 96 -- Height = 19 -- Top = 92 -- Width = 27 -- Caption = 'FOV:' -- ParentColor = False -- end -- object Labelfov: TLabel -- Left = 136 -- Height = 15 -- Top = 92 -- Width = 49 -- Caption = 'Labelfov' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label5: TLabel -- Left = 66 -- Height = 19 -- Top = 118 -- Width = 54 -- Caption = 'Magnitude:' -- ParentColor = False -- end -- object LabelMag: TLabel -- Left = 136 -- Height = 15 -- Top = 118 -- Width = 56 -- Caption = 'LabelMag' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label6: TLabel -- Left = 89 -- Height = 19 -- Top = 144 -- Width = 31 -- Caption = 'North:' -- ParentColor = False -- end -- object LabelNorth: TLabel -- Left = 136 -- Height = 15 -- Top = 144 -- Width = 63 -- Caption = 'LabelNorth' -- Font.Style = [fsBold] -- ParentColor = False -- ParentFont = False -- end -- object Label7: TLabel -- Left = 95 -- Height = 19 -- Top = 168 -- Width = 25 -- Caption = 'East:' -- ParentColor = False -- end -- object ComboBox1: TComboBox -- Left = 136 -- Height = 24 -- Top = 56 -- Width = 60 -- ItemHeight = 0 -- ItemIndex = 4 -- Items.Strings = ( -- 'A' -- 'AR' -- 'B' -- 'BR' -- 'C' -- 'CR' -- 'D' -- 'DR' -- 'E' -- 'ER' -- 'F' -- 'FR' -- 'G' -- 'GR' -- ) -- OnChange = ComboBox1Change -- Style = csDropDownList -- TabOrder = 0 -- Text = 'C' -- end -- object ComboBox2: TComboBox -- Left = 136 -- Height = 24 -- Top = 166 -- Width = 75 -- ItemHeight = 0 -- ItemIndex = 0 -- Items.Strings = ( -- 'Right' -- 'Left' -- ) -- Style = csDropDownList -- TabOrder = 1 -- Text = 'Right' -- end -- object Button2: TButton -- Left = 136 -- Height = 25 -- Top = 208 -- Width = 75 -- Caption = 'Get Chart' -- OnClick = Button2Click -- TabOrder = 2 -- end -- end -+object chartform: Tchartform -+ Left = 308 -+ Height = 295 -+ Top = 147 -+ Width = 247 -+ HorzScrollBar.Page = 246 -+ VertScrollBar.Page = 294 -+ ActiveControl = OnlinePanel -+ Caption = 'AAVSO Chart List' -+ ClientHeight = 295 -+ ClientWidth = 247 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ OnShow = FormShow -+ LCLVersion = '0.9.29' -+ object CdromPanel: TPanel -+ Left = 0 -+ Height = 256 -+ Top = 0 -+ Width = 242 -+ ClientHeight = 256 -+ ClientWidth = 242 -+ TabOrder = 0 -+ object Label1: TLabel -+ Left = 8 -+ Height = 25 -+ Top = 6 -+ Width = 225 -+ AutoSize = False -+ Caption = 'Label1' -+ ParentColor = False -+ WordWrap = True -+ end -+ object ListBox1: TListBox -+ Left = 8 -+ Height = 209 -+ Top = 32 -+ Width = 225 -+ ItemHeight = 0 -+ OnClick = ListBox1Click -+ TabOrder = 0 -+ TopIndex = -1 -+ end -+ end -+ object Button1: TButton -+ Left = 80 -+ Height = 25 -+ Top = 264 -+ Width = 75 -+ Cancel = True -+ Caption = 'Close' -+ ModalResult = 1 -+ TabOrder = 1 -+ end -+ object OnlinePanel: TPanel -+ Left = 0 -+ Height = 272 -+ Top = -16 -+ Width = 242 -+ ClientHeight = 272 -+ ClientWidth = 242 -+ TabOrder = 2 -+ object Label2: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 24 -+ Width = 130 -+ Caption = 'Online AAVSO chart for ' -+ ParentColor = False -+ end -+ object StarLabel: TLabel -+ Left = 136 -+ Height = 15 -+ Top = 24 -+ Width = 56 -+ Caption = 'StarLabel' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label3: TLabel -+ Left = 88 -+ Height = 19 -+ Top = 59 -+ Width = 37 -+ Caption = 'Scale :' -+ ParentColor = False -+ end -+ object Label4: TLabel -+ Left = 96 -+ Height = 19 -+ Top = 92 -+ Width = 27 -+ Caption = 'FOV:' -+ ParentColor = False -+ end -+ object Labelfov: TLabel -+ Left = 136 -+ Height = 15 -+ Top = 92 -+ Width = 49 -+ Caption = 'Labelfov' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label5: TLabel -+ Left = 66 -+ Height = 19 -+ Top = 118 -+ Width = 54 -+ Caption = 'Magnitude:' -+ ParentColor = False -+ end -+ object LabelMag: TLabel -+ Left = 136 -+ Height = 15 -+ Top = 118 -+ Width = 56 -+ Caption = 'LabelMag' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label6: TLabel -+ Left = 89 -+ Height = 19 -+ Top = 144 -+ Width = 31 -+ Caption = 'North:' -+ ParentColor = False -+ end -+ object LabelNorth: TLabel -+ Left = 136 -+ Height = 15 -+ Top = 144 -+ Width = 63 -+ Caption = 'LabelNorth' -+ Font.Style = [fsBold] -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label7: TLabel -+ Left = 95 -+ Height = 19 -+ Top = 168 -+ Width = 25 -+ Caption = 'East:' -+ ParentColor = False -+ end -+ object ComboBox1: TComboBox -+ Left = 136 -+ Height = 24 -+ Top = 56 -+ Width = 60 -+ ItemHeight = 0 -+ ItemIndex = 4 -+ Items.Strings = ( -+ 'A' -+ 'AR' -+ 'B' -+ 'BR' -+ 'C' -+ 'CR' -+ 'D' -+ 'DR' -+ 'E' -+ 'ER' -+ 'F' -+ 'FR' -+ 'G' -+ 'GR' -+ ) -+ OnChange = ComboBox1Change -+ Style = csDropDownList -+ TabOrder = 0 -+ Text = 'C' -+ end -+ object ComboBox2: TComboBox -+ Left = 136 -+ Height = 24 -+ Top = 166 -+ Width = 75 -+ ItemHeight = 0 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'Right' -+ 'Left' -+ ) -+ Style = csDropDownList -+ TabOrder = 1 -+ Text = 'Right' -+ end -+ object Button2: TButton -+ Left = 136 -+ Height = 25 -+ Top = 208 -+ Width = 75 -+ Caption = 'Get Chart' -+ OnClick = Button2Click -+ TabOrder = 2 -+ end -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/aavsochart.lrs skychart_3.2_up/varobs/aavsochart.lrs ---- skychart_3.2/varobs/aavsochart.lrs 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/aavsochart.lrs 2011-03-09 15:18:23.214264489 +0100 -@@ -1,49 +1,49 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tchartform','FORMDATA',[ -- 'TPF0'#10'Tchartform'#9'chartform'#4'Left'#3'4'#1#6'Height'#3''''#1#3'Top'#3 -- +#147#0#5'Width'#3#247#0#18'HorzScrollBar.Page'#3#246#0#18'VertScrollBar.Page' -- +#3'&'#1#13'ActiveControl'#7#11'OnlinePanel'#7'Caption'#6#16'AAVSO Chart List' -- +#12'ClientHeight'#3''''#1#11'ClientWidth'#3#247#0#11'Font.Height'#2#245#9'Fo' -- +'nt.Name'#6#13'MS Sans Serif'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9' -- +'.29'#0#6'TPanel'#10'CdromPanel'#4'Left'#2#0#6'Height'#3#0#1#3'Top'#2#0#5'Wi' -- +'dth'#3#242#0#12'ClientHeight'#3#0#1#11'ClientWidth'#3#242#0#8'TabOrder'#2#0 -- +#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#6#5'Width'#3#225#0 -- +#8'AutoSize'#8#7'Caption'#6#6'Label1'#11'ParentColor'#8#8'WordWrap'#9#0#0#8 -- +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#2' '#5'Width'#3 -- +#225#0#10'ItemHeight'#2#0#7'OnClick'#7#13'ListBox1Click'#8'TabOrder'#2#0#8'T' -- +'opIndex'#2#255#0#0#0#7'TButton'#7'Button1'#4'Left'#2'P'#6'Height'#2#25#3'To' -- +'p'#3#8#1#5'Width'#2'K'#6'Cancel'#9#7'Caption'#6#5'Close'#11'ModalResult'#2#1 -- +#8'TabOrder'#2#1#0#0#6'TPanel'#11'OnlinePanel'#4'Left'#2#0#6'Height'#3#16#1#3 -- +'Top'#2#240#5'Width'#3#242#0#12'ClientHeight'#3#16#1#11'ClientWidth'#3#242#0 -- +#8'TabOrder'#2#2#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2#24 -- +#5'Width'#3#130#0#7'Caption'#6#23'Online AAVSO chart for '#11'ParentColor'#8 -- +#0#0#6'TLabel'#9'StarLabel'#4'Left'#3#136#0#6'Height'#2#15#3'Top'#2#24#5'Wid' -- +'th'#2'8'#7'Caption'#6#9'StarLabel'#10'Font.Style'#11#6'fsBold'#0#11'ParentC' -- +'olor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'X'#6'Height'#2#19 -- +#3'Top'#2';'#5'Width'#2'%'#7'Caption'#6#7'Scale :'#11'ParentColor'#8#0#0#6'T' -- +'Label'#6'Label4'#4'Left'#2'`'#6'Height'#2#19#3'Top'#2'\'#5'Width'#2#27#7'Ca' -- +'ption'#6#4'FOV:'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelfov'#4'Left'#3#136#0 -- +#6'Height'#2#15#3'Top'#2'\'#5'Width'#2'1'#7'Caption'#6#8'Labelfov'#10'Font.S' -- +'tyle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Lab' -- +'el5'#4'Left'#2'B'#6'Height'#2#19#3'Top'#2'v'#5'Width'#2'6'#7'Caption'#6#10 -- +'Magnitude:'#11'ParentColor'#8#0#0#6'TLabel'#8'LabelMag'#4'Left'#3#136#0#6'H' -- +'eight'#2#15#3'Top'#2'v'#5'Width'#2'8'#7'Caption'#6#8'LabelMag'#10'Font.Styl' -- +'e'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label6' -- +#4'Left'#2'Y'#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2#31#7'Caption'#6#6'Nor' -- +'th:'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelNorth'#4'Left'#3#136#0#6'Heigh' -- +'t'#2#15#3'Top'#3#144#0#5'Width'#2'?'#7'Caption'#6#10'LabelNorth'#10'Font.St' -- +'yle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Labe' -- +'l7'#4'Left'#2'_'#6'Height'#2#19#3'Top'#3#168#0#5'Width'#2#25#7'Caption'#6#5 -- +'East:'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#136#0#6'He' -- +'ight'#2#24#3'Top'#2'8'#5'Width'#2'<'#10'ItemHeight'#2#0#9'ItemIndex'#2#4#13 -- +'Items.Strings'#1#6#1'A'#6#2'AR'#6#1'B'#6#2'BR'#6#1'C'#6#2'CR'#6#1'D'#6#2'DR' -- +#6#1'E'#6#2'ER'#6#1'F'#6#2'FR'#6#1'G'#6#2'GR'#0#8'OnChange'#7#15'ComboBox1Ch' -- +'ange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#4'Text'#6#1'C'#0#0#9'TC' -- +'omboBox'#9'ComboBox2'#4'Left'#3#136#0#6'Height'#2#24#3'Top'#3#166#0#5'Width' -- +#2'K'#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#5'Right'#6#4 -- +'Left'#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#5'Right'#0#0 -- +#7'TButton'#7'Button2'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3#208#0#5'Width' -- +#2'K'#7'Caption'#6#9'Get Chart'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#2 -- +#0#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tchartform','FORMDATA',[ -+ 'TPF0'#10'Tchartform'#9'chartform'#4'Left'#3'4'#1#6'Height'#3''''#1#3'Top'#3 -+ +#147#0#5'Width'#3#247#0#18'HorzScrollBar.Page'#3#246#0#18'VertScrollBar.Page' -+ +#3'&'#1#13'ActiveControl'#7#11'OnlinePanel'#7'Caption'#6#16'AAVSO Chart List' -+ +#12'ClientHeight'#3''''#1#11'ClientWidth'#3#247#0#11'Font.Height'#2#245#9'Fo' -+ +'nt.Name'#6#13'MS Sans Serif'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9' -+ +'.29'#0#6'TPanel'#10'CdromPanel'#4'Left'#2#0#6'Height'#3#0#1#3'Top'#2#0#5'Wi' -+ +'dth'#3#242#0#12'ClientHeight'#3#0#1#11'ClientWidth'#3#242#0#8'TabOrder'#2#0 -+ +#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'Height'#2#25#3'Top'#2#6#5'Width'#3#225#0 -+ +#8'AutoSize'#8#7'Caption'#6#6'Label1'#11'ParentColor'#8#8'WordWrap'#9#0#0#8 -+ +'TListBox'#8'ListBox1'#4'Left'#2#8#6'Height'#3#209#0#3'Top'#2' '#5'Width'#3 -+ +#225#0#10'ItemHeight'#2#0#7'OnClick'#7#13'ListBox1Click'#8'TabOrder'#2#0#8'T' -+ +'opIndex'#2#255#0#0#0#7'TButton'#7'Button1'#4'Left'#2'P'#6'Height'#2#25#3'To' -+ +'p'#3#8#1#5'Width'#2'K'#6'Cancel'#9#7'Caption'#6#5'Close'#11'ModalResult'#2#1 -+ +#8'TabOrder'#2#1#0#0#6'TPanel'#11'OnlinePanel'#4'Left'#2#0#6'Height'#3#16#1#3 -+ +'Top'#2#240#5'Width'#3#242#0#12'ClientHeight'#3#16#1#11'ClientWidth'#3#242#0 -+ +#8'TabOrder'#2#2#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2#24 -+ +#5'Width'#3#130#0#7'Caption'#6#23'Online AAVSO chart for '#11'ParentColor'#8 -+ +#0#0#6'TLabel'#9'StarLabel'#4'Left'#3#136#0#6'Height'#2#15#3'Top'#2#24#5'Wid' -+ +'th'#2'8'#7'Caption'#6#9'StarLabel'#10'Font.Style'#11#6'fsBold'#0#11'ParentC' -+ +'olor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2'X'#6'Height'#2#19 -+ +#3'Top'#2';'#5'Width'#2'%'#7'Caption'#6#7'Scale :'#11'ParentColor'#8#0#0#6'T' -+ +'Label'#6'Label4'#4'Left'#2'`'#6'Height'#2#19#3'Top'#2'\'#5'Width'#2#27#7'Ca' -+ +'ption'#6#4'FOV:'#11'ParentColor'#8#0#0#6'TLabel'#8'Labelfov'#4'Left'#3#136#0 -+ +#6'Height'#2#15#3'Top'#2'\'#5'Width'#2'1'#7'Caption'#6#8'Labelfov'#10'Font.S' -+ +'tyle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Lab' -+ +'el5'#4'Left'#2'B'#6'Height'#2#19#3'Top'#2'v'#5'Width'#2'6'#7'Caption'#6#10 -+ +'Magnitude:'#11'ParentColor'#8#0#0#6'TLabel'#8'LabelMag'#4'Left'#3#136#0#6'H' -+ +'eight'#2#15#3'Top'#2'v'#5'Width'#2'8'#7'Caption'#6#8'LabelMag'#10'Font.Styl' -+ +'e'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Label6' -+ +#4'Left'#2'Y'#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2#31#7'Caption'#6#6'Nor' -+ +'th:'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelNorth'#4'Left'#3#136#0#6'Heigh' -+ +'t'#2#15#3'Top'#3#144#0#5'Width'#2'?'#7'Caption'#6#10'LabelNorth'#10'Font.St' -+ +'yle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#6'TLabel'#6'Labe' -+ +'l7'#4'Left'#2'_'#6'Height'#2#19#3'Top'#3#168#0#5'Width'#2#25#7'Caption'#6#5 -+ +'East:'#11'ParentColor'#8#0#0#9'TComboBox'#9'ComboBox1'#4'Left'#3#136#0#6'He' -+ +'ight'#2#24#3'Top'#2'8'#5'Width'#2'<'#10'ItemHeight'#2#0#9'ItemIndex'#2#4#13 -+ +'Items.Strings'#1#6#1'A'#6#2'AR'#6#1'B'#6#2'BR'#6#1'C'#6#2'CR'#6#1'D'#6#2'DR' -+ +#6#1'E'#6#2'ER'#6#1'F'#6#2'FR'#6#1'G'#6#2'GR'#0#8'OnChange'#7#15'ComboBox1Ch' -+ +'ange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#4'Text'#6#1'C'#0#0#9'TC' -+ +'omboBox'#9'ComboBox2'#4'Left'#3#136#0#6'Height'#2#24#3'Top'#3#166#0#5'Width' -+ +#2'K'#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#5'Right'#6#4 -+ +'Left'#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#5'Right'#0#0 -+ +#7'TButton'#7'Button2'#4'Left'#3#136#0#6'Height'#2#25#3'Top'#3#208#0#5'Width' -+ +#2'K'#7'Caption'#6#9'Get Chart'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#2 -+ +#0#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/detail1.lfm skychart_3.2_up/varobs/detail1.lfm ---- skychart_3.2/varobs/detail1.lfm 2008-06-15 13:45:38.000000000 +0200 -+++ skychart_3.2_up/varobs/detail1.lfm 2011-03-09 15:18:23.215264366 +0100 -@@ -1,544 +1,544 @@ --object DetailForm: TDetailForm -- Left = 457 -- Height = 483 -- Top = 149 -- Width = 728 -- HorzScrollBar.Page = 727 -- VertScrollBar.Page = 463 -- ActiveControl = BitBtn1 -- Caption = 'DetailForm' -- ClientHeight = 464 -- ClientWidth = 728 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- Menu = MainMenu1 -- OnResize = FormResize -- OnShow = FormShow -- ShowHint = True -- object Image1: TImage -- Height = 336 -- Width = 728 -- Align = alClient -- OnMouseDown = Image1MouseDown -- OnMouseMove = Image1MouseMove -- OnMouseUp = Image1MouseUp -- Transparent = False -- end -- object Panel2: TPanel -- Height = 90 -- Top = 374 -- Width = 728 -- Align = alBottom -- ClientHeight = 90 -- ClientWidth = 728 -- TabOrder = 0 -- object Label7: TLabel -- Left = 8 -- Height = 20 -- Top = 36 -- Width = 31 -- Caption = 'Date:' -- ParentColor = False -- end -- object Label8: TLabel -- Left = 136 -- Height = 20 -- Top = 36 -- Width = 28 -- Caption = 'Mag:' -- ParentColor = False -- end -- object Label1: TLabel -- Left = 228 -- Height = 20 -- Top = 10 -- Width = 60 -- Caption = 'Mag. max:' -- ParentColor = False -- end -- object Label2: TLabel -- Left = 333 -- Height = 20 -- Top = 10 -- Width = 53 -- Caption = 'Mag min:' -- ParentColor = False -- end -- object Label3: TLabel -- Left = 429 -- Height = 20 -- Top = 10 -- Width = 41 -- Caption = 'Period:' -- ParentColor = False -- end -- object Label4: TLabel -- Left = 541 -- Height = 20 -- Top = 10 -- Width = 58 -- Caption = 'Rise time:' -- ParentColor = False -- end -- object Label5: TLabel -- Left = 136 -- Height = 20 -- Top = 10 -- Width = 30 -- Caption = 'Type:' -- ParentColor = False -- end -- object Label6: TLabel -- Left = 8 -- Height = 20 -- Top = 10 -- Width = 29 -- Caption = 'Star:' -- ParentColor = False -- end -- object BitBtn1: TBitBtn -- Left = 651 -- Height = 25 -- Top = 5 -- Width = 67 -- Cancel = True -- Caption = 'Close' -- ModalResult = 2 -- NumGlyphs = 2 -- TabOrder = 0 -- end -- object Edit12: TEdit -- Left = 36 -- Height = 21 -- Top = 32 -- Width = 97 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 1 -- Text = 'Edit12' -- end -- object Edit13: TEdit -- Left = 166 -- Height = 21 -- Top = 32 -- Width = 41 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 2 -- Text = 'Edit13' -- end -- object CheckBox1: TCheckBox -- Left = 256 -- Height = 21 -- Hint = 'Cursor follow light curve on graph' -- Top = 56 -- Width = 121 -- Caption = 'Follow light curve' -- Checked = True -- OnClick = CheckBox1Click -- State = cbChecked -- TabOrder = 3 -- end -- object CheckBox2: TCheckBox -- Left = 399 -- Height = 21 -- Hint = 'Plot observation data from file defined on setting' -- Top = 56 -- Width = 148 -- Caption = 'Plot observation data ' -- Checked = True -- OnClick = CheckBox2Click -- State = cbChecked -- TabOrder = 4 -- end -- object BitBtn2: TBitBtn -- Left = 224 -- Height = 25 -- Hint = 'Backward one period' -- Top = 30 -- Width = 25 -- Glyph.Data = { -- F6000000424DF600000000000000760000002800000010000000100000000100 -- 04000000000080000000120B0000120B00001000000010000000000000000000 -- 8000008000000080800080000000800080008080000080808000C0C0C0000000 -- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADAD0DADA -- DADAADADAD00ADADADADDADAD0D0DADADADAADAD0DA0ADADADADDAD0DAD00000 -- 000AAD0DADADADADAD0DD0DADADADADADA0A0DADADADADADAD0DD0DADADADADA -- DA0AAD0DADADADADAD0DDAD0DAD00000000AADAD0DA0ADADADADDADAD0D0DADA -- DADAADADAD00ADADADADDADADAD0DADADADAADADADADADADADAD -- } -- NumGlyphs = 0 -- OnClick = BitBtn2Click -- TabOrder = 5 -- end -- object BitBtn3: TBitBtn -- Left = 288 -- Height = 25 -- Hint = 'Forward one period' -- Top = 30 -- Width = 25 -- Glyph.Data = { -- F6000000424DF600000000000000760000002800000010000000100000000100 -- 04000000000080000000130B0000130B00001000000000000000000000000000 -- 8000008000000080800080000000800080008080000080808000C0C0C0000000 -- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA -- DADAADADADAD0DADADADDADADADA00DADADAADADADAD0D0DADADDADADADA0AD0 -- DADAA00000000DAD0DADD0DADADADADAD0DAA0ADADADADADAD0DD0DADADADADA -- DAD0A0ADADADADADAD0DD0DADADADADAD0DAA00000000DAD0DADDADADADA0AD0 -- DADAADADADAD0D0DADADDADADADA00DADADAADADADAD0DADADAD -- } -- NumGlyphs = 0 -- OnClick = BitBtn3Click -- TabOrder = 6 -- end -- object BitBtn4: TBitBtn -- Left = 256 -- Height = 25 -- Hint = 'Current period' -- Top = 30 -- Width = 25 -- Glyph.Data = { -- F6000000424DF600000000000000760000002800000010000000100000000100 -- 04000000000080000000120B0000120B00001000000010000000000000000000 -- 8000008000000080800080000000800080008080000080808000C0C0C0000000 -- FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA -- DADAADADADA0ADADADADDADADA0A0ADADADAADADA0ADA0ADADADDADA0ADADA0A -- DADAADA0ADADADA0ADADDA0ADADADADA0ADAA0ADADADADADA0AD0ADADADADADA -- DA0AA0ADADADADADA0ADDA0ADADADADA0ADAADA0ADADADA0ADADDADA0ADADA0A -- DADAADADA0ADA0ADADADDADADA0A0ADADADAADADADA0ADADADAD -- } -- NumGlyphs = 0 -- OnClick = BitBtn4Click -- TabOrder = 7 -- end -- object Edit1: TEdit -- Left = 36 -- Height = 21 -- Top = 6 -- Width = 97 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 8 -- Text = 'Edit1' -- end -- object Edit2: TEdit -- Left = 166 -- Height = 21 -- Top = 6 -- Width = 57 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 9 -- Text = 'Edit2' -- end -- object Edit3: TEdit -- Left = 288 -- Height = 21 -- Top = 6 -- Width = 41 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 10 -- Text = 'Edit3' -- end -- object Edit4: TEdit -- Left = 383 -- Height = 21 -- Top = 6 -- Width = 41 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 11 -- Text = 'Edit4' -- end -- object Edit5: TEdit -- Left = 469 -- Height = 21 -- Top = 6 -- Width = 65 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 12 -- Text = 'Edit5' -- end -- object Edit6: TEdit -- Left = 597 -- Height = 21 -- Top = 6 -- Width = 41 -- Color = clBtnFace -- ReadOnly = True -- TabOrder = 13 -- Text = 'Edit6' -- end -- object CheckBox4: TCheckBox -- Left = 399 -- Height = 21 -- Top = 34 -- Width = 105 -- Caption = 'Plot QuickLook' -- OnClick = CheckBox4Click -- TabOrder = 14 -- end -- object BitBtn5: TBitBtn -- Left = 615 -- Height = 25 -- Top = 48 -- Width = 97 -- Caption = 'Get QuickLook' -- NumGlyphs = 0 -- OnClick = GetQuickLookClick -- TabOrder = 15 -- end -- object CheckBox5: TCheckBox -- Left = 8 -- Height = 21 -- Top = 56 -- Width = 228 -- Caption = 'Group observation to current phase' -- OnClick = CheckBox5Click -- TabOrder = 16 -- end -- end -- object Panel3: TPanel -- Height = 38 -- Hint = 'Click on the box to change color' -- Top = 336 -- Width = 728 -- Align = alBottom -- ClientHeight = 38 -- ClientWidth = 728 -- TabOrder = 1 -- object Shape1: TShape -- Left = 8 -- Height = 14 -- Top = 2 -- Width = 14 -- OnMouseUp = Shape1MouseUp -- end -- object Label9: TLabel -- Left = 25 -- Height = 20 -- Top = 5 -- Width = 68 -- Caption = 'Background' -- ParentColor = False -- end -- object Shape2: TShape -- Left = 136 -- Height = 14 -- Top = 2 -- Width = 14 -- Brush.Color = clBlack -- OnMouseUp = Shape2MouseUp -- end -- object Label10: TLabel -- Left = 158 -- Height = 20 -- Top = 5 -- Width = 24 -- Caption = 'Axis' -- ParentColor = False -- end -- object Shape5: TShape -- Left = 533 -- Height = 14 -- Top = 2 -- Width = 14 -- Brush.Color = clRed -- OnMouseUp = Shape5MouseUp -- end -- object Label13: TLabel -- Left = 558 -- Height = 20 -- Top = 5 -- Width = 73 -- Caption = 'Out of range' -- ParentColor = False -- end -- object Shape3: TShape -- Left = 288 -- Height = 14 -- Top = 2 -- Width = 14 -- Brush.Color = clRed -- OnMouseUp = Shape3MouseUp -- end -- object Label11: TLabel -- Left = 304 -- Height = 20 -- Top = 5 -- Width = 73 -- Caption = 'Current date' -- ParentColor = False -- end -- object Shape4: TShape -- Left = 383 -- Height = 14 -- Top = 2 -- Width = 14 -- Brush.Color = clBlue -- OnMouseUp = Shape4MouseUp -- end -- object Label12: TLabel -- Left = 408 -- Height = 20 -- Top = 5 -- Width = 121 -- Caption = 'Estimated light curve' -- ParentColor = False -- end -- object Shape6: TShape -- Left = 8 -- Height = 14 -- Top = 18 -- Width = 14 -- Brush.Color = clLime -- OnMouseUp = Shape6MouseUp -- end -- object Label14: TLabel -- Left = 25 -- Height = 20 -- Top = 21 -- Width = 102 -- Caption = 'Observation point' -- ParentColor = False -- end -- object Shape7: TShape -- Left = 136 -- Height = 14 -- Top = 18 -- Width = 14 -- Brush.Color = clFuchsia -- OnMouseUp = Shape7MouseUp -- end -- object Shape8: TShape -- Left = 288 -- Height = 14 -- Top = 18 -- Width = 14 -- Brush.Color = clBlue -- OnMouseUp = Shape8MouseUp -- end -- object Label16: TLabel -- Left = 304 -- Height = 20 -- Top = 21 -- Width = 68 -- Caption = 'Fainter than' -- ParentColor = False -- end -- object Shape9: TShape -- Left = 383 -- Height = 14 -- Top = 18 -- Width = 14 -- Brush.Color = clGreen -- OnMouseUp = Shape9MouseUp -- end -- object Label17: TLabel -- Left = 408 -- Height = 20 -- Top = 21 -- Width = 55 -- Caption = 'Uncertain' -- ParentColor = False -- end -- object Shape10: TShape -- Left = 533 -- Height = 14 -- Top = 18 -- Width = 14 -- Brush.Color = clTeal -- OnMouseUp = Shape10MouseUp -- end -- object Label18: TLabel -- Left = 558 -- Height = 20 -- Top = 21 -- Width = 131 -- Caption = 'Non visual observation' -- ParentColor = False -- end -- object CheckBox3: TCheckBox -- Left = 158 -- Height = 21 -- Hint = 'Show your own observation on another color' -- Top = 16 -- Width = 119 -- Caption = 'Own observation' -- Checked = True -- OnClick = CheckBox3Click -- State = cbChecked -- TabOrder = 0 -- end -- object BitBtn6: TBitBtn -- Left = 693 -- Height = 25 -- Hint = 'Zoom' -- Top = 5 -- Width = 25 -- Caption = '+/-' -- NumGlyphs = 0 -- OnClick = BitBtn6Click -- TabOrder = 1 -- end -- end -- object ColorDialog1: TColorDialog -- Title = 'Select color' -- left = 64 -- top = 16 -- end -- object MainMenu1: TMainMenu -- left = 16 -- top = 16 -- object File1: TMenuItem -- Caption = '&File' -- object SaveasBMP1: TMenuItem -- Caption = '&Save as BMP ...' -- OnClick = SaveasBMP1Click -- end -- object GetQuickLook: TMenuItem -- Caption = '&Get online AAVSO QuickLook data' -- OnClick = GetQuickLookClick -- end -- object Close1: TMenuItem -- Caption = '&Close' -- OnClick = Close1Click -- end -- end -- object MenuItem1: TMenuItem -- Caption = '&Online data' -- object MenuItem2: TMenuItem -- Caption = 'AAVSO Quick look' -- ShowAlwaysCheckable = True -- OnClick = MenuItem2Click -- end -- object MenuItem3: TMenuItem -- Caption = 'AFOEV FTP Archive' -- ShowAlwaysCheckable = True -- OnClick = MenuItem3Click -- end -- end -- end -- object SaveDialog1: TSaveDialog -- Title = 'Save file as' -- DefaultExt = '.bmp' -- Filter = 'Bitmap files|*.bmp' -- left = 112 -- top = 16 -- end -- object DownloadDialog1: TDownloadDialog -- FtpFwPassive = True -- ConfirmDownload = True -- left = 28 -- top = 75 -- end -- object RefreshTimer: TTimer -- Enabled = False -- Interval = 200 -- OnTimer = RefreshTimerTimer -- left = 88 -- top = 75 -- end --end -+object DetailForm: TDetailForm -+ Left = 457 -+ Height = 483 -+ Top = 149 -+ Width = 728 -+ HorzScrollBar.Page = 727 -+ VertScrollBar.Page = 463 -+ ActiveControl = BitBtn1 -+ Caption = 'DetailForm' -+ ClientHeight = 464 -+ ClientWidth = 728 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ Menu = MainMenu1 -+ OnResize = FormResize -+ OnShow = FormShow -+ ShowHint = True -+ object Image1: TImage -+ Height = 336 -+ Width = 728 -+ Align = alClient -+ OnMouseDown = Image1MouseDown -+ OnMouseMove = Image1MouseMove -+ OnMouseUp = Image1MouseUp -+ Transparent = False -+ end -+ object Panel2: TPanel -+ Height = 90 -+ Top = 374 -+ Width = 728 -+ Align = alBottom -+ ClientHeight = 90 -+ ClientWidth = 728 -+ TabOrder = 0 -+ object Label7: TLabel -+ Left = 8 -+ Height = 20 -+ Top = 36 -+ Width = 31 -+ Caption = 'Date:' -+ ParentColor = False -+ end -+ object Label8: TLabel -+ Left = 136 -+ Height = 20 -+ Top = 36 -+ Width = 28 -+ Caption = 'Mag:' -+ ParentColor = False -+ end -+ object Label1: TLabel -+ Left = 228 -+ Height = 20 -+ Top = 10 -+ Width = 60 -+ Caption = 'Mag. max:' -+ ParentColor = False -+ end -+ object Label2: TLabel -+ Left = 333 -+ Height = 20 -+ Top = 10 -+ Width = 53 -+ Caption = 'Mag min:' -+ ParentColor = False -+ end -+ object Label3: TLabel -+ Left = 429 -+ Height = 20 -+ Top = 10 -+ Width = 41 -+ Caption = 'Period:' -+ ParentColor = False -+ end -+ object Label4: TLabel -+ Left = 541 -+ Height = 20 -+ Top = 10 -+ Width = 58 -+ Caption = 'Rise time:' -+ ParentColor = False -+ end -+ object Label5: TLabel -+ Left = 136 -+ Height = 20 -+ Top = 10 -+ Width = 30 -+ Caption = 'Type:' -+ ParentColor = False -+ end -+ object Label6: TLabel -+ Left = 8 -+ Height = 20 -+ Top = 10 -+ Width = 29 -+ Caption = 'Star:' -+ ParentColor = False -+ end -+ object BitBtn1: TBitBtn -+ Left = 651 -+ Height = 25 -+ Top = 5 -+ Width = 67 -+ Cancel = True -+ Caption = 'Close' -+ ModalResult = 2 -+ NumGlyphs = 2 -+ TabOrder = 0 -+ end -+ object Edit12: TEdit -+ Left = 36 -+ Height = 21 -+ Top = 32 -+ Width = 97 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 1 -+ Text = 'Edit12' -+ end -+ object Edit13: TEdit -+ Left = 166 -+ Height = 21 -+ Top = 32 -+ Width = 41 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 2 -+ Text = 'Edit13' -+ end -+ object CheckBox1: TCheckBox -+ Left = 256 -+ Height = 21 -+ Hint = 'Cursor follow light curve on graph' -+ Top = 56 -+ Width = 121 -+ Caption = 'Follow light curve' -+ Checked = True -+ OnClick = CheckBox1Click -+ State = cbChecked -+ TabOrder = 3 -+ end -+ object CheckBox2: TCheckBox -+ Left = 399 -+ Height = 21 -+ Hint = 'Plot observation data from file defined on setting' -+ Top = 56 -+ Width = 148 -+ Caption = 'Plot observation data ' -+ Checked = True -+ OnClick = CheckBox2Click -+ State = cbChecked -+ TabOrder = 4 -+ end -+ object BitBtn2: TBitBtn -+ Left = 224 -+ Height = 25 -+ Hint = 'Backward one period' -+ Top = 30 -+ Width = 25 -+ Glyph.Data = { -+ F6000000424DF600000000000000760000002800000010000000100000000100 -+ 04000000000080000000120B0000120B00001000000010000000000000000000 -+ 8000008000000080800080000000800080008080000080808000C0C0C0000000 -+ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADAD0DADA -+ DADAADADAD00ADADADADDADAD0D0DADADADAADAD0DA0ADADADADDAD0DAD00000 -+ 000AAD0DADADADADAD0DD0DADADADADADA0A0DADADADADADAD0DD0DADADADADA -+ DA0AAD0DADADADADAD0DDAD0DAD00000000AADAD0DA0ADADADADDADAD0D0DADA -+ DADAADADAD00ADADADADDADADAD0DADADADAADADADADADADADAD -+ } -+ NumGlyphs = 0 -+ OnClick = BitBtn2Click -+ TabOrder = 5 -+ end -+ object BitBtn3: TBitBtn -+ Left = 288 -+ Height = 25 -+ Hint = 'Forward one period' -+ Top = 30 -+ Width = 25 -+ Glyph.Data = { -+ F6000000424DF600000000000000760000002800000010000000100000000100 -+ 04000000000080000000130B0000130B00001000000000000000000000000000 -+ 8000008000000080800080000000800080008080000080808000C0C0C0000000 -+ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA -+ DADAADADADAD0DADADADDADADADA00DADADAADADADAD0D0DADADDADADADA0AD0 -+ DADAA00000000DAD0DADD0DADADADADAD0DAA0ADADADADADAD0DD0DADADADADA -+ DAD0A0ADADADADADAD0DD0DADADADADAD0DAA00000000DAD0DADDADADADA0AD0 -+ DADAADADADAD0D0DADADDADADADA00DADADAADADADAD0DADADAD -+ } -+ NumGlyphs = 0 -+ OnClick = BitBtn3Click -+ TabOrder = 6 -+ end -+ object BitBtn4: TBitBtn -+ Left = 256 -+ Height = 25 -+ Hint = 'Current period' -+ Top = 30 -+ Width = 25 -+ Glyph.Data = { -+ F6000000424DF600000000000000760000002800000010000000100000000100 -+ 04000000000080000000120B0000120B00001000000010000000000000000000 -+ 8000008000000080800080000000800080008080000080808000C0C0C0000000 -+ FF00C0C0C00000FFFF00FF000000C0C0C000FFFF0000FFFFFF00DADADADADADA -+ DADAADADADA0ADADADADDADADA0A0ADADADAADADA0ADA0ADADADDADA0ADADA0A -+ DADAADA0ADADADA0ADADDA0ADADADADA0ADAA0ADADADADADA0AD0ADADADADADA -+ DA0AA0ADADADADADA0ADDA0ADADADADA0ADAADA0ADADADA0ADADDADA0ADADA0A -+ DADAADADA0ADA0ADADADDADADA0A0ADADADAADADADA0ADADADAD -+ } -+ NumGlyphs = 0 -+ OnClick = BitBtn4Click -+ TabOrder = 7 -+ end -+ object Edit1: TEdit -+ Left = 36 -+ Height = 21 -+ Top = 6 -+ Width = 97 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 8 -+ Text = 'Edit1' -+ end -+ object Edit2: TEdit -+ Left = 166 -+ Height = 21 -+ Top = 6 -+ Width = 57 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 9 -+ Text = 'Edit2' -+ end -+ object Edit3: TEdit -+ Left = 288 -+ Height = 21 -+ Top = 6 -+ Width = 41 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 10 -+ Text = 'Edit3' -+ end -+ object Edit4: TEdit -+ Left = 383 -+ Height = 21 -+ Top = 6 -+ Width = 41 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 11 -+ Text = 'Edit4' -+ end -+ object Edit5: TEdit -+ Left = 469 -+ Height = 21 -+ Top = 6 -+ Width = 65 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 12 -+ Text = 'Edit5' -+ end -+ object Edit6: TEdit -+ Left = 597 -+ Height = 21 -+ Top = 6 -+ Width = 41 -+ Color = clBtnFace -+ ReadOnly = True -+ TabOrder = 13 -+ Text = 'Edit6' -+ end -+ object CheckBox4: TCheckBox -+ Left = 399 -+ Height = 21 -+ Top = 34 -+ Width = 105 -+ Caption = 'Plot QuickLook' -+ OnClick = CheckBox4Click -+ TabOrder = 14 -+ end -+ object BitBtn5: TBitBtn -+ Left = 615 -+ Height = 25 -+ Top = 48 -+ Width = 97 -+ Caption = 'Get QuickLook' -+ NumGlyphs = 0 -+ OnClick = GetQuickLookClick -+ TabOrder = 15 -+ end -+ object CheckBox5: TCheckBox -+ Left = 8 -+ Height = 21 -+ Top = 56 -+ Width = 228 -+ Caption = 'Group observation to current phase' -+ OnClick = CheckBox5Click -+ TabOrder = 16 -+ end -+ end -+ object Panel3: TPanel -+ Height = 38 -+ Hint = 'Click on the box to change color' -+ Top = 336 -+ Width = 728 -+ Align = alBottom -+ ClientHeight = 38 -+ ClientWidth = 728 -+ TabOrder = 1 -+ object Shape1: TShape -+ Left = 8 -+ Height = 14 -+ Top = 2 -+ Width = 14 -+ OnMouseUp = Shape1MouseUp -+ end -+ object Label9: TLabel -+ Left = 25 -+ Height = 20 -+ Top = 5 -+ Width = 68 -+ Caption = 'Background' -+ ParentColor = False -+ end -+ object Shape2: TShape -+ Left = 136 -+ Height = 14 -+ Top = 2 -+ Width = 14 -+ Brush.Color = clBlack -+ OnMouseUp = Shape2MouseUp -+ end -+ object Label10: TLabel -+ Left = 158 -+ Height = 20 -+ Top = 5 -+ Width = 24 -+ Caption = 'Axis' -+ ParentColor = False -+ end -+ object Shape5: TShape -+ Left = 533 -+ Height = 14 -+ Top = 2 -+ Width = 14 -+ Brush.Color = clRed -+ OnMouseUp = Shape5MouseUp -+ end -+ object Label13: TLabel -+ Left = 558 -+ Height = 20 -+ Top = 5 -+ Width = 73 -+ Caption = 'Out of range' -+ ParentColor = False -+ end -+ object Shape3: TShape -+ Left = 288 -+ Height = 14 -+ Top = 2 -+ Width = 14 -+ Brush.Color = clRed -+ OnMouseUp = Shape3MouseUp -+ end -+ object Label11: TLabel -+ Left = 304 -+ Height = 20 -+ Top = 5 -+ Width = 73 -+ Caption = 'Current date' -+ ParentColor = False -+ end -+ object Shape4: TShape -+ Left = 383 -+ Height = 14 -+ Top = 2 -+ Width = 14 -+ Brush.Color = clBlue -+ OnMouseUp = Shape4MouseUp -+ end -+ object Label12: TLabel -+ Left = 408 -+ Height = 20 -+ Top = 5 -+ Width = 121 -+ Caption = 'Estimated light curve' -+ ParentColor = False -+ end -+ object Shape6: TShape -+ Left = 8 -+ Height = 14 -+ Top = 18 -+ Width = 14 -+ Brush.Color = clLime -+ OnMouseUp = Shape6MouseUp -+ end -+ object Label14: TLabel -+ Left = 25 -+ Height = 20 -+ Top = 21 -+ Width = 102 -+ Caption = 'Observation point' -+ ParentColor = False -+ end -+ object Shape7: TShape -+ Left = 136 -+ Height = 14 -+ Top = 18 -+ Width = 14 -+ Brush.Color = clFuchsia -+ OnMouseUp = Shape7MouseUp -+ end -+ object Shape8: TShape -+ Left = 288 -+ Height = 14 -+ Top = 18 -+ Width = 14 -+ Brush.Color = clBlue -+ OnMouseUp = Shape8MouseUp -+ end -+ object Label16: TLabel -+ Left = 304 -+ Height = 20 -+ Top = 21 -+ Width = 68 -+ Caption = 'Fainter than' -+ ParentColor = False -+ end -+ object Shape9: TShape -+ Left = 383 -+ Height = 14 -+ Top = 18 -+ Width = 14 -+ Brush.Color = clGreen -+ OnMouseUp = Shape9MouseUp -+ end -+ object Label17: TLabel -+ Left = 408 -+ Height = 20 -+ Top = 21 -+ Width = 55 -+ Caption = 'Uncertain' -+ ParentColor = False -+ end -+ object Shape10: TShape -+ Left = 533 -+ Height = 14 -+ Top = 18 -+ Width = 14 -+ Brush.Color = clTeal -+ OnMouseUp = Shape10MouseUp -+ end -+ object Label18: TLabel -+ Left = 558 -+ Height = 20 -+ Top = 21 -+ Width = 131 -+ Caption = 'Non visual observation' -+ ParentColor = False -+ end -+ object CheckBox3: TCheckBox -+ Left = 158 -+ Height = 21 -+ Hint = 'Show your own observation on another color' -+ Top = 16 -+ Width = 119 -+ Caption = 'Own observation' -+ Checked = True -+ OnClick = CheckBox3Click -+ State = cbChecked -+ TabOrder = 0 -+ end -+ object BitBtn6: TBitBtn -+ Left = 693 -+ Height = 25 -+ Hint = 'Zoom' -+ Top = 5 -+ Width = 25 -+ Caption = '+/-' -+ NumGlyphs = 0 -+ OnClick = BitBtn6Click -+ TabOrder = 1 -+ end -+ end -+ object ColorDialog1: TColorDialog -+ Title = 'Select color' -+ left = 64 -+ top = 16 -+ end -+ object MainMenu1: TMainMenu -+ left = 16 -+ top = 16 -+ object File1: TMenuItem -+ Caption = '&File' -+ object SaveasBMP1: TMenuItem -+ Caption = '&Save as BMP ...' -+ OnClick = SaveasBMP1Click -+ end -+ object GetQuickLook: TMenuItem -+ Caption = '&Get online AAVSO QuickLook data' -+ OnClick = GetQuickLookClick -+ end -+ object Close1: TMenuItem -+ Caption = '&Close' -+ OnClick = Close1Click -+ end -+ end -+ object MenuItem1: TMenuItem -+ Caption = '&Online data' -+ object MenuItem2: TMenuItem -+ Caption = 'AAVSO Quick look' -+ ShowAlwaysCheckable = True -+ OnClick = MenuItem2Click -+ end -+ object MenuItem3: TMenuItem -+ Caption = 'AFOEV FTP Archive' -+ ShowAlwaysCheckable = True -+ OnClick = MenuItem3Click -+ end -+ end -+ end -+ object SaveDialog1: TSaveDialog -+ Title = 'Save file as' -+ DefaultExt = '.bmp' -+ Filter = 'Bitmap files|*.bmp' -+ left = 112 -+ top = 16 -+ end -+ object DownloadDialog1: TDownloadDialog -+ FtpFwPassive = True -+ ConfirmDownload = True -+ left = 28 -+ top = 75 -+ end -+ object RefreshTimer: TTimer -+ Enabled = False -+ Interval = 200 -+ OnTimer = RefreshTimerTimer -+ left = 88 -+ top = 75 -+ end -+end -diff -ur skychart_3.2/varobs/detail1.lrs skychart_3.2_up/varobs/detail1.lrs ---- skychart_3.2/varobs/detail1.lrs 2008-06-15 13:45:38.000000000 +0200 -+++ skychart_3.2_up/varobs/detail1.lrs 2011-03-09 15:18:23.215264366 +0100 -@@ -1,4 +1,4 @@ --{ This is an automatically generated lazarus resource file } -+{ This is an automatically generated lazarus resource file } - - LazarusResources.Add('TDetailForm','FORMDATA',[ - 'TPF0'#11'TDetailForm'#10'DetailForm'#4'Left'#3#201#1#6'Height'#3#227#1#3'Top' -diff -ur skychart_3.2/varobs/ObsUnit.lfm skychart_3.2_up/varobs/ObsUnit.lfm ---- skychart_3.2/varobs/ObsUnit.lfm 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/ObsUnit.lfm 2011-03-09 15:18:23.217264120 +0100 -@@ -1,375 +1,375 @@ --object ObsForm: TObsForm -- Left = 680 -- Height = 391 -- Top = 90 -- Width = 638 -- HorzScrollBar.Page = 637 -- VertScrollBar.Page = 371 -- ActiveControl = TimePicker1 -- Caption = 'New visual observation' -- ClientHeight = 369 -- ClientWidth = 638 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- Menu = MainMenu1 -- OnCloseQuery = FormCloseQuery -- OnShow = FormShow -- LCLVersion = '0.9.29' -- object Label1: TLabel -- Left = 8 -- Height = 19 -- Top = 66 -- Width = 62 -- Caption = 'Star Name ' -- ParentColor = False -- end -- object Label2: TLabel -- Left = 422 -- Height = 19 -- Top = 17 -- Width = 59 -- Caption = 'UT decimal' -- ParentColor = False -- end -- object Label3: TLabel -- Left = 200 -- Height = 19 -- Top = 66 -- Width = 31 -- Caption = 'Magn.' -- ParentColor = False -- end -- object Label4: TLabel -- Left = 13 -- Height = 19 -- Top = 17 -- Width = 46 -- Caption = 'Observer' -- ParentColor = False -- end -- object Label5: TLabel -- Left = 392 -- Height = 19 -- Top = 66 -- Width = 48 -- Caption = 'Comment' -- ParentColor = False -- end -- object Label6: TLabel -- Left = 162 -- Height = 19 -- Top = 102 -- Width = 68 -- Caption = 'Comp Star 1' -- ParentColor = False -- end -- object Label7: TLabel -- Left = 136 -- Height = 23 -- Top = 16 -- Width = 28 -- Caption = 'Date' -- Font.Height = -13 -- Font.Name = 'MS Sans Serif' -- ParentColor = False -- ParentFont = False -- end -- object Label9: TLabel -- Left = 416 -- Height = 19 -- Top = 102 -- Width = 28 -- Caption = 'Chart' -- ParentColor = False -- end -- object Label10: TLabel -- Left = 8 -- Height = 19 -- Top = 140 -- Width = 44 -- Caption = 'Remarks' -- ParentColor = False -- end -- object Label11: TLabel -- Left = 288 -- Height = 19 -- Top = 102 -- Width = 68 -- Caption = 'Comp Star 2' -- ParentColor = False -- end -- object Edit1: TEdit -- Left = 72 -- Height = 26 -- Top = 64 -- Width = 113 -- CharCase = ecUppercase -- TabOrder = 10 -- end -- object Edit2: TEdit -- Left = 488 -- Height = 26 -- Top = 15 -- Width = 121 -- CharCase = ecUppercase -- OnExit = Edit2Change -- TabStop = False -- TabOrder = 9 -- end -- object Edit3: TEdit -- Left = 240 -- Height = 26 -- Top = 64 -- Width = 41 -- CharCase = ecUppercase -- TabOrder = 0 -- end -- object Edit4: TEdit -- Left = 72 -- Height = 26 -- Top = 15 -- Width = 47 -- CharCase = ecUppercase -- ReadOnly = True -- TabStop = False -- TabOrder = 4 -- end -- object Edit5: TEdit -- Left = 456 -- Height = 26 -- Top = 64 -- Width = 88 -- CharCase = ecUppercase -- TabOrder = 1 -- end -- object Edit6: TEdit -- Left = 240 -- Height = 26 -- Top = 100 -- Width = 41 -- CharCase = ecUppercase -- TabOrder = 2 -- end -- object Memo1: TMemo -- Left = 14 -- Height = 153 -- Top = 168 -- Width = 609 -- Font.Height = -11 -- Font.Name = 'Courier New' -- Font.Pitch = fpFixed -- ParentFont = False -- ScrollBars = ssBoth -- TabOrder = 12 -- TabStop = False -- end -- object BitBtn1: TBitBtn -- Left = 481 -- Height = 25 -- Top = 136 -- Width = 142 -- Caption = 'Add' -- NumGlyphs = 0 -- OnClick = AddClick -- TabOrder = 8 -- end -- object BitBtn2: TBitBtn -- Left = 422 -- Height = 25 -- Top = 334 -- Width = 87 -- Caption = 'Save to File' -- NumGlyphs = 0 -- OnClick = Button2Click -- TabOrder = 7 -- TabStop = False -- end -- object Edit7: TEdit -- Left = 456 -- Height = 26 -- Top = 100 -- Width = 88 -- CharCase = ecUppercase -- TabOrder = 5 -- end -- object Edit8: TEdit -- Left = 64 -- Height = 26 -- Top = 138 -- Width = 397 -- MaxLength = 100 -- TabOrder = 6 -- end -- object CheckBox2: TCheckBox -- Left = 296 -- Height = 22 -- Top = 64 -- Width = 84 -- Caption = 'Fainter than' -- TabOrder = 11 -- TabStop = False -- end -- object TimePicker1: TTimePicker -- Left = 288 -- Height = 23 -- Top = 14 -- Width = 101 -- Time = 0.39739583333333 -- OnChange = DateEdit1Change -- Enabled = True -- TabOrder = 14 -- end -- object DateEdit1: TDateEdit -- Left = 176 -- Height = 26 -- Top = 14 -- Width = 80 -- CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames] -- OKCaption = 'OK' -- CancelCaption = 'Cancel' -- DateOrder = doNone -- ButtonWidth = 23 -- CharCase = ecNormal -- Glyph.Data = { -- D6020000424DD60200000000000036000000280000000E0000000C0000000100 -- 200000000000A002000064000000640000000000000000000000000000000000 -- 000000000000808080FF808080FF808080FF808080FF808080FF808080FF8080 -- 80FF808080FF808080FF808080FF808080FF0000000000000000000000FF0000 -- 00FF800000FF000000FF800000FF800000FF000000FF800000FF000000FF0000 -- 00FF800000FF808080FF0000000000000000808080FF808080FF808080FF8080 -- 80FF808080FF808080FF808080FF808080FF808080FF808080FF800000FF8080 -- 80FF0000000000000000808080FF000000FF000000FF000000FF808080FF0000 -- 00FF000000FF000000FFC0C0C0FF808080FF800000FF808080FF000000000000 -- 0000808080FF808080FF000000FF808080FF808080FFC0C0C0FF808080FFC0C0 -- C0FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 -- 80FF000000FF808080FF808080FF808080FF808080FF808080FF000000FF8080 -- 80FF800000FF808080FF0000000000000000808080FF808080FF000000FF8080 -- 80FF808080FF000000FF000000FF000000FFC0C0C0FF808080FF800000FF8080 -- 80FF0000000000000000808080FF000000FF000000FF808080FF808080FF0000 -- 00FF808080FF808080FF808080FF808080FF800000FF808080FF000000000000 -- 0000808080FF808080FF000000FF808080FF808080FF000000FF000000FF0000 -- 00FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 -- 80FF808080FF808080FF808080FF808080FF808080FF808080FF808080FF8080 -- 80FF800000FF808080FF0000000000000000808080FFC0C0C0FFC0C0C0FFC0C0 -- C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FF808080FF800000FF8080 -- 80FF0000000000000000000000FF000000FF000000FF000000FF000000FF0000 -- 00FF000000FF000000FF000000FF000000FF0000000000000000 -- } -- NumGlyphs = 1 -- MaxLength = 0 -- OnExit = DateEdit1Change -- TabStop = False -- TabOrder = 13 -- end -- object Edit9: TEdit -- Left = 368 -- Height = 26 -- Top = 100 -- Width = 41 -- CharCase = ecUppercase -- TabOrder = 3 -- end -- object FileNameEdit1: TFileNameEdit -- Left = 14 -- Height = 26 -- Top = 335 -- Width = 378 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 15 -- TabStop = False -- end -- object Button1: TButton -- Left = 548 -- Height = 21 -- Top = 64 -- Width = 21 -- Caption = '...' -- OnClick = Button1Click -- TabOrder = 16 -- end -- object Editbtn: TButton -- Left = 527 -- Height = 25 -- Top = 334 -- Width = 96 -- Caption = 'Edit File' -- OnClick = EditbtnClick -- TabOrder = 17 -- end -- object MainMenu1: TMainMenu -- left = 16 -- top = 40 -- object MenuItem1: TMenuItem -- Caption = '&File' -- object MenuItem4: TMenuItem -- Caption = '&Save' -- OnClick = Button2Click -- end -- object MenuItem16: TMenuItem -- Caption = 'Edit file' -- OnClick = EditbtnClick -- end -- object MenuItem2: TMenuItem -- Caption = '&Reset input fields' -- OnClick = MenuItem2Click -- end -- object MenuItem3: TMenuItem -- Caption = '&Quit' -- OnClick = MenuItem3Click -- end -- end -- end -- object PopupMenu1: TPopupMenu -- left = 572 -- top = 95 -- object MenuItem5: TMenuItem -- Caption = 'B: Sky is bright, moon, twilight, light pollution, aurorae.' -- OnClick = CodeClick -- end -- object MenuItem6: TMenuItem -- Caption = 'U: Clouds, dust, smoke, haze, etc. ' -- OnClick = CodeClick -- end -- object MenuItem7: TMenuItem -- Caption = 'W: Poor seeing. ' -- OnClick = CodeClick -- end -- object MenuItem8: TMenuItem -- Caption = 'L: Low in the sky, near horizon, in trees, obstructed view.' -- OnClick = CodeClick -- end -- object MenuItem9: TMenuItem -- Caption = 'D: Unusual Activity (fading, flare, bizarre behavior, etc.) ' -- OnClick = CodeClick -- end -- object MenuItem10: TMenuItem -- Caption = 'Y: Outburst.' -- OnClick = CodeClick -- end -- object MenuItem11: TMenuItem -- Caption = 'K: Non-AAVSO chart. ' -- OnClick = CodeClick -- end -- object MenuItem12: TMenuItem -- Caption = 'S: Comparison sequence problem. ' -- OnClick = CodeClick -- end -- object MenuItem13: TMenuItem -- Caption = 'Z: Magnitude of star uncertain.' -- OnClick = CodeClick -- end -- object MenuItem14: TMenuItem -- Caption = 'I: Identification of star uncertain. ' -- OnClick = CodeClick -- end -- object MenuItem15: TMenuItem -- Caption = 'V: Faint star, near observing limit, only glimpsed. ' -- OnClick = CodeClick -- end -- end -+object ObsForm: TObsForm -+ Left = 680 -+ Height = 391 -+ Top = 90 -+ Width = 638 -+ HorzScrollBar.Page = 637 -+ VertScrollBar.Page = 371 -+ ActiveControl = TimePicker1 -+ Caption = 'New visual observation' -+ ClientHeight = 369 -+ ClientWidth = 638 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ Menu = MainMenu1 -+ OnCloseQuery = FormCloseQuery -+ OnShow = FormShow -+ LCLVersion = '0.9.29' -+ object Label1: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 66 -+ Width = 62 -+ Caption = 'Star Name ' -+ ParentColor = False -+ end -+ object Label2: TLabel -+ Left = 422 -+ Height = 19 -+ Top = 17 -+ Width = 59 -+ Caption = 'UT decimal' -+ ParentColor = False -+ end -+ object Label3: TLabel -+ Left = 200 -+ Height = 19 -+ Top = 66 -+ Width = 31 -+ Caption = 'Magn.' -+ ParentColor = False -+ end -+ object Label4: TLabel -+ Left = 13 -+ Height = 19 -+ Top = 17 -+ Width = 46 -+ Caption = 'Observer' -+ ParentColor = False -+ end -+ object Label5: TLabel -+ Left = 392 -+ Height = 19 -+ Top = 66 -+ Width = 48 -+ Caption = 'Comment' -+ ParentColor = False -+ end -+ object Label6: TLabel -+ Left = 162 -+ Height = 19 -+ Top = 102 -+ Width = 68 -+ Caption = 'Comp Star 1' -+ ParentColor = False -+ end -+ object Label7: TLabel -+ Left = 136 -+ Height = 23 -+ Top = 16 -+ Width = 28 -+ Caption = 'Date' -+ Font.Height = -13 -+ Font.Name = 'MS Sans Serif' -+ ParentColor = False -+ ParentFont = False -+ end -+ object Label9: TLabel -+ Left = 416 -+ Height = 19 -+ Top = 102 -+ Width = 28 -+ Caption = 'Chart' -+ ParentColor = False -+ end -+ object Label10: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 140 -+ Width = 44 -+ Caption = 'Remarks' -+ ParentColor = False -+ end -+ object Label11: TLabel -+ Left = 288 -+ Height = 19 -+ Top = 102 -+ Width = 68 -+ Caption = 'Comp Star 2' -+ ParentColor = False -+ end -+ object Edit1: TEdit -+ Left = 72 -+ Height = 26 -+ Top = 64 -+ Width = 113 -+ CharCase = ecUppercase -+ TabOrder = 10 -+ end -+ object Edit2: TEdit -+ Left = 488 -+ Height = 26 -+ Top = 15 -+ Width = 121 -+ CharCase = ecUppercase -+ OnExit = Edit2Change -+ TabStop = False -+ TabOrder = 9 -+ end -+ object Edit3: TEdit -+ Left = 240 -+ Height = 26 -+ Top = 64 -+ Width = 41 -+ CharCase = ecUppercase -+ TabOrder = 0 -+ end -+ object Edit4: TEdit -+ Left = 72 -+ Height = 26 -+ Top = 15 -+ Width = 47 -+ CharCase = ecUppercase -+ ReadOnly = True -+ TabStop = False -+ TabOrder = 4 -+ end -+ object Edit5: TEdit -+ Left = 456 -+ Height = 26 -+ Top = 64 -+ Width = 88 -+ CharCase = ecUppercase -+ TabOrder = 1 -+ end -+ object Edit6: TEdit -+ Left = 240 -+ Height = 26 -+ Top = 100 -+ Width = 41 -+ CharCase = ecUppercase -+ TabOrder = 2 -+ end -+ object Memo1: TMemo -+ Left = 14 -+ Height = 153 -+ Top = 168 -+ Width = 609 -+ Font.Height = -11 -+ Font.Name = 'Courier New' -+ Font.Pitch = fpFixed -+ ParentFont = False -+ ScrollBars = ssBoth -+ TabOrder = 12 -+ TabStop = False -+ end -+ object BitBtn1: TBitBtn -+ Left = 481 -+ Height = 25 -+ Top = 136 -+ Width = 142 -+ Caption = 'Add' -+ NumGlyphs = 0 -+ OnClick = AddClick -+ TabOrder = 8 -+ end -+ object BitBtn2: TBitBtn -+ Left = 422 -+ Height = 25 -+ Top = 334 -+ Width = 87 -+ Caption = 'Save to File' -+ NumGlyphs = 0 -+ OnClick = Button2Click -+ TabOrder = 7 -+ TabStop = False -+ end -+ object Edit7: TEdit -+ Left = 456 -+ Height = 26 -+ Top = 100 -+ Width = 88 -+ CharCase = ecUppercase -+ TabOrder = 5 -+ end -+ object Edit8: TEdit -+ Left = 64 -+ Height = 26 -+ Top = 138 -+ Width = 397 -+ MaxLength = 100 -+ TabOrder = 6 -+ end -+ object CheckBox2: TCheckBox -+ Left = 296 -+ Height = 22 -+ Top = 64 -+ Width = 84 -+ Caption = 'Fainter than' -+ TabOrder = 11 -+ TabStop = False -+ end -+ object TimePicker1: TTimePicker -+ Left = 288 -+ Height = 23 -+ Top = 14 -+ Width = 101 -+ Time = 0.39739583333333 -+ OnChange = DateEdit1Change -+ Enabled = True -+ TabOrder = 14 -+ end -+ object DateEdit1: TDateEdit -+ Left = 176 -+ Height = 26 -+ Top = 14 -+ Width = 80 -+ CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames] -+ OKCaption = 'OK' -+ CancelCaption = 'Cancel' -+ DateOrder = doNone -+ ButtonWidth = 23 -+ CharCase = ecNormal -+ Glyph.Data = { -+ D6020000424DD60200000000000036000000280000000E0000000C0000000100 -+ 200000000000A002000064000000640000000000000000000000000000000000 -+ 000000000000808080FF808080FF808080FF808080FF808080FF808080FF8080 -+ 80FF808080FF808080FF808080FF808080FF0000000000000000000000FF0000 -+ 00FF800000FF000000FF800000FF800000FF000000FF800000FF000000FF0000 -+ 00FF800000FF808080FF0000000000000000808080FF808080FF808080FF8080 -+ 80FF808080FF808080FF808080FF808080FF808080FF808080FF800000FF8080 -+ 80FF0000000000000000808080FF000000FF000000FF000000FF808080FF0000 -+ 00FF000000FF000000FFC0C0C0FF808080FF800000FF808080FF000000000000 -+ 0000808080FF808080FF000000FF808080FF808080FFC0C0C0FF808080FFC0C0 -+ C0FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 -+ 80FF000000FF808080FF808080FF808080FF808080FF808080FF000000FF8080 -+ 80FF800000FF808080FF0000000000000000808080FF808080FF000000FF8080 -+ 80FF808080FF000000FF000000FF000000FFC0C0C0FF808080FF800000FF8080 -+ 80FF0000000000000000808080FF000000FF000000FF808080FF808080FF0000 -+ 00FF808080FF808080FF808080FF808080FF800000FF808080FF000000000000 -+ 0000808080FF808080FF000000FF808080FF808080FF000000FF000000FF0000 -+ 00FF000000FF808080FF800000FF808080FF0000000000000000808080FF8080 -+ 80FF808080FF808080FF808080FF808080FF808080FF808080FF808080FF8080 -+ 80FF800000FF808080FF0000000000000000808080FFC0C0C0FFC0C0C0FFC0C0 -+ C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FFC0C0C0FF808080FF800000FF8080 -+ 80FF0000000000000000000000FF000000FF000000FF000000FF000000FF0000 -+ 00FF000000FF000000FF000000FF000000FF0000000000000000 -+ } -+ NumGlyphs = 1 -+ MaxLength = 0 -+ OnExit = DateEdit1Change -+ TabStop = False -+ TabOrder = 13 -+ end -+ object Edit9: TEdit -+ Left = 368 -+ Height = 26 -+ Top = 100 -+ Width = 41 -+ CharCase = ecUppercase -+ TabOrder = 3 -+ end -+ object FileNameEdit1: TFileNameEdit -+ Left = 14 -+ Height = 26 -+ Top = 335 -+ Width = 378 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 15 -+ TabStop = False -+ end -+ object Button1: TButton -+ Left = 548 -+ Height = 21 -+ Top = 64 -+ Width = 21 -+ Caption = '...' -+ OnClick = Button1Click -+ TabOrder = 16 -+ end -+ object Editbtn: TButton -+ Left = 527 -+ Height = 25 -+ Top = 334 -+ Width = 96 -+ Caption = 'Edit File' -+ OnClick = EditbtnClick -+ TabOrder = 17 -+ end -+ object MainMenu1: TMainMenu -+ left = 16 -+ top = 40 -+ object MenuItem1: TMenuItem -+ Caption = '&File' -+ object MenuItem4: TMenuItem -+ Caption = '&Save' -+ OnClick = Button2Click -+ end -+ object MenuItem16: TMenuItem -+ Caption = 'Edit file' -+ OnClick = EditbtnClick -+ end -+ object MenuItem2: TMenuItem -+ Caption = '&Reset input fields' -+ OnClick = MenuItem2Click -+ end -+ object MenuItem3: TMenuItem -+ Caption = '&Quit' -+ OnClick = MenuItem3Click -+ end -+ end -+ end -+ object PopupMenu1: TPopupMenu -+ left = 572 -+ top = 95 -+ object MenuItem5: TMenuItem -+ Caption = 'B: Sky is bright, moon, twilight, light pollution, aurorae.' -+ OnClick = CodeClick -+ end -+ object MenuItem6: TMenuItem -+ Caption = 'U: Clouds, dust, smoke, haze, etc. ' -+ OnClick = CodeClick -+ end -+ object MenuItem7: TMenuItem -+ Caption = 'W: Poor seeing. ' -+ OnClick = CodeClick -+ end -+ object MenuItem8: TMenuItem -+ Caption = 'L: Low in the sky, near horizon, in trees, obstructed view.' -+ OnClick = CodeClick -+ end -+ object MenuItem9: TMenuItem -+ Caption = 'D: Unusual Activity (fading, flare, bizarre behavior, etc.) ' -+ OnClick = CodeClick -+ end -+ object MenuItem10: TMenuItem -+ Caption = 'Y: Outburst.' -+ OnClick = CodeClick -+ end -+ object MenuItem11: TMenuItem -+ Caption = 'K: Non-AAVSO chart. ' -+ OnClick = CodeClick -+ end -+ object MenuItem12: TMenuItem -+ Caption = 'S: Comparison sequence problem. ' -+ OnClick = CodeClick -+ end -+ object MenuItem13: TMenuItem -+ Caption = 'Z: Magnitude of star uncertain.' -+ OnClick = CodeClick -+ end -+ object MenuItem14: TMenuItem -+ Caption = 'I: Identification of star uncertain. ' -+ OnClick = CodeClick -+ end -+ object MenuItem15: TMenuItem -+ Caption = 'V: Faint star, near observing limit, only glimpsed. ' -+ OnClick = CodeClick -+ end -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/ObsUnit.lrs skychart_3.2_up/varobs/ObsUnit.lrs ---- skychart_3.2/varobs/ObsUnit.lrs 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/ObsUnit.lrs 2011-03-09 15:18:23.217264120 +0100 -@@ -1,122 +1,122 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('TObsForm','FORMDATA',[ -- 'TPF0'#8'TObsForm'#7'ObsForm'#4'Left'#3#168#2#6'Height'#3#135#1#3'Top'#2'Z'#5 -- +'Width'#3'~'#2#18'HorzScrollBar.Page'#3'}'#2#18'VertScrollBar.Page'#3's'#1#13 -- +'ActiveControl'#7#11'TimePicker1'#7'Caption'#6#22'New visual observation'#12 -- +'ClientHeight'#3'q'#1#11'ClientWidth'#3'~'#2#11'Font.Height'#2#245#9'Font.Na' -- +'me'#6#13'MS Sans Serif'#4'Menu'#7#9'MainMenu1'#12'OnCloseQuery'#7#14'FormCl' -- +'oseQuery'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6 -- +'Label1'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'B'#5'Width'#2'>'#7'Caption'#6#10 -- +'Star Name '#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#166#1#6'Hei' -- +'ght'#2#19#3'Top'#2#17#5'Width'#2';'#7'Caption'#6#10'UT decimal'#11'ParentCo' -- +'lor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#200#0#6'Height'#2#19#3'Top'#2'B'#5 -- +'Width'#2#31#7'Caption'#6#5'Magn.'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' -- +#4'Left'#2#13#6'Height'#2#19#3'Top'#2#17#5'Width'#2'.'#7'Caption'#6#8'Observ' -- +'er'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#136#1#6'Height'#2#19 -- +#3'Top'#2'B'#5'Width'#2'0'#7'Caption'#6#7'Comment'#11'ParentColor'#8#0#0#6'T' -- +'Label'#6'Label6'#4'Left'#3#162#0#6'Height'#2#19#3'Top'#2'f'#5'Width'#2'D'#7 -- +'Caption'#6#11'Comp Star 1'#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left' -- +#3#136#0#6'Height'#2#23#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4'Date'#11'Fo' -- +'nt.Height'#2#243#9'Font.Name'#6#13'MS Sans Serif'#11'ParentColor'#8#10'Pare' -- +'ntFont'#8#0#0#6'TLabel'#6'Label9'#4'Left'#3#160#1#6'Height'#2#19#3'Top'#2'f' -- +#5'Width'#2#28#7'Caption'#6#5'Chart'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' -- +'10'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#140#0#5'Width'#2','#7'Caption'#6#7 -- +'Remarks'#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#3' '#1#6'Height' -- +#2#19#3'Top'#2'f'#5'Width'#2'D'#7'Caption'#6#11'Comp Star 2'#11'ParentColor' -- +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 -- +'q'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#10#0#0#5'TEdit'#5'Edit2'#4'L' -- +'eft'#3#232#1#6'Height'#2#26#3'Top'#2#15#5'Width'#2'y'#8'CharCase'#7#11'ecUp' -- +'percase'#6'OnExit'#7#11'Edit2Change'#7'TabStop'#8#8'TabOrder'#2#9#0#0#5'TEd' -- +'it'#5'Edit3'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'@'#5'Width'#2')'#8'Cha' -- +'rCase'#7#11'ecUppercase'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'H' -- +#6'Height'#2#26#3'Top'#2#15#5'Width'#2'/'#8'CharCase'#7#11'ecUppercase'#8'Re' -- +'adOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#5'Edit5'#4'Left'#3#200#1 -- +#6'Height'#2#26#3'Top'#2'@'#5'Width'#2'X'#8'CharCase'#7#11'ecUppercase'#8'Ta' -- +'bOrder'#2#1#0#0#5'TEdit'#5'Edit6'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'd' -- +#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#2#0#0#5'TMemo'#5 -- +'Memo1'#4'Left'#2#14#6'Height'#3#153#0#3'Top'#3#168#0#5'Width'#3'a'#2#11'Fon' -- +'t.Height'#2#245#9'Font.Name'#6#11'Courier New'#10'Font.Pitch'#7#7'fpFixed' -- +#10'ParentFont'#8#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#12#7'TabStop'#8#0 -- +#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#225#1#6'Height'#2#25#3'Top'#3#136#0#5'Wid' -- +'th'#3#142#0#7'Caption'#6#3'Add'#9'NumGlyphs'#2#0#7'OnClick'#7#8'AddClick'#8 -- +'TabOrder'#2#8#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#166#1#6'Height'#2#25#3'To' -- +'p'#3'N'#1#5'Width'#2'W'#7'Caption'#6#12'Save to File'#9'NumGlyphs'#2#0#7'On' -- +'Click'#7#12'Button2Click'#8'TabOrder'#2#7#7'TabStop'#8#0#0#5'TEdit'#5'Edit7' -- +#4'Left'#3#200#1#6'Height'#2#26#3'Top'#2'd'#5'Width'#2'X'#8'CharCase'#7#11'e' -- +'cUppercase'#8'TabOrder'#2#5#0#0#5'TEdit'#5'Edit8'#4'Left'#2'@'#6'Height'#2 -- +#26#3'Top'#3#138#0#5'Width'#3#141#1#9'MaxLength'#2'd'#8'TabOrder'#2#6#0#0#9 -- +'TCheckBox'#9'CheckBox2'#4'Left'#3'('#1#6'Height'#2#22#3'Top'#2'@'#5'Width'#2 -- +'T'#7'Caption'#6#12'Fainter than'#8'TabOrder'#2#11#7'TabStop'#8#0#0#11'TTime' -- +'Picker'#11'TimePicker1'#4'Left'#3' '#1#6'Height'#2#23#3'Top'#2#14#5'Width'#2 -- +'e'#4'Time'#5#0'xwwwww'#203#253'?'#8'OnChange'#7#15'DateEdit1Change'#7'Enabl' -- +'ed'#9#8'TabOrder'#2#14#0#0#9'TDateEdit'#9'DateEdit1'#4'Left'#3#176#0#6'Heig' -- +'ht'#2#26#3'Top'#2#14#5'Width'#2'P'#23'CalendarDisplaySettings'#11#14'dsShow' -- +'Headings'#14'dsShowDayNames'#0#9'OKCaption'#6#2'OK'#13'CancelCaption'#6#6'C' -- +'ancel'#9'DateOrder'#7#6'doNone'#11'ButtonWidth'#2#23#8'CharCase'#7#8'ecNorm' -- +'al'#10'Glyph.Data'#10#218#2#0#0#214#2#0#0'BM'#214#2#0#0#0#0#0#0'6'#0#0#0'(' -- +#0#0#0#14#0#0#0#12#0#0#0#1#0' '#0#0#0#0#0#160#2#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0 -- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128 -- +#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128 -- +#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0 -- +#0#255#0#0#0#255#128#0#0#255#0#0#0#255#128#0#0#255#128#0#0#255#0#0#0#255#128 -- +#0#0#255#0#0#0#255#0#0#0#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128 -- +#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -- +#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0 -- +#0#0#255#0#0#0#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#192#192#192 -- ,#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#192#192#192 -- +#255#128#128#128#255#192#192#192#255#0#0#0#255#128#128#128#255#128#0#0#255 -- +#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#0#0#0#255 -- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -- +#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0 -- +#128#128#128#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0 -- +#0#0#255#0#0#0#255#0#0#0#255#192#192#192#255#128#128#128#255#128#0#0#255#128 -- +#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0#0#0#255#128#128#128 -- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#128#128#128 -- +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -- +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0#0#0#255#0#0 -- +#0#255#0#0#0#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0 -- +#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -- +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -- +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -- +#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192 -- +#192#255#192#192#192#255#192#192#192#255#192#192#192#255#128#128#128#255#128 -- +#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0 -- +#0#0#9'NumGlyphs'#2#1#9'MaxLength'#2#0#6'OnExit'#7#15'DateEdit1Change'#7'Tab' -- +'Stop'#8#8'TabOrder'#2#13#0#0#5'TEdit'#5'Edit9'#4'Left'#3'p'#1#6'Height'#2#26 -- +#3'Top'#2'd'#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#3#0#0 -- +#13'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2#14#6'Height'#2#26#3'Top'#3'O' -- +#1#5'Width'#3'z'#1#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirecto' -- +'ries'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 -- +#15#7'TabStop'#8#0#0#7'TButton'#7'Button1'#4'Left'#3'$'#2#6'Height'#2#21#3'T' -- +'op'#2'@'#5'Width'#2#21#7'Caption'#6#3'...'#7'OnClick'#7#12'Button1Click'#8 -- +'TabOrder'#2#16#0#0#7'TButton'#7'Editbtn'#4'Left'#3#15#2#6'Height'#2#25#3'To' -- +'p'#3'N'#1#5'Width'#2'`'#7'Caption'#6#9'Edit File'#7'OnClick'#7#12'EditbtnCl' -- +'ick'#8'TabOrder'#2#17#0#0#9'TMainMenu'#9'MainMenu1'#4'left'#2#16#3'top'#2'(' -- +#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#5'&File'#0#9'TMenuItem'#9'MenuItem' -- +'4'#7'Caption'#6#5'&Save'#7'OnClick'#7#12'Button2Click'#0#0#9'TMenuItem'#10 -- +'MenuItem16'#7'Caption'#6#9'Edit file'#7'OnClick'#7#12'EditbtnClick'#0#0#9'T' -- +'MenuItem'#9'MenuItem2'#7'Caption'#6#19'&Reset input fields'#7'OnClick'#7#14 -- +'MenuItem2Click'#0#0#9'TMenuItem'#9'MenuItem3'#7'Caption'#6#5'&Quit'#7'OnCli' -- +'ck'#7#14'MenuItem3Click'#0#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#3'<' -- +#2#3'top'#2'_'#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6';B: Sky is bright, m' -- +'oon, twilight, light pollution, aurorae.'#7'OnClick'#7#9'CodeClick'#0#0#9'T' -- +'MenuItem'#9'MenuItem6'#7'Caption'#6'#U: Clouds, dust, smoke, haze, etc. '#7 -- +'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem7'#7'Caption'#6#16'W: Po' -- +'or seeing. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem8'#7'Capt' -- +'ion'#6';L: Low in the sky, near horizon, in trees, obstructed view.'#7'OnCl' -- +'ick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem9'#7'Caption'#6'<D: Unusual ' -- +'Activity (fading, flare, bizarre behavior, etc.) '#7'OnClick'#7#9'CodeClick' -- +#0#0#9'TMenuItem'#10'MenuItem10'#7'Caption'#6#12'Y: Outburst.'#7'OnClick'#7#9 -- +'CodeClick'#0#0#9'TMenuItem'#10'MenuItem11'#7'Caption'#6#20'K: Non-AAVSO cha' -- +'rt. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem12'#7'Caption'#6 -- +' S: Comparison sequence problem. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuIte' -- +'m'#10'MenuItem13'#7'Caption'#6#31'Z: Magnitude of star uncertain.'#7'OnClic' -- +'k'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem14'#7'Caption'#6'%I: Identifi' -- +'cation of star uncertain. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'M' -- +'enuItem15'#7'Caption'#6'4V: Faint star, near observing limit, only glimpsed' -- +'. '#7'OnClick'#7#9'CodeClick'#0#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('TObsForm','FORMDATA',[ -+ 'TPF0'#8'TObsForm'#7'ObsForm'#4'Left'#3#168#2#6'Height'#3#135#1#3'Top'#2'Z'#5 -+ +'Width'#3'~'#2#18'HorzScrollBar.Page'#3'}'#2#18'VertScrollBar.Page'#3's'#1#13 -+ +'ActiveControl'#7#11'TimePicker1'#7'Caption'#6#22'New visual observation'#12 -+ +'ClientHeight'#3'q'#1#11'ClientWidth'#3'~'#2#11'Font.Height'#2#245#9'Font.Na' -+ +'me'#6#13'MS Sans Serif'#4'Menu'#7#9'MainMenu1'#12'OnCloseQuery'#7#14'FormCl' -+ +'oseQuery'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.29'#0#6'TLabel'#6 -+ +'Label1'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'B'#5'Width'#2'>'#7'Caption'#6#10 -+ +'Star Name '#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#3#166#1#6'Hei' -+ +'ght'#2#19#3'Top'#2#17#5'Width'#2';'#7'Caption'#6#10'UT decimal'#11'ParentCo' -+ +'lor'#8#0#0#6'TLabel'#6'Label3'#4'Left'#3#200#0#6'Height'#2#19#3'Top'#2'B'#5 -+ +'Width'#2#31#7'Caption'#6#5'Magn.'#11'ParentColor'#8#0#0#6'TLabel'#6'Label4' -+ +#4'Left'#2#13#6'Height'#2#19#3'Top'#2#17#5'Width'#2'.'#7'Caption'#6#8'Observ' -+ +'er'#11'ParentColor'#8#0#0#6'TLabel'#6'Label5'#4'Left'#3#136#1#6'Height'#2#19 -+ +#3'Top'#2'B'#5'Width'#2'0'#7'Caption'#6#7'Comment'#11'ParentColor'#8#0#0#6'T' -+ +'Label'#6'Label6'#4'Left'#3#162#0#6'Height'#2#19#3'Top'#2'f'#5'Width'#2'D'#7 -+ +'Caption'#6#11'Comp Star 1'#11'ParentColor'#8#0#0#6'TLabel'#6'Label7'#4'Left' -+ +#3#136#0#6'Height'#2#23#3'Top'#2#16#5'Width'#2#28#7'Caption'#6#4'Date'#11'Fo' -+ +'nt.Height'#2#243#9'Font.Name'#6#13'MS Sans Serif'#11'ParentColor'#8#10'Pare' -+ +'ntFont'#8#0#0#6'TLabel'#6'Label9'#4'Left'#3#160#1#6'Height'#2#19#3'Top'#2'f' -+ +#5'Width'#2#28#7'Caption'#6#5'Chart'#11'ParentColor'#8#0#0#6'TLabel'#7'Label' -+ +'10'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#140#0#5'Width'#2','#7'Caption'#6#7 -+ +'Remarks'#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#3' '#1#6'Height' -+ +#2#19#3'Top'#2'f'#5'Width'#2'D'#7'Caption'#6#11'Comp Star 2'#11'ParentColor' -+ +#8#0#0#5'TEdit'#5'Edit1'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 -+ +'q'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#10#0#0#5'TEdit'#5'Edit2'#4'L' -+ +'eft'#3#232#1#6'Height'#2#26#3'Top'#2#15#5'Width'#2'y'#8'CharCase'#7#11'ecUp' -+ +'percase'#6'OnExit'#7#11'Edit2Change'#7'TabStop'#8#8'TabOrder'#2#9#0#0#5'TEd' -+ +'it'#5'Edit3'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'@'#5'Width'#2')'#8'Cha' -+ +'rCase'#7#11'ecUppercase'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'H' -+ +#6'Height'#2#26#3'Top'#2#15#5'Width'#2'/'#8'CharCase'#7#11'ecUppercase'#8'Re' -+ +'adOnly'#9#7'TabStop'#8#8'TabOrder'#2#4#0#0#5'TEdit'#5'Edit5'#4'Left'#3#200#1 -+ +#6'Height'#2#26#3'Top'#2'@'#5'Width'#2'X'#8'CharCase'#7#11'ecUppercase'#8'Ta' -+ +'bOrder'#2#1#0#0#5'TEdit'#5'Edit6'#4'Left'#3#240#0#6'Height'#2#26#3'Top'#2'd' -+ +#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#2#0#0#5'TMemo'#5 -+ +'Memo1'#4'Left'#2#14#6'Height'#3#153#0#3'Top'#3#168#0#5'Width'#3'a'#2#11'Fon' -+ +'t.Height'#2#245#9'Font.Name'#6#11'Courier New'#10'Font.Pitch'#7#7'fpFixed' -+ +#10'ParentFont'#8#10'ScrollBars'#7#6'ssBoth'#8'TabOrder'#2#12#7'TabStop'#8#0 -+ +#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#225#1#6'Height'#2#25#3'Top'#3#136#0#5'Wid' -+ +'th'#3#142#0#7'Caption'#6#3'Add'#9'NumGlyphs'#2#0#7'OnClick'#7#8'AddClick'#8 -+ +'TabOrder'#2#8#0#0#7'TBitBtn'#7'BitBtn2'#4'Left'#3#166#1#6'Height'#2#25#3'To' -+ +'p'#3'N'#1#5'Width'#2'W'#7'Caption'#6#12'Save to File'#9'NumGlyphs'#2#0#7'On' -+ +'Click'#7#12'Button2Click'#8'TabOrder'#2#7#7'TabStop'#8#0#0#5'TEdit'#5'Edit7' -+ +#4'Left'#3#200#1#6'Height'#2#26#3'Top'#2'd'#5'Width'#2'X'#8'CharCase'#7#11'e' -+ +'cUppercase'#8'TabOrder'#2#5#0#0#5'TEdit'#5'Edit8'#4'Left'#2'@'#6'Height'#2 -+ +#26#3'Top'#3#138#0#5'Width'#3#141#1#9'MaxLength'#2'd'#8'TabOrder'#2#6#0#0#9 -+ +'TCheckBox'#9'CheckBox2'#4'Left'#3'('#1#6'Height'#2#22#3'Top'#2'@'#5'Width'#2 -+ +'T'#7'Caption'#6#12'Fainter than'#8'TabOrder'#2#11#7'TabStop'#8#0#0#11'TTime' -+ +'Picker'#11'TimePicker1'#4'Left'#3' '#1#6'Height'#2#23#3'Top'#2#14#5'Width'#2 -+ +'e'#4'Time'#5#0'xwwwww'#203#253'?'#8'OnChange'#7#15'DateEdit1Change'#7'Enabl' -+ +'ed'#9#8'TabOrder'#2#14#0#0#9'TDateEdit'#9'DateEdit1'#4'Left'#3#176#0#6'Heig' -+ +'ht'#2#26#3'Top'#2#14#5'Width'#2'P'#23'CalendarDisplaySettings'#11#14'dsShow' -+ +'Headings'#14'dsShowDayNames'#0#9'OKCaption'#6#2'OK'#13'CancelCaption'#6#6'C' -+ +'ancel'#9'DateOrder'#7#6'doNone'#11'ButtonWidth'#2#23#8'CharCase'#7#8'ecNorm' -+ +'al'#10'Glyph.Data'#10#218#2#0#0#214#2#0#0'BM'#214#2#0#0#0#0#0#0'6'#0#0#0'(' -+ +#0#0#0#14#0#0#0#12#0#0#0#1#0' '#0#0#0#0#0#160#2#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0 -+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128 -+ +#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128 -+ +#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0 -+ +#0#255#0#0#0#255#128#0#0#255#0#0#0#255#128#0#0#255#128#0#0#255#0#0#0#255#128 -+ +#0#0#255#0#0#0#255#0#0#0#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128 -+ +#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -+ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -+ +#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0 -+ +#0#0#255#0#0#0#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#192#192#192 -+ ,#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -+ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#192#192#192 -+ +#255#128#128#128#255#192#192#192#255#0#0#0#255#128#128#128#255#128#0#0#255 -+ +#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#128#128#128#255#0#0#0#255 -+ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -+ +#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0 -+ +#128#128#128#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0 -+ +#0#0#255#0#0#0#255#0#0#0#255#192#192#192#255#128#128#128#255#128#0#0#255#128 -+ +#128#128#255#0#0#0#0#0#0#0#0#128#128#128#255#0#0#0#255#0#0#0#255#128#128#128 -+ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#128#128#128 -+ +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -+ +#255#128#128#128#255#0#0#0#255#128#128#128#255#128#128#128#255#0#0#0#255#0#0 -+ +#0#255#0#0#0#255#0#0#0#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0 -+ +#0#0#0#0#0#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255 -+ +#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128 -+ +#255#128#128#128#255#128#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#128#128#128 -+ +#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192#192#255#192#192 -+ +#192#255#192#192#192#255#192#192#192#255#192#192#192#255#128#128#128#255#128 -+ +#0#0#255#128#128#128#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 -+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0 -+ +#0#0#9'NumGlyphs'#2#1#9'MaxLength'#2#0#6'OnExit'#7#15'DateEdit1Change'#7'Tab' -+ +'Stop'#8#8'TabOrder'#2#13#0#0#5'TEdit'#5'Edit9'#4'Left'#3'p'#1#6'Height'#2#26 -+ +#3'Top'#2'd'#5'Width'#2')'#8'CharCase'#7#11'ecUppercase'#8'TabOrder'#2#3#0#0 -+ +#13'TFileNameEdit'#13'FileNameEdit1'#4'Left'#2#14#6'Height'#2#26#3'Top'#3'O' -+ +#1#5'Width'#3'z'#1#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirecto' -+ +'ries'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2 -+ +#15#7'TabStop'#8#0#0#7'TButton'#7'Button1'#4'Left'#3'$'#2#6'Height'#2#21#3'T' -+ +'op'#2'@'#5'Width'#2#21#7'Caption'#6#3'...'#7'OnClick'#7#12'Button1Click'#8 -+ +'TabOrder'#2#16#0#0#7'TButton'#7'Editbtn'#4'Left'#3#15#2#6'Height'#2#25#3'To' -+ +'p'#3'N'#1#5'Width'#2'`'#7'Caption'#6#9'Edit File'#7'OnClick'#7#12'EditbtnCl' -+ +'ick'#8'TabOrder'#2#17#0#0#9'TMainMenu'#9'MainMenu1'#4'left'#2#16#3'top'#2'(' -+ +#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#5'&File'#0#9'TMenuItem'#9'MenuItem' -+ +'4'#7'Caption'#6#5'&Save'#7'OnClick'#7#12'Button2Click'#0#0#9'TMenuItem'#10 -+ +'MenuItem16'#7'Caption'#6#9'Edit file'#7'OnClick'#7#12'EditbtnClick'#0#0#9'T' -+ +'MenuItem'#9'MenuItem2'#7'Caption'#6#19'&Reset input fields'#7'OnClick'#7#14 -+ +'MenuItem2Click'#0#0#9'TMenuItem'#9'MenuItem3'#7'Caption'#6#5'&Quit'#7'OnCli' -+ +'ck'#7#14'MenuItem3Click'#0#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'#3'<' -+ +#2#3'top'#2'_'#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6';B: Sky is bright, m' -+ +'oon, twilight, light pollution, aurorae.'#7'OnClick'#7#9'CodeClick'#0#0#9'T' -+ +'MenuItem'#9'MenuItem6'#7'Caption'#6'#U: Clouds, dust, smoke, haze, etc. '#7 -+ +'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem7'#7'Caption'#6#16'W: Po' -+ +'or seeing. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem8'#7'Capt' -+ +'ion'#6';L: Low in the sky, near horizon, in trees, obstructed view.'#7'OnCl' -+ +'ick'#7#9'CodeClick'#0#0#9'TMenuItem'#9'MenuItem9'#7'Caption'#6'<D: Unusual ' -+ +'Activity (fading, flare, bizarre behavior, etc.) '#7'OnClick'#7#9'CodeClick' -+ +#0#0#9'TMenuItem'#10'MenuItem10'#7'Caption'#6#12'Y: Outburst.'#7'OnClick'#7#9 -+ +'CodeClick'#0#0#9'TMenuItem'#10'MenuItem11'#7'Caption'#6#20'K: Non-AAVSO cha' -+ +'rt. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem12'#7'Caption'#6 -+ +' S: Comparison sequence problem. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuIte' -+ +'m'#10'MenuItem13'#7'Caption'#6#31'Z: Magnitude of star uncertain.'#7'OnClic' -+ +'k'#7#9'CodeClick'#0#0#9'TMenuItem'#10'MenuItem14'#7'Caption'#6'%I: Identifi' -+ +'cation of star uncertain. '#7'OnClick'#7#9'CodeClick'#0#0#9'TMenuItem'#10'M' -+ +'enuItem15'#7'Caption'#6'4V: Faint star, near observing limit, only glimpsed' -+ +'. '#7'OnClick'#7#9'CodeClick'#0#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/param.pas skychart_3.2_up/varobs/param.pas ---- skychart_3.2/varobs/param.pas 2008-06-10 17:47:11.000000000 +0200 -+++ skychart_3.2_up/varobs/param.pas 2011-03-09 15:18:23.217264120 +0100 -@@ -1,27 +1,27 @@ --unit param; -- --{$mode objfpc}{$H+} -- --interface -- --uses -- Classes, SysUtils; -- --var -- datim,datact,qlurl,qlmethode,qlinfo,vsurl,vsmethode,vsinfo,afoevurl,afoevmethode,afoevinfo,pcobscaption : string; -- lockdate : boolean; -- lockselect : boolean; -- started : boolean; -- AppDir,planname : string; -- maxvar : integer; -- jdact : double; -- CurrentRow: integer; -- param : Tstringlist; -- StartedByVarobs : boolean; -- NoChart : boolean; -- CielHnd : Thandle; -- --implementation -- --end. -- -+unit param; -+ -+{$mode objfpc}{$H+} -+ -+interface -+ -+uses -+ Classes, SysUtils; -+ -+var -+ datim,datact,qlurl,qlmethode,qlinfo,vsurl,vsmethode,vsinfo,afoevurl,afoevmethode,afoevinfo,pcobscaption : string; -+ lockdate : boolean; -+ lockselect : boolean; -+ started : boolean; -+ AppDir,planname : string; -+ maxvar : integer; -+ jdact : double; -+ CurrentRow: integer; -+ param : Tstringlist; -+ StartedByVarobs : boolean; -+ NoChart : boolean; -+ CielHnd : Thandle; -+ -+implementation -+ -+end. -+ -diff -ur skychart_3.2/varobs/SettingUnit.lfm skychart_3.2_up/varobs/SettingUnit.lfm ---- skychart_3.2/varobs/SettingUnit.lfm 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/SettingUnit.lfm 2011-03-09 15:18:23.218263997 +0100 -@@ -1,803 +1,803 @@ --object OptForm: TOptForm -- Left = 990 -- Height = 366 -- Top = 38 -- Width = 447 -- HorzScrollBar.Page = 430 -- VertScrollBar.Page = 313 -- ActiveControl = PageControl1 -- Caption = 'Options' -- ClientHeight = 366 -- ClientWidth = 447 -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- OnCreate = FormCreate -- OnShow = FormShow -- LCLVersion = '0.9.29' -- object BitBtn1: TBitBtn -- Left = 176 -- Height = 25 -- Top = 320 -- Width = 75 -- Caption = 'OK' -- Default = True -- ModalResult = 1 -- NumGlyphs = 2 -- TabOrder = 0 -- end -- object PageControl1: TPageControl -- Left = 0 -- Height = 312 -- Top = 0 -- Width = 432 -- ActivePage = TabSheet1 -- TabIndex = 0 -- TabOrder = 1 -- object TabSheet1: TTabSheet -- Caption = 'Observation entry' -- ClientHeight = 284 -- ClientWidth = 428 -- object GroupBox5: TGroupBox -- Left = 20 -- Height = 232 -- Top = 10 -- Width = 385 -- Caption = 'Observation Entry' -- ClientHeight = 212 -- ClientWidth = 381 -- TabOrder = 0 -- object Label16: TLabel -- Left = 6 -- Height = 42 -- Top = 112 -- Width = 46 -- Caption = 'Observer'#13#10'Initials :' -- ParentColor = False -- end -- object Label8: TLabel -- Left = 6 -- Height = 19 -- Top = 152 -- Width = 56 -- Caption = 'Time Zone' -- ParentColor = False -- end -- object Label17: TLabel -- Left = 6 -- Height = 42 -- Top = 168 -- Width = 77 -- Caption = 'negative West '#13#10'of Greenwich' -- ParentColor = False -- end -- object Panel2: TPanel -- Left = 150 -- Height = 180 -- Top = 6 -- Width = 227 -- ClientHeight = 180 -- ClientWidth = 227 -- TabOrder = 2 -- object Label22: TLabel -- Left = 16 -- Height = 19 -- Top = 82 -- Width = 135 -- Caption = 'PCObs program location :' -- ParentColor = False -- end -- object Label23: TLabel -- Left = 8 -- Height = 65 -- Top = 18 -- Width = 214 -- Caption = 'Launch AAVSO PCObs for data entry'#13#10'This option is recommended if you want '#13#10'to submit your data to the AAVSO' -- ParentColor = False -- end -- object FileNameEdit8: TFileNameEdit -- Left = 16 -- Height = 26 -- Top = 109 -- Width = 169 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- end -- object Panel1: TPanel -- Left = 150 -- Height = 178 -- Top = 8 -- Width = 227 -- ClientHeight = 178 -- ClientWidth = 227 -- TabOrder = 1 -- object Label15: TLabel -- Left = 6 -- Height = 19 -- Top = 58 -- Width = 87 -- Caption = 'Observation file :' -- ParentColor = False -- end -- object RadioGroup7: TRadioGroup -- Left = 6 -- Height = 76 -- Top = 96 -- Width = 204 -- AutoFill = True -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 72 -- ClientWidth = 200 -- ItemIndex = 1 -- Items.Strings = ( -- 'Append data to unique file' -- 'Add date/time suffix to file' -- ) -- TabOrder = 2 -- end -- object RadioGroup4: TRadioGroup -- Left = 6 -- Height = 56 -- Top = 0 -- Width = 204 -- AutoFill = True -- Caption = 'Format' -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 2 -- ClientHeight = 36 -- ClientWidth = 200 -- Columns = 2 -- ItemIndex = 0 -- Items.Strings = ( -- 'AAVSO Visual' -- 'VSNET' -- ) -- TabOrder = 0 -- end -- object FileNameEdit3: TFileNameEdit -- Left = 6 -- Height = 26 -- Top = 73 -- Width = 176 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 1 -- end -- end -- object RadioGroup5: TRadioGroup -- Left = 8 -- Height = 99 -- Top = 6 -- Width = 134 -- AutoFill = True -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 95 -- ClientWidth = 130 -- ItemIndex = 0 -- Items.Strings = ( -- 'Internal facility' -- 'AAVSO PCObs' -- 'AAVSO WebObs' -- ) -- OnClick = RadioGroup5Click -- TabOrder = 0 -- end -- object Edit4: TEdit -- Left = 89 -- Height = 26 -- Top = 112 -- Width = 53 -- TabOrder = 3 -- end -- object tz: TSpinEdit -- Left = 90 -- Height = 26 -- Top = 152 -- Width = 52 -- MaxValue = 12 -- MinValue = -12 -- TabOrder = 4 -- end -- end -- end -- object TabSheet2: TTabSheet -- Caption = 'Plot observation' -- ClientHeight = 284 -- ClientWidth = 428 -- object GroupBox2: TGroupBox -- Left = 150 -- Height = 208 -- Top = 10 -- Width = 249 -- Caption = 'VSNET format' -- ClientHeight = 188 -- ClientWidth = 245 -- TabOrder = 0 -- Visible = False -- object Label9: TLabel -- Left = 8 -- Height = 117 -- Top = 20 -- Width = 225 -- AutoSize = False -- Caption = 'Free format. Fields are separated by at least one blank space and appear in this order'#13#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt'#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'Comment' -- ParentColor = False -- WordWrap = True -- end -- object Label10: TLabel -- Left = 8 -- Height = 19 -- Top = 144 -- Width = 51 -- Caption = 'File name' -- ParentColor = False -- end -- object FileNameEdit2: TFileNameEdit -- Left = 8 -- Height = 26 -- Top = 161 -- Width = 208 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- end -- object GroupBox3: TGroupBox -- Left = 150 -- Height = 209 -- Top = 11 -- Width = 249 -- Caption = 'AFOEV base folder' -- ClientHeight = 189 -- ClientWidth = 245 -- TabOrder = 1 -- Visible = False -- object Label4: TLabel -- Left = 8 -- Height = 101 -- Top = 28 -- Width = 225 -- AutoSize = False -- Caption = 'Indicate the path to the constellation folder.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' r'#13#10' s' -- ParentColor = False -- WordWrap = True -- end -- object DirectoryEdit3: TDirectoryEdit -- Left = 8 -- Height = 26 -- Top = 159 -- Width = 204 -- ShowHidden = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- end -- object GroupBox4: TGroupBox -- Left = 150 -- Height = 207 -- Top = 11 -- Width = 249 -- Caption = 'Other format fields description' -- ClientHeight = 187 -- ClientWidth = 245 -- TabOrder = 2 -- Visible = False -- object Label1: TLabel -- Left = 8 -- Height = 19 -- Top = 46 -- Width = 54 -- Caption = 'Star name' -- ParentColor = False -- end -- object Label2: TLabel -- Left = 8 -- Height = 19 -- Top = 68 -- Width = 25 -- Caption = 'Time' -- ParentColor = False -- end -- object Label3: TLabel -- Left = 8 -- Height = 19 -- Top = 90 -- Width = 51 -- Caption = 'Magnitude' -- ParentColor = False -- end -- object Label11: TLabel -- Left = 8 -- Height = 19 -- Top = 143 -- Width = 51 -- Caption = 'File name' -- ParentColor = False -- end -- object Label12: TLabel -- Left = 144 -- Height = 19 -- Top = 46 -- Width = 44 -- Caption = 'Field No' -- ParentColor = False -- end -- object Label13: TLabel -- Left = 144 -- Height = 19 -- Top = 68 -- Width = 44 -- Caption = 'Field No' -- ParentColor = False -- end -- object Label14: TLabel -- Left = 144 -- Height = 19 -- Top = 90 -- Width = 44 -- Caption = 'Field No' -- ParentColor = False -- end -- object RadioGroup2: TRadioGroup -- Left = 8 -- Height = 30 -- Top = 106 -- Width = 225 -- AutoFill = True -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 2 -- ClientHeight = 26 -- ClientWidth = 221 -- Columns = 2 -- ItemIndex = 1 -- Items.Strings = ( -- 'Julian date' -- 'Decimal UT' -- ) -- TabOrder = 0 -- end -- object Edit1: TEdit -- Left = 72 -- Height = 26 -- Top = 42 -- Width = 65 -- TabOrder = 1 -- Text = '1' -- end -- object Edit2: TEdit -- Left = 72 -- Height = 26 -- Top = 64 -- Width = 65 -- TabOrder = 2 -- Text = '2' -- end -- object Edit3: TEdit -- Left = 72 -- Height = 26 -- Top = 86 -- Width = 65 -- TabOrder = 3 -- Text = '3' -- end -- object RadioGroup3: TRadioGroup -- Left = 12 -- Height = 37 -- Top = -1 -- Width = 225 -- AutoFill = True -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 2 -- ClientHeight = 33 -- ClientWidth = 221 -- Columns = 2 -- ItemIndex = 0 -- Items.Strings = ( -- 'Variable format' -- 'Fixed format' -- ) -- OnClick = RadioGroup3Click -- TabOrder = 4 -- end -- object FileNameEdit4: TFileNameEdit -- Left = 8 -- Height = 26 -- Top = 161 -- Width = 204 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 5 -- end -- end -- object GroupBox1: TGroupBox -- Left = 150 -- Height = 209 -- Top = 10 -- Width = 249 -- Caption = 'AAVSO SUM format' -- ClientHeight = 189 -- ClientWidth = 245 -- TabOrder = 3 -- Visible = False -- object Label19: TLabel -- Left = 8 -- Height = 19 -- Top = 144 -- Width = 51 -- Caption = 'File name' -- ParentColor = False -- end -- object Label18: TLabel -- Left = 8 -- Height = 117 -- Top = 20 -- Width = 225 -- AutoSize = False -- Caption = 'Col 1-8 Designation from Validation File'#13#10'Col 9-18 Star name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magnitude'#13#10' < in column 31 for fainter-than'#13#10' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10'Col 63-67 Observer Initials' -- ParentColor = False -- end -- object FileNameEdit1: TFileNameEdit -- Left = 8 -- Height = 26 -- Top = 161 -- Width = 204 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- end -- object GroupBox0: TGroupBox -- Left = 150 -- Height = 209 -- Top = 11 -- Width = 249 -- Caption = 'AAVSO Visual' -- ClientHeight = 189 -- ClientWidth = 245 -- TabOrder = 5 -- Visible = False -- object Label20: TLabel -- Left = 8 -- Height = 117 -- Top = 12 -- Width = 225 -- AutoSize = False -- Caption = 'AAVSO Visual format'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' -- ParentColor = False -- end -- object Label21: TLabel -- Left = 8 -- Height = 19 -- Top = 144 -- Width = 51 -- Caption = 'File name' -- ParentColor = False -- end -- object FileNameEdit0: TFileNameEdit -- Left = 20 -- Height = 26 -- Top = 160 -- Width = 184 -- DialogOptions = [] -- FilterIndex = 0 -- HideDirectories = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- end -- object RadioGroup1: TRadioGroup -- Left = 14 -- Height = 209 -- Top = 10 -- Width = 137 -- AutoFill = True -- Caption = 'Light curve data' -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 189 -- ClientWidth = 133 -- ItemIndex = 0 -- Items.Strings = ( -- 'AAVSO Visual' -- 'Old AAVSO SUM' -- 'VSNET' -- 'AFOEV' -- 'Other format' -- ) -- OnClick = RadioGroup1Click -- TabOrder = 4 -- end -- end -- object TabSheet3: TTabSheet -- Caption = 'Plot Online Data' -- ClientHeight = 284 -- ClientWidth = 428 -- object RadioGroup6: TRadioGroup -- Left = 20 -- Height = 128 -- Top = 18 -- Width = 289 -- AutoFill = True -- Caption = 'Plot additional data from :' -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 1 -- ClientHeight = 108 -- ClientWidth = 285 -- ItemIndex = 0 -- Items.Strings = ( -- 'AAVSO Quick Look' -- 'AFOEV FTP Archive' -- ) -- TabOrder = 0 -- end -- end -- object TabSheet4: TTabSheet -- Caption = 'Charts' -- ClientHeight = 284 -- ClientWidth = 428 -- object GroupBox6: TGroupBox -- Left = 12 -- Height = 112 -- Top = 122 -- Width = 385 -- Caption = 'Cartes du Ciel / Sky Charts interface' -- ClientHeight = 92 -- ClientWidth = 381 -- TabOrder = 0 -- object Label5: TLabel -- Left = 14 -- Height = 19 -- Top = 72 -- Width = 353 -- Caption = 'Be sure the GCVS catalog is installed and activated whitin Skychart!' -- ParentColor = False -- end -- object Label6: TLabel -- Left = 174 -- Height = 19 -- Top = 37 -- Width = 40 -- Caption = 'degrees' -- ParentColor = False -- end -- object CheckBox1: TCheckBox -- Left = 14 -- Height = 22 -- Top = 8 -- Width = 216 -- Caption = 'Switch chart to equatorial coordinates' -- TabOrder = 0 -- end -- object CheckBox2: TCheckBox -- Left = 14 -- Height = 22 -- Top = 35 -- Width = 86 -- Caption = 'Set zoom to' -- TabOrder = 1 -- end -- object SpinEdit1: TSpinEdit -- Left = 110 -- Height = 26 -- Top = 34 -- Width = 50 -- MaxValue = 180 -- MinValue = 1 -- TabOrder = 2 -- Value = 15 -- end -- end -- object GroupBox9: TGroupBox -- Left = 12 -- Height = 106 -- Top = 10 -- Width = 385 -- Caption = 'AAVSO Chart' -- ClientHeight = 86 -- ClientWidth = 381 -- TabOrder = 1 -- object DirectoryEdit2: TDirectoryEdit -- Left = 12 -- Height = 26 -- Top = 56 -- Width = 328 -- ShowHidden = False -- ButtonWidth = 23 -- NumGlyphs = 1 -- MaxLength = 0 -- TabOrder = 0 -- end -- object RadioGroup8: TRadioGroup -- Left = 12 -- Height = 48 -- Top = 0 -- Width = 348 -- AutoFill = True -- ChildSizing.LeftRightSpacing = 6 -- ChildSizing.TopBottomSpacing = 6 -- ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -- ChildSizing.EnlargeVertical = crsHomogenousChildResize -- ChildSizing.ShrinkHorizontal = crsScaleChilds -- ChildSizing.ShrinkVertical = crsScaleChilds -- ChildSizing.Layout = cclLeftToRightThenTopToBottom -- ChildSizing.ControlsPerLine = 2 -- ClientHeight = 44 -- ClientWidth = 344 -- Columns = 2 -- Items.Strings = ( -- 'Online charts' -- 'Chart CDrom' -- ) -- OnClick = RadioGroup8Click -- TabOrder = 1 -- end -- end -- end -- object TabSheet5: TTabSheet -- Caption = 'URL' -- ClientHeight = 284 -- ClientWidth = 428 -- object Label7: TLabel -- Left = 12 -- Height = 19 -- Top = 250 -- Width = 271 -- Caption = 'Do NOT change any of this without a good reason!' -- ParentColor = False -- end -- object qlurl: TLabeledEdit -- Left = 12 -- Height = 26 -- Top = 26 -- Width = 392 -- EditLabel.AnchorSideLeft.Control = qlurl -- EditLabel.AnchorSideBottom.Control = qlurl -- EditLabel.Left = 12 -- EditLabel.Height = 19 -- EditLabel.Top = 4 -- EditLabel.Width = 100 -- EditLabel.Caption = 'AAVSO Quick Look' -- EditLabel.ParentColor = False -- TabOrder = 0 -- end -- object afoevurl: TLabeledEdit -- Left = 12 -- Height = 26 -- Top = 74 -- Width = 392 -- EditLabel.AnchorSideLeft.Control = afoevurl -- EditLabel.AnchorSideBottom.Control = afoevurl -- EditLabel.Left = 12 -- EditLabel.Height = 19 -- EditLabel.Top = 52 -- EditLabel.Width = 101 -- EditLabel.Caption = 'AFOEF FTP server' -- EditLabel.ParentColor = False -- TabOrder = 1 -- end -- object charturl: TLabeledEdit -- Left = 12 -- Height = 26 -- Top = 126 -- Width = 392 -- EditLabel.AnchorSideLeft.Control = charturl -- EditLabel.AnchorSideBottom.Control = charturl -- EditLabel.Left = 12 -- EditLabel.Height = 19 -- EditLabel.Top = 104 -- EditLabel.Width = 75 -- EditLabel.Caption = 'AAVSO Charts' -- EditLabel.ParentColor = False -- TabOrder = 2 -- end -- object webobsurl: TLabeledEdit -- Left = 12 -- Height = 26 -- Top = 176 -- Width = 392 -- EditLabel.AnchorSideLeft.Control = webobsurl -- EditLabel.AnchorSideBottom.Control = webobsurl -- EditLabel.Left = 12 -- EditLabel.Height = 19 -- EditLabel.Top = 154 -- EditLabel.Width = 85 -- EditLabel.Caption = 'AAVSO WebObs' -- EditLabel.ParentColor = False -- TabOrder = 3 -- end -- object Button1: TButton -- Left = 300 -- Height = 25 -- Top = 246 -- Width = 107 -- Caption = 'Reset to default' -- OnClick = Button1Click -- TabOrder = 4 -- end -- object Label24: TLabel -- Left = 12 -- Height = 19 -- Top = 217 -- Width = 127 -- Caption = 'Command to open a file' -- ParentColor = False -- end -- object opencmd: TEdit -- Left = 158 -- Height = 26 -- Top = 214 -- Width = 246 -- TabOrder = 5 -- end -- end -- end -+object OptForm: TOptForm -+ Left = 990 -+ Height = 366 -+ Top = 38 -+ Width = 447 -+ HorzScrollBar.Page = 430 -+ VertScrollBar.Page = 313 -+ ActiveControl = PageControl1 -+ Caption = 'Options' -+ ClientHeight = 366 -+ ClientWidth = 447 -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ OnCreate = FormCreate -+ OnShow = FormShow -+ LCLVersion = '0.9.29' -+ object BitBtn1: TBitBtn -+ Left = 176 -+ Height = 25 -+ Top = 320 -+ Width = 75 -+ Caption = 'OK' -+ Default = True -+ ModalResult = 1 -+ NumGlyphs = 2 -+ TabOrder = 0 -+ end -+ object PageControl1: TPageControl -+ Left = 0 -+ Height = 312 -+ Top = 0 -+ Width = 432 -+ ActivePage = TabSheet1 -+ TabIndex = 0 -+ TabOrder = 1 -+ object TabSheet1: TTabSheet -+ Caption = 'Observation entry' -+ ClientHeight = 284 -+ ClientWidth = 428 -+ object GroupBox5: TGroupBox -+ Left = 20 -+ Height = 232 -+ Top = 10 -+ Width = 385 -+ Caption = 'Observation Entry' -+ ClientHeight = 212 -+ ClientWidth = 381 -+ TabOrder = 0 -+ object Label16: TLabel -+ Left = 6 -+ Height = 42 -+ Top = 112 -+ Width = 46 -+ Caption = 'Observer'#13#10'Initials :' -+ ParentColor = False -+ end -+ object Label8: TLabel -+ Left = 6 -+ Height = 19 -+ Top = 152 -+ Width = 56 -+ Caption = 'Time Zone' -+ ParentColor = False -+ end -+ object Label17: TLabel -+ Left = 6 -+ Height = 42 -+ Top = 168 -+ Width = 77 -+ Caption = 'negative West '#13#10'of Greenwich' -+ ParentColor = False -+ end -+ object Panel2: TPanel -+ Left = 150 -+ Height = 180 -+ Top = 6 -+ Width = 227 -+ ClientHeight = 180 -+ ClientWidth = 227 -+ TabOrder = 2 -+ object Label22: TLabel -+ Left = 16 -+ Height = 19 -+ Top = 82 -+ Width = 135 -+ Caption = 'PCObs program location :' -+ ParentColor = False -+ end -+ object Label23: TLabel -+ Left = 8 -+ Height = 65 -+ Top = 18 -+ Width = 214 -+ Caption = 'Launch AAVSO PCObs for data entry'#13#10'This option is recommended if you want '#13#10'to submit your data to the AAVSO' -+ ParentColor = False -+ end -+ object FileNameEdit8: TFileNameEdit -+ Left = 16 -+ Height = 26 -+ Top = 109 -+ Width = 169 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ end -+ object Panel1: TPanel -+ Left = 150 -+ Height = 178 -+ Top = 8 -+ Width = 227 -+ ClientHeight = 178 -+ ClientWidth = 227 -+ TabOrder = 1 -+ object Label15: TLabel -+ Left = 6 -+ Height = 19 -+ Top = 58 -+ Width = 87 -+ Caption = 'Observation file :' -+ ParentColor = False -+ end -+ object RadioGroup7: TRadioGroup -+ Left = 6 -+ Height = 76 -+ Top = 96 -+ Width = 204 -+ AutoFill = True -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 72 -+ ClientWidth = 200 -+ ItemIndex = 1 -+ Items.Strings = ( -+ 'Append data to unique file' -+ 'Add date/time suffix to file' -+ ) -+ TabOrder = 2 -+ end -+ object RadioGroup4: TRadioGroup -+ Left = 6 -+ Height = 56 -+ Top = 0 -+ Width = 204 -+ AutoFill = True -+ Caption = 'Format' -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 2 -+ ClientHeight = 36 -+ ClientWidth = 200 -+ Columns = 2 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'AAVSO Visual' -+ 'VSNET' -+ ) -+ TabOrder = 0 -+ end -+ object FileNameEdit3: TFileNameEdit -+ Left = 6 -+ Height = 26 -+ Top = 73 -+ Width = 176 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 1 -+ end -+ end -+ object RadioGroup5: TRadioGroup -+ Left = 8 -+ Height = 99 -+ Top = 6 -+ Width = 134 -+ AutoFill = True -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 95 -+ ClientWidth = 130 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'Internal facility' -+ 'AAVSO PCObs' -+ 'AAVSO WebObs' -+ ) -+ OnClick = RadioGroup5Click -+ TabOrder = 0 -+ end -+ object Edit4: TEdit -+ Left = 89 -+ Height = 26 -+ Top = 112 -+ Width = 53 -+ TabOrder = 3 -+ end -+ object tz: TSpinEdit -+ Left = 90 -+ Height = 26 -+ Top = 152 -+ Width = 52 -+ MaxValue = 12 -+ MinValue = -12 -+ TabOrder = 4 -+ end -+ end -+ end -+ object TabSheet2: TTabSheet -+ Caption = 'Plot observation' -+ ClientHeight = 284 -+ ClientWidth = 428 -+ object GroupBox2: TGroupBox -+ Left = 150 -+ Height = 208 -+ Top = 10 -+ Width = 249 -+ Caption = 'VSNET format' -+ ClientHeight = 188 -+ ClientWidth = 245 -+ TabOrder = 0 -+ Visible = False -+ object Label9: TLabel -+ Left = 8 -+ Height = 117 -+ Top = 20 -+ Width = 225 -+ AutoSize = False -+ Caption = 'Free format. Fields are separated by at least one blank space and appear in this order'#13#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt'#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'Comment' -+ ParentColor = False -+ WordWrap = True -+ end -+ object Label10: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 144 -+ Width = 51 -+ Caption = 'File name' -+ ParentColor = False -+ end -+ object FileNameEdit2: TFileNameEdit -+ Left = 8 -+ Height = 26 -+ Top = 161 -+ Width = 208 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ end -+ object GroupBox3: TGroupBox -+ Left = 150 -+ Height = 209 -+ Top = 11 -+ Width = 249 -+ Caption = 'AFOEV base folder' -+ ClientHeight = 189 -+ ClientWidth = 245 -+ TabOrder = 1 -+ Visible = False -+ object Label4: TLabel -+ Left = 8 -+ Height = 101 -+ Top = 28 -+ Width = 225 -+ AutoSize = False -+ Caption = 'Indicate the path to the constellation folder.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' r'#13#10' s' -+ ParentColor = False -+ WordWrap = True -+ end -+ object DirectoryEdit3: TDirectoryEdit -+ Left = 8 -+ Height = 26 -+ Top = 159 -+ Width = 204 -+ ShowHidden = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ end -+ object GroupBox4: TGroupBox -+ Left = 150 -+ Height = 207 -+ Top = 11 -+ Width = 249 -+ Caption = 'Other format fields description' -+ ClientHeight = 187 -+ ClientWidth = 245 -+ TabOrder = 2 -+ Visible = False -+ object Label1: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 46 -+ Width = 54 -+ Caption = 'Star name' -+ ParentColor = False -+ end -+ object Label2: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 68 -+ Width = 25 -+ Caption = 'Time' -+ ParentColor = False -+ end -+ object Label3: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 90 -+ Width = 51 -+ Caption = 'Magnitude' -+ ParentColor = False -+ end -+ object Label11: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 143 -+ Width = 51 -+ Caption = 'File name' -+ ParentColor = False -+ end -+ object Label12: TLabel -+ Left = 144 -+ Height = 19 -+ Top = 46 -+ Width = 44 -+ Caption = 'Field No' -+ ParentColor = False -+ end -+ object Label13: TLabel -+ Left = 144 -+ Height = 19 -+ Top = 68 -+ Width = 44 -+ Caption = 'Field No' -+ ParentColor = False -+ end -+ object Label14: TLabel -+ Left = 144 -+ Height = 19 -+ Top = 90 -+ Width = 44 -+ Caption = 'Field No' -+ ParentColor = False -+ end -+ object RadioGroup2: TRadioGroup -+ Left = 8 -+ Height = 30 -+ Top = 106 -+ Width = 225 -+ AutoFill = True -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 2 -+ ClientHeight = 26 -+ ClientWidth = 221 -+ Columns = 2 -+ ItemIndex = 1 -+ Items.Strings = ( -+ 'Julian date' -+ 'Decimal UT' -+ ) -+ TabOrder = 0 -+ end -+ object Edit1: TEdit -+ Left = 72 -+ Height = 26 -+ Top = 42 -+ Width = 65 -+ TabOrder = 1 -+ Text = '1' -+ end -+ object Edit2: TEdit -+ Left = 72 -+ Height = 26 -+ Top = 64 -+ Width = 65 -+ TabOrder = 2 -+ Text = '2' -+ end -+ object Edit3: TEdit -+ Left = 72 -+ Height = 26 -+ Top = 86 -+ Width = 65 -+ TabOrder = 3 -+ Text = '3' -+ end -+ object RadioGroup3: TRadioGroup -+ Left = 12 -+ Height = 37 -+ Top = -1 -+ Width = 225 -+ AutoFill = True -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 2 -+ ClientHeight = 33 -+ ClientWidth = 221 -+ Columns = 2 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'Variable format' -+ 'Fixed format' -+ ) -+ OnClick = RadioGroup3Click -+ TabOrder = 4 -+ end -+ object FileNameEdit4: TFileNameEdit -+ Left = 8 -+ Height = 26 -+ Top = 161 -+ Width = 204 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 5 -+ end -+ end -+ object GroupBox1: TGroupBox -+ Left = 150 -+ Height = 209 -+ Top = 10 -+ Width = 249 -+ Caption = 'AAVSO SUM format' -+ ClientHeight = 189 -+ ClientWidth = 245 -+ TabOrder = 3 -+ Visible = False -+ object Label19: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 144 -+ Width = 51 -+ Caption = 'File name' -+ ParentColor = False -+ end -+ object Label18: TLabel -+ Left = 8 -+ Height = 117 -+ Top = 20 -+ Width = 225 -+ AutoSize = False -+ Caption = 'Col 1-8 Designation from Validation File'#13#10'Col 9-18 Star name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magnitude'#13#10' < in column 31 for fainter-than'#13#10' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10'Col 63-67 Observer Initials' -+ ParentColor = False -+ end -+ object FileNameEdit1: TFileNameEdit -+ Left = 8 -+ Height = 26 -+ Top = 161 -+ Width = 204 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ end -+ object GroupBox0: TGroupBox -+ Left = 150 -+ Height = 209 -+ Top = 11 -+ Width = 249 -+ Caption = 'AAVSO Visual' -+ ClientHeight = 189 -+ ClientWidth = 245 -+ TabOrder = 5 -+ Visible = False -+ object Label20: TLabel -+ Left = 8 -+ Height = 117 -+ Top = 12 -+ Width = 225 -+ AutoSize = False -+ Caption = 'AAVSO Visual format'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' -+ ParentColor = False -+ end -+ object Label21: TLabel -+ Left = 8 -+ Height = 19 -+ Top = 144 -+ Width = 51 -+ Caption = 'File name' -+ ParentColor = False -+ end -+ object FileNameEdit0: TFileNameEdit -+ Left = 20 -+ Height = 26 -+ Top = 160 -+ Width = 184 -+ DialogOptions = [] -+ FilterIndex = 0 -+ HideDirectories = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ end -+ object RadioGroup1: TRadioGroup -+ Left = 14 -+ Height = 209 -+ Top = 10 -+ Width = 137 -+ AutoFill = True -+ Caption = 'Light curve data' -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 189 -+ ClientWidth = 133 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'AAVSO Visual' -+ 'Old AAVSO SUM' -+ 'VSNET' -+ 'AFOEV' -+ 'Other format' -+ ) -+ OnClick = RadioGroup1Click -+ TabOrder = 4 -+ end -+ end -+ object TabSheet3: TTabSheet -+ Caption = 'Plot Online Data' -+ ClientHeight = 284 -+ ClientWidth = 428 -+ object RadioGroup6: TRadioGroup -+ Left = 20 -+ Height = 128 -+ Top = 18 -+ Width = 289 -+ AutoFill = True -+ Caption = 'Plot additional data from :' -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 1 -+ ClientHeight = 108 -+ ClientWidth = 285 -+ ItemIndex = 0 -+ Items.Strings = ( -+ 'AAVSO Quick Look' -+ 'AFOEV FTP Archive' -+ ) -+ TabOrder = 0 -+ end -+ end -+ object TabSheet4: TTabSheet -+ Caption = 'Charts' -+ ClientHeight = 284 -+ ClientWidth = 428 -+ object GroupBox6: TGroupBox -+ Left = 12 -+ Height = 112 -+ Top = 122 -+ Width = 385 -+ Caption = 'Cartes du Ciel / Sky Charts interface' -+ ClientHeight = 92 -+ ClientWidth = 381 -+ TabOrder = 0 -+ object Label5: TLabel -+ Left = 14 -+ Height = 19 -+ Top = 72 -+ Width = 353 -+ Caption = 'Be sure the GCVS catalog is installed and activated whitin Skychart!' -+ ParentColor = False -+ end -+ object Label6: TLabel -+ Left = 174 -+ Height = 19 -+ Top = 37 -+ Width = 40 -+ Caption = 'degrees' -+ ParentColor = False -+ end -+ object CheckBox1: TCheckBox -+ Left = 14 -+ Height = 22 -+ Top = 8 -+ Width = 216 -+ Caption = 'Switch chart to equatorial coordinates' -+ TabOrder = 0 -+ end -+ object CheckBox2: TCheckBox -+ Left = 14 -+ Height = 22 -+ Top = 35 -+ Width = 86 -+ Caption = 'Set zoom to' -+ TabOrder = 1 -+ end -+ object SpinEdit1: TSpinEdit -+ Left = 110 -+ Height = 26 -+ Top = 34 -+ Width = 50 -+ MaxValue = 180 -+ MinValue = 1 -+ TabOrder = 2 -+ Value = 15 -+ end -+ end -+ object GroupBox9: TGroupBox -+ Left = 12 -+ Height = 106 -+ Top = 10 -+ Width = 385 -+ Caption = 'AAVSO Chart' -+ ClientHeight = 86 -+ ClientWidth = 381 -+ TabOrder = 1 -+ object DirectoryEdit2: TDirectoryEdit -+ Left = 12 -+ Height = 26 -+ Top = 56 -+ Width = 328 -+ ShowHidden = False -+ ButtonWidth = 23 -+ NumGlyphs = 1 -+ MaxLength = 0 -+ TabOrder = 0 -+ end -+ object RadioGroup8: TRadioGroup -+ Left = 12 -+ Height = 48 -+ Top = 0 -+ Width = 348 -+ AutoFill = True -+ ChildSizing.LeftRightSpacing = 6 -+ ChildSizing.TopBottomSpacing = 6 -+ ChildSizing.EnlargeHorizontal = crsHomogenousChildResize -+ ChildSizing.EnlargeVertical = crsHomogenousChildResize -+ ChildSizing.ShrinkHorizontal = crsScaleChilds -+ ChildSizing.ShrinkVertical = crsScaleChilds -+ ChildSizing.Layout = cclLeftToRightThenTopToBottom -+ ChildSizing.ControlsPerLine = 2 -+ ClientHeight = 44 -+ ClientWidth = 344 -+ Columns = 2 -+ Items.Strings = ( -+ 'Online charts' -+ 'Chart CDrom' -+ ) -+ OnClick = RadioGroup8Click -+ TabOrder = 1 -+ end -+ end -+ end -+ object TabSheet5: TTabSheet -+ Caption = 'URL' -+ ClientHeight = 284 -+ ClientWidth = 428 -+ object Label7: TLabel -+ Left = 12 -+ Height = 19 -+ Top = 250 -+ Width = 271 -+ Caption = 'Do NOT change any of this without a good reason!' -+ ParentColor = False -+ end -+ object qlurl: TLabeledEdit -+ Left = 12 -+ Height = 26 -+ Top = 26 -+ Width = 392 -+ EditLabel.AnchorSideLeft.Control = qlurl -+ EditLabel.AnchorSideBottom.Control = qlurl -+ EditLabel.Left = 12 -+ EditLabel.Height = 19 -+ EditLabel.Top = 4 -+ EditLabel.Width = 100 -+ EditLabel.Caption = 'AAVSO Quick Look' -+ EditLabel.ParentColor = False -+ TabOrder = 0 -+ end -+ object afoevurl: TLabeledEdit -+ Left = 12 -+ Height = 26 -+ Top = 74 -+ Width = 392 -+ EditLabel.AnchorSideLeft.Control = afoevurl -+ EditLabel.AnchorSideBottom.Control = afoevurl -+ EditLabel.Left = 12 -+ EditLabel.Height = 19 -+ EditLabel.Top = 52 -+ EditLabel.Width = 101 -+ EditLabel.Caption = 'AFOEF FTP server' -+ EditLabel.ParentColor = False -+ TabOrder = 1 -+ end -+ object charturl: TLabeledEdit -+ Left = 12 -+ Height = 26 -+ Top = 126 -+ Width = 392 -+ EditLabel.AnchorSideLeft.Control = charturl -+ EditLabel.AnchorSideBottom.Control = charturl -+ EditLabel.Left = 12 -+ EditLabel.Height = 19 -+ EditLabel.Top = 104 -+ EditLabel.Width = 75 -+ EditLabel.Caption = 'AAVSO Charts' -+ EditLabel.ParentColor = False -+ TabOrder = 2 -+ end -+ object webobsurl: TLabeledEdit -+ Left = 12 -+ Height = 26 -+ Top = 176 -+ Width = 392 -+ EditLabel.AnchorSideLeft.Control = webobsurl -+ EditLabel.AnchorSideBottom.Control = webobsurl -+ EditLabel.Left = 12 -+ EditLabel.Height = 19 -+ EditLabel.Top = 154 -+ EditLabel.Width = 85 -+ EditLabel.Caption = 'AAVSO WebObs' -+ EditLabel.ParentColor = False -+ TabOrder = 3 -+ end -+ object Button1: TButton -+ Left = 300 -+ Height = 25 -+ Top = 246 -+ Width = 107 -+ Caption = 'Reset to default' -+ OnClick = Button1Click -+ TabOrder = 4 -+ end -+ object Label24: TLabel -+ Left = 12 -+ Height = 19 -+ Top = 217 -+ Width = 127 -+ Caption = 'Command to open a file' -+ ParentColor = False -+ end -+ object opencmd: TEdit -+ Left = 158 -+ Height = 26 -+ Top = 214 -+ Width = 246 -+ TabOrder = 5 -+ end -+ end -+ end - end -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/SettingUnit.lrs skychart_3.2_up/varobs/SettingUnit.lrs ---- skychart_3.2/varobs/SettingUnit.lrs 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/SettingUnit.lrs 2011-03-09 15:18:23.218263997 +0100 -@@ -1,235 +1,235 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('TOptForm','FORMDATA',[ -- 'TPF0'#8'TOptForm'#7'OptForm'#4'Left'#3#222#3#6'Height'#3'n'#1#3'Top'#2'&'#5 -- +'Width'#3#191#1#18'HorzScrollBar.Page'#3#174#1#18'VertScrollBar.Page'#3'9'#1 -- +#13'ActiveControl'#7#12'PageControl1'#7'Caption'#6#7'Options'#12'ClientHeigh' -- +'t'#3'n'#1#11'ClientWidth'#3#191#1#11'Font.Height'#2#245#9'Font.Name'#6#13'M' -- +'S Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVe' -- +'rsion'#6#6'0.9.29'#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#176#0#6'Height'#2#25#3 -- +'Top'#3'@'#1#5'Width'#2'K'#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2 -- +#1#9'NumGlyphs'#2#2#8'TabOrder'#2#0#0#0#12'TPageControl'#12'PageControl1'#4 -- +'Left'#2#0#6'Height'#3'8'#1#3'Top'#2#0#5'Width'#3#176#1#10'ActivePage'#7#9'T' -- +'abSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Cap' -- +'tion'#6#17'Observation entry'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172 -- +#1#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#20#6'Height'#3#232#0#3'Top'#2#10#5 -- +'Width'#3#129#1#7'Caption'#6#17'Observation Entry'#12'ClientHeight'#3#212#0 -- +#11'ClientWidth'#3'}'#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label16'#4'Left'#2#6#6 -- +'Height'#2'*'#3'Top'#2'p'#5'Width'#2'.'#7'Caption'#6#20'Observer'#13#10'Init' -- +'ials :'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2#6#6'Height'#2#19 -- +#3'Top'#3#152#0#5'Width'#2'8'#7'Caption'#6#9'Time Zone'#11'ParentColor'#8#0#0 -- +#6'TLabel'#7'Label17'#4'Left'#2#6#6'Height'#2'*'#3'Top'#3#168#0#5'Width'#2'M' -- +#7'Caption'#6#28'negative West '#13#10'of Greenwich'#11'ParentColor'#8#0#0#6 -- +'TPanel'#6'Panel2'#4'Left'#3#150#0#6'Height'#3#180#0#3'Top'#2#6#5'Width'#3 -- +#227#0#12'ClientHeight'#3#180#0#11'ClientWidth'#3#227#0#8'TabOrder'#2#2#0#6 -- +'TLabel'#7'Label22'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'R'#5'Width'#3#135#0 -- +#7'Caption'#6#24'PCObs program location :'#11'ParentColor'#8#0#0#6'TLabel'#7 -- +'Label23'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#18#5'Width'#3#214#0#7'Caption' -- +#6'lLaunch AAVSO PCObs for data entry'#13#10'This option is recommended if y' -- +'ou want '#13#10'to submit your data to the AAVSO'#11'ParentColor'#8#0#0#13 -- +'TFileNameEdit'#13'FileNameEdit8'#4'Left'#2#16#6'Height'#2#26#3'Top'#2'm'#5 -- +'Width'#3#169#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' -- +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 -- +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#3#150#0#6'Height'#3#178#0#3'Top'#2#8#5'Wi' -- +'dth'#3#227#0#12'ClientHeight'#3#178#0#11'ClientWidth'#3#227#0#8'TabOrder'#2 -- +#1#0#6'TLabel'#7'Label15'#4'Left'#2#6#6'Height'#2#19#3'Top'#2':'#5'Width'#2 -- +'W'#7'Caption'#6#18'Observation file :'#11'ParentColor'#8#0#0#11'TRadioGroup' -- +#11'RadioGroup7'#4'Left'#2#6#6'Height'#2'L'#3'Top'#2'`'#5'Width'#3#204#0#8'A' -- +'utoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' -- +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -- +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -- +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -- +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -- +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'H'#11'ClientWidth' -- +#3#200#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#26'Append data to unique fil' -- +'e'#6#28'Add date/time suffix to file'#0#8'TabOrder'#2#2#0#0#11'TRadioGroup' -- +#11'RadioGroup4'#4'Left'#2#6#6'Height'#2'8'#3'Top'#2#0#5'Width'#3#204#0#8'Au' -- +'toFill'#9#7'Caption'#6#6'Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'Ch' -- +'ildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsH' -- +'omogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChi' -- +'ldResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSiz' -- +'ing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLef' -- +'tToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeigh' -- +'t'#2'$'#11'ClientWidth'#3#200#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.St' -- +'rings'#1#6#12'AAVSO Visual'#6#5'VSNET'#0#8'TabOrder'#2#0#0#0#13'TFileNameEd' -- +'it'#13'FileNameEdit3'#4'Left'#2#6#6'Height'#2#26#3'Top'#2'I'#5'Width'#3#176 -- +#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'Butto' -- +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#0#0#0#11'TRa' -- +'dioGroup'#11'RadioGroup5'#4'Left'#2#8#6'Height'#2'c'#3'Top'#2#6#5'Width'#3 -- +#134#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' -- +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' -- +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'_'#11'Cl' -- +'ientWidth'#3#130#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#17'Internal facil' -- +'ity'#6#11'AAVSO PCObs'#6#12'AAVSO WebObs'#0#7'OnClick'#7#16'RadioGroup5Clic' -- +'k'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'Y'#6'Height'#2#26#3'Top' -- ,#2'p'#5'Width'#2'5'#8'TabOrder'#2#3#0#0#9'TSpinEdit'#2'tz'#4'Left'#2'Z'#6'He' -- +'ight'#2#26#3'Top'#3#152#0#5'Width'#2'4'#8'MaxValue'#2#12#8'MinValue'#2#244#8 -- +'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Caption'#6#16'Plot observ' -- +'ation'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'Gro' -- +'upBox2'#4'Left'#3#150#0#6'Height'#3#208#0#3'Top'#2#10#5'Width'#3#249#0#7'Ca' -- +'ption'#6#12'VSNET format'#12'ClientHeight'#3#188#0#11'ClientWidth'#3#245#0#8 -- +'TabOrder'#2#0#7'Visible'#8#0#6'TLabel'#6'Label9'#4'Left'#2#8#6'Height'#2'u' -- +#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6#213'Free format. Fi' -- +'elds are separated by at least one blank space and appear in this order'#13 -- +#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt' -- +#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'C' -- +'omment'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label10'#4'Left'#2#8 -- +#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'Pa' -- +'rentColor'#8#0#0#13'TFileNameEdit'#13'FileNameEdit2'#4'Left'#2#8#6'Height'#2 -- +#26#3'Top'#3#161#0#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterIndex'#2 -- +#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 -- +#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#3#150#0#6'Height' -- +#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7'Caption'#6#17'AFOEV base folder'#12 -- +'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#1#7'Visible'#8#0 -- +#6'TLabel'#6'Label4'#4'Left'#2#8#6'Height'#2'e'#3'Top'#2#28#5'Width'#3#225#0 -- +#8'AutoSize'#8#7'Caption'#6#143'Indicate the path to the constellation folde' -- +'r.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' ' -- +' r'#13#10' s'#11'ParentColor'#8#8 -- +'WordWrap'#9#0#0#14'TDirectoryEdit'#14'DirectoryEdit3'#4'Left'#2#8#6'Height' -- +#2#26#3'Top'#3#159#0#5'Width'#3#204#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9 -- +'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupB' -- +'ox4'#4'Left'#3#150#0#6'Height'#3#207#0#3'Top'#2#11#5'Width'#3#249#0#7'Capti' -- +'on'#6#31'Other format fields description'#12'ClientHeight'#3#187#0#11'Clien' -- +'tWidth'#3#245#0#8'TabOrder'#2#2#7'Visible'#8#0#6'TLabel'#6'Label1'#4'Left'#2 -- +#8#6'Height'#2#19#3'Top'#2'.'#5'Width'#2'6'#7'Caption'#6#9'Star name'#11'Par' -- +'entColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'D'#5 -- +'Width'#2#25#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4 -- +'Left'#2#8#6'Height'#2#19#3'Top'#2'Z'#5'Width'#2'3'#7'Caption'#6#9'Magnitude' -- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Height'#2#19#3'Top' -- +#3#143#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLa' -- +'bel'#7'Label12'#4'Left'#3#144#0#6'Height'#2#19#3'Top'#2'.'#5'Width'#2','#7 -- +'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#3 -- +#144#0#6'Height'#2#19#3'Top'#2'D'#5'Width'#2','#7'Caption'#6#8'Field No'#11 -- +'ParentColor'#8#0#0#6'TLabel'#7'Label14'#4'Left'#3#144#0#6'Height'#2#19#3'To' -- +'p'#2'Z'#5'Width'#2','#7'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#11'TRa' -- +'dioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2#30#3'Top'#2'j'#5'Width'#3 -- +#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' -- +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' -- +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2#26#11'Cl' -- +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11 -- +'Julian date'#6#10'Decimal UT'#0#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit1'#4'Lef' -- +'t'#2'H'#6'Height'#2#26#3'Top'#2'*'#5'Width'#2'A'#8'TabOrder'#2#1#4'Text'#6#1 -- +'1'#0#0#5'TEdit'#5'Edit2'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 -- +'A'#8'TabOrder'#2#2#4'Text'#6#1'2'#0#0#5'TEdit'#5'Edit3'#4'Left'#2'H'#6'Heig' -- +'ht'#2#26#3'Top'#2'V'#5'Width'#2'A'#8'TabOrder'#2#3#4'Text'#6#1'3'#0#0#11'TR' -- +'adioGroup'#11'RadioGroup3'#4'Left'#2#12#6'Height'#2'%'#3'Top'#2#255#5'Width' -- +#3#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.T' -- +'opBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousCh' -- +'ildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -- +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -- +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -- +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'Cl' -- +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#15 -- +'Variable format'#6#12'Fixed format'#0#7'OnClick'#7#16'RadioGroup3Click'#8'T' -- +'abOrder'#2#4#0#0#13'TFileNameEdit'#13'FileNameEdit4'#4'Left'#2#8#6'Height'#2 -- +#26#3'Top'#3#161#0#5'Width'#3#204#0#13'DialogOptions'#11#0#11'FilterIndex'#2 -- ,#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 -- +#0#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#3#150#0#6'Height' -- +#3#209#0#3'Top'#2#10#5'Width'#3#249#0#7'Caption'#6#16'AAVSO SUM format'#12'C' -- +'lientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#3#7'Visible'#8#0 -- +#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3' -- +#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left' -- +#2#8#6'Height'#2'u'#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#12 -- +#22#1#0#0'Col 1-8 Designation from Validation File'#13#10'Col 9-18 S' -- +'tar name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magn' -- +'itude'#13#10' < in column 31 for fainter-than'#13#10' ' -- +' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10 -- +'Col 63-67 Observer Initials'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'Fil' -- +'eNameEdit1'#4'Left'#2#8#6'Height'#2#26#3'Top'#3#161#0#5'Width'#3#204#0#13'D' -- +'ialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth' -- +#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9 -- +'GroupBox0'#4'Left'#3#150#0#6'Height'#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7 -- +'Caption'#6#12'AAVSO Visual'#12'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0 -- +#8'TabOrder'#2#5#7'Visible'#8#0#6'TLabel'#7'Label20'#4'Left'#2#8#6'Height'#2 -- +'u'#3'Top'#2#12#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6'JAAVSO Visual fo' -- +'rmat'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' -- +#11'ParentColor'#8#0#0#6'TLabel'#7'Label21'#4'Left'#2#8#6'Height'#2#19#3'Top' -- +#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#13'TF' -- +'ileNameEdit'#13'FileNameEdit0'#4'Left'#2#20#6'Height'#2#26#3'Top'#3#160#0#5 -- +'Width'#3#184#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' -- +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 -- +#0#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#14#6'Height'#3#209#0#3'Top' -- +#2#10#5'Width'#3#137#0#8'AutoFill'#9#7'Caption'#6#16'Light curve data'#28'Ch' -- +'ildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chi' -- +'ldSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.E' -- +'nlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizon' -- +'tal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChild' -- +'s'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizin' -- +'g.ControlsPerLine'#2#1#12'ClientHeight'#3#189#0#11'ClientWidth'#3#133#0#9'I' -- +'temIndex'#2#0#13'Items.Strings'#1#6#12'AAVSO Visual'#6#13'Old AAVSO SUM'#6#5 -- +'VSNET'#6#5'AFOEV'#6#12'Other format'#0#7'OnClick'#7#16'RadioGroup1Click'#8 -- +'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#16'Plot Online D' -- +'ata'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#11'TRadioGroup'#11'R' -- +'adioGroup6'#4'Left'#2#20#6'Height'#3#128#0#3'Top'#2#18#5'Width'#3'!'#1#8'Au' -- +'toFill'#9#7'Caption'#6#27'Plot additional data from :'#28'ChildSizing.LeftR' -- +'ightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlarg' -- +'eHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' -- +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' -- +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' -- +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' -- +'e'#2#1#12'ClientHeight'#2'l'#11'ClientWidth'#3#29#1#9'ItemIndex'#2#0#13'Ite' -- +'ms.Strings'#1#6#16'AAVSO Quick Look'#6#17'AFOEV FTP Archive'#0#8'TabOrder'#2 -- +#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#6'Charts'#12'ClientHeight'#3 -- +#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#12#6'Hei' -- +'ght'#2'p'#3'Top'#2'z'#5'Width'#3#129#1#7'Caption'#6'%Cartes du Ciel / Sky C' -- +'harts interface'#12'ClientHeight'#2'\'#11'ClientWidth'#3'}'#1#8'TabOrder'#2 -- +#0#0#6'TLabel'#6'Label5'#4'Left'#2#14#6'Height'#2#19#3'Top'#2'H'#5'Width'#3 -- +'a'#1#7'Caption'#6'DBe sure the GCVS catalog is installed and activated whit' -- +'in Skychart!'#11'ParentColor'#8#0#0#6'TLabel'#6'Label6'#4'Left'#3#174#0#6'H' -- +'eight'#2#19#3'Top'#2'%'#5'Width'#2'('#7'Caption'#6#7'degrees'#11'ParentColo' -- +'r'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#14#6'Height'#2#22#3'Top'#2#8#5 -- +'Width'#3#216#0#7'Caption'#6'&Switch chart to equatorial coordinates'#8'TabO' -- +'rder'#2#0#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#14#6'Height'#2#22#3'Top'#2 -- +'#'#5'Width'#2'V'#7'Caption'#6#11'Set zoom to'#8'TabOrder'#2#1#0#0#9'TSpinEd' -- +'it'#9'SpinEdit1'#4'Left'#2'n'#6'Height'#2#26#3'Top'#2'"'#5'Width'#2'2'#8'Ma' -- +'xValue'#3#180#0#8'MinValue'#2#1#8'TabOrder'#2#2#5'Value'#2#15#0#0#0#9'TGrou' -- +'pBox'#9'GroupBox9'#4'Left'#2#12#6'Height'#2'j'#3'Top'#2#10#5'Width'#3#129#1 -- +#7'Caption'#6#11'AAVSO Chart'#12'ClientHeight'#2'V'#11'ClientWidth'#3'}'#1#8 -- +'TabOrder'#2#1#0#14'TDirectoryEdit'#14'DirectoryEdit2'#4'Left'#2#12#6'Height' -- +#2#26#3'Top'#2'8'#5'Width'#3'H'#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Nu' -- ,'mGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioG' -- +'roup8'#4'Left'#2#12#6'Height'#2'0'#3'Top'#2#0#5'Width'#3'\'#1#8'AutoFill'#9 -- +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 -- +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' -- +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' -- +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' -- +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' -- +'zing.ControlsPerLine'#2#2#12'ClientHeight'#2','#11'ClientWidth'#3'X'#1#7'Co' -- +'lumns'#2#2#13'Items.Strings'#1#6#13'Online charts'#6#11'Chart CDrom'#0#7'On' -- +'Click'#7#16'RadioGroup8Click'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#9'TabShe' -- +'et5'#7'Caption'#6#3'URL'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#6 -- +'TLabel'#6'Label7'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#250#0#5'Width'#3#15#1 -- +#7'Caption'#6'0Do NOT change any of this without a good reason!'#11'ParentCo' -- +'lor'#8#0#0#12'TLabeledEdit'#5'qlurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2#26 -- +#5'Width'#3#136#1' EditLabel.AnchorSideLeft.Control'#7#5'qlurl"EditLabel.Anc' -- +'horSideBottom.Control'#7#5'qlurl'#14'EditLabel.Left'#2#12#16'EditLabel.Heig' -- +'ht'#2#19#13'EditLabel.Top'#2#4#15'EditLabel.Width'#2'd'#17'EditLabel.Captio' -- +'n'#6#16'AAVSO Quick Look'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#0#0#0#12 -- +'TLabeledEdit'#8'afoevurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'J'#5'Width'#3 -- +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'afoevurl"EditLabel.AnchorSideB' -- +'ottom.Control'#7#8'afoevurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 -- +#19#13'EditLabel.Top'#2'4'#15'EditLabel.Width'#2'e'#17'EditLabel.Caption'#6 -- +#16'AFOEF FTP server'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#1#0#0#12'TLa' -- +'beledEdit'#8'charturl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'~'#5'Width'#3 -- +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'charturl"EditLabel.AnchorSideB' -- +'ottom.Control'#7#8'charturl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 -- +#19#13'EditLabel.Top'#2'h'#15'EditLabel.Width'#2'K'#17'EditLabel.Caption'#6 -- +#12'AAVSO Charts'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#2#0#0#12'TLabele' -- +'dEdit'#9'webobsurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#3#176#0#5'Width'#3 -- +#136#1' EditLabel.AnchorSideLeft.Control'#7#9'webobsurl"EditLabel.AnchorSide' -- +'Bottom.Control'#7#9'webobsurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height' -- +#2#19#13'EditLabel.Top'#3#154#0#15'EditLabel.Width'#2'U'#17'EditLabel.Captio' -- +'n'#6#12'AAVSO WebObs'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#3#0#0#7'TBu' -- +'tton'#7'Button1'#4'Left'#3','#1#6'Height'#2#25#3'Top'#3#246#0#5'Width'#2'k' -- +#7'Caption'#6#16'Reset to default'#7'OnClick'#7#12'Button1Click'#8'TabOrder' -- +#2#4#0#0#6'TLabel'#7'Label24'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#217#0#5'W' -- +'idth'#2#127#7'Caption'#6#22'Command to open a file'#11'ParentColor'#8#0#0#5 -- +'TEdit'#7'opencmd'#4'Left'#3#158#0#6'Height'#2#26#3'Top'#3#214#0#5'Width'#3 -- +#246#0#8'TabOrder'#2#5#0#0#0#0#0 -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('TOptForm','FORMDATA',[ -+ 'TPF0'#8'TOptForm'#7'OptForm'#4'Left'#3#222#3#6'Height'#3'n'#1#3'Top'#2'&'#5 -+ +'Width'#3#191#1#18'HorzScrollBar.Page'#3#174#1#18'VertScrollBar.Page'#3'9'#1 -+ +#13'ActiveControl'#7#12'PageControl1'#7'Caption'#6#7'Options'#12'ClientHeigh' -+ +'t'#3'n'#1#11'ClientWidth'#3#191#1#11'Font.Height'#2#245#9'Font.Name'#6#13'M' -+ +'S Sans Serif'#8'OnCreate'#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVe' -+ +'rsion'#6#6'0.9.29'#0#7'TBitBtn'#7'BitBtn1'#4'Left'#3#176#0#6'Height'#2#25#3 -+ +'Top'#3'@'#1#5'Width'#2'K'#7'Caption'#6#2'OK'#7'Default'#9#11'ModalResult'#2 -+ +#1#9'NumGlyphs'#2#2#8'TabOrder'#2#0#0#0#12'TPageControl'#12'PageControl1'#4 -+ +'Left'#2#0#6'Height'#3'8'#1#3'Top'#2#0#5'Width'#3#176#1#10'ActivePage'#7#9'T' -+ +'abSheet1'#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#9'TabSheet1'#7'Cap' -+ +'tion'#6#17'Observation entry'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172 -+ +#1#0#9'TGroupBox'#9'GroupBox5'#4'Left'#2#20#6'Height'#3#232#0#3'Top'#2#10#5 -+ +'Width'#3#129#1#7'Caption'#6#17'Observation Entry'#12'ClientHeight'#3#212#0 -+ +#11'ClientWidth'#3'}'#1#8'TabOrder'#2#0#0#6'TLabel'#7'Label16'#4'Left'#2#6#6 -+ +'Height'#2'*'#3'Top'#2'p'#5'Width'#2'.'#7'Caption'#6#20'Observer'#13#10'Init' -+ +'ials :'#11'ParentColor'#8#0#0#6'TLabel'#6'Label8'#4'Left'#2#6#6'Height'#2#19 -+ +#3'Top'#3#152#0#5'Width'#2'8'#7'Caption'#6#9'Time Zone'#11'ParentColor'#8#0#0 -+ +#6'TLabel'#7'Label17'#4'Left'#2#6#6'Height'#2'*'#3'Top'#3#168#0#5'Width'#2'M' -+ +#7'Caption'#6#28'negative West '#13#10'of Greenwich'#11'ParentColor'#8#0#0#6 -+ +'TPanel'#6'Panel2'#4'Left'#3#150#0#6'Height'#3#180#0#3'Top'#2#6#5'Width'#3 -+ +#227#0#12'ClientHeight'#3#180#0#11'ClientWidth'#3#227#0#8'TabOrder'#2#2#0#6 -+ +'TLabel'#7'Label22'#4'Left'#2#16#6'Height'#2#19#3'Top'#2'R'#5'Width'#3#135#0 -+ +#7'Caption'#6#24'PCObs program location :'#11'ParentColor'#8#0#0#6'TLabel'#7 -+ +'Label23'#4'Left'#2#8#6'Height'#2'A'#3'Top'#2#18#5'Width'#3#214#0#7'Caption' -+ +#6'lLaunch AAVSO PCObs for data entry'#13#10'This option is recommended if y' -+ +'ou want '#13#10'to submit your data to the AAVSO'#11'ParentColor'#8#0#0#13 -+ +'TFileNameEdit'#13'FileNameEdit8'#4'Left'#2#16#6'Height'#2#26#3'Top'#2'm'#5 -+ +'Width'#3#169#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' -+ +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 -+ +#0#0#0#6'TPanel'#6'Panel1'#4'Left'#3#150#0#6'Height'#3#178#0#3'Top'#2#8#5'Wi' -+ +'dth'#3#227#0#12'ClientHeight'#3#178#0#11'ClientWidth'#3#227#0#8'TabOrder'#2 -+ +#1#0#6'TLabel'#7'Label15'#4'Left'#2#6#6'Height'#2#19#3'Top'#2':'#5'Width'#2 -+ +'W'#7'Caption'#6#18'Observation file :'#11'ParentColor'#8#0#0#11'TRadioGroup' -+ +#11'RadioGroup7'#4'Left'#2#6#6'Height'#2'L'#3'Top'#2'`'#5'Width'#3#204#0#8'A' -+ +'utoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpa' -+ +'cing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize' -+ +#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizi' -+ +'ng.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7 -+ +#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBotto' -+ +'m'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'H'#11'ClientWidth' -+ +#3#200#0#9'ItemIndex'#2#1#13'Items.Strings'#1#6#26'Append data to unique fil' -+ +'e'#6#28'Add date/time suffix to file'#0#8'TabOrder'#2#2#0#0#11'TRadioGroup' -+ +#11'RadioGroup4'#4'Left'#2#6#6'Height'#2'8'#3'Top'#2#0#5'Width'#3#204#0#8'Au' -+ +'toFill'#9#7'Caption'#6#6'Format'#28'ChildSizing.LeftRightSpacing'#2#6#28'Ch' -+ +'ildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsH' -+ +'omogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChi' -+ +'ldResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSiz' -+ +'ing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLef' -+ +'tToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeigh' -+ +'t'#2'$'#11'ClientWidth'#3#200#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.St' -+ +'rings'#1#6#12'AAVSO Visual'#6#5'VSNET'#0#8'TabOrder'#2#0#0#0#13'TFileNameEd' -+ +'it'#13'FileNameEdit3'#4'Left'#2#6#6'Height'#2#26#3'Top'#2'I'#5'Width'#3#176 -+ +#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'Butto' -+ +'nWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#1#0#0#0#11'TRa' -+ +'dioGroup'#11'RadioGroup5'#4'Left'#2#8#6'Height'#2'c'#3'Top'#2#6#5'Width'#3 -+ +#134#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' -+ +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' -+ +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -+ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -+ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -+ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'_'#11'Cl' -+ +'ientWidth'#3#130#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#17'Internal facil' -+ +'ity'#6#11'AAVSO PCObs'#6#12'AAVSO WebObs'#0#7'OnClick'#7#16'RadioGroup5Clic' -+ +'k'#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit4'#4'Left'#2'Y'#6'Height'#2#26#3'Top' -+ ,#2'p'#5'Width'#2'5'#8'TabOrder'#2#3#0#0#9'TSpinEdit'#2'tz'#4'Left'#2'Z'#6'He' -+ +'ight'#2#26#3'Top'#3#152#0#5'Width'#2'4'#8'MaxValue'#2#12#8'MinValue'#2#244#8 -+ +'TabOrder'#2#4#0#0#0#0#9'TTabSheet'#9'TabSheet2'#7'Caption'#6#16'Plot observ' -+ +'ation'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'Gro' -+ +'upBox2'#4'Left'#3#150#0#6'Height'#3#208#0#3'Top'#2#10#5'Width'#3#249#0#7'Ca' -+ +'ption'#6#12'VSNET format'#12'ClientHeight'#3#188#0#11'ClientWidth'#3#245#0#8 -+ +'TabOrder'#2#0#7'Visible'#8#0#6'TLabel'#6'Label9'#4'Left'#2#8#6'Height'#2'u' -+ +#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6#213'Free format. Fi' -+ +'elds are separated by at least one blank space and appear in this order'#13 -+ +#10' '#13#10'Star name '#13#10'Universal Time in decimal format: yymmdd.tttt' -+ +#13#10'Magnitude, < for fainter-than, : uncertain'#13#10'Observer'#13#10'C' -+ +'omment'#11'ParentColor'#8#8'WordWrap'#9#0#0#6'TLabel'#7'Label10'#4'Left'#2#8 -+ +#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'Pa' -+ +'rentColor'#8#0#0#13'TFileNameEdit'#13'FileNameEdit2'#4'Left'#2#8#6'Height'#2 -+ +#26#3'Top'#3#161#0#5'Width'#3#208#0#13'DialogOptions'#11#0#11'FilterIndex'#2 -+ +#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 -+ +#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupBox3'#4'Left'#3#150#0#6'Height' -+ +#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7'Caption'#6#17'AFOEV base folder'#12 -+ +'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#1#7'Visible'#8#0 -+ +#6'TLabel'#6'Label4'#4'Left'#2#8#6'Height'#2'e'#3'Top'#2#28#5'Width'#3#225#0 -+ +#8'AutoSize'#8#7'Caption'#6#143'Indicate the path to the constellation folde' -+ +'r.'#13#10' '#13#10'c:\afoev\ '#13#10' and\ '#13#10' ' -+ +' r'#13#10' s'#11'ParentColor'#8#8 -+ +'WordWrap'#9#0#0#14'TDirectoryEdit'#14'DirectoryEdit3'#4'Left'#2#8#6'Height' -+ +#2#26#3'Top'#3#159#0#5'Width'#3#204#0#10'ShowHidden'#8#11'ButtonWidth'#2#23#9 -+ +'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9'GroupB' -+ +'ox4'#4'Left'#3#150#0#6'Height'#3#207#0#3'Top'#2#11#5'Width'#3#249#0#7'Capti' -+ +'on'#6#31'Other format fields description'#12'ClientHeight'#3#187#0#11'Clien' -+ +'tWidth'#3#245#0#8'TabOrder'#2#2#7'Visible'#8#0#6'TLabel'#6'Label1'#4'Left'#2 -+ +#8#6'Height'#2#19#3'Top'#2'.'#5'Width'#2'6'#7'Caption'#6#9'Star name'#11'Par' -+ +'entColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'#2#19#3'Top'#2'D'#5 -+ +'Width'#2#25#7'Caption'#6#4'Time'#11'ParentColor'#8#0#0#6'TLabel'#6'Label3'#4 -+ +'Left'#2#8#6'Height'#2#19#3'Top'#2'Z'#5'Width'#2'3'#7'Caption'#6#9'Magnitude' -+ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label11'#4'Left'#2#8#6'Height'#2#19#3'Top' -+ +#3#143#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLa' -+ +'bel'#7'Label12'#4'Left'#3#144#0#6'Height'#2#19#3'Top'#2'.'#5'Width'#2','#7 -+ +'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#6'TLabel'#7'Label13'#4'Left'#3 -+ +#144#0#6'Height'#2#19#3'Top'#2'D'#5'Width'#2','#7'Caption'#6#8'Field No'#11 -+ +'ParentColor'#8#0#0#6'TLabel'#7'Label14'#4'Left'#3#144#0#6'Height'#2#19#3'To' -+ +'p'#2'Z'#5'Width'#2','#7'Caption'#6#8'Field No'#11'ParentColor'#8#0#0#11'TRa' -+ +'dioGroup'#11'RadioGroup2'#4'Left'#2#8#6'Height'#2#30#3'Top'#2'j'#5'Width'#3 -+ +#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.Top' -+ +'BottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChil' -+ +'dResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -+ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -+ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -+ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2#26#11'Cl' -+ +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#1#13'Items.Strings'#1#6#11 -+ +'Julian date'#6#10'Decimal UT'#0#8'TabOrder'#2#0#0#0#5'TEdit'#5'Edit1'#4'Lef' -+ +'t'#2'H'#6'Height'#2#26#3'Top'#2'*'#5'Width'#2'A'#8'TabOrder'#2#1#4'Text'#6#1 -+ +'1'#0#0#5'TEdit'#5'Edit2'#4'Left'#2'H'#6'Height'#2#26#3'Top'#2'@'#5'Width'#2 -+ +'A'#8'TabOrder'#2#2#4'Text'#6#1'2'#0#0#5'TEdit'#5'Edit3'#4'Left'#2'H'#6'Heig' -+ +'ht'#2#26#3'Top'#2'V'#5'Width'#2'A'#8'TabOrder'#2#3#4'Text'#6#1'3'#0#0#11'TR' -+ +'adioGroup'#11'RadioGroup3'#4'Left'#2#12#6'Height'#2'%'#3'Top'#2#255#5'Width' -+ +#3#225#0#8'AutoFill'#9#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.T' -+ +'opBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousCh' -+ +'ildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28 -+ +'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVer' -+ +'tical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenT' -+ +'opToBottom'#27'ChildSizing.ControlsPerLine'#2#2#12'ClientHeight'#2'!'#11'Cl' -+ +'ientWidth'#3#221#0#7'Columns'#2#2#9'ItemIndex'#2#0#13'Items.Strings'#1#6#15 -+ +'Variable format'#6#12'Fixed format'#0#7'OnClick'#7#16'RadioGroup3Click'#8'T' -+ +'abOrder'#2#4#0#0#13'TFileNameEdit'#13'FileNameEdit4'#4'Left'#2#8#6'Height'#2 -+ +#26#3'Top'#3#161#0#5'Width'#3#204#0#13'DialogOptions'#11#0#11'FilterIndex'#2 -+ ,#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2 -+ +#0#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#3#150#0#6'Height' -+ +#3#209#0#3'Top'#2#10#5'Width'#3#249#0#7'Caption'#6#16'AAVSO SUM format'#12'C' -+ +'lientHeight'#3#189#0#11'ClientWidth'#3#245#0#8'TabOrder'#2#3#7'Visible'#8#0 -+ +#6'TLabel'#7'Label19'#4'Left'#2#8#6'Height'#2#19#3'Top'#3#144#0#5'Width'#2'3' -+ +#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#6'TLabel'#7'Label18'#4'Left' -+ +#2#8#6'Height'#2'u'#3'Top'#2#20#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#12 -+ +#22#1#0#0'Col 1-8 Designation from Validation File'#13#10'Col 9-18 S' -+ +'tar name'#13#10'Col 19-30 Julian Date and GMAT time'#13#10'Col 31-36 Magn' -+ +'itude'#13#10' < in column 31 for fainter-than'#13#10' ' -+ +' : in column 36 for uncertain'#13#10'Col 37-43 Comment Codes'#13#10 -+ +'Col 63-67 Observer Initials'#11'ParentColor'#8#0#0#13'TFileNameEdit'#13'Fil' -+ +'eNameEdit1'#4'Left'#2#8#6'Height'#2#26#3'Top'#3#161#0#5'Width'#3#204#0#13'D' -+ +'ialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth' -+ +#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#9 -+ +'GroupBox0'#4'Left'#3#150#0#6'Height'#3#209#0#3'Top'#2#11#5'Width'#3#249#0#7 -+ +'Caption'#6#12'AAVSO Visual'#12'ClientHeight'#3#189#0#11'ClientWidth'#3#245#0 -+ +#8'TabOrder'#2#5#7'Visible'#8#0#6'TLabel'#7'Label20'#4'Left'#2#8#6'Height'#2 -+ +'u'#3'Top'#2#12#5'Width'#3#225#0#8'AutoSize'#8#7'Caption'#6'JAAVSO Visual fo' -+ +'rmat'#13#10'Version: 1.0'#13#10#13#10'Using Julian Date and coma delimiter.' -+ +#11'ParentColor'#8#0#0#6'TLabel'#7'Label21'#4'Left'#2#8#6'Height'#2#19#3'Top' -+ +#3#144#0#5'Width'#2'3'#7'Caption'#6#9'File name'#11'ParentColor'#8#0#0#13'TF' -+ +'ileNameEdit'#13'FileNameEdit0'#4'Left'#2#20#6'Height'#2#26#3'Top'#3#160#0#5 -+ +'Width'#3#184#0#13'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectorie' -+ +'s'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0 -+ +#0#0#0#11'TRadioGroup'#11'RadioGroup1'#4'Left'#2#14#6'Height'#3#209#0#3'Top' -+ +#2#10#5'Width'#3#137#0#8'AutoFill'#9#7'Caption'#6#16'Light curve data'#28'Ch' -+ +'ildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chi' -+ +'ldSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.E' -+ +'nlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizon' -+ +'tal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChild' -+ +'s'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizin' -+ +'g.ControlsPerLine'#2#1#12'ClientHeight'#3#189#0#11'ClientWidth'#3#133#0#9'I' -+ +'temIndex'#2#0#13'Items.Strings'#1#6#12'AAVSO Visual'#6#13'Old AAVSO SUM'#6#5 -+ +'VSNET'#6#5'AFOEV'#6#12'Other format'#0#7'OnClick'#7#16'RadioGroup1Click'#8 -+ +'TabOrder'#2#4#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#16'Plot Online D' -+ +'ata'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#11'TRadioGroup'#11'R' -+ +'adioGroup6'#4'Left'#2#20#6'Height'#3#128#0#3'Top'#2#18#5'Width'#3'!'#1#8'Au' -+ +'toFill'#9#7'Caption'#6#27'Plot additional data from :'#28'ChildSizing.LeftR' -+ +'ightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enlarg' -+ +'eHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical' -+ +#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsSca' -+ +'leChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizin' -+ +'g.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLin' -+ +'e'#2#1#12'ClientHeight'#2'l'#11'ClientWidth'#3#29#1#9'ItemIndex'#2#0#13'Ite' -+ +'ms.Strings'#1#6#16'AAVSO Quick Look'#6#17'AFOEV FTP Archive'#0#8'TabOrder'#2 -+ +#0#0#0#0#9'TTabSheet'#9'TabSheet4'#7'Caption'#6#6'Charts'#12'ClientHeight'#3 -+ +#28#1#11'ClientWidth'#3#172#1#0#9'TGroupBox'#9'GroupBox6'#4'Left'#2#12#6'Hei' -+ +'ght'#2'p'#3'Top'#2'z'#5'Width'#3#129#1#7'Caption'#6'%Cartes du Ciel / Sky C' -+ +'harts interface'#12'ClientHeight'#2'\'#11'ClientWidth'#3'}'#1#8'TabOrder'#2 -+ +#0#0#6'TLabel'#6'Label5'#4'Left'#2#14#6'Height'#2#19#3'Top'#2'H'#5'Width'#3 -+ +'a'#1#7'Caption'#6'DBe sure the GCVS catalog is installed and activated whit' -+ +'in Skychart!'#11'ParentColor'#8#0#0#6'TLabel'#6'Label6'#4'Left'#3#174#0#6'H' -+ +'eight'#2#19#3'Top'#2'%'#5'Width'#2'('#7'Caption'#6#7'degrees'#11'ParentColo' -+ +'r'#8#0#0#9'TCheckBox'#9'CheckBox1'#4'Left'#2#14#6'Height'#2#22#3'Top'#2#8#5 -+ +'Width'#3#216#0#7'Caption'#6'&Switch chart to equatorial coordinates'#8'TabO' -+ +'rder'#2#0#0#0#9'TCheckBox'#9'CheckBox2'#4'Left'#2#14#6'Height'#2#22#3'Top'#2 -+ +'#'#5'Width'#2'V'#7'Caption'#6#11'Set zoom to'#8'TabOrder'#2#1#0#0#9'TSpinEd' -+ +'it'#9'SpinEdit1'#4'Left'#2'n'#6'Height'#2#26#3'Top'#2'"'#5'Width'#2'2'#8'Ma' -+ +'xValue'#3#180#0#8'MinValue'#2#1#8'TabOrder'#2#2#5'Value'#2#15#0#0#0#9'TGrou' -+ +'pBox'#9'GroupBox9'#4'Left'#2#12#6'Height'#2'j'#3'Top'#2#10#5'Width'#3#129#1 -+ +#7'Caption'#6#11'AAVSO Chart'#12'ClientHeight'#2'V'#11'ClientWidth'#3'}'#1#8 -+ +'TabOrder'#2#1#0#14'TDirectoryEdit'#14'DirectoryEdit2'#4'Left'#2#12#6'Height' -+ +#2#26#3'Top'#2'8'#5'Width'#3'H'#1#10'ShowHidden'#8#11'ButtonWidth'#2#23#9'Nu' -+ ,'mGlyphs'#2#1#9'MaxLength'#2#0#8'TabOrder'#2#0#0#0#11'TRadioGroup'#11'RadioG' -+ +'roup8'#4'Left'#2#12#6'Height'#2'0'#3'Top'#2#0#5'Width'#3'\'#1#8'AutoFill'#9 -+ +#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 -+ +'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' -+ +'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' -+ +'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' -+ +'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' -+ +'zing.ControlsPerLine'#2#2#12'ClientHeight'#2','#11'ClientWidth'#3'X'#1#7'Co' -+ +'lumns'#2#2#13'Items.Strings'#1#6#13'Online charts'#6#11'Chart CDrom'#0#7'On' -+ +'Click'#7#16'RadioGroup8Click'#8'TabOrder'#2#1#0#0#0#0#9'TTabSheet'#9'TabShe' -+ +'et5'#7'Caption'#6#3'URL'#12'ClientHeight'#3#28#1#11'ClientWidth'#3#172#1#0#6 -+ +'TLabel'#6'Label7'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#250#0#5'Width'#3#15#1 -+ +#7'Caption'#6'0Do NOT change any of this without a good reason!'#11'ParentCo' -+ +'lor'#8#0#0#12'TLabeledEdit'#5'qlurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2#26 -+ +#5'Width'#3#136#1' EditLabel.AnchorSideLeft.Control'#7#5'qlurl"EditLabel.Anc' -+ +'horSideBottom.Control'#7#5'qlurl'#14'EditLabel.Left'#2#12#16'EditLabel.Heig' -+ +'ht'#2#19#13'EditLabel.Top'#2#4#15'EditLabel.Width'#2'd'#17'EditLabel.Captio' -+ +'n'#6#16'AAVSO Quick Look'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#0#0#0#12 -+ +'TLabeledEdit'#8'afoevurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'J'#5'Width'#3 -+ +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'afoevurl"EditLabel.AnchorSideB' -+ +'ottom.Control'#7#8'afoevurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 -+ +#19#13'EditLabel.Top'#2'4'#15'EditLabel.Width'#2'e'#17'EditLabel.Caption'#6 -+ +#16'AFOEF FTP server'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#1#0#0#12'TLa' -+ +'beledEdit'#8'charturl'#4'Left'#2#12#6'Height'#2#26#3'Top'#2'~'#5'Width'#3 -+ +#136#1' EditLabel.AnchorSideLeft.Control'#7#8'charturl"EditLabel.AnchorSideB' -+ +'ottom.Control'#7#8'charturl'#14'EditLabel.Left'#2#12#16'EditLabel.Height'#2 -+ +#19#13'EditLabel.Top'#2'h'#15'EditLabel.Width'#2'K'#17'EditLabel.Caption'#6 -+ +#12'AAVSO Charts'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#2#0#0#12'TLabele' -+ +'dEdit'#9'webobsurl'#4'Left'#2#12#6'Height'#2#26#3'Top'#3#176#0#5'Width'#3 -+ +#136#1' EditLabel.AnchorSideLeft.Control'#7#9'webobsurl"EditLabel.AnchorSide' -+ +'Bottom.Control'#7#9'webobsurl'#14'EditLabel.Left'#2#12#16'EditLabel.Height' -+ +#2#19#13'EditLabel.Top'#3#154#0#15'EditLabel.Width'#2'U'#17'EditLabel.Captio' -+ +'n'#6#12'AAVSO WebObs'#21'EditLabel.ParentColor'#8#8'TabOrder'#2#3#0#0#7'TBu' -+ +'tton'#7'Button1'#4'Left'#3','#1#6'Height'#2#25#3'Top'#3#246#0#5'Width'#2'k' -+ +#7'Caption'#6#16'Reset to default'#7'OnClick'#7#12'Button1Click'#8'TabOrder' -+ +#2#4#0#0#6'TLabel'#7'Label24'#4'Left'#2#12#6'Height'#2#19#3'Top'#3#217#0#5'W' -+ +'idth'#2#127#7'Caption'#6#22'Command to open a file'#11'ParentColor'#8#0#0#5 -+ +'TEdit'#7'opencmd'#4'Left'#3#158#0#6'Height'#2#26#3'Top'#3#214#0#5'Width'#3 -+ +#246#0#8'TabOrder'#2#5#0#0#0#0#0 - ]); -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/SettingUnit.pas skychart_3.2_up/varobs/SettingUnit.pas ---- skychart_3.2/varobs/SettingUnit.pas 2010-09-08 13:41:37.000000000 +0200 -+++ skychart_3.2_up/varobs/SettingUnit.pas 2011-03-09 15:18:23.219263874 +0100 -@@ -1,246 +1,246 @@ --unit SettingUnit; -- --{$MODE Delphi} -- --{ --Copyright (C) 2008 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- --interface -- --uses -- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -- StdCtrls, ExtCtrls, Buttons, LResources, u_param, ComCtrls, EditBtn, Spin; -- --type -- -- { TOptForm } -- -- TOptForm = class(TForm) -- Button1: TButton; -- CheckBox1: TCheckBox; -- CheckBox2: TCheckBox; -- DirectoryEdit3: TDirectoryEdit; -- DirectoryEdit2: TDirectoryEdit; -- Edit1: TEdit; -- Edit2: TEdit; -- Edit3: TEdit; -- Edit4: TEdit; -- opencmd: TEdit; -- FileNameEdit0: TFileNameEdit; -- FileNameEdit1: TFileNameEdit; -- FileNameEdit2: TFileNameEdit; -- FileNameEdit3: TFileNameEdit; -- FileNameEdit4: TFileNameEdit; -- FileNameEdit8: TFileNameEdit; -- GroupBox0: TGroupBox; -- GroupBox2: TGroupBox; -- GroupBox3: TGroupBox; -- GroupBox4: TGroupBox; -- GroupBox5: TGroupBox; -- GroupBox6: TGroupBox; -- GroupBox1: TGroupBox; -- GroupBox9: TGroupBox; -- Label1: TLabel; -- Label10: TLabel; -- Label11: TLabel; -- Label12: TLabel; -- Label13: TLabel; -- Label14: TLabel; -- Label15: TLabel; -- Label16: TLabel; -- Label17: TLabel; -- Label18: TLabel; -- Label19: TLabel; -- Label2: TLabel; -- Label20: TLabel; -- Label21: TLabel; -- Label22: TLabel; -- Label23: TLabel; -- Label24: TLabel; -- Label3: TLabel; -- Label4: TLabel; -- Label5: TLabel; -- Label6: TLabel; -- Label7: TLabel; -- Label8: TLabel; -- Label9: TLabel; -- qlurl: TLabeledEdit; -- afoevurl: TLabeledEdit; -- charturl: TLabeledEdit; -- tz: TSpinEdit; -- webobsurl: TLabeledEdit; -- PageControl1: TPageControl; -- Panel1: TPanel; -- Panel2: TPanel; -- BitBtn1: TBitBtn; -- RadioGroup1: TRadioGroup; -- RadioGroup2: TRadioGroup; -- RadioGroup3: TRadioGroup; -- RadioGroup4: TRadioGroup; -- RadioGroup5: TRadioGroup; -- RadioGroup6: TRadioGroup; -- RadioGroup7: TRadioGroup; -- RadioGroup8: TRadioGroup; -- SpinEdit1: TSpinEdit; -- TabSheet1: TTabSheet; -- TabSheet2: TTabSheet; -- TabSheet3: TTabSheet; -- TabSheet4: TTabSheet; -- TabSheet5: TTabSheet; -- procedure Button1Click(Sender: TObject); -- procedure FormCreate(Sender: TObject); -- procedure RadioGroup1Click(Sender: TObject); -- procedure RadioGroup3Click(Sender: TObject); -- procedure FormShow(Sender: TObject); -- procedure RadioGroup5Click(Sender: TObject); -- procedure RadioGroup8Click(Sender: TObject); -- private -- { Private declarations } -- public -- { Public declarations } -- end; -- --var -- OptForm: TOptForm; -- --implementation -- -- --Uses variables1; -- --procedure TOptForm.RadioGroup1Click(Sender: TObject); --begin --case radiogroup1.itemindex of --0 : begin -- GroupBox0.visible:=true; -- GroupBox1.visible:=false; -- GroupBox2.visible:=false; -- GroupBox3.visible:=false; -- GroupBox4.visible:=false; -- end; --1 : begin -- GroupBox0.visible:=false; -- GroupBox1.visible:=true; -- GroupBox2.visible:=false; -- GroupBox3.visible:=false; -- GroupBox4.visible:=false; -- end; --2 : begin -- GroupBox0.visible:=false; -- GroupBox1.visible:=false; -- GroupBox2.visible:=true; -- GroupBox3.visible:=false; -- GroupBox4.visible:=false; -- end; --3 : begin -- GroupBox0.visible:=false; -- GroupBox1.visible:=false; -- GroupBox2.visible:=false; -- GroupBox3.visible:=true; -- GroupBox4.visible:=false; -- end; --4 : begin -- GroupBox0.visible:=false; -- GroupBox1.visible:=false; -- GroupBox2.visible:=false; -- GroupBox3.visible:=false; -- GroupBox4.visible:=true; -- end; --end; --end; -- --procedure TOptForm.FormCreate(Sender: TObject); --begin --FileNameEdit0.InitialDir:=privatedir; --FileNameEdit1.InitialDir:=privatedir; --FileNameEdit2.InitialDir:=privatedir; --FileNameEdit3.InitialDir:=privatedir; --FileNameEdit4.InitialDir:=privatedir; --FileNameEdit8.InitialDir:=privatedir; --end; -- --procedure TOptForm.Button1Click(Sender: TObject); --begin --qlurl.Text:=defqlurl; --afoevurl.Text:=defafoevurl; --charturl.Text:=defaavsocharturl; --webobsurl.Text:=defwebobsurl; --opencmd.Text:=DefaultOpenFileCMD; --end; -- --procedure TOptForm.RadioGroup3Click(Sender: TObject); --begin --case Radiogroup3.itemindex of --0 : begin -- Label12.caption:='Field No'; -- Label13.caption:='Field No'; -- Label14.caption:='Field No'; -- end; --1 : begin -- Label12.caption:='Start.End col'; -- Label13.caption:='Start.End col'; -- Label14.caption:='Start.End col'; -- end; --end; --end; -- --procedure TOptForm.FormShow(Sender: TObject); --begin --radiogroup1click(sender); --RadioGroup5Click(Sender); --RadioGroup8Click(Sender); --end; -- --procedure TOptForm.RadioGroup5Click(Sender: TObject); --begin --case radiogroup5.itemindex of --0 : begin -- Panel1.visible:=true; -- Panel2.visible:=False; -- end; --1 : begin -- Panel1.visible:=False; -- Panel2.visible:=true; -- end; --2 : begin -- Panel1.visible:=False; -- Panel2.visible:=False; -- end; --end; --end; -- -- --procedure TOptForm.RadioGroup8Click(Sender: TObject); --begin --case radiogroup8.ItemIndex of -- 0 : begin // online -- DirectoryEdit2.visible:=false; -- end; -- 1 : begin // cdrom -- DirectoryEdit2.visible:=true; -- end; --end; --end; -- --initialization -- {$i SettingUnit.lrs} -- -+unit SettingUnit; -+ -+{$MODE Delphi} -+ -+{ -+Copyright (C) 2008 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+interface -+ -+uses -+ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -+ StdCtrls, ExtCtrls, Buttons, LResources, u_param, ComCtrls, EditBtn, Spin; -+ -+type -+ -+ { TOptForm } -+ -+ TOptForm = class(TForm) -+ Button1: TButton; -+ CheckBox1: TCheckBox; -+ CheckBox2: TCheckBox; -+ DirectoryEdit3: TDirectoryEdit; -+ DirectoryEdit2: TDirectoryEdit; -+ Edit1: TEdit; -+ Edit2: TEdit; -+ Edit3: TEdit; -+ Edit4: TEdit; -+ opencmd: TEdit; -+ FileNameEdit0: TFileNameEdit; -+ FileNameEdit1: TFileNameEdit; -+ FileNameEdit2: TFileNameEdit; -+ FileNameEdit3: TFileNameEdit; -+ FileNameEdit4: TFileNameEdit; -+ FileNameEdit8: TFileNameEdit; -+ GroupBox0: TGroupBox; -+ GroupBox2: TGroupBox; -+ GroupBox3: TGroupBox; -+ GroupBox4: TGroupBox; -+ GroupBox5: TGroupBox; -+ GroupBox6: TGroupBox; -+ GroupBox1: TGroupBox; -+ GroupBox9: TGroupBox; -+ Label1: TLabel; -+ Label10: TLabel; -+ Label11: TLabel; -+ Label12: TLabel; -+ Label13: TLabel; -+ Label14: TLabel; -+ Label15: TLabel; -+ Label16: TLabel; -+ Label17: TLabel; -+ Label18: TLabel; -+ Label19: TLabel; -+ Label2: TLabel; -+ Label20: TLabel; -+ Label21: TLabel; -+ Label22: TLabel; -+ Label23: TLabel; -+ Label24: TLabel; -+ Label3: TLabel; -+ Label4: TLabel; -+ Label5: TLabel; -+ Label6: TLabel; -+ Label7: TLabel; -+ Label8: TLabel; -+ Label9: TLabel; -+ qlurl: TLabeledEdit; -+ afoevurl: TLabeledEdit; -+ charturl: TLabeledEdit; -+ tz: TSpinEdit; -+ webobsurl: TLabeledEdit; -+ PageControl1: TPageControl; -+ Panel1: TPanel; -+ Panel2: TPanel; -+ BitBtn1: TBitBtn; -+ RadioGroup1: TRadioGroup; -+ RadioGroup2: TRadioGroup; -+ RadioGroup3: TRadioGroup; -+ RadioGroup4: TRadioGroup; -+ RadioGroup5: TRadioGroup; -+ RadioGroup6: TRadioGroup; -+ RadioGroup7: TRadioGroup; -+ RadioGroup8: TRadioGroup; -+ SpinEdit1: TSpinEdit; -+ TabSheet1: TTabSheet; -+ TabSheet2: TTabSheet; -+ TabSheet3: TTabSheet; -+ TabSheet4: TTabSheet; -+ TabSheet5: TTabSheet; -+ procedure Button1Click(Sender: TObject); -+ procedure FormCreate(Sender: TObject); -+ procedure RadioGroup1Click(Sender: TObject); -+ procedure RadioGroup3Click(Sender: TObject); -+ procedure FormShow(Sender: TObject); -+ procedure RadioGroup5Click(Sender: TObject); -+ procedure RadioGroup8Click(Sender: TObject); -+ private -+ { Private declarations } -+ public -+ { Public declarations } -+ end; -+ -+var -+ OptForm: TOptForm; -+ -+implementation -+ -+ -+Uses variables1; -+ -+procedure TOptForm.RadioGroup1Click(Sender: TObject); -+begin -+case radiogroup1.itemindex of -+0 : begin -+ GroupBox0.visible:=true; -+ GroupBox1.visible:=false; -+ GroupBox2.visible:=false; -+ GroupBox3.visible:=false; -+ GroupBox4.visible:=false; -+ end; -+1 : begin -+ GroupBox0.visible:=false; -+ GroupBox1.visible:=true; -+ GroupBox2.visible:=false; -+ GroupBox3.visible:=false; -+ GroupBox4.visible:=false; -+ end; -+2 : begin -+ GroupBox0.visible:=false; -+ GroupBox1.visible:=false; -+ GroupBox2.visible:=true; -+ GroupBox3.visible:=false; -+ GroupBox4.visible:=false; -+ end; -+3 : begin -+ GroupBox0.visible:=false; -+ GroupBox1.visible:=false; -+ GroupBox2.visible:=false; -+ GroupBox3.visible:=true; -+ GroupBox4.visible:=false; -+ end; -+4 : begin -+ GroupBox0.visible:=false; -+ GroupBox1.visible:=false; -+ GroupBox2.visible:=false; -+ GroupBox3.visible:=false; -+ GroupBox4.visible:=true; -+ end; -+end; -+end; -+ -+procedure TOptForm.FormCreate(Sender: TObject); -+begin -+FileNameEdit0.InitialDir:=privatedir; -+FileNameEdit1.InitialDir:=privatedir; -+FileNameEdit2.InitialDir:=privatedir; -+FileNameEdit3.InitialDir:=privatedir; -+FileNameEdit4.InitialDir:=privatedir; -+FileNameEdit8.InitialDir:=privatedir; -+end; -+ -+procedure TOptForm.Button1Click(Sender: TObject); -+begin -+qlurl.Text:=defqlurl; -+afoevurl.Text:=defafoevurl; -+charturl.Text:=defaavsocharturl; -+webobsurl.Text:=defwebobsurl; -+opencmd.Text:=DefaultOpenFileCMD; -+end; -+ -+procedure TOptForm.RadioGroup3Click(Sender: TObject); -+begin -+case Radiogroup3.itemindex of -+0 : begin -+ Label12.caption:='Field No'; -+ Label13.caption:='Field No'; -+ Label14.caption:='Field No'; -+ end; -+1 : begin -+ Label12.caption:='Start.End col'; -+ Label13.caption:='Start.End col'; -+ Label14.caption:='Start.End col'; -+ end; -+end; -+end; -+ -+procedure TOptForm.FormShow(Sender: TObject); -+begin -+radiogroup1click(sender); -+RadioGroup5Click(Sender); -+RadioGroup8Click(Sender); -+end; -+ -+procedure TOptForm.RadioGroup5Click(Sender: TObject); -+begin -+case radiogroup5.itemindex of -+0 : begin -+ Panel1.visible:=true; -+ Panel2.visible:=False; -+ end; -+1 : begin -+ Panel1.visible:=False; -+ Panel2.visible:=true; -+ end; -+2 : begin -+ Panel1.visible:=False; -+ Panel2.visible:=False; -+ end; -+end; -+end; -+ -+ -+procedure TOptForm.RadioGroup8Click(Sender: TObject); -+begin -+case radiogroup8.ItemIndex of -+ 0 : begin // online -+ DirectoryEdit2.visible:=false; -+ end; -+ 1 : begin // cdrom -+ DirectoryEdit2.visible:=true; -+ end; -+end; -+end; -+ -+initialization -+ {$i SettingUnit.lrs} -+ - end. -\ No hay ningún carácter de nueva línea al final del fichero -diff -ur skychart_3.2/varobs/splashunit.lfm skychart_3.2_up/varobs/splashunit.lfm ---- skychart_3.2/varobs/splashunit.lfm 2008-06-12 16:22:26.000000000 +0200 -+++ skychart_3.2_up/varobs/splashunit.lfm 2011-03-09 15:18:23.219263874 +0100 -@@ -1,213 +1,213 @@ --object splash: Tsplash -- Left = 390 -- Height = 294 -- Top = 143 -- Width = 361 -- HorzScrollBar.Page = 360 -- VertScrollBar.Page = 293 -- ActiveControl = BitBtn1 -- AutoSize = True -- BorderStyle = bsNone -- Caption = 'splash' -- ClientHeight = 294 -- ClientWidth = 361 -- Color = clBlack -- Font.Height = -11 -- Font.Name = 'MS Sans Serif' -- FormStyle = fsStayOnTop -- OnClick = Image1Click -- OnShow = FormShow -- Position = poScreenCenter -- object BitBtn1: TBitBtn -- Height = 1 -- Width = 1 -- Cancel = True -- Default = True -- ModalResult = 2 -- NumGlyphs = 2 -- TabOrder = 0 -- end -- object Panel1: TPanel -- Height = 294 -- Width = 361 -- Align = alClient -- AutoSize = True -- BevelOuter = bvNone -- Caption = 'Panel1' -- ClientHeight = 294 -- ClientWidth = 361 -- TabOrder = 1 -- OnClick = Image1Click -- object Image1: TImage -- Left = 32 -- Height = 150 -- Width = 300 -- AutoSize = True -- Center = True -- OnClick = Image1Click -- Picture.Data = { -- 1754506F727461626C654E6574776F726B477261706869637A0F000089504E47 -- 0D0A1A0A0000000D494844520000012C000000960802000000EB39228500000F -- 414944415478DAED9D0B92E32A0C4559BA96969DF9CD6BC70E1F21C41FECABEA -- AAE9493B0604078100610C040281402010080402814020100804028140201008 -- 040281FC842CB93F611F83AE20902EF2F97C6C088993F319E80A021901E1F9DF -- FBC3CF9FD876120281B41F8EDE061096100281402010080402814020BE1C07F3 -- A39B70967F377366CB27D4232D592DC99F7F591D36BF3ED31A9F87353573BE5F -- 50C8EA7E8F30D3C578F453F1480265F2956D6E307BC3F250A999E9F9591448AF -- 18C55FECDAF2064358DCE577D54601003DB251A999457A847E8D555A9A57AAB5 -- D8120EE6A1777F965B676183689B438D1262E3B1899AE9A7166561C7E8E427F6 -- A29FBD0C9884B00CA711A5FACBF8F8396101845D8706594DB9B6DDA79EAEEF9E -- A64CA3EC6C741D58FA96500961015123CCE0DFF87DCAD4AB0CC2E26F35372625 -- 5FF15C1C4DCB380042BD26FB8EA14894B6508D3283E42534CB413A11C2B2AE27 -- 57576F805061E61B41E8FDAEDF1DAAAFE92966F0CCD23063B8088435FD4E96AE -- E8DCE7783E247258391C6D5565837D04CBB949A798C1AE138C1E73C21E106669 -- 3BEBBB0E8422872B3B66EC85C175B1643DA859744D33835786C674818B78472B -- A9D67F9DBCB15ABC21AFB372A35FA2588B49EFD88407A1DF771AE6C72F9BE9F0 -- 133845BF1F7EFF1AA8B8431E2A57C35AE5AAF29DD559A2869AE9D65A4AF2301F -- C270EAA8348663CC2071B341BB375B7C49FAACE98953D3224BC86891380B52DF -- 37756935C61988CE72AA977B50BD07846A1B331B34B13C5C6D62C0CC70914D92 -- 832014BC77419172E784237DDA0B66A090D2186983B6C8C43330D2186AAA6D40 -- D5CE8730F0EB2FB58D61807F6B96A9E4B53CC5293A6B37A0F2E583372877F18E -- FE756D94B42675459E6E8B7632866775849537C50C4EF4BC29EBAC77173B629D -- 3009A138060184BD20B4EB3E84704133D85CB3192E0D1A3A3B6DBC63E69E666F -- 08614D97B40184A1319C3C1B8CB4897EC630ABCEBA5670DFBDA34A08E33A9FC5 -- 40D646D0FDE684B18AEC7F6E9032EAE91C4475737CD5EC0B1930286D768A420F -- A1E1B7D4CF62A07897E54E101A33FA34649E9AAE25A14EFAADDC31D3DB43C32E -- 87B0EE780D8146BF7E9D0961A7150265688F6C852C08E1C802E499C1FEC67091 -- B302C99657E5ACB2EBBA543353FC672B9EA9DF1EC2A241CEE5CB69AFE8B2828F -- A9EF96DB06F2215C2AFA8E3EE2CE66272DA6CC099B077DAB04A0E085C3C2CFC9 -- ED2F63CB8EFB2835ED02106DAD99251C996A6D0D40EAF446D0F9AB21ACAF51B4 -- 896A8D1174FE7608A7630C08A7541C6409085BF1030E8B744554376982CE0121 -- 38AC87F074611074FE5208BD2AFCF7EB5177EC196D42ADA27FFFFCCF1E55BB0F -- A1F3A74168FFFC3EFE3614E7190C902A744EC63FD24D0DEB11B20D84B19A0BEC -- E1B7CFBE213C5210A241A46671D756A34B990408012145CD20832838ACD43931 -- CAA486B509D903426F2642BF2E39DD1C006195DA2D555B3AA7262F876C08A1CB -- 9E1242CD0C061C0A3AE727DECDC6BA908D20CCA1CE73CF6080D47AC448FD9380 -- AC04615155F9EE19D22504D1E99CA6562E640684B56F50438806310542A81D10 -- 82C35C25D0D8E42053214CD690EDF924D1114A8A1D36E898C743080EB787908C -- BF9045E2938406B11E849890AF0B61B3331326EF729D3773E844738ABA9769D9 -- BA0684EB427864A2F866087F6A1B0821385C11C2B6557272F8F7E3B42D81CC17 -- 3608B5CE698B4A0784CB42789E88F33E649AD50B1B042004841D0D11FD36409E -- E7E2CC7D2C20C6E10B3DA5D32104870B41D8A326EC9127196627EACB39CC2929 -- 2D9313484F08DBBFD3C28C82D9606C72080801E11B21EC5F07FF12F87C3E3F4B -- 183398EF69139965A4C5F20308B784D03B2AEE10C88E4B01E14808C1E14C08C7 -- A89EAEE58A0BC56F009510CB377098AF735A356380702BBDD38FBD5F14A377AE -- 580042403847E91684E7F0545AAE78709B283CAEB974F600E13E109235093C82 -- 150B40B80284067BBB1F0C61303F4C43F8480EB780101C0E8270A2AE6F7B680F -- 4A4D04C827B589D2B2D026F90484FB8C3A2E021D07A9899F030684FB6415106E -- A2627257089343D36734889AEB9500E1C320F42E2E6665C465E2E4AC1C3EDF49 -- 43D79E85FC4BCE69B75E0310A6DFC254BFDBFAEDB6D2BD4487F97C3EFED0F461 -- 6DE22FF39AEBE31782101C768590AC0671D93EA7AABB9BC1C01E7E37971EEB1A -- C3AAC4D98ECF5C2BA66E5D8409D1AC093220EC0721D326ACA62F9BC164CFCD8E -- B8F826E80D8CDD2922F3AD20BDB2B4A2068712964A7838D15CC35E2FDEDA9306 -- B36BA594940E1096F56D0269FAEA8C897ED0F57B15B94BF9B184823C95A4650A -- 73AE798C48D7EB95E681CD7FA74A2998BE02C2BC0146D26214FB6C92784721B4 -- 46A47C42419F5C9296020061381AD3DBA93A1E42CE16DD6798BDAFC81D07ABF3 -- 869512D379B47480B06688CFF2963BAAD1D7B79C9C07A1D4FDBBA51800A1A70A -- 0DA86C6E6F50F5464693E7B695C2BFE4E210D218C21039A519CC9A37E60D112F -- 0E130971F63C3972AB198ECACF487139227FB0CDA0C0A13ECFAD2A255E3ACC0B -- 5B4128CE253466501E95E54E2A84EE594AC86AF563E6847A2747817751333F97 -- BFDBB052522E1C0284544520E7FCB66B4239F54FBA0A8E8829D3F4F4DA840208 -- 3386BE75C3D1E4C03236162D988B267DAA3D2A455B3A40586F06EFE15FD6E4A4 -- C0BE65F5F41909C521ECE1984962190CADC91B366B9646B2F2D3A95212A57BFD -- DD21544E60FCBB7A0FB8B2F5C868695A4618FF2236DE6B6209C3E19CF00CEB27 -- 8C42681296A7784ED8A952D2A57BF9E4B01384C985ECDC6543799029CCD35C2F -- 910361CC43D364F92BF40D0ACF6817BE2310B6F28E76AA9474E9006173028DD1 -- 6E9ED0ECAB50562DFB249F1049CB86C5BB7358C06A76CC304365CE0D96B5815B -- 633F9B574A71E9006115846B9759178AA6AE809A6FE7A5D054E7B4645B7C2987 -- 2510EEAE2C32898DDD0B96B1757ED685F0957769BD1BC25D8AF906085F6B0C1B -- 404899D7E8AE50E6D343438A92024270B81C84CCEEE0ED20FCBA49BF114BD76F -- 101DB2416B374A40F80205D1F7E0EFF7B251E3C6C2A08600B4E8A25E08E1CB6E -- 95A4376BE7670B2975D9681DEEE5ADBE8FCE69F98A7911872F8770C40D87CAF9 -- 272004845ABD782E9963ABD9A00C61599B48BEA17240DAA72DD20E4DF33DB7BB -- 52B9526837974C9213CA5F39ECAA816E0D9136699DAFE0500BE1620BA9E176AD -- DA891B59869D221DCD780D744BEE2ED0EAB15EDE71CB32EDA58BE46ECCC27D78 -- BFB0270184C724087B2677BF7783437D807029088BCFEF68203CBFCD4068DBC6 -- 941E5A2A29F7066C2A817083684B8F378619102E2005A113334E455C714FFC83 -- 0E47349478FDE9246D00D5D649CB102E1723F4D91C9272B77FB84F6D9E1914B2 -- CC3EA31DBE2A43A1A40E1CE6A61B81909421A1CA9216205C31462820649CA233 -- 562694B317FDF977E1F4ED7507F78F4C52C44434D1089F8E3D8D9FFD3721E765 -- C111D351982310664740058723206457261E0DE1F7B251FA155619D02DFEFE1F -- 84AA23EAF110F7F94947A6CDF94A9E8FC053392C8170F684B018C2DC215C6C5D -- 26371899FE90FE19EBA120CA606ED24908551150E1291D01E14A7D4F27089581 -- 2DDA9220D045E24D2FAD92A6D4A47AD1D8848F34861B4158EF98D1B852C5F098 -- DF9B6582306107AB487D584E930CC152311CE583C1A4EA1C1CAE016124B6EFC4 -- 2D4F65B73BE9E757CC6B7D088983506593DDEC51D2CA351C0E303716E68CF886 -- 5DF09A01E19338DC0BC2B2C57AA525641C80E44248DC0B832B719403E3ACD2D5 -- 7B47FD3070A286D31150610C47402810B80C87B9D3ADAA392107A1D2D3A3C52C -- 75EF67C3A4CBE6840BB5FC2771980DE1B1C4F125FD06EECA0B657F0472218395 -- DB563461398DBB405F50969AA4CB26A8F094F68790F9F041C79794B3507338F1 -- F3E550A5D5D7D0D77CBF6CEFE8EECDF7B9103EF8E860AE7E2E3F40F981C325C7 -- 57CF81F0011C664078BC11C2EC06D1E76E0F40D845E7EB4288FB53C777CCC375 -- 4E0FD3F9DED1A801E10A1C02C2370F4A295C120284FA867C348ACE365CE14FAB -- E0BD6F28622184281B320910D2CA0DE88175FC1008636690E095F95FBEF12F32 -- B83AAC005247148719ADE79995B929870C84FA2EFF7596CFDD6A4242683672AF -- 5F6321A42B38378DEFED1E0BE18E1CA6210481FA392103A16120FC3E06080121 -- 0BA1DEFDB098F2C76F7464D6F1D9BF877FF606AA34A70331E0703908B71D8BCA -- DB29FBD17846493C03B449DBD9C2B12859C69000E1EB397420DC53E1C9934DFD -- 2CE1B571FC2B3C83C2D6F2793A278562C1E158086B2E3C59C30CE6D685E6A040 -- F2D482E6270C91F853BDFB2721EE20FB79CDA911529FC9D898C3ED21A43DCE4C -- 148C39B30E373580D0446237FDFD166BF4314BAEB1F09AC139299EC4A0742084 -- F2DAE06E2E99BB40C9C3E9B188D7C596D639834F4E77EC876FBA6FBE485942A1 -- 53C83D7D1F9EAC5F3AC0E17B38A4FDF7A9C9818962734561F0A989A29B88C2C4 -- B96A9C2C0566500E0913EB71F4107AEF24F14938696640F82C9D7B586AA08AFD -- 356BB4664318FA696E6378426833EFF11FEB29D8006A3D86A3801010B61FA90E -- 86F0B784E86688F5D6D8C1F6CFD70AA64C8E579FCCB317F2F0F910F6B3ECFFC8 -- F97C3E675F7BFF4281BC014239EF0254E1F7283384BE0CE1F9EBCF305F75C2CD -- 60C9A84374272EAB09E77E14A465F9DD62D3E0A741D88FC3533C083F7F9205E1 -- FDFC8E7236C158119C0B5E982501FE61F6796566CE9F8F25E767770E437ED80C -- C87F62398CE55953647ABA7487F09F1443E8DB826D079C056148EBBDA392E1BD -- 7C33DEA05493B158DE94C5D7C73B7DB87774C05C2E360A2DA49FF6DBA8AD594C -- CF5D82D75F45968690521D479CCFF0B5FAA0E3FA78A74F5E27DCAA215BEB81B4 -- 697F54B2813B77C78CE6F62ACDC3EE63DFDDA7C21B346B2AAC67351974F4E13B -- 66368390C38FF7EF41DAA8FCABD87B0BF87B7C8A90BC869271901CB2D8544598 -- A7787F8A79D73DD78330FD81C221105F6C5FF1FDFBF94BD213EE79F5BC0F8527 -- 2110886309938C856879FF5542787AE6211048F970341C791AEB94E9B4253808 -- 0402814020100804028140F69B8EC766E4F75A50386B4F4ED3ED7524D68136D2 -- 8B102E6AD98E72F6BB9E8F7E8AE7A3F2C386CDA372F150F8B053DB28DBA8AD6C -- E4DEE76D722C38A0EF3442650910DADBC13B41282C6A09A743BC0F853AEBDD38 -- 843C2B79B3F7DFB3FD5D8F3C7BCB86729E59E58FD7B366A9936D0942236FAEE7 -- 360752F4AFEA97E750DD615B2FC876DB41879C9F64338D75DBB547619AE6397C -- 3E66F47AB70D0D8442DB5802423DA8C9C7DAB68FB607C6C643A8DF809295E7AE -- 10D6E8939D0BC4E63E6D33ACEC3B644B68DC55D0F6104220100804028140203D -- E53FFC9162CC316D57000000000049454E44AE426082 -- } -- Stretch = True -- Transparent = False -- end -- object Label2: TLabel -- Height = 17 -- Top = 153 -- Width = 382 -- Alignment = taCenter -- Anchors = [akTop, akLeft, akRight] -- AutoSize = False -- Caption = 'Version 3.0 June 10 2008' -- Color = clBlack -- Font.Color = clYellow -- ParentColor = False -- Transparent = False -- OnClick = Image1Click -- end -- object Label3: TLabel -- Height = 66 -- Top = 182 -- Width = 381 -- Alignment = taCenter -- Anchors = [akTop, akLeft, akRight] -- Caption = 'Copyright 2008 Patrick Chevalley Tous droits reservé.'#10'http://www.astrosurf.com/astropc'#10'This program is free software; you can redistribute it '#10'and/or modify it under the terms of the '#10'GNU General Public License' -- Color = clBlack -- Font.Color = clYellow -- ParentColor = False -- Transparent = False -- OnClick = Image1Click -- end -- end -- object Timer1: TTimer -- Enabled = False -- Interval = 2000 -- OnTimer = Timer1Timer -- left = 8 -- top = 152 -- end --end -+object splash: Tsplash -+ Left = 390 -+ Height = 294 -+ Top = 143 -+ Width = 361 -+ HorzScrollBar.Page = 360 -+ VertScrollBar.Page = 293 -+ ActiveControl = BitBtn1 -+ AutoSize = True -+ BorderStyle = bsNone -+ Caption = 'splash' -+ ClientHeight = 294 -+ ClientWidth = 361 -+ Color = clBlack -+ Font.Height = -11 -+ Font.Name = 'MS Sans Serif' -+ FormStyle = fsStayOnTop -+ OnClick = Image1Click -+ OnShow = FormShow -+ Position = poScreenCenter -+ object BitBtn1: TBitBtn -+ Height = 1 -+ Width = 1 -+ Cancel = True -+ Default = True -+ ModalResult = 2 -+ NumGlyphs = 2 -+ TabOrder = 0 -+ end -+ object Panel1: TPanel -+ Height = 294 -+ Width = 361 -+ Align = alClient -+ AutoSize = True -+ BevelOuter = bvNone -+ Caption = 'Panel1' -+ ClientHeight = 294 -+ ClientWidth = 361 -+ TabOrder = 1 -+ OnClick = Image1Click -+ object Image1: TImage -+ Left = 32 -+ Height = 150 -+ Width = 300 -+ AutoSize = True -+ Center = True -+ OnClick = Image1Click -+ Picture.Data = { -+ 1754506F727461626C654E6574776F726B477261706869637A0F000089504E47 -+ 0D0A1A0A0000000D494844520000012C000000960802000000EB39228500000F -+ 414944415478DAED9D0B92E32A0C4559BA96969DF9CD6BC70E1F21C41FECABEA -+ AAE9493B0604078100610C040281402010080402814020100804028140201008 -+ 040281FC842CB93F611F83AE20902EF2F97C6C088993F319E80A021901E1F9DF -+ FBC3CF9FD876120281B41F8EDE061096100281402010080402814020BE1C07F3 -+ A39B70967F377366CB27D4232D592DC99F7F591D36BF3ED31A9F87353573BE5F -+ 50C8EA7E8F30D3C578F453F1480265F2956D6E307BC3F250A999E9F9591448AF -+ 18C55FECDAF2064358DCE577D54601003DB251A999457A847E8D555A9A57AAB5 -+ D8120EE6A1777F965B676183689B438D1262E3B1899AE9A7166561C7E8E427F6 -+ A29FBD0C9884B00CA711A5FACBF8F8396101845D8706594DB9B6DDA79EAEEF9E -+ A64CA3EC6C741D58FA96500961015123CCE0DFF87DCAD4AB0CC2E26F35372625 -+ 5FF15C1C4DCB380042BD26FB8EA14894B6508D3283E42534CB413A11C2B2AE27 -+ 57576F805061E61B41E8FDAEDF1DAAAFE92966F0CCD23063B8088435FD4E96AE -+ E8DCE7783E247258391C6D5565837D04CBB949A798C1AE138C1E73C21E106669 -+ 3BEBBB0E8422872B3B66EC85C175B1643DA859744D33835786C674818B78472B -+ A9D67F9DBCB15ABC21AFB372A35FA2588B49EFD88407A1DF771AE6C72F9BE9F0 -+ 133845BF1F7EFF1AA8B8431E2A57C35AE5AAF29DD559A2869AE9D65A4AF2301F -+ C270EAA8348663CC2071B341BB375B7C49FAACE98953D3224BC86891380B52DF -+ 37756935C61988CE72AA977B50BD07846A1B331B34B13C5C6D62C0CC70914D92 -+ 832014BC77419172E784237DDA0B66A090D2186983B6C8C43330D2186AAA6D40 -+ D5CE8730F0EB2FB58D61807F6B96A9E4B53CC5293A6B37A0F2E583372877F18E -+ FE756D94B42675459E6E8B7632866775849537C50C4EF4BC29EBAC77173B629D -+ 3009A138060184BD20B4EB3E84704133D85CB3192E0D1A3A3B6DBC63E69E666F -+ 08614D97B40184A1319C3C1B8CB4897EC630ABCEBA5670DFBDA34A08E33A9FC5 -+ 40D646D0FDE684B18AEC7F6E9032EAE91C4475737CD5EC0B1930286D768A420F -+ A1E1B7D4CF62A07897E54E101A33FA34649E9AAE25A14EFAADDC31D3DB43C32E -+ 87B0EE780D8146BF7E9D0961A7150265688F6C852C08E1C802E499C1FEC67091 -+ B302C99657E5ACB2EBBA543353FC672B9EA9DF1EC2A241CEE5CB69AFE8B2828F -+ A9EF96DB06F2215C2AFA8E3EE2CE66272DA6CC099B077DAB04A0E085C3C2CFC9 -+ ED2F63CB8EFB2835ED02106DAD99251C996A6D0D40EAF446D0F9AB21ACAF51B4 -+ 896A8D1174FE7608A7630C08A7541C6409085BF1030E8B744554376982CE0121 -+ 38AC87F074611074FE5208BD2AFCF7EB5177EC196D42ADA27FFFFCCF1E55BB0F -+ A1F3A74168FFFC3EFE3614E7190C902A744EC63FD24D0DEB11B20D84B19A0BEC -+ E1B7CFBE213C5210A241A46671D756A34B990408012145CD20832838ACD43931 -+ CAA486B509D903426F2642BF2E39DD1C006195DA2D555B3AA7262F876C08A1CB -+ 9E1242CD0C061C0A3AE727DECDC6BA908D20CCA1CE73CF6080D47AC448FD9380 -+ AC04615155F9EE19D22504D1E99CA6562E640684B56F50438806310542A81D10 -+ 82C35C25D0D8E42053214CD690EDF924D1114A8A1D36E898C743080EB787908C -+ BF9045E2938406B11E849890AF0B61B3331326EF729D3773E844738ABA9769D9 -+ BA0684EB427864A2F866087F6A1B0821385C11C2B6557272F8F7E3B42D81CC17 -+ 3608B5CE698B4A0784CB42789E88F33E649AD50B1B042004841D0D11FD36409E -+ E7E2CC7D2C20C6E10B3DA5D32104870B41D8A326EC9127196627EACB39CC2929 -+ 2D9313484F08DBBFD3C28C82D9606C72080801E11B21EC5F07FF12F87C3E3F4B -+ 183398EF69139965A4C5F20308B784D03B2AEE10C88E4B01E14808C1E14C08C7 -+ A89EAEE58A0BC56F009510CB377098AF735A356380702BBDD38FBD5F14A377AE -+ 580042403847E91684E7F0545AAE78709B283CAEB974F600E13E109235093C82 -+ 150B40B80284067BBB1F0C61303F4C43F8480EB780101C0E8270A2AE6F7B680F -+ 4A4D04C827B589D2B2D026F90484FB8C3A2E021D07A9899F030684FB6415106E -+ A2627257089343D36734889AEB9500E1C320F42E2E6665C465E2E4AC1C3EDF49 -+ 43D79E85FC4BCE69B75E0310A6DFC254BFDBFAEDB6D2BD4487F97C3EFED0F461 -+ 6DE22FF39AEBE31782101C768590AC0671D93EA7AABB9BC1C01E7E37971EEB1A -+ C3AAC4D98ECF5C2BA66E5D8409D1AC093220EC0721D326ACA62F9BC164CFCD8E -+ B8F826E80D8CDD2922F3AD20BDB2B4A2068712964A7838D15CC35E2FDEDA9306 -+ B36BA594940E1096F56D0269FAEA8C897ED0F57B15B94BF9B184823C95A4650A -+ 73AE798C48D7EB95E681CD7FA74A2998BE02C2BC0146D26214FB6C92784721B4 -+ 46A47C42419F5C9296020061381AD3DBA93A1E42CE16DD6798BDAFC81D07ABF3 -+ 869512D379B47480B06688CFF2963BAAD1D7B79C9C07A1D4FDBBA51800A1A70A -+ 0DA86C6E6F50F5464693E7B695C2BFE4E210D218C21039A519CC9A37E60D112F -+ 0E130971F63C3972AB198ECACF487139227FB0CDA0C0A13ECFAD2A255E3ACC0B -+ 5B4128CE253466501E95E54E2A84EE594AC86AF563E6847A2747817751333F97 -+ BFDBB052522E1C0284544520E7FCB66B4239F54FBA0A8E8829D3F4F4DA840208 -+ 3386BE75C3D1E4C03236162D988B267DAA3D2A455B3A40586F06EFE15FD6E4A4 -+ C0BE65F5F41909C521ECE1984962190CADC91B366B9646B2F2D3A95212A57BFD -+ DD21544E60FCBB7A0FB8B2F5C868695A4618FF2236DE6B6209C3E19CF00CEB27 -+ 8C42681296A7784ED8A952D2A57BF9E4B01384C985ECDC6543799029CCD35C2F -+ 910361CC43D364F92BF40D0ACF6817BE2310B6F28E76AA9474E9006173028DD1 -+ 6E9ED0ECAB50562DFB249F1049CB86C5BB7358C06A76CC304365CE0D96B5815B -+ 633F9B574A71E9006115846B9759178AA6AE809A6FE7A5D054E7B4645B7C2987 -+ 2510EEAE2C32898DDD0B96B1757ED685F0957769BD1BC25D8AF906085F6B0C1B -+ 404899D7E8AE50E6D343438A92024270B81C84CCEEE0ED20FCBA49BF114BD76F -+ 101DB2416B374A40F80205D1F7E0EFF7B251E3C6C2A08600B4E8A25E08E1CB6E -+ 95A4376BE7670B2975D9681DEEE5ADBE8FCE69F98A7911872F8770C40D87CAF9 -+ 272004845ABD782E9963ABD9A00C61599B48BEA17240DAA72DD20E4DF33DB7BB -+ 52B9526837974C9213CA5F39ECAA816E0D9136699DAFE0500BE1620BA9E176AD -+ DA891B59869D221DCD780D744BEE2ED0EAB15EDE71CB32EDA58BE46ECCC27D78 -+ BFB0270184C724087B2677BF7783437D807029088BCFEF68203CBFCD4068DBC6 -+ 941E5A2A29F7066C2A817083684B8F378619102E2005A113334E455C714FFC83 -+ 0E47349478FDE9246D00D5D649CB102E1723F4D91C9272B77FB84F6D9E1914B2 -+ CC3EA31DBE2A43A1A40E1CE6A61B81909421A1CA9216205C31462820649CA233 -+ 562694B317FDF977E1F4ED7507F78F4C52C44434D1089F8E3D8D9FFD3721E765 -+ C111D351982310664740058723206457261E0DE1F7B251FA155619D02DFEFE1F -+ 84AA23EAF110F7F94947A6CDF94A9E8FC053392C8170F684B018C2DC215C6C5D -+ 26371899FE90FE19EBA120CA606ED24908551150E1291D01E14A7D4F27089581 -+ 2DDA9220D045E24D2FAD92A6D4A47AD1D8848F34861B4158EF98D1B852C5F098 -+ DF9B6582306107AB487D584E930CC152311CE583C1A4EA1C1CAE016124B6EFC4 -+ 2D4F65B73BE9E757CC6B7D088983506593DDEC51D2CA351C0E303716E68CF886 -+ 5DF09A01E19338DC0BC2B2C57AA525641C80E44248DC0B832B719403E3ACD2D5 -+ 7B47FD3070A286D31150610C47402810B80C87B9D3ADAA392107A1D2D3A3C52C -+ 75EF67C3A4CBE6840BB5FC2771980DE1B1C4F125FD06EECA0B657F0472218395 -+ DB563461398DBB405F50969AA4CB26A8F094F68790F9F041C79794B3507338F1 -+ F3E550A5D5D7D0D77CBF6CEFE8EECDF7B9103EF8E860AE7E2E3F40F981C325C7 -+ 57CF81F0011C664078BC11C2EC06D1E76E0F40D845E7EB4288FB53C777CCC375 -+ 4E0FD3F9DED1A801E10A1C02C2370F4A295C120284FA867C348ACE365CE14FAB -+ E0BD6F28622184281B320910D2CA0DE88175FC1008636690E095F95FBEF12F32 -+ B83AAC005247148719ADE79995B929870C84FA2EFF7596CFDD6A4242683672AF -+ 5F6321A42B38378DEFED1E0BE18E1CA6210481FA392103A16120FC3E06080121 -+ 0BA1DEFDB098F2C76F7464D6F1D9BF877FF606AA34A70331E0703908B71D8BCA -+ DB29FBD17846493C03B449DBD9C2B12859C69000E1EB397420DC53E1C9934DFD -+ 2CE1B571FC2B3C83C2D6F2793A278562C1E158086B2E3C59C30CE6D685E6A040 -+ F2D482E6270C91F853BDFB2721EE20FB79CDA911529FC9D898C3ED21A43DCE4C -+ 148C39B30E373580D0446237FDFD166BF4314BAEB1F09AC139299EC4A0742084 -+ F2DAE06E2E99BB40C9C3E9B188D7C596D639834F4E77EC876FBA6FBE485942A1 -+ 53C83D7D1F9EAC5F3AC0E17B38A4FDF7A9C9818962734561F0A989A29B88C2C4 -+ B96A9C2C0566500E0913EB71F4107AEF24F14938696640F82C9D7B586AA08AFD -+ 356BB4664318FA696E6378426833EFF11FEB29D8006A3D86A3801010B61FA90E -+ 86F0B784E86688F5D6D8C1F6CFD70AA64C8E579FCCB317F2F0F910F6B3ECFFC8 -+ F97C3E675F7BFF4281BC014239EF0254E1F7283384BE0CE1F9EBCF305F75C2CD -+ 60C9A84374272EAB09E77E14A465F9DD62D3E0A741D88FC3533C083F7F9205E1 -+ FDFC8E7236C158119C0B5E982501FE61F6796566CE9F8F25E767770E437ED80C -+ C87F62398CE55953647ABA7487F09F1443E8DB826D079C056148EBBDA392E1BD -+ 7C33DEA05493B158DE94C5D7C73B7DB87774C05C2E360A2DA49FF6DBA8AD594C -+ CF5D82D75F45968690521D479CCFF0B5FAA0E3FA78A74F5E27DCAA215BEB81B4 -+ 697F54B2813B77C78CE6F62ACDC3EE63DFDDA7C21B346B2AAC67351974F4E13B -+ 66368390C38FF7EF41DAA8FCABD87B0BF87B7C8A90BC869271901CB2D8544598 -+ A7787F8A79D73DD78330FD81C221105F6C5FF1FDFBF94BD213EE79F5BC0F8527 -+ 2110886309938C856879FF5542787AE6211048F970341C791AEB94E9B4253808 -+ 0402814020100804028140F69B8EC766E4F75A50386B4F4ED3ED7524D68136D2 -+ 8B102E6AD98E72F6BB9E8F7E8AE7A3F2C386CDA372F150F8B053DB28DBA8AD6C -+ E4DEE76D722C38A0EF3442650910DADBC13B41282C6A09A743BC0F853AEBDD38 -+ 843C2B79B3F7DFB3FD5D8F3C7BCB86729E59E58FD7B366A9936D0942236FAEE7 -+ 360752F4AFEA97E750DD615B2FC876DB41879C9F64338D75DBB547619AE6397C -+ 3E66F47AB70D0D8442DB5802423DA8C9C7DAB68FB607C6C643A8DF809295E7AE -+ 10D6E8939D0BC4E63E6D33ACEC3B644B68DC55D0F6104220100804028140203D -+ E53FFC9162CC316D57000000000049454E44AE426082 -+ } -+ Stretch = True -+ Transparent = False -+ end -+ object Label2: TLabel -+ Height = 17 -+ Top = 153 -+ Width = 382 -+ Alignment = taCenter -+ Anchors = [akTop, akLeft, akRight] -+ AutoSize = False -+ Caption = 'Version 3.0 June 10 2008' -+ Color = clBlack -+ Font.Color = clYellow -+ ParentColor = False -+ Transparent = False -+ OnClick = Image1Click -+ end -+ object Label3: TLabel -+ Height = 66 -+ Top = 182 -+ Width = 381 -+ Alignment = taCenter -+ Anchors = [akTop, akLeft, akRight] -+ Caption = 'Copyright 2008 Patrick Chevalley Tous droits reservé.'#10'http://www.astrosurf.com/astropc'#10'This program is free software; you can redistribute it '#10'and/or modify it under the terms of the '#10'GNU General Public License' -+ Color = clBlack -+ Font.Color = clYellow -+ ParentColor = False -+ Transparent = False -+ OnClick = Image1Click -+ end -+ end -+ object Timer1: TTimer -+ Enabled = False -+ Interval = 2000 -+ OnTimer = Timer1Timer -+ left = 8 -+ top = 152 -+ end -+end -diff -ur skychart_3.2/varobs/splashunit.lrs skychart_3.2_up/varobs/splashunit.lrs ---- skychart_3.2/varobs/splashunit.lrs 2008-06-12 16:22:26.000000000 +0200 -+++ skychart_3.2_up/varobs/splashunit.lrs 2011-03-09 15:18:23.219263874 +0100 -@@ -1,196 +1,196 @@ --{ This is an automatically generated lazarus resource file } -- --LazarusResources.Add('Tsplash','FORMDATA',[ -- 'TPF0'#7'Tsplash'#6'splash'#4'Left'#3#134#1#6'Height'#3'&'#1#3'Top'#3#143#0#5 -- +'Width'#3'i'#1#18'HorzScrollBar.Page'#3'h'#1#18'VertScrollBar.Page'#3'%'#1#13 -- +'ActiveControl'#7#7'BitBtn1'#8'AutoSize'#9#11'BorderStyle'#7#6'bsNone'#7'Cap' -- +'tion'#6#6'splash'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#5'Color'#7 -- +#7'clBlack'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif'#9'FormSty' -- +'le'#7#11'fsStayOnTop'#7'OnClick'#7#11'Image1Click'#6'OnShow'#7#8'FormShow'#8 -- +'Position'#7#14'poScreenCenter'#0#7'TBitBtn'#7'BitBtn1'#6'Height'#2#1#5'Widt' -- +'h'#2#1#6'Cancel'#9#7'Default'#9#11'ModalResult'#2#2#9'NumGlyphs'#2#2#8'TabO' -- +'rder'#2#0#0#0#6'TPanel'#6'Panel1'#6'Height'#3'&'#1#5'Width'#3'i'#1#5'Align' -- +#7#8'alClient'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#7'Caption'#6#6'Panel' -- +'1'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#7'OnClick' -- +#7#11'Image1Click'#0#6'TImage'#6'Image1'#4'Left'#2' '#6'Height'#3#150#0#5'Wi' -- +'dth'#3','#1#8'AutoSize'#9#6'Center'#9#7'OnClick'#7#11'Image1Click'#12'Pictu' -- +'re.Data'#10#150#15#0#0#23'TPortableNetworkGraphicz'#15#0#0#137'PNG'#13#10#26 -- +#10#0#0#0#13'IHDR'#0#0#1','#0#0#0#150#8#2#0#0#0#235'9"'#133#0#0#15'AIDATx' -- +#218#237#157#11#146#227'*'#12'EY'#186#150#150#157#249#205'k'#199#14#31'!'#196 -- +#31#236#171#234#170#233'I;'#6#4#7#129#0'a'#12#4#2#129'@ '#16#8#4#2#129'@ '#16 -- +#8#4#2#129'@ '#16#8#4#2#129#252#132','#185'?a'#31#131#174' '#144'.'#242#249 -- +'|l'#8#137#147#243#25#232#10#2#25#1#225#249#223#251#195#207#159#216'v'#18#2 -- +#129#180#31#142#222#6#16#150#16#2#129'@ '#16#8#4#2#129'@ '#190#28#7#243#163 -- +#155'p'#150'7sf'#203''''#212'#-Y-'#201#159'Y'#29'6'#191'>'#211#26#159#135 -- +'55s'#190'_P'#200#234'~'#143'0'#211#197'x'#244'S'#241'H'#2'e'#242#149'mn0{' -- +#195#242'P'#169#153#233#249'Y'#20'H'#175#24#197'_'#236#218#242#6'CX'#220#229 -- +'w'#213'F'#1#0'='#178'Q'#169#153'Ez'#132'~'#141'UZ'#154'W'#170#181#216#18#14 -- +#230#161'w'#150'[ga'#131'h'#155'C'#141#18'b'#227#177#137#154#233#167#22'ea' -- +#199#232#228''''#246#162#159#189#12#152#132#176#12#167#17#165#250#203#248#248 -- +'9a'#1#132']'#135#6'YM'#185#182#221#167#158#174#239#158#166'L'#163#236'lt'#29 -- +'X'#250#150'P'#9'a'#1'Q#'#204#224#223#248'}'#202#212#171#12#194#226'o57&%_' -- +#241'\'#28'M'#203'8'#0'B'#189'&'#251#142#161'H'#148#182'P'#141'2'#131#228'%4' -- +#203'A:'#17#194#178#174'''WWo'#128'Pa'#230#27'A'#232#253#174#223#29#170#175 -- +#233')f'#240#204#210'0c'#184#8#132'5'#253'N'#150#174#232#220#231'x>$rX9'#28 -- +'mUe'#131'}'#4#203#185'I'#167#152#193#174#19#140#30's'#194#30#16'fi;'#235#187 -- +#14#132'"'#135'+;f'#236#133#193'u'#177'd='#168'YtM3'#131'W'#134#198't'#129 -- +#139'xG+'#169#214''#157#188#177'Z'#188'!'#175#179'r'#163'_'#162'X'#139'I' -- +#239#216#132#7#161#223'w'#26#230#199'/'#155#233#240#19'8E'#191#31'~'#255#26 -- +#168#184'C'#30'*W'#195'Z'#229#170#242#157#213'Y'#162#134#154#233#214'ZJ'#242 -- +'0'#31#194'p'#234#168'4'#134'c'#204' q'#179'A'#187'7[|I'#250#172#233#137'S' -- +#211'"K'#200'h'#145'8'#11'R'#223'7ui5'#198#25#136#206'r'#170#151'{P'#189#7 -- +#132'j'#27'3'#27'4'#177'<\mb'#192#204'p'#145'M'#146#131' '#20#188'wA'#145'r' -- +#231#132'#}'#218#11'f'#160#144#210#24'i'#131#182#200#196'30'#210#24'j'#170'm' -- +'@'#213#206#135'0'#240#235'/'#181#141'a'#128'k'#150#169#228#181'<'#197'):k7' -- +#160#242#229#131'7(w'#241#142#254'um'#148#180'&uE'#158'n'#139'v2'#134'gu'#132 -- +#149'7'#197#12'N'#244#188')'#235#172'w'#23';b'#157'0'#9#161'8'#6#1#132#189' ' -- +#180#235'>'#132'pA3'#216'\'#179#25'.'#13#26':;m'#188'c'#230#158'fo'#8'aM'#151 -- +#180#1#132#161'1'#156'<'#27#140#180#137'~'#198'0'#171#206#186'Vp'#223#189#163 -- +'J'#8#227':'#159#197'@'#214'F'#208#253#230#132#177#138#236'n'#144'2'#234#233 -- +#28'Dus|'#213#236#11#25'0(mv'#138'B'#15#161#225#183#212#207'b'#160'x'#151#229 -- +'N'#16#26'3'#250'4d'#158#154#174'%'#161'N'#250#173#220'1'#211#219'C'#195'.' -- +#135#176#238'x'#13#129'F'#191'~'#157#9'a'#167#21#2'eh'#143'l'#133','#8#225 -- +#200#2#228#153#193#254#198'p'#145#179#2#201#150'W'#229#172#178#235#186'T3S' -- +#252'g+'#158#169#223#30#194#162'A'#206#229#203'i'#175#232#178#130#143#169#239 -- +#150#219#6#242'!\*'#250#142'>'#226#206'f''-'#166#204#9#155#7'}'#171#4#160#224 -- +#133#195#194#207#201#237'/c'#203#142#251'(5'#237#2#16'm'#173#153'%'#28#153'j' -- +'m'#13'@'#234#244'F'#208#249#171'!'#172#175'Q'#180#137'j'#141#17't'#254'v'#8 -- +#167'c'#12#8#167'T'#28'd'#9#8'['#241#3#14#139'tET7i'#130#206#1'!8'#172#135 -- +#240'ta'#16't'#254'R'#8#189'*'#252#247#235'Qw'#236#25'mB'#173#162''#255#252 -- +#207#30'U'#187#15#161#243#167'Ah'#255#252'>'#254'6'#20#231#25#12#144'*tN'#198 -- +'?'#210'M'#13#235#17#178#13#132#177#154#11#236#225#183#207#190'!<R'#16#162'A' -- +#164'fq'#215'V'#163'K'#153#4#8#1'!E'#205' '#131'(8'#172#212'91'#202#164#134 -- +#181#9#217#3'Bo&B'#191'.9'#221#28#0'a'#149#218'-U[:'#167'&/'#135'l'#8#161#203 -- +#158#18'B'#205#12#6#28#10':'#231''''#222#205#198#186#144#141' '#204#161#206 -- +'s'#207'`'#128#212'z'#196'H'#253#147#128#172#4'aQU'#249#238#25#210'%'#4#209 -- +#233#156#166'V.d'#6#132#181'oPC'#136#6'1'#5'B'#168#29#16#130#195'\%'#208#216 -- +#228' S!L'#214#144#237#249'$'#209#17'J'#138#29'6'#232#152#199'C'#8#14#183#135 -- ,#144#140#191#144'E'#226#147#132#6#177#30#132#152#144#175#11'a'#179'3'#19'&' -- +#239'r'#157'7s'#232'Ds'#138#186#151'i'#217#186#6#132#235'Bxd'#162#248'f'#8'' -- +'j'#27#8'!8\'#17#194#182'Urr'#248#247#227#180'-'#129#204#23'6'#8#181#206'i' -- +#139'J'#7#132#203'Bx'#158#136#243'>d'#154#213#11#27#4' '#4#132#29#13#17#253 -- +'6@'#158#231#226#204'}, '#198#225#11'='#165#211'!'#4#135#11'A'#216#163'&'#236 -- +#145''''#25'f'''#234#203'9'#204'))-'#147#19'HO'#8#219#191#211#194#140#130#217 -- +'`lr'#8#8#1#225#27'!'#236'_'#7#255#18#248'|>?K'#24'3'#152#239'i'#19#153'e' -- +#164#197#242#3#8#183#132#208';*'#238#16#200#142'K'#1#225'H'#8#193#225'L'#8 -- +#199#168#158#174#229#138#11#197'o'#0#149#16#203'7p'#152#175'sZ5c'#128'p+'#189 -- +#211#143#189'_'#20#163'w'#174'X'#0'B@8G'#233#22#132#231#240'TZ'#174'xp'#155 -- +'(<'#174#185't'#246#0#225'>'#16#146'5'#9'<'#130#21#11'@'#184#2#132#6'{'#187 -- +#31#12'a0?LC'#248'H'#14#183#128#16#28#14#130'p'#162#174'o{h'#15'JM'#4#200'''' -- +#181#137#210#178#208'&'#249#4#132#251#140':.'#2#29#7#169#137#159#3#6#132#251 -- +'d'#21#16'n'#162'brW'#8#147'C'#211'g4'#136#154#235#149#0#225#195' '#244'..fe' -- +#196'e'#226#228#172#28'>'#223'IC'#215#158#133#252'K'#206'i'#183'^'#3#16#166 -- +#223#194'T'#191#219#250#237#182#210#189'D'#135#249'|>'#254#208#244'am'#226'/' -- +#243#154#235#227#23#130#16#28'v'#133#144#172#6'q'#217'>'#167#170#187#155#193 -- +#192#30'~7'#151#30#235#26#195#170#196#217#142#207'\+'#166'n]'#132#9#209#172#9 -- +'2 '#236#7'!'#211'&'#172#166'/'#155#193'd'#207#205#142#184#248'&'#232#13#140 -- +#221')"'#243#173' '#189#178#180#162#6#135#18#150'Jx8'#209'\'#195'^/'#222#218 -- +#147#6#179'k'#165#148#148#14#16#150#245'm'#2'i'#250#234#140#137'~'#208#245'{' -- +#21#185'K'#249#177#132#130'<'#149#164'e'#10's'#174'y'#140'H'#215#235#149#230 -- +#129#205''#167'J)'#152#190#2#194#188#1'F'#210'b'#20#251'l'#146'xG!'#180'F' -- +#164'|BA'#159'\'#146#150#2#0'a8'#26#211#219#169':'#30'B'#206#22#221'g'#152 -- +#189#175#200#29#7#171#243#134#149#18#211'y'#180't'#128#176'f'#136#207#242#150 -- +';'#170#209#215#183#156#156#7#161#212#253#187#165#24#0#161#167#10#13#168'lno' -- +'P'#245'FF'#147#231#182#149#194#191#228#226#16#210#24#194#16'9'#165#25#204 -- +#154'7'#230#13#17'/'#14#19#9'q'#246'<9r'#171#25#142#202#207'Hq9"'#176#205 -- +#160#192#161'>'#207#173'*%^:'#204#11'[A('#206'%4fP'#30#149#229'N*'#132#238'Y' -- +'J'#200'j'#245'c'#230#132'z''G'#129'wQ3?'#151#191#219#176'RR.'#28#2#132'TE ' -- +#231#252#182'kB9'#245'O'#186#10#142#136')'#211#244#244#218#132#2#8'3'#134#190 -- +'u'#195#209#228#192'26'#22'-'#152#139'&}'#170'=*E[:@Xo'#6#239#225'_'#214#228 -- +#164#192#190'e'#245#244#25#9#197'!'#236#225#152'Ib'#25#12#173#201#27'6k'#150 -- +'F'#178#242#211#169'R'#18#165'{'#253#221'!TN`'#252#187'z'#15#184#178#245#200 -- +'hiZF'#24#255'"6'#222'kb'#9#195#225#156#240#12#235''''#140'Bh'#18#150#167'xN' -- +#216#169'R'#210#165'{'#249#228#176#19#132#201#133#236#220'eCy'#144')'#204#211 -- +'\/'#145#3'a'#204'C'#211'd'#249'+'#244#13#10#207'h'#23#190'#'#16#182#242#142 -- +'v'#170#148't'#233#0'as'#2#141#209'n'#158#208#236#171'PV-'#251'$'#159#16'I' -- +#203#134#197#187'sX'#192'jv'#204'0Ce'#206#13#150#181#129'[c?'#155'WJq'#233#0 -- +'a'#21#132'k'#151'Y'#23#138#166#174#128#154'o'#231#165#208'T'#231#180'd[|)' -- +#135'%'#16#238#174',2'#137#141#221#11#150#177'u~'#214#133#240#149'wi'#189#27 -- +#194']'#138#249#6#8'_k'#12#27'@H'#153#215#232#174'P'#230#211'CC'#138#146#2'B' -- +'p'#184#28#132#204#238#224#237' '#252#186'I'#191#17'K'#215'o'#16#29#178'Ak7J' -- +'@'#248#2#5#209#247#224#239#247#178'Q'#227#198#194#160#134#0#180#232#162'^'#8 -- +#225#203'n'#149#164'7k'#231'g'#11')u'#217'h'#29#238#229#173#190#143#206'i' -- +#249#138'y'#17#135'/'#135'p'#196#13#135#202#249''' '#4#132'Z'#189'x.'#153'c' -- +#171#217#160#12'aY'#155'H'#190#161'r@'#218#167'-'#210#14'M'#243'='#183#187'R' -- +#185'Rh7'#151'L'#146#19#202'_9'#236#170#129'n'#13#145'6i'#157#175#224'P'#11 -- +#225'b'#11#169#225'v'#173#218#137#27'Y'#134#157'"'#29#205'x'#13'tK'#238'.' -- +#208#234#177'^'#222'q'#203'2'#237#165#139#228'n'#204#194'}x'#191#176''''#1 -- +#132#199'$'#8'{&w'#191'w'#131'C}'#128'p)'#8#139#207#239'h <'#191#205'@h'#219 -- +#198#148#30'Z*)'#247#6'l*'#129'p'#131'hK'#143'7'#134#25#16'. '#5#161#19'3NE\' -- +'qO'#252#131#14'G4'#148'x'#253#233'$m'#0#213#214'I'#203#16'.'#23'#'#244#217 -- +#28#146'r'#183''#184'Om'#158#25#20#178#204'>'#163#29#190'*C'#161#164#14#28 -- +#230#166#27#129#144#148'!'#161#202#146#22' \1F( d'#156#162'3V&'#148#179#23 -- +#253#249'w'#225#244#237'u'#7#247#143'LR'#196'D4'#209#8#159#142'='#141#159#253 -- +'7!'#231'e'#193#17#211'Q'#152'#'#16'fG@'#5#135'# dW&'#30#13#225#247#178'Q' -- +#250#21'V'#25#208'-'#254#254#31#132#170'#'#234#241#16#247#249'IG'#166#205#249 -- +'J'#158#143#192'S9,'#129'p'#246#132#176#24#194#220'!\l]&7'#24#153#254#144#254 -- +#25#235#161' '#202'`n'#210'I'#8'U'#17'P'#225')'#29#1#225'J}O'''#8#149#129'-' -- +#218#146' '#208'E'#226'M/'#173#146#166#212#164'z'#209#216#132#143'4'#134#27 -- +'AX'#239#152#209#184'R'#197#240#152#223#155'e'#130'0a'#7#171'H}XN'#147#12#193 -- +'R1'#28#229#131#193#164#234#28#28#174#1'a$'#182#239#196'-Oe'#183';'#233#231 -- +'W'#204'k}'#8#137#131'Pe'#147#221#236'Q'#210#202'5'#28#14'07'#22#230#140#248 -- ,#134']'#240#154#1#225#147'8'#220#11#194#178#197'z'#165'%d'#28#128#228'BH'#220 -- +#11#131'+q'#148#3#227#172#210#213'{G'#253'0p'#162#134#211#17'Pa'#12'G@('#16 -- +#184#12#135#185#211#173#170'9!'#7#161#210#211#163#197',u'#239'g'#195#164#203 -- +#230#132#11#181#252'''q'#152#13#225#177#196#241'%'#253#6#238#202#11'e'#4'r!' -- +#131#149#219'V4a9'#141#187'@_P'#150#154#164#203'&'#168#240#148#246#135#144 -- +#249#240'A'#199#151#148#179'Ps8'#241#243#229'P'#165#213#215#208#215'|'#191'l' -- +#239#232#238#205#247#185#16'>'#248#232'`'#174'~.?@'#249#129#195'%'#199'W'#207 -- +#129#240#1#28'f@x'#188#17#194#236#6#209#231'n'#15'@'#216'E'#231#235'B'#136 -- +#251'S'#199'w'#204#195'uN'#15#211#249#222#209#168#1#225#10#28#2#194'7'#15'J)' -- +'\'#18#2#132#250#134'|4'#138#206'6\'#225'O'#171#224#189'o(b!'#132'('#27'2'#9 -- +#16#210#202#13#232#129'u'#252#16#8'cf'#144#224#149#249'_'#190#241'/2'#184':' -- +#172#0'RG'#20#135#25#173#231#153#149#185')'#135#12#132#250'.'#255'u'#150#207 -- +#221'jBBh6r'#175'_c!'#164'+87'#141#239#237#30#11#225#142#28#166'!'#4#129#250 -- +'9!'#3#161'a '#252'>'#6#8#1'!'#11#161#222#253#176#152#242#199'otd'#214#241 -- +#217#191#135''#246#6#170'4'#167#3'1'#224'p9'#8#183#29#139#202#219')'#251#209 -- +'xFI<'#3#180'I'#219#217#194#177'(Y'#198#144#0#225#235'9t '#220'S'#225#201#147 -- +'M'#253','#225#181'q'#252'+<'#131#194#214#242'y:'''#133'b'#193#225'X'#8'k.<Y' -- +#195#12#230#214#133#230#160'@'#242#212#130#230''''#12#145#248'S'#189#251'''!' -- +#238' '#251'y'#205#169#17'R'#159#201#216#152#195#237'!'#164'='#206'L'#20#140 -- +'9'#179#14'75'#128#208'Db7'#253#253#22'k'#244'1K'#174#177#240#154#193'9)'#158 -- +#196#160't '#132#242#218#224'n.'#153#187'@'#201#195#233#177#136#215#197#150 -- +#214'9'#131'ONw'#236#135'o'#186'o'#190'HYB'#161'S'#200'=}'#31#158#172'_:'#192 -- +#225'{8'#164#253#247#169#201#129#137'bsEa'#240#169#137#162#155#136#194#196 -- +#185'j'#156','#5'fP'#14#9#19#235'q'#244#16'z'#239'$'#241'I8if@'#248','#157'{' -- +'Xj'#160#138#253'5k'#180'fC'#24#250'incxBh3'#239#241#31#235')'#216#0'j='#134 -- +#163#128#16#16#182#31#169#14#134#240#183#132#232'f'#136#245#214#216#193#246 -- +#207#215#10#166'L'#142'W'#159#204#179#23#242#240#249#16#246#179#236#255#200 -- +#249'|>g_{'#255'B'#129#188#1'B9'#239#2'T'#225#247'(3'#132#190#12#225#249#235 -- +#207'0_u'#194#205'`'#201#168'Ct''.'#171#9#231'~'#20#164'e'#249#221'b'#211#224 -- +#167'A'#216#143#195'S<'#8'?'#146#5#225#253#252#142'r6'#193'X'#17#156#11'^' -- +#152'%'#1#254'a'#246'yef'#206#159#143'%'#231'gw'#14'C~'#216#12#200'b9'#140 -- +#229'YSdz'#186't'#135#240#159#20'C'#232#219#130'm'#7#156#5'aH'#235#189#163 -- +#146#225#189'|3'#222#160'T'#147#177'X'#222#148#197#215#199';}'#184'wt'#192'\' -- +'.6'#10'-'#164#159#246#219#168#173'YL'#207']'#130#215'_E'#150#134#144'R'#29 -- +'G'#156#207#240#181#250#160#227#250'x'#167'O^'''#220#170'!['#235#129#180'iT' -- +#178#129';w'#199#140#230#246'*'#205#195#238'c'#223#221#167#194#27'4k*'#172'g' -- +'5'#25't'#244#225';f6'#131#144#195#143#247#239'A'#218#168#252#171#216'{'#11 -- +#248'{|'#138#144#188#134#146'q'#144#28#178#216'TE'#152#167'x'#138'y'#215'=' -- +#215#131'0'#253#129#194'!'#16'_l_'#241#253#251#249'K'#210#19#238'y'#245#188 -- +#15#133'''!'#16#136'c'#9#147#140#133'hy'#255'UBxz'#230'!'#16'H'#249'p4'#28'y' -- +#26#235#148#233#180'%8'#8#4#2#129'@ '#16#8#4#2#129'@'#246#155#142#199'f'#228 -- +#247'ZP8kON'#211#237'u$'#214#129'6'#210#139#16'.j'#217#142'r'#246#187#158#143 -- +'~'#138#231#163#242#195#134#205#163'r'#241'P'#248#176'S'#219'('#219#168#173 -- +'l'#228#222#231'mr,8'#160#239'4Be'#9#16#218#219#193';A(,j'#9#167'C'#188#15 -- +#133':'#235#221'8'#132'<+y'#179#247#223#179#253']'#143'<{'#203#134'r'#158'Y' -- +#229#143#215#179'f'#169#147'm'#9'B#o'#174#231'6'#7'R'#244#175#234#151#231'P' -- +#221'a[/'#200'v'#219'A'#135#156#159'd3'#141'u'#219#181'Ga'#154#230'9|>f'#244 -- +'z'#183#13#13#132'B'#219'X'#2'B='#168#201#199#218#182#143#182#7#198#198'C' -- +#168#223#128#146#149#231#174#16#214#232#147#157#11#196#230'>m3'#172#236';dKh' -- +#220'U'#208#246#16'B '#16#8#4#2#129'@ ='#229'?'#252#145'b'#204'1mW'#0#0#0#0#0 -- +'IEND'#174'B`'#130#7'Stretch'#9#11'Transparent'#8#0#0#6'TLabel'#6'Label2'#6 -- +'Height'#2#17#3'Top'#3#153#0#5'Width'#3'~'#1#9'Alignment'#7#8'taCenter'#7'An' -- +'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#8#7'Caption'#6#25'Ver' -- +'sion 3.0 June 10 2008'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow' -- +#11'ParentColor'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#6'TLab' -- +'el'#6'Label3'#6'Height'#2'B'#3'Top'#3#182#0#5'Width'#3'}'#1#9'Alignment'#7#8 -- +'taCenter'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#213'Co' -- +'pyright 2008 Patrick Chevalley Tous droits reserv'#195#169'.'#10'http://w' -- +'ww.astrosurf.com/astropc'#10'This program is free software; you can redistr' -- +'ibute it '#10'and/or modify it under the terms of the '#10'GNU General Publ' -- +'ic License'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow'#11'ParentCol' -- +'or'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#0#6'TTimer'#6'Time' -- +'r1'#7'Enabled'#8#8'Interval'#3#208#7#7'OnTimer'#7#11'Timer1Timer'#4'left'#2 -- +#8#3'top'#3#152#0#0#0#0 --]); -+{ This is an automatically generated lazarus resource file } -+ -+LazarusResources.Add('Tsplash','FORMDATA',[ -+ 'TPF0'#7'Tsplash'#6'splash'#4'Left'#3#134#1#6'Height'#3'&'#1#3'Top'#3#143#0#5 -+ +'Width'#3'i'#1#18'HorzScrollBar.Page'#3'h'#1#18'VertScrollBar.Page'#3'%'#1#13 -+ +'ActiveControl'#7#7'BitBtn1'#8'AutoSize'#9#11'BorderStyle'#7#6'bsNone'#7'Cap' -+ +'tion'#6#6'splash'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#5'Color'#7 -+ +#7'clBlack'#11'Font.Height'#2#245#9'Font.Name'#6#13'MS Sans Serif'#9'FormSty' -+ +'le'#7#11'fsStayOnTop'#7'OnClick'#7#11'Image1Click'#6'OnShow'#7#8'FormShow'#8 -+ +'Position'#7#14'poScreenCenter'#0#7'TBitBtn'#7'BitBtn1'#6'Height'#2#1#5'Widt' -+ +'h'#2#1#6'Cancel'#9#7'Default'#9#11'ModalResult'#2#2#9'NumGlyphs'#2#2#8'TabO' -+ +'rder'#2#0#0#0#6'TPanel'#6'Panel1'#6'Height'#3'&'#1#5'Width'#3'i'#1#5'Align' -+ +#7#8'alClient'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#7'Caption'#6#6'Panel' -+ +'1'#12'ClientHeight'#3'&'#1#11'ClientWidth'#3'i'#1#8'TabOrder'#2#1#7'OnClick' -+ +#7#11'Image1Click'#0#6'TImage'#6'Image1'#4'Left'#2' '#6'Height'#3#150#0#5'Wi' -+ +'dth'#3','#1#8'AutoSize'#9#6'Center'#9#7'OnClick'#7#11'Image1Click'#12'Pictu' -+ +'re.Data'#10#150#15#0#0#23'TPortableNetworkGraphicz'#15#0#0#137'PNG'#13#10#26 -+ +#10#0#0#0#13'IHDR'#0#0#1','#0#0#0#150#8#2#0#0#0#235'9"'#133#0#0#15'AIDATx' -+ +#218#237#157#11#146#227'*'#12'EY'#186#150#150#157#249#205'k'#199#14#31'!'#196 -+ +#31#236#171#234#170#233'I;'#6#4#7#129#0'a'#12#4#2#129'@ '#16#8#4#2#129'@ '#16 -+ +#8#4#2#129'@ '#16#8#4#2#129#252#132','#185'?a'#31#131#174' '#144'.'#242#249 -+ +'|l'#8#137#147#243#25#232#10#2#25#1#225#249#223#251#195#207#159#216'v'#18#2 -+ +#129#180#31#142#222#6#16#150#16#2#129'@ '#16#8#4#2#129'@ '#190#28#7#243#163 -+ +#155'p'#150'7sf'#203''''#212'#-Y-'#201#159'Y'#29'6'#191'>'#211#26#159#135 -+ +'55s'#190'_P'#200#234'~'#143'0'#211#197'x'#244'S'#241'H'#2'e'#242#149'mn0{' -+ +#195#242'P'#169#153#233#249'Y'#20'H'#175#24#197'_'#236#218#242#6'CX'#220#229 -+ +'w'#213'F'#1#0'='#178'Q'#169#153'Ez'#132'~'#141'UZ'#154'W'#170#181#216#18#14 -+ +#230#161'w'#150'[ga'#131'h'#155'C'#141#18'b'#227#177#137#154#233#167#22'ea' -+ +#199#232#228''''#246#162#159#189#12#152#132#176#12#167#17#165#250#203#248#248 -+ +'9a'#1#132']'#135#6'YM'#185#182#221#167#158#174#239#158#166'L'#163#236'lt'#29 -+ +'X'#250#150'P'#9'a'#1'Q#'#204#224#223#248'}'#202#212#171#12#194#226'o57&%_' -+ +#241'\'#28'M'#203'8'#0'B'#189'&'#251#142#161'H'#148#182'P'#141'2'#131#228'%4' -+ +#203'A:'#17#194#178#174'''WWo'#128'Pa'#230#27'A'#232#253#174#223#29#170#175 -+ +#233')f'#240#204#210'0c'#184#8#132'5'#253'N'#150#174#232#220#231'x>$rX9'#28 -+ +'mUe'#131'}'#4#203#185'I'#167#152#193#174#19#140#30's'#194#30#16'fi;'#235#187 -+ +#14#132'"'#135'+;f'#236#133#193'u'#177'd='#168'YtM3'#131'W'#134#198't'#129 -+ +#139'xG+'#169#214''#157#188#177'Z'#188'!'#175#179'r'#163'_'#162'X'#139'I' -+ +#239#216#132#7#161#223'w'#26#230#199'/'#155#233#240#19'8E'#191#31'~'#255#26 -+ +#168#184'C'#30'*W'#195'Z'#229#170#242#157#213'Y'#162#134#154#233#214'ZJ'#242 -+ +'0'#31#194'p'#234#168'4'#134'c'#204' q'#179'A'#187'7[|I'#250#172#233#137'S' -+ +#211'"K'#200'h'#145'8'#11'R'#223'7ui5'#198#25#136#206'r'#170#151'{P'#189#7 -+ +#132'j'#27'3'#27'4'#177'<\mb'#192#204'p'#145'M'#146#131' '#20#188'wA'#145'r' -+ +#231#132'#}'#218#11'f'#160#144#210#24'i'#131#182#200#196'30'#210#24'j'#170'm' -+ +'@'#213#206#135'0'#240#235'/'#181#141'a'#128'k'#150#169#228#181'<'#197'):k7' -+ +#160#242#229#131'7(w'#241#142#254'um'#148#180'&uE'#158'n'#139'v2'#134'gu'#132 -+ +#149'7'#197#12'N'#244#188')'#235#172'w'#23';b'#157'0'#9#161'8'#6#1#132#189' ' -+ +#180#235'>'#132'pA3'#216'\'#179#25'.'#13#26':;m'#188'c'#230#158'fo'#8'aM'#151 -+ +#180#1#132#161'1'#156'<'#27#140#180#137'~'#198'0'#171#206#186'Vp'#223#189#163 -+ +'J'#8#227':'#159#197'@'#214'F'#208#253#230#132#177#138#236'n'#144'2'#234#233 -+ +#28'Dus|'#213#236#11#25'0(mv'#138'B'#15#161#225#183#212#207'b'#160'x'#151#229 -+ +'N'#16#26'3'#250'4d'#158#154#174'%'#161'N'#250#173#220'1'#211#219'C'#195'.' -+ +#135#176#238'x'#13#129'F'#191'~'#157#9'a'#167#21#2'eh'#143'l'#133','#8#225 -+ +#200#2#228#153#193#254#198'p'#145#179#2#201#150'W'#229#172#178#235#186'T3S' -+ +#252'g+'#158#169#223#30#194#162'A'#206#229#203'i'#175#232#178#130#143#169#239 -+ +#150#219#6#242'!\*'#250#142'>'#226#206'f''-'#166#204#9#155#7'}'#171#4#160#224 -+ +#133#195#194#207#201#237'/c'#203#142#251'(5'#237#2#16'm'#173#153'%'#28#153'j' -+ +'m'#13'@'#234#244'F'#208#249#171'!'#172#175'Q'#180#137'j'#141#17't'#254'v'#8 -+ +#167'c'#12#8#167'T'#28'd'#9#8'['#241#3#14#139'tET7i'#130#206#1'!8'#172#135 -+ +#240'ta'#16't'#254'R'#8#189'*'#252#247#235'Qw'#236#25'mB'#173#162''#255#252 -+ +#207#30'U'#187#15#161#243#167'Ah'#255#252'>'#254'6'#20#231#25#12#144'*tN'#198 -+ +'?'#210'M'#13#235#17#178#13#132#177#154#11#236#225#183#207#190'!<R'#16#162'A' -+ +#164'fq'#215'V'#163'K'#153#4#8#1'!E'#205' '#131'(8'#172#212'91'#202#164#134 -+ +#181#9#217#3'Bo&B'#191'.9'#221#28#0'a'#149#218'-U[:'#167'&/'#135'l'#8#161#203 -+ +#158#18'B'#205#12#6#28#10':'#231''''#222#205#198#186#144#141' '#204#161#206 -+ +'s'#207'`'#128#212'z'#196'H'#253#147#128#172#4'aQU'#249#238#25#210'%'#4#209 -+ +#233#156#166'V.d'#6#132#181'oPC'#136#6'1'#5'B'#168#29#16#130#195'\%'#208#216 -+ +#228' S!L'#214#144#237#249'$'#209#17'J'#138#29'6'#232#152#199'C'#8#14#183#135 -+ ,#144#140#191#144'E'#226#147#132#6#177#30#132#152#144#175#11'a'#179'3'#19'&' -+ +#239'r'#157'7s'#232'Ds'#138#186#151'i'#217#186#6#132#235'Bxd'#162#248'f'#8'' -+ +'j'#27#8'!8\'#17#194#182'Urr'#248#247#227#180'-'#129#204#23'6'#8#181#206'i' -+ +#139'J'#7#132#203'Bx'#158#136#243'>d'#154#213#11#27#4' '#4#132#29#13#17#253 -+ +'6@'#158#231#226#204'}, '#198#225#11'='#165#211'!'#4#135#11'A'#216#163'&'#236 -+ +#145''''#25'f'''#234#203'9'#204'))-'#147#19'HO'#8#219#191#211#194#140#130#217 -+ +'`lr'#8#8#1#225#27'!'#236'_'#7#255#18#248'|>?K'#24'3'#152#239'i'#19#153'e' -+ +#164#197#242#3#8#183#132#208';*'#238#16#200#142'K'#1#225'H'#8#193#225'L'#8 -+ +#199#168#158#174#229#138#11#197'o'#0#149#16#203'7p'#152#175'sZ5c'#128'p+'#189 -+ +#211#143#189'_'#20#163'w'#174'X'#0'B@8G'#233#22#132#231#240'TZ'#174'xp'#155 -+ +'(<'#174#185't'#246#0#225'>'#16#146'5'#9'<'#130#21#11'@'#184#2#132#6'{'#187 -+ +#31#12'a0?LC'#248'H'#14#183#128#16#28#14#130'p'#162#174'o{h'#15'JM'#4#200'''' -+ +#181#137#210#178#208'&'#249#4#132#251#140':.'#2#29#7#169#137#159#3#6#132#251 -+ +'d'#21#16'n'#162'brW'#8#147'C'#211'g4'#136#154#235#149#0#225#195' '#244'..fe' -+ +#196'e'#226#228#172#28'>'#223'IC'#215#158#133#252'K'#206'i'#183'^'#3#16#166 -+ +#223#194'T'#191#219#250#237#182#210#189'D'#135#249'|>'#254#208#244'am'#226'/' -+ +#243#154#235#227#23#130#16#28'v'#133#144#172#6'q'#217'>'#167#170#187#155#193 -+ +#192#30'~7'#151#30#235#26#195#170#196#217#142#207'\+'#166'n]'#132#9#209#172#9 -+ +'2 '#236#7'!'#211'&'#172#166'/'#155#193'd'#207#205#142#184#248'&'#232#13#140 -+ +#221')"'#243#173' '#189#178#180#162#6#135#18#150'Jx8'#209'\'#195'^/'#222#218 -+ +#147#6#179'k'#165#148#148#14#16#150#245'm'#2'i'#250#234#140#137'~'#208#245'{' -+ +#21#185'K'#249#177#132#130'<'#149#164'e'#10's'#174'y'#140'H'#215#235#149#230 -+ +#129#205''#167'J)'#152#190#2#194#188#1'F'#210'b'#20#251'l'#146'xG!'#180'F' -+ +#164'|BA'#159'\'#146#150#2#0'a8'#26#211#219#169':'#30'B'#206#22#221'g'#152 -+ +#189#175#200#29#7#171#243#134#149#18#211'y'#180't'#128#176'f'#136#207#242#150 -+ +';'#170#209#215#183#156#156#7#161#212#253#187#165#24#0#161#167#10#13#168'lno' -+ +'P'#245'FF'#147#231#182#149#194#191#228#226#16#210#24#194#16'9'#165#25#204 -+ +#154'7'#230#13#17'/'#14#19#9'q'#246'<9r'#171#25#142#202#207'Hq9"'#176#205 -+ +#160#192#161'>'#207#173'*%^:'#204#11'[A('#206'%4fP'#30#149#229'N*'#132#238'Y' -+ +'J'#200'j'#245'c'#230#132'z''G'#129'wQ3?'#151#191#219#176'RR.'#28#2#132'TE ' -+ +#231#252#182'kB9'#245'O'#186#10#142#136')'#211#244#244#218#132#2#8'3'#134#190 -+ +'u'#195#209#228#192'26'#22'-'#152#139'&}'#170'=*E[:@Xo'#6#239#225'_'#214#228 -+ +#164#192#190'e'#245#244#25#9#197'!'#236#225#152'Ib'#25#12#173#201#27'6k'#150 -+ +'F'#178#242#211#169'R'#18#165'{'#253#221'!TN`'#252#187'z'#15#184#178#245#200 -+ +'hiZF'#24#255'"6'#222'kb'#9#195#225#156#240#12#235''''#140'Bh'#18#150#167'xN' -+ +#216#169'R'#210#165'{'#249#228#176#19#132#201#133#236#220'eCy'#144')'#204#211 -+ +'\/'#145#3'a'#204'C'#211'd'#249'+'#244#13#10#207'h'#23#190'#'#16#182#242#142 -+ +'v'#170#148't'#233#0'as'#2#141#209'n'#158#208#236#171'PV-'#251'$'#159#16'I' -+ +#203#134#197#187'sX'#192'jv'#204'0Ce'#206#13#150#181#129'[c?'#155'WJq'#233#0 -+ +'a'#21#132'k'#151'Y'#23#138#166#174#128#154'o'#231#165#208'T'#231#180'd[|)' -+ +#135'%'#16#238#174',2'#137#141#221#11#150#177'u~'#214#133#240#149'wi'#189#27 -+ +#194']'#138#249#6#8'_k'#12#27'@H'#153#215#232#174'P'#230#211'CC'#138#146#2'B' -+ +'p'#184#28#132#204#238#224#237' '#252#186'I'#191#17'K'#215'o'#16#29#178'Ak7J' -+ +'@'#248#2#5#209#247#224#239#247#178'Q'#227#198#194#160#134#0#180#232#162'^'#8 -+ +#225#203'n'#149#164'7k'#231'g'#11')u'#217'h'#29#238#229#173#190#143#206'i' -+ +#249#138'y'#17#135'/'#135'p'#196#13#135#202#249''' '#4#132'Z'#189'x.'#153'c' -+ +#171#217#160#12'aY'#155'H'#190#161'r@'#218#167'-'#210#14'M'#243'='#183#187'R' -+ +#185'Rh7'#151'L'#146#19#202'_9'#236#170#129'n'#13#145'6i'#157#175#224'P'#11 -+ +#225'b'#11#169#225'v'#173#218#137#27'Y'#134#157'"'#29#205'x'#13'tK'#238'.' -+ +#208#234#177'^'#222'q'#203'2'#237#165#139#228'n'#204#194'}x'#191#176''''#1 -+ +#132#199'$'#8'{&w'#191'w'#131'C}'#128'p)'#8#139#207#239'h <'#191#205'@h'#219 -+ +#198#148#30'Z*)'#247#6'l*'#129'p'#131'hK'#143'7'#134#25#16'. '#5#161#19'3NE\' -+ +'qO'#252#131#14'G4'#148'x'#253#233'$m'#0#213#214'I'#203#16'.'#23'#'#244#217 -+ +#28#146'r'#183''#184'Om'#158#25#20#178#204'>'#163#29#190'*C'#161#164#14#28 -+ +#230#166#27#129#144#148'!'#161#202#146#22' \1F( d'#156#162'3V&'#148#179#23 -+ +#253#249'w'#225#244#237'u'#7#247#143'LR'#196'D4'#209#8#159#142'='#141#159#253 -+ +'7!'#231'e'#193#17#211'Q'#152'#'#16'fG@'#5#135'# dW&'#30#13#225#247#178'Q' -+ +#250#21'V'#25#208'-'#254#254#31#132#170'#'#234#241#16#247#249'IG'#166#205#249 -+ +'J'#158#143#192'S9,'#129'p'#246#132#176#24#194#220'!\l]&7'#24#153#254#144#254 -+ +#25#235#161' '#202'`n'#210'I'#8'U'#17'P'#225')'#29#1#225'J}O'''#8#149#129'-' -+ +#218#146' '#208'E'#226'M/'#173#146#166#212#164'z'#209#216#132#143'4'#134#27 -+ +'AX'#239#152#209#184'R'#197#240#152#223#155'e'#130'0a'#7#171'H}XN'#147#12#193 -+ +'R1'#28#229#131#193#164#234#28#28#174#1'a$'#182#239#196'-Oe'#183';'#233#231 -+ +'W'#204'k}'#8#137#131'Pe'#147#221#236'Q'#210#202'5'#28#14'07'#22#230#140#248 -+ ,#134']'#240#154#1#225#147'8'#220#11#194#178#197'z'#165'%d'#28#128#228'BH'#220 -+ +#11#131'+q'#148#3#227#172#210#213'{G'#253'0p'#162#134#211#17'Pa'#12'G@('#16 -+ +#184#12#135#185#211#173#170'9!'#7#161#210#211#163#197',u'#239'g'#195#164#203 -+ +#230#132#11#181#252'''q'#152#13#225#177#196#241'%'#253#6#238#202#11'e'#4'r!' -+ +#131#149#219'V4a9'#141#187'@_P'#150#154#164#203'&'#168#240#148#246#135#144 -+ +#249#240'A'#199#151#148#179'Ps8'#241#243#229'P'#165#213#215#208#215'|'#191'l' -+ +#239#232#238#205#247#185#16'>'#248#232'`'#174'~.?@'#249#129#195'%'#199'W'#207 -+ +#129#240#1#28'f@x'#188#17#194#236#6#209#231'n'#15'@'#216'E'#231#235'B'#136 -+ +#251'S'#199'w'#204#195'uN'#15#211#249#222#209#168#1#225#10#28#2#194'7'#15'J)' -+ +'\'#18#2#132#250#134'|4'#138#206'6\'#225'O'#171#224#189'o(b!'#132'('#27'2'#9 -+ +#16#210#202#13#232#129'u'#252#16#8'cf'#144#224#149#249'_'#190#241'/2'#184':' -+ +#172#0'RG'#20#135#25#173#231#153#149#185')'#135#12#132#250'.'#255'u'#150#207 -+ +#221'jBBh6r'#175'_c!'#164'+87'#141#239#237#30#11#225#142#28#166'!'#4#129#250 -+ +'9!'#3#161'a '#252'>'#6#8#1'!'#11#161#222#253#176#152#242#199'otd'#214#241 -+ +#217#191#135''#246#6#170'4'#167#3'1'#224'p9'#8#183#29#139#202#219')'#251#209 -+ +'xFI<'#3#180'I'#219#217#194#177'(Y'#198#144#0#225#235'9t '#220'S'#225#201#147 -+ +'M'#253','#225#181'q'#252'+<'#131#194#214#242'y:'''#133'b'#193#225'X'#8'k.<Y' -+ +#195#12#230#214#133#230#160'@'#242#212#130#230''''#12#145#248'S'#189#251'''!' -+ +#238' '#251'y'#205#169#17'R'#159#201#216#152#195#237'!'#164'='#206'L'#20#140 -+ +'9'#179#14'75'#128#208'Db7'#253#253#22'k'#244'1K'#174#177#240#154#193'9)'#158 -+ +#196#160't '#132#242#218#224'n.'#153#187'@'#201#195#233#177#136#215#197#150 -+ +#214'9'#131'ONw'#236#135'o'#186'o'#190'HYB'#161'S'#200'=}'#31#158#172'_:'#192 -+ +#225'{8'#164#253#247#169#201#129#137'bsEa'#240#169#137#162#155#136#194#196 -+ +#185'j'#156','#5'fP'#14#9#19#235'q'#244#16'z'#239'$'#241'I8if@'#248','#157'{' -+ +'Xj'#160#138#253'5k'#180'fC'#24#250'incxBh3'#239#241#31#235')'#216#0'j='#134 -+ +#163#128#16#16#182#31#169#14#134#240#183#132#232'f'#136#245#214#216#193#246 -+ +#207#215#10#166'L'#142'W'#159#204#179#23#242#240#249#16#246#179#236#255#200 -+ +#249'|>g_{'#255'B'#129#188#1'B9'#239#2'T'#225#247'(3'#132#190#12#225#249#235 -+ +#207'0_u'#194#205'`'#201#168'Ct''.'#171#9#231'~'#20#164'e'#249#221'b'#211#224 -+ +#167'A'#216#143#195'S<'#8'?'#146#5#225#253#252#142'r6'#193'X'#17#156#11'^' -+ +#152'%'#1#254'a'#246'yef'#206#159#143'%'#231'gw'#14'C~'#216#12#200'b9'#140 -+ +#229'YSdz'#186't'#135#240#159#20'C'#232#219#130'm'#7#156#5'aH'#235#189#163 -+ +#146#225#189'|3'#222#160'T'#147#177'X'#222#148#197#215#199';}'#184'wt'#192'\' -+ +'.6'#10'-'#164#159#246#219#168#173'YL'#207']'#130#215'_E'#150#134#144'R'#29 -+ +'G'#156#207#240#181#250#160#227#250'x'#167'O^'''#220#170'!['#235#129#180'iT' -+ +#178#129';w'#199#140#230#246'*'#205#195#238'c'#223#221#167#194#27'4k*'#172'g' -+ +'5'#25't'#244#225';f6'#131#144#195#143#247#239'A'#218#168#252#171#216'{'#11 -+ +#248'{|'#138#144#188#134#146'q'#144#28#178#216'TE'#152#167'x'#138'y'#215'=' -+ +#215#131'0'#253#129#194'!'#16'_l_'#241#253#251#249'K'#210#19#238'y'#245#188 -+ +#15#133'''!'#16#136'c'#9#147#140#133'hy'#255'UBxz'#230'!'#16'H'#249'p4'#28'y' -+ +#26#235#148#233#180'%8'#8#4#2#129'@ '#16#8#4#2#129'@'#246#155#142#199'f'#228 -+ +#247'ZP8kON'#211#237'u$'#214#129'6'#210#139#16'.j'#217#142'r'#246#187#158#143 -+ +'~'#138#231#163#242#195#134#205#163'r'#241'P'#248#176'S'#219'('#219#168#173 -+ +'l'#228#222#231'mr,8'#160#239'4Be'#9#16#218#219#193';A(,j'#9#167'C'#188#15 -+ +#133':'#235#221'8'#132'<+y'#179#247#223#179#253']'#143'<{'#203#134'r'#158'Y' -+ +#229#143#215#179'f'#169#147'm'#9'B#o'#174#231'6'#7'R'#244#175#234#151#231'P' -+ +#221'a[/'#200'v'#219'A'#135#156#159'd3'#141'u'#219#181'Ga'#154#230'9|>f'#244 -+ +'z'#183#13#13#132'B'#219'X'#2'B='#168#201#199#218#182#143#182#7#198#198'C' -+ +#168#223#128#146#149#231#174#16#214#232#147#157#11#196#230'>m3'#172#236';dKh' -+ +#220'U'#208#246#16'B '#16#8#4#2#129'@ ='#229'?'#252#145'b'#204'1mW'#0#0#0#0#0 -+ +'IEND'#174'B`'#130#7'Stretch'#9#11'Transparent'#8#0#0#6'TLabel'#6'Label2'#6 -+ +'Height'#2#17#3'Top'#3#153#0#5'Width'#3'~'#1#9'Alignment'#7#8'taCenter'#7'An' -+ +'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#8#7'Caption'#6#25'Ver' -+ +'sion 3.0 June 10 2008'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow' -+ +#11'ParentColor'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#6'TLab' -+ +'el'#6'Label3'#6'Height'#2'B'#3'Top'#3#182#0#5'Width'#3'}'#1#9'Alignment'#7#8 -+ +'taCenter'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#213'Co' -+ +'pyright 2008 Patrick Chevalley Tous droits reserv'#195#169'.'#10'http://w' -+ +'ww.astrosurf.com/astropc'#10'This program is free software; you can redistr' -+ +'ibute it '#10'and/or modify it under the terms of the '#10'GNU General Publ' -+ +'ic License'#5'Color'#7#7'clBlack'#10'Font.Color'#7#8'clYellow'#11'ParentCol' -+ +'or'#8#11'Transparent'#8#7'OnClick'#7#11'Image1Click'#0#0#0#6'TTimer'#6'Time' -+ +'r1'#7'Enabled'#8#8'Interval'#3#208#7#7'OnTimer'#7#11'Timer1Timer'#4'left'#2 -+ +#8#3'top'#3#152#0#0#0#0 -+]); -diff -ur skychart_3.2/varobs/splashunit.pas skychart_3.2_up/varobs/splashunit.pas ---- skychart_3.2/varobs/splashunit.pas 2008-06-12 16:22:26.000000000 +0200 -+++ skychart_3.2_up/varobs/splashunit.pas 2011-03-09 15:18:23.219263874 +0100 -@@ -1,79 +1,79 @@ --unit splashunit; -- --{$MODE Delphi} -- --{ --Copyright (C) 2008 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- --interface -- --uses -- LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -- StdCtrls, ExtCtrls, Buttons, LResources, u_param; -- --type -- -- { Tsplash } -- -- Tsplash = class(TForm) -- Image1: TImage; -- Label2: TLabel; -- Label3: TLabel; -- Panel1: TPanel; -- Timer1: TTimer; -- BitBtn1: TBitBtn; -- procedure Timer1Timer(Sender: TObject); -- procedure FormShow(Sender: TObject); -- procedure Image1Click(Sender: TObject); -- private -- { Dclarations prives } -- public -- { Dclarations publiques } -- SplashTimer: Boolean; -- end; -- --var -- splash: Tsplash; -- --implementation -- -- --procedure Tsplash.Timer1Timer(Sender: TObject); --begin -- Timer1.enabled:=false; -- splash.free; --end; -- --procedure Tsplash.FormShow(Sender: TObject); --begin -- if SplashTimer then Timer1.enabled:=true; --end; -- -- --procedure Tsplash.Image1Click(Sender: TObject); --begin --modalresult:=mrCancel; --end; -- --initialization -- {$i splashunit.lrs} -- --end. -+unit splashunit; -+ -+{$MODE Delphi} -+ -+{ -+Copyright (C) 2008 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+interface -+ -+uses -+ LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, -+ StdCtrls, ExtCtrls, Buttons, LResources, u_param; -+ -+type -+ -+ { Tsplash } -+ -+ Tsplash = class(TForm) -+ Image1: TImage; -+ Label2: TLabel; -+ Label3: TLabel; -+ Panel1: TPanel; -+ Timer1: TTimer; -+ BitBtn1: TBitBtn; -+ procedure Timer1Timer(Sender: TObject); -+ procedure FormShow(Sender: TObject); -+ procedure Image1Click(Sender: TObject); -+ private -+ { Dclarations prives } -+ public -+ { Dclarations publiques } -+ SplashTimer: Boolean; -+ end; -+ -+var -+ splash: Tsplash; -+ -+implementation -+ -+ -+procedure Tsplash.Timer1Timer(Sender: TObject); -+begin -+ Timer1.enabled:=false; -+ splash.free; -+end; -+ -+procedure Tsplash.FormShow(Sender: TObject); -+begin -+ if SplashTimer then Timer1.enabled:=true; -+end; -+ -+ -+procedure Tsplash.Image1Click(Sender: TObject); -+begin -+modalresult:=mrCancel; -+end; -+ -+initialization -+ {$i splashunit.lrs} -+ -+end. -diff -ur skychart_3.2/varobs/u_param.pas skychart_3.2_up/varobs/u_param.pas ---- skychart_3.2/varobs/u_param.pas 2009-01-11 10:36:02.000000000 +0100 -+++ skychart_3.2_up/varobs/u_param.pas 2011-03-09 15:18:23.220263750 +0100 -@@ -1,98 +1,98 @@ --unit u_param; --{ --Copyright (C) 2008 Patrick Chevalley -- --http://www.astrosurf.com/astropc --pch@freesurf.ch -- --This program is free software; you can redistribute it and/or --modify it under the terms of the GNU General Public License --as published by the Free Software Foundation; either version 2 --of the License, or (at your option) any later version. -- --This program is distributed in the hope that it will be useful, --but WITHOUT ANY WARRANTY; without even the implied warranty of --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --GNU General Public License for more details. -- --You should have received a copy of the GNU General Public License --along with this program; if not, write to the Free Software --Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --} -- --{$mode objfpc}{$H+} -- --interface -- --uses -- Classes, SysUtils; -- --const --software_version='Skychart VarObs module 3.0 beta http://ap-i.net/skychart'; --bl=' '; --blank=' '; --abrcons=' And Ant Aps Aqr Aql Ara Ari Aur Boo Cae Cam Cnc CVn CMa CMi Cap Car Cas Cen Cep Cet Cha Cir Col Com CrA CrB Crv Crt Cru' -- +' Cyg Del Dor Dra Equ Eri For Gem Gru Her Hor Hya Hyi Ind Lac Leo LMi Lep Lib Lup Lyn Lyr Men Mic Mon Mus Nor Oct Oph Ori' -- +' Pav Peg Per Phe Pic Psc PsA Pup Pyx Ret Sge Sgr Sco Scl Sct Ser Ser Sex Tau Tel Tri TrA Tuc UMa UMi Vel Vir Vol Vul '; -- --greek : array[1..2,1..24]of string=(('alpha','beta','gamma','delta','epsilon','zeta','eta','theta','iota','kappa','lambda','mu','nu','zi','omicron','pi','rho','sigma','tau','upsilon','phi','chi','psi','omega'), -- ('alp','bet','gam','del','eps','zet','eta','the','iot','kap','lam','mu','nu','zi','omi','pi','rho','sig','tau','ups','phi','chi','psi','ome')); -- --pulslist=' ACYG BCEP BCEPS BLBOO CEP CEP(B) CW CWA CWB DCEP DCEPS DSCT DSCTC L LB LC M PVTEL RR RR(B) RRAB RRC RV RVA RVB SR SRA SRB SRC SRD SXPHE ZZ ZZA ZZB ZZO '; --rotlist=' ACV ACVO BY ELL FKCOM PSR SXARI '; --ecllist=' E EA EB EW GS PN RS WD WR AR D DM DS DW K KE KW SD '; -- --aavsochartscale: array[0..13] of string=('A','AR','B','BR','C','CR','D','DR','E','ER','F','FR','G','GR'); --aavsochartfov: array[0..13] of string=('900','900','180','180','120','120','60','60','30','30','15','15','7.5','7.5'); --aavsochartmag: array[0..13] of string=('9','9','11','11','12','12','14.5','14.5','16.5','16.5','18.5','18.5','20.5','20.5'); --aavsochartnorth: array[0..13] of string=('down','up','down','up','down','up','down','up','down','up','down','up','down','up'); --aavsocharteast: array[0..1] of string=('right','left'); -- --skychartopt = '--unique'; -- --{$ifdef linux} -- DefaultPrivateDir='~/.skychart/varobs'; -- Defaultconfigfile='~/.skychart/varobs.ini'; -- SharedDir='../share/skychart'; -- DefaultSkychart='skychart'; -- DefaultLpvb='varobs_lpv_bulletin'; -- DefaultOpenFileCMD='xdg-open'; --{$endif} --{$ifdef darwin} -- DefaultPrivateDir='~/.skychart/varobs'; -- Defaultconfigfile='~/.skychart/varobs.ini'; -- SharedDir='/usr/share/skychart'; -- DefaultSkychart='skychart'; -- DefaultLpvb='varobs_lpv_bulletin'; -- DefaultOpenFileCMD='open'; --{$endif} --{$ifdef mswindows} -- DefaultPrivateDir='Skychart\VarObs'; -- Defaultconfigfile='varobs.ini'; -- SharedDir='.\'; -- DefaultSkychart='skychart.exe'; -- DefaultLpvb='varobs_lpv_bulletin.exe'; -- DefaultOpenFileCMD=''; --{$endif} -- -- CR = #$0d; -- LF = #$0a; -- CRLF = CR + LF; -- connectdelay=15E-5; // 13 sec. delay -- cmddelay=5E-5; // 4 sec. delay -- -- --var -- datim,datact,defaavsocharturl,defqlurl,defafoevurl,defwebobsurl,aavsourl,varobsurl,pcobscaption : string; -- lockdate,locktime : boolean; -- lockselect : boolean; -- started : boolean; -- AppDir,PrivateDir,ConstDir,ConfigFile,planname,skychart,lpvb : string; -- jdact,TZ : double; -- CurrentRow: integer; -- param : Tstringlist; -- --implementation -- --end. -- -+unit u_param; -+{ -+Copyright (C) 2008 Patrick Chevalley -+ -+http://www.astrosurf.com/astropc -+pch@freesurf.ch -+ -+This program is free software; you can redistribute it and/or -+modify it under the terms of the GNU General Public License -+as published by the Free Software Foundation; either version 2 -+of the License, or (at your option) any later version. -+ -+This program is distributed in the hope that it will be useful, -+but WITHOUT ANY WARRANTY; without even the implied warranty of -+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+GNU General Public License for more details. -+ -+You should have received a copy of the GNU General Public License -+along with this program; if not, write to the Free Software -+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -+} -+ -+{$mode objfpc}{$H+} -+ -+interface -+ -+uses -+ Classes, SysUtils; -+ -+const -+software_version='Skychart VarObs module 3.0 beta http://ap-i.net/skychart'; -+bl=' '; -+blank=' '; -+abrcons=' And Ant Aps Aqr Aql Ara Ari Aur Boo Cae Cam Cnc CVn CMa CMi Cap Car Cas Cen Cep Cet Cha Cir Col Com CrA CrB Crv Crt Cru' -+ +' Cyg Del Dor Dra Equ Eri For Gem Gru Her Hor Hya Hyi Ind Lac Leo LMi Lep Lib Lup Lyn Lyr Men Mic Mon Mus Nor Oct Oph Ori' -+ +' Pav Peg Per Phe Pic Psc PsA Pup Pyx Ret Sge Sgr Sco Scl Sct Ser Ser Sex Tau Tel Tri TrA Tuc UMa UMi Vel Vir Vol Vul '; -+ -+greek : array[1..2,1..24]of string=(('alpha','beta','gamma','delta','epsilon','zeta','eta','theta','iota','kappa','lambda','mu','nu','zi','omicron','pi','rho','sigma','tau','upsilon','phi','chi','psi','omega'), -+ ('alp','bet','gam','del','eps','zet','eta','the','iot','kap','lam','mu','nu','zi','omi','pi','rho','sig','tau','ups','phi','chi','psi','ome')); -+ -+pulslist=' ACYG BCEP BCEPS BLBOO CEP CEP(B) CW CWA CWB DCEP DCEPS DSCT DSCTC L LB LC M PVTEL RR RR(B) RRAB RRC RV RVA RVB SR SRA SRB SRC SRD SXPHE ZZ ZZA ZZB ZZO '; -+rotlist=' ACV ACVO BY ELL FKCOM PSR SXARI '; -+ecllist=' E EA EB EW GS PN RS WD WR AR D DM DS DW K KE KW SD '; -+ -+aavsochartscale: array[0..13] of string=('A','AR','B','BR','C','CR','D','DR','E','ER','F','FR','G','GR'); -+aavsochartfov: array[0..13] of string=('900','900','180','180','120','120','60','60','30','30','15','15','7.5','7.5'); -+aavsochartmag: array[0..13] of string=('9','9','11','11','12','12','14.5','14.5','16.5','16.5','18.5','18.5','20.5','20.5'); -+aavsochartnorth: array[0..13] of string=('down','up','down','up','down','up','down','up','down','up','down','up','down','up'); -+aavsocharteast: array[0..1] of string=('right','left'); -+ -+skychartopt = '--unique'; -+ -+{$ifdef linux} -+ DefaultPrivateDir='~/.skychart/varobs'; -+ Defaultconfigfile='~/.skychart/varobs.ini'; -+ SharedDir='../share/skychart'; -+ DefaultSkychart='skychart'; -+ DefaultLpvb='varobs_lpv_bulletin'; -+ DefaultOpenFileCMD='xdg-open'; -+{$endif} -+{$ifdef darwin} -+ DefaultPrivateDir='~/.skychart/varobs'; -+ Defaultconfigfile='~/.skychart/varobs.ini'; -+ SharedDir='/usr/share/skychart'; -+ DefaultSkychart='skychart'; -+ DefaultLpvb='varobs_lpv_bulletin'; -+ DefaultOpenFileCMD='open'; -+{$endif} -+{$ifdef mswindows} -+ DefaultPrivateDir='Skychart\VarObs'; -+ Defaultconfigfile='varobs.ini'; -+ SharedDir='.\'; -+ DefaultSkychart='skychart.exe'; -+ DefaultLpvb='varobs_lpv_bulletin.exe'; -+ DefaultOpenFileCMD=''; -+{$endif} -+ -+ CR = #$0d; -+ LF = #$0a; -+ CRLF = CR + LF; -+ connectdelay=15E-5; // 13 sec. delay -+ cmddelay=5E-5; // 4 sec. delay -+ -+ -+var -+ datim,datact,defaavsocharturl,defqlurl,defafoevurl,defwebobsurl,aavsourl,varobsurl,pcobscaption : string; -+ lockdate,locktime : boolean; -+ lockselect : boolean; -+ started : boolean; -+ AppDir,PrivateDir,ConstDir,ConfigFile,planname,skychart,lpvb : string; -+ jdact,TZ : double; -+ CurrentRow: integer; -+ param : Tstringlist; -+ -+implementation -+ -+end. -+ -diff -ur skychart_3.2/varobs/varobs.lpi skychart_3.2_up/varobs/varobs.lpi ---- skychart_3.2/varobs/varobs.lpi 2010-09-17 20:18:07.000000000 +0200 -+++ skychart_3.2_up/varobs/varobs.lpi 2011-03-09 15:18:57.102097651 +0100 -@@ -1,20 +1,18 @@ - <?xml version="1.0"?> - <CONFIG> - <ProjectOptions> -- <Version Value="9"/> -+ <Version Value="7"/> - <General> - <Flags> - <LRSInOutputDirectory Value="False"/> - </Flags> - <SessionStorage Value="InProjectDir"/> - <MainUnit Value="0"/> -+ <TargetFileExt Value=""/> - <Title Value="varobs"/> -- <UseXPManifest Value="True"/> - <Icon Value="0"/> -+ <UseXPManifest Value="True"/> - </General> -- <VersionInfo> -- <StringTable ProductVersion=""/> -- </VersionInfo> - <PublishOptions> - <Version Value="2"/> - <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/> -@@ -112,14 +110,13 @@ - </Units> - </ProjectOptions> - <CompilerOptions> -- <Version Value="9"/> -+ <Version Value="8"/> - <SearchPaths> - <UnitOutputDirectory Value="units/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/> - </SearchPaths> - <Parsing> - <SyntaxOptions> - <CStyleOperator Value="False"/> -- <UseAnsiStrings Value="False"/> - </SyntaxOptions> - </Parsing> - <CodeGeneration> -diff -ur skychart_3.2/varobs/varobs_lpv_bulletin.rc skychart_3.2_up/varobs/varobs_lpv_bulletin.rc ---- skychart_3.2/varobs/varobs_lpv_bulletin.rc 2010-01-16 20:16:04.000000000 +0100 -+++ skychart_3.2_up/varobs/varobs_lpv_bulletin.rc 2011-03-09 15:18:23.223263381 +0100 -@@ -1,6 +1,6 @@ --#define RT_MANIFEST 24 --#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 --#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 --#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 -- -+#define RT_MANIFEST 24 -+#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 -+#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2 -+#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3 -+ - CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "varobs_lpv_bulletin.manifest" diff --git a/skychart.spec b/skychart.spec index 64d1d76..da4f012 100644 --- a/skychart.spec +++ b/skychart.spec @@ -43,7 +43,6 @@ atlas more complete than a conventional planetarium. %patch2 -p1 -b .strip %patch3 -p1 find skychart -type f -print0 |xargs -0 chmod 644 -#%patch4 -p1 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} From b276d36674a897dba49b211dee46d6c4061f6d32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz> Date: Tue, 3 May 2011 11:55:12 +0200 Subject: [PATCH 029/162] no lazarus on s390(x) --- skychart.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index da4f012..5a1d63d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -13,7 +13,8 @@ Patch2: skychart-3.0.1.6-strip.patch Patch3: skychart-wgetdoc.patch # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 -ExcludeArch: ppc64 +# no lazarus on s390(x) +ExcludeArch: ppc64 s390 s390x BuildRequires: lazarus >= 0.9.30 BuildRequires: ImageMagick @@ -101,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5 +- no lazarus on s390(x) + * Thu Apr 28 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-4 - Rebuilding with lazarus 0.9.30 From 13d147b7543d2d958e3c6822560cabcbf695288d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Fri, 13 Jan 2012 22:01:18 -0600 Subject: [PATCH 030/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 5a1d63d..2d8a2dc 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5 - no lazarus on s390(x) From 115af301760cff228ab661e9f0fb51927aa0e652 Mon Sep 17 00:00:00 2001 From: Sergio Pascual <sergiopr@fis.ucm.es> Date: Fri, 20 Jan 2012 00:32:08 +0100 Subject: [PATCH 031/162] New upstream source New source with ephemeris --- .gitignore | 1 + skychart-wgetdata.patch | 34 +++++++++++++++++++++ skychart.spec | 67 ++++++++++++++++++++++------------------- sources | 2 +- 4 files changed, 72 insertions(+), 32 deletions(-) create mode 100644 skychart-wgetdata.patch diff --git a/.gitignore b/.gitignore index 9faa936..8f5c510 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ skychart-3.0.1.6.tar.gz /skychart_3.2-source.tgz +/data_jpleph.tgz diff --git a/skychart-wgetdata.patch b/skychart-wgetdata.patch new file mode 100644 index 0000000..4bb7202 --- /dev/null +++ b/skychart-wgetdata.patch @@ -0,0 +1,34 @@ +--- a/tools/install_data.sh 2010-12-28 22:37:10.000000000 +0100 ++++ b/tools/install_data.sh 2011-12-20 20:47:00.195311126 +0100 +@@ -4,9 +4,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=../BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://download.origo.ethz.ch/skychart/2443/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://download.origo.ethz.ch/skychart/2443/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } + +@@ -42,12 +42,12 @@ + install -v -m 644 $f $destdir/share/skychart/$f + done + +-if [ ! -d doc/wiki_doc ]; then +- cd wiki_doc +- ./getdoc.sh +- ./copydoc.sh +- cd .. +-fi ++#if [ ! -d doc/wiki_doc ]; then ++# cd wiki_doc ++# ./getdoc.sh ++# ./copydoc.sh ++# cd .. ++#fi + + for f in $(find doc/wiki_doc/|grep -v .svn) + do diff --git a/skychart.spec b/skychart.spec index 5a1d63d..6629d48 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,28 +1,26 @@ -Name: skychart -Version: 3.2 -Release: 5%{?dist} -Summary: Planetarium software for the advanced amateur astronomer +Name: skychart +Version: 3.4 +Release: 1%{?dist} +Summary: Planetarium software for the advanced amateur astronomer -Group: Amusements/Graphics -License: GPLv2+ -URL: https://sourceforge.net/projects/skychart/ -Source0: %{name}_%{version}-source.tgz -Source1: skychart.desktop -Patch1: skychart-3.0.1.6-desktop.patch -Patch2: skychart-3.0.1.6-strip.patch -Patch3: skychart-wgetdoc.patch +Group: Amusements/Graphics +License: GPLv2+ +URL: http://www.ap-i.net/skychart/ +Source0: http://download.origo.ethz.ch/skychart/3239/skychart-%{version}-source.tgz +Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz +Patch1: skychart-3.4-desktop.patch +Patch2: skychart-3.4-strip.patch +Patch3: skychart-wgetdata.patch +#Patch3: skychart-wgetdoc.patch # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 # no lazarus on s390(x) ExcludeArch: ppc64 s390 s390x BuildRequires: lazarus >= 0.9.30 -BuildRequires: ImageMagick -BuildRequires: desktop-file-utils -BuildRequires: dos2unix -BuildRequires: gtk2-devel -Requires: xdg-utils -Requires: tzdata +BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel +BuildRequires: prelink +Requires: xdg-utils tzdata %description This program enables you to draw sky charts, making use of the data in 16 @@ -37,12 +35,13 @@ of labels and coordinate grids, the superposition of pictures, the condition of visibility and more. All these features make this celestial atlas more complete than a conventional planetarium. - %prep -%setup -q -n %{name}_%{version} -%patch1 -p1 -b .desktop -%patch2 -p1 -b .strip +%setup -q -n %{name}-%{version}-source +%patch1 -p1 +%patch2 -p1 %patch3 -p1 +cp -p %SOURCE1 BaseData + find skychart -type f -print0 |xargs -0 chmod 644 %build @@ -55,9 +54,17 @@ make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 make # not concurrency-safe # Fix exotic EOL encodings -#dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/common.css -#dos2unix -qk tools/doc/html_doc/en/feature_class_fichiers/custom.css -#dos2unix -qk tools/doc/releasenotes*.txt +dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css +dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css +dos2unix -q -k tools/doc/releasenotes*.txt + +# Remove executable-stack to fix rpmlint warnings due to old Freepascal compiler +# See upstream bug at http://www.ap-i.net/mantis/view.php?id=926 +# See Fedora bug at https://bugzilla.redhat.com/show_bug.cgi?id=771057 +execstack -c varobs/varobs +execstack -c varobs/varobs_lpv_bulletin +execstack -c skychart/cdc +execstack -c skychart/cdcicon %install @@ -76,12 +83,7 @@ chmod +x %{buildroot}%{_libdir}/* desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %doc skychart/gpl.txt #%doc %{_datadir}/skychart/doc %{_bindir}/* @@ -97,11 +99,14 @@ rm -rf %{buildroot} %post -p /sbin/ldconfig - %postun -p /sbin/ldconfig %changelog +* Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.4-1 +- New upstream source +- New source with ephemeris + * Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5 - no lazarus on s390(x) diff --git a/sources b/sources index d0c1863..9e38e27 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e215374ee11838bb686bb5c50625e7ee skychart_3.2-source.tgz +f945b649c218b77cd6fab4fb23c0a6ab data_jpleph.tgz From 57a5f6c298b0ebcd54af6b54d045bfaf95c1510a Mon Sep 17 00:00:00 2001 From: Sergio Pascual <sergiopr@fis.ucm.es> Date: Sat, 21 Jan 2012 10:12:26 +0100 Subject: [PATCH 032/162] Added missing source tarball Renamed patches --- .gitignore | 1 + skychart-3.0.1.6-desktop.patch | 31 ------------------- skychart-desktop.patch | 17 ++++++++++ ....0.1.6-strip.patch => skychart-strip.patch | 0 skychart.desktop | 10 ------ skychart.spec | 11 ++++--- sources | 1 + 7 files changed, 26 insertions(+), 45 deletions(-) delete mode 100644 skychart-3.0.1.6-desktop.patch create mode 100644 skychart-desktop.patch rename skychart-3.0.1.6-strip.patch => skychart-strip.patch (100%) delete mode 100644 skychart.desktop diff --git a/.gitignore b/.gitignore index 8f5c510..e68ba01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ skychart-3.0.1.6.tar.gz /skychart_3.2-source.tgz /data_jpleph.tgz +/skychart-3.4-source.tgz diff --git a/skychart-3.0.1.6-desktop.patch b/skychart-3.0.1.6-desktop.patch deleted file mode 100644 index 8e8a676..0000000 --- a/skychart-3.0.1.6-desktop.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 3e60f9a650995bb464194a900e0a074e6d718dae Mon Sep 17 00:00:00 2001 -From: Lubomir Rintel <lkundrak@v3.sk> -Date: Sat, 24 Jul 2010 12:25:37 -0400 -Subject: [PATCH] Fix desktop entry - ---- - .../Linux/share/applications/skychart.desktop | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/system_integration/Linux/share/applications/skychart.desktop b/system_integration/Linux/share/applications/skychart.desktop -index 9091f9d..b225266 100644 ---- a/system_integration/Linux/share/applications/skychart.desktop -+++ b/system_integration/Linux/share/applications/skychart.desktop -@@ -2,10 +2,10 @@ - Version=1.0 - Encoding=UTF-8 - Name=Skychart --Comment=Skychart / Cartes du Ciel -+Comment=Planetarium software for the advanced amateur astronomer - Exec=skychart --Icon=../pixmaps/skychart.xpm -+Icon=skychart - Terminal=false - Type=Application --Categories=Education;Science;Astronomy --GenericName[fr_CH]= -+Categories=Education;Science;Astronomy; -+GenericName=SkyChart --- -1.6.5.2 - diff --git a/skychart-desktop.patch b/skychart-desktop.patch new file mode 100644 index 0000000..364854d --- /dev/null +++ b/skychart-desktop.patch @@ -0,0 +1,17 @@ +diff -ur skychart-3.4-source/system_integration/Linux/share/applications/skychart.desktop skychart-3.4-source.desktop/system_integration/Linux/share/applications/skychart.desktop +--- skychart-3.4-source/system_integration/Linux/share/applications/skychart.desktop 2010-11-27 10:58:59.000000000 +0100 ++++ skychart-3.4-source.desktop/system_integration/Linux/share/applications/skychart.desktop 2012-01-21 09:55:00.673279640 +0100 +@@ -2,10 +2,10 @@ + Version=1.0 + Encoding=UTF-8 + Name=Skychart +-Comment=Skychart / Cartes du Ciel ++Comment=Planetarium software for the advanced amateur astronomer + Exec=skychart + Icon=skychart + Terminal=false + Type=Application +-Categories=Astronomy;Education;Application +-GenericName[fr_CH]= ++Categories=Education;Science;Astronomy; ++GenericName=SkyChart diff --git a/skychart-3.0.1.6-strip.patch b/skychart-strip.patch similarity index 100% rename from skychart-3.0.1.6-strip.patch rename to skychart-strip.patch diff --git a/skychart.desktop b/skychart.desktop deleted file mode 100644 index 5528af8..0000000 --- a/skychart.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Application -Name=SkyChart (Cartes du Ciel) -Comment=Planetarium software for the advanced amateur astronomer -GenericName=SkyChart -Exec=skychart %f -Icon=skychart -Categories=Education;Astronomy; -Terminal=false diff --git a/skychart.spec b/skychart.spec index f787199..662926d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -8,10 +8,9 @@ License: GPLv2+ URL: http://www.ap-i.net/skychart/ Source0: http://download.origo.ethz.ch/skychart/3239/skychart-%{version}-source.tgz Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz -Patch1: skychart-3.4-desktop.patch -Patch2: skychart-3.4-strip.patch +Patch1: skychart-desktop.patch +Patch2: skychart-strip.patch Patch3: skychart-wgetdata.patch -#Patch3: skychart-wgetdoc.patch # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 # no lazarus on s390(x) @@ -103,6 +102,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %changelog +* Fri Jan 20 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-2 +- Added missing source tarball +- Renamed patches + * Thu Jan 19 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-1 - New upstream source - New source with ephemeris diff --git a/sources b/sources index 9e38e27..66d340b 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ +18bcc2298384ef45ae576ef012be2ba2 skychart-3.4-source.tgz f945b649c218b77cd6fab4fb23c0a6ab data_jpleph.tgz From cf1c9ee20f82967ee021e63976ddd1c26bdc095d Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 21 Jan 2012 11:44:21 +0100 Subject: [PATCH 033/162] Patch to make it compile with gcc 4.7 --- gcc47.patch | 43 +++++++++++++++++++++++++++++++++++++++++++ skychart.spec | 7 ++++++- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 gcc47.patch diff --git a/gcc47.patch b/gcc47.patch new file mode 100644 index 0000000..e8a08da --- /dev/null +++ b/gcc47.patch @@ -0,0 +1,43 @@ +--- a/skychart/library/getdss/Makefile 2010-02-24 15:50:16.000000000 +0100 ++++ b/skychart/library/getdss/Makefile 2012-01-21 10:03:18.698178924 +0100 +@@ -7,15 +7,15 @@ + LDFLAGS= -Wl,-single_module -dynamiclib -lc -lm -lstdc++ + else + SO_Name = libgetdss.so +-LDFLAGS= -shared -WL,-soname,$(SO_Name) $(arch_flags) ++LDFLAGS= -shared -Wl,-soname,$(SO_Name) $(arch_flags) + endif + ifneq ($(findstring W32,$(OSTYPE)),) + SO_Name = libgetdss.dll +-LDFLAGS= -shared -WL,-soname,$(SO_Name) ++LDFLAGS= -shared -Wl,-soname,$(SO_Name) + endif + ifneq ($(findstring MINGW,$(OSTYPE)),) + SO_Name = libgetdss.dll +-LDFLAGS= -shared -WL,-soname,$(SO_Name) ++LDFLAGS= -shared -Wl,-soname,$(SO_Name) + endif + OBJS = getdss_lib.o dss.o extr_fit.o getpiece.o \ + hdcmprss.o bitinput.o decode.o dodecode.o hinv.o \ + +--- a/skychart/library/plan404/Makefile 2010-02-24 15:50:16.000000000 +0100 ++++ b/skychart/library/plan404/Makefile 2012-01-21 10:11:04.613575094 +0100 +@@ -8,15 +8,15 @@ + LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm + else + SO_Name = libplan404.so +-LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm ++LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm + endif + ifneq ($(findstring W32,$(OSTYPE)),) + SO_Name = libplan404.dll +-LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lm ++LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lm + endif + ifneq ($(findstring MINGW,$(OSTYPE)),) + SO_Name = libplan404.dll +-LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lm ++LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lm + endif + + .PHONY: clean diff --git a/skychart.spec b/skychart.spec index 662926d..f33aabe 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -11,6 +11,7 @@ Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz Patch1: skychart-desktop.patch Patch2: skychart-strip.patch Patch3: skychart-wgetdata.patch +Patch4: gcc47.patch # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 # no lazarus on s390(x) @@ -39,6 +40,7 @@ atlas more complete than a conventional planetarium. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 cp -p %SOURCE1 BaseData find skychart -type f -print0 |xargs -0 chmod 644 @@ -102,6 +104,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %changelog +* Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 +- Patch to make it compile with gcc 4.7 + * Fri Jan 20 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-2 - Added missing source tarball - Renamed patches From 02be837a08a1f89c4031ec532ef04b43a23120fe Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 22 Jan 2012 10:40:29 +0100 Subject: [PATCH 034/162] Fix old FSF address --- skychart.spec | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index f33aabe..56c448f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,6 +1,6 @@ Name: skychart Version: 3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -8,6 +8,8 @@ License: GPLv2+ URL: http://www.ap-i.net/skychart/ Source0: http://download.origo.ethz.ch/skychart/3239/skychart-%{version}-source.tgz Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz +Source2: gpl.txt + Patch1: skychart-desktop.patch Patch2: skychart-strip.patch Patch3: skychart-wgetdata.patch @@ -37,10 +39,24 @@ atlas more complete than a conventional planetarium. %prep %setup -q -n %{name}-%{version}-source + +# Fix old FSF address in license file +# See upstream bug at http://www.ap-i.net/mantis/view.php?id=910 +cp -p %SOURCE2 skychart/ + +# Fix .desktop file +# See upstream bug at http://www.ap-i.net/mantis/view.php?id=911 %patch1 -p1 + %patch2 -p1 + +# Disable wget for documentation and ephemeris data %patch3 -p1 + +# Fix compilation with gcc 4.7 +# See upstream bug at http://www.ap-i.net/mantis/view.php?id=935 %patch4 -p1 + cp -p %SOURCE1 BaseData find skychart -type f -print0 |xargs -0 chmod 644 @@ -104,6 +120,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %changelog +* Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 +- Fix old FSF address in license file + * Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 - Patch to make it compile with gcc 4.7 From b33e42d384a048704be4a6f4a899207dd8e46c4f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 22 Jan 2012 10:42:56 +0100 Subject: [PATCH 035/162] Remove prohibited exe code --- skychart.spec | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/skychart.spec b/skychart.spec index 56c448f..50d994d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -61,6 +61,15 @@ cp -p %SOURCE1 BaseData find skychart -type f -print0 |xargs -0 chmod 644 +# Fix exotic EOL encodings +dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css +dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css +dos2unix -q -k tools/doc/releasenotes*.txt + +# Remove binary files quicksat.exe and IRIDFLAR.EXE +rm -R --force tools/data/quicksat +rm -R --force tools/data/iridflar + %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -70,11 +79,6 @@ make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 make # not concurrency-safe -# Fix exotic EOL encodings -dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css -dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css -dos2unix -q -k tools/doc/releasenotes*.txt - # Remove executable-stack to fix rpmlint warnings due to old Freepascal compiler # See upstream bug at http://www.ap-i.net/mantis/view.php?id=926 # See Fedora bug at https://bugzilla.redhat.com/show_bug.cgi?id=771057 @@ -122,6 +126,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %changelog * Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 - Fix old FSF address in license file +- Remove binary software quicksat.exe and IRIDFLAR.EXE * Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 - Patch to make it compile with gcc 4.7 From ec989554729f07c8cccfea0a52a044335a9e2d9a Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 22 Jan 2012 10:44:46 +0100 Subject: [PATCH 036/162] Excluded ppc architecture from build --- skychart.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index 50d994d..c8299b1 100644 --- a/skychart.spec +++ b/skychart.spec @@ -16,8 +16,8 @@ Patch3: skychart-wgetdata.patch Patch4: gcc47.patch # FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 -# no lazarus on s390(x) -ExcludeArch: ppc64 s390 s390x +# no lazarus on s390(x) and lazarus < 0.9.30 on ppc(64) +ExcludeArch: ppc ppc64 s390 s390x BuildRequires: lazarus >= 0.9.30 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel @@ -127,6 +127,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop * Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 - Fix old FSF address in license file - Remove binary software quicksat.exe and IRIDFLAR.EXE +- Excluded ppc architecture, since lazarus < 0.9.30 * Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 - Patch to make it compile with gcc 4.7 From 591c95d59d8fa688ab7cfe66b7478a646782d51a Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 22 Jan 2012 10:50:41 +0100 Subject: [PATCH 037/162] Removed old patch --- skychart-wgetdoc.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 skychart-wgetdoc.patch diff --git a/skychart-wgetdoc.patch b/skychart-wgetdoc.patch deleted file mode 100644 index 4e4660e..0000000 --- a/skychart-wgetdoc.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -ur skychart_3.2/tools/install_data.sh skychart_3.2.new/tools/install_data.sh ---- skychart_3.2/tools/install_data.sh 2010-08-22 21:00:39.000000000 +0200 -+++ skychart_3.2.new/tools/install_data.sh 2011-02-16 13:14:44.331141668 +0100 -@@ -32,12 +32,12 @@ - install -v -m 644 $f $destdir/share/skychart/$f - done - --if [ ! -d doc/wiki_doc ]; then -- cd wiki_doc -- ./getdoc.sh -- ./copydoc.sh -- cd .. --fi -+#if [ ! -d doc/wiki_doc ]; then -+# cd wiki_doc -+# ./getdoc.sh -+# ./copydoc.sh -+# cd .. -+#fi - - for f in $(find doc/wiki_doc/|grep -v .svn) - do From be6ddea85d06fb97039ea128731ed1f6b53514f5 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 22 Jan 2012 11:11:20 +0100 Subject: [PATCH 038/162] Add wiki documentation as subpackage --- .gitignore | 1 + getdoc.sh | 38 ++++++ gpl.txt | 339 ++++++++++++++++++++++++++++++++++++++++++++++++++ skychart.spec | 28 ++++- sources | 1 + 5 files changed, 405 insertions(+), 2 deletions(-) create mode 100755 getdoc.sh create mode 100644 gpl.txt diff --git a/.gitignore b/.gitignore index e68ba01..269b3b2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ skychart-3.0.1.6.tar.gz /skychart_3.2-source.tgz /data_jpleph.tgz /skychart-3.4-source.tgz +/documentation.tar.gz diff --git a/getdoc.sh b/getdoc.sh new file mode 100755 index 0000000..a3b6c99 --- /dev/null +++ b/getdoc.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +# Clean up old documentation if exist +rm --force documentation.tar.gz +rm -R --force tools + +#Create directory structure +mkdir -p tools/doc/wiki_doc +mkdir -p tools/temp + +# Download documentation +cd tools/temp + +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_ca --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/ca/documentation/start http://ap-i.net/static/skychart/ca/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_en --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/en/documentation/start http://ap-i.net/static/skychart/en/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_es --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/es/documentation/start http://ap-i.net/static/skychart/es/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_fr --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/fr/documentation/start http://ap-i.net/static/skychart/fr/nouvelles/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_it --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/it/documentation/start http://ap-i.net/static/skychart/it/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_nl --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/nl/documentatie/start http://ap-i.net/static/skychart/nl/nieuws/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_ru --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/ru/documentation/start http://ap-i.net/static/skychart/ru/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_tr --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/tr/documentation/start http://ap-i.net/static/skychart/tr/news/start +wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_uk --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/uk/documentation/start http://ap-i.net/static/skychart/uk/news/start + +rm doc_*/robots.txt + +# Copy data to destination directory +cp -R -p doc_*/* ../doc/wiki_doc/ + +# ...and remove temporary directory +cd .. +rm -R --force temp + +# Create tarball +cd .. +tar zcvf documentation.tar.gz tools + +# Delete temporary folder +rm -R --force tools \ No newline at end of file diff --git a/gpl.txt b/gpl.txt new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/gpl.txt @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/skychart.spec b/skychart.spec index c8299b1..7e1e651 100644 --- a/skychart.spec +++ b/skychart.spec @@ -9,6 +9,9 @@ URL: http://www.ap-i.net/skychart/ Source0: http://download.origo.ethz.ch/skychart/3239/skychart-%{version}-source.tgz Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz Source2: gpl.txt +Source3: getdoc.sh +# Source built using the following commands : ./getdoc.sh +Source4: documentation.tar.gz Patch1: skychart-desktop.patch Patch2: skychart-strip.patch @@ -37,6 +40,16 @@ of labels and coordinate grids, the superposition of pictures, the condition of visibility and more. All these features make this celestial atlas more complete than a conventional planetarium. +%package doc +Summary: Documentation files for Skychart +Group: Documentation +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description doc +Documentation files from the official Skychart wiki provided +within the program as an offline copy. + + %prep %setup -q -n %{name}-%{version}-source @@ -57,8 +70,12 @@ cp -p %SOURCE2 skychart/ # See upstream bug at http://www.ap-i.net/mantis/view.php?id=935 %patch4 -p1 +# Use ephemeris data provided as source cp -p %SOURCE1 BaseData +# Extract documentation provided as source +%setup -q -T -D -a 4 -n %{name}-%{version}-source + find skychart -type f -print0 |xargs -0 chmod 644 # Fix exotic EOL encodings @@ -105,8 +122,8 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %files +%defattr(-,root,root,-) %doc skychart/gpl.txt -#%doc %{_datadir}/skychart/doc %{_bindir}/* %{_libdir}/*.so %{_datadir}/applications/* @@ -114,10 +131,16 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat -%{_datadir}/skychart/doc +%{_datadir}/skychart/doc/html_doc +%{_datadir}/skychart/doc/releasenotes*.txt +%{_datadir}/skychart/doc/varobs %exclude /usr/share/doc/skychart/changelog %exclude /usr/share/doc/skychart/copyright +%files doc +%defattr(-,root,root,-) +%doc %{_datadir}/skychart/doc/wiki_doc + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig @@ -125,6 +148,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %changelog * Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 +- Added wiki documentation as subpackage - Fix old FSF address in license file - Remove binary software quicksat.exe and IRIDFLAR.EXE - Excluded ppc architecture, since lazarus < 0.9.30 diff --git a/sources b/sources index 66d340b..790d466 100644 --- a/sources +++ b/sources @@ -1,2 +1,3 @@ 18bcc2298384ef45ae576ef012be2ba2 skychart-3.4-source.tgz f945b649c218b77cd6fab4fb23c0a6ab data_jpleph.tgz +c4d35754677ef5bf6086af230081e26f documentation.tar.gz From b8f2e956d5dd40c46cae70da589ab61ddd1e1944 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 24 Jan 2012 18:35:24 +0100 Subject: [PATCH 039/162] Add license type for documentation --- skychart.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/skychart.spec b/skychart.spec index 7e1e651..b4b9b8b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -43,6 +43,7 @@ atlas more complete than a conventional planetarium. %package doc Summary: Documentation files for Skychart Group: Documentation +License: CC-BY-SA or GFDL Requires: %{name}%{?_isa} = %{version}-%{release} %description doc From 6c7752675f18c47476a8303584072e38658c520f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 17 Mar 2012 18:35:30 +0100 Subject: [PATCH 040/162] Add new sources and patches for 3.6 version --- .gitignore | 1 + generate-tarball.sh | 11 ++++++++ ...rt-strip.patch => skychart-3.6-strip.patch | 26 +++++-------------- sources | 4 +-- 4 files changed, 20 insertions(+), 22 deletions(-) create mode 100755 generate-tarball.sh rename skychart-strip.patch => skychart-3.6-strip.patch (68%) diff --git a/.gitignore b/.gitignore index 269b3b2..bd24094 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ skychart-3.0.1.6.tar.gz /data_jpleph.tgz /skychart-3.4-source.tgz /documentation.tar.gz +/skychart-3.6-2150-src-nopatents.tar.bz2 diff --git a/generate-tarball.sh b/generate-tarball.sh new file mode 100755 index 0000000..146b24c --- /dev/null +++ b/generate-tarball.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +VERSION=$1 + +tar -xjvf skychart-$VERSION-src.tar.bz2 +rm -rf skychart-$VERSION-src/tools/data/iridflar + +tar -cjvf skychart-$VERSION-src-nopatents.tar.bz2 skychart-$VERSION-src + +#Remove temporary directory +rm -rf skychart-$VERSION-src \ No newline at end of file diff --git a/skychart-strip.patch b/skychart-3.6-strip.patch similarity index 68% rename from skychart-strip.patch rename to skychart-3.6-strip.patch index ab246e9..7a3c070 100644 --- a/skychart-strip.patch +++ b/skychart-3.6-strip.patch @@ -1,19 +1,8 @@ -From 0273c3c873840514b09fb0a945305ca7a19d7026 Mon Sep 17 00:00:00 2001 -From: Lubomir Rintel <lkundrak@v3.sk> -Date: Sat, 24 Jul 2010 13:10:44 -0400 -Subject: [PATCH] Do not strip binaries upon install - ---- - install.sh | 12 ++++++------ - 1 files changed, 6 insertions(+), 6 deletions(-) - -diff --git a/install.sh b/install.sh -index fcc8db1..0eeb429 100755 ---- a/install.sh -+++ b/install.sh -@@ -17,12 +17,12 @@ install -m 755 -d $destdir/share/doc - install -m 755 -d $destdir/share/doc/skychart - install -m 755 -d $destdir/share/pixmaps +--- a/install.sh 2012-02-02 10:34:34.000000000 +0100 ++++ b/install.sh 2012-03-04 10:44:30.960033937 +0100 +@@ -25,13 +25,13 @@ + install -m 755 -d $destdir/share/icons/hicolor/scalable + install -m 755 -d $destdir/share/icons/hicolor/scalable/apps -install -v -m 755 -s skychart/cdc $destdir/bin/skychart -install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon @@ -21,15 +10,14 @@ index fcc8db1..0eeb429 100755 -install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin -install -v -m 644 -s skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so -install -v -m 644 -s skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so +-install -v -m 644 -s skychart/library/wcs/libcdcwcs.so $destdir/lib/libcdcwcs.so +install -v -m 755 skychart/cdc $destdir/bin/skychart +install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon +install -v -m 755 varobs/varobs $destdir/bin/varobs +install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin +install -v -m 644 skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so +install -v -m 644 skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so ++install -v -m 644 skychart/library/wcs/libcdcwcs.so $destdir/lib/libcdcwcs.so install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog install -v -m 644 system_integration/Linux/share/doc/skychart/copyright $destdir/share/doc/skychart/copyright --- -1.6.5.2 - diff --git a/sources b/sources index 790d466..89b5ecf 100644 --- a/sources +++ b/sources @@ -1,3 +1 @@ -18bcc2298384ef45ae576ef012be2ba2 skychart-3.4-source.tgz -f945b649c218b77cd6fab4fb23c0a6ab data_jpleph.tgz -c4d35754677ef5bf6086af230081e26f documentation.tar.gz +573151ae28d72b2ac88dd7974f1b7e72 skychart-3.6-2150-src-nopatents.tar.bz2 From ef0a74f25e3740d1763ae554a9e36c9df5f9ac45 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 17 Mar 2012 18:38:09 +0100 Subject: [PATCH 041/162] Remove files no more used Remove patches merged upstream --- gcc47.patch | 43 ------ getdoc.sh | 38 ----- gpl.txt | 339 ----------------------------------------- skychart-desktop.patch | 17 --- 4 files changed, 437 deletions(-) delete mode 100644 gcc47.patch delete mode 100755 getdoc.sh delete mode 100644 gpl.txt delete mode 100644 skychart-desktop.patch diff --git a/gcc47.patch b/gcc47.patch deleted file mode 100644 index e8a08da..0000000 --- a/gcc47.patch +++ /dev/null @@ -1,43 +0,0 @@ ---- a/skychart/library/getdss/Makefile 2010-02-24 15:50:16.000000000 +0100 -+++ b/skychart/library/getdss/Makefile 2012-01-21 10:03:18.698178924 +0100 -@@ -7,15 +7,15 @@ - LDFLAGS= -Wl,-single_module -dynamiclib -lc -lm -lstdc++ - else - SO_Name = libgetdss.so --LDFLAGS= -shared -WL,-soname,$(SO_Name) $(arch_flags) -+LDFLAGS= -shared -Wl,-soname,$(SO_Name) $(arch_flags) - endif - ifneq ($(findstring W32,$(OSTYPE)),) - SO_Name = libgetdss.dll --LDFLAGS= -shared -WL,-soname,$(SO_Name) -+LDFLAGS= -shared -Wl,-soname,$(SO_Name) - endif - ifneq ($(findstring MINGW,$(OSTYPE)),) - SO_Name = libgetdss.dll --LDFLAGS= -shared -WL,-soname,$(SO_Name) -+LDFLAGS= -shared -Wl,-soname,$(SO_Name) - endif - OBJS = getdss_lib.o dss.o extr_fit.o getpiece.o \ - hdcmprss.o bitinput.o decode.o dodecode.o hinv.o \ - ---- a/skychart/library/plan404/Makefile 2010-02-24 15:50:16.000000000 +0100 -+++ b/skychart/library/plan404/Makefile 2012-01-21 10:11:04.613575094 +0100 -@@ -8,15 +8,15 @@ - LIBFLAGS = -Wl,-single_module -dynamiclib -lc -lm - else - SO_Name = libplan404.so --LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lc -lm -+LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lc -lm - endif - ifneq ($(findstring W32,$(OSTYPE)),) - SO_Name = libplan404.dll --LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lm -+LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lm - endif - ifneq ($(findstring MINGW,$(OSTYPE)),) - SO_Name = libplan404.dll --LIBFLAGS = -shared -WL,-soname,$(SO_Name) -lm -+LIBFLAGS = -shared -Wl,-soname,$(SO_Name) -lm - endif - - .PHONY: clean diff --git a/getdoc.sh b/getdoc.sh deleted file mode 100755 index a3b6c99..0000000 --- a/getdoc.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# Clean up old documentation if exist -rm --force documentation.tar.gz -rm -R --force tools - -#Create directory structure -mkdir -p tools/doc/wiki_doc -mkdir -p tools/temp - -# Download documentation -cd tools/temp - -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_ca --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/ca/documentation/start http://ap-i.net/static/skychart/ca/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_en --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/en/documentation/start http://ap-i.net/static/skychart/en/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_es --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/es/documentation/start http://ap-i.net/static/skychart/es/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_fr --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/fr/documentation/start http://ap-i.net/static/skychart/fr/nouvelles/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_it --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/it/documentation/start http://ap-i.net/static/skychart/it/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_nl --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/nl/documentatie/start http://ap-i.net/static/skychart/nl/nieuws/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_ru --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/ru/documentation/start http://ap-i.net/static/skychart/ru/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_tr --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/tr/documentation/start http://ap-i.net/static/skychart/tr/news/start -wget -E -r -p -np -nH --cut-dirs=2 -X */*detail,*/*export,*/playground -R *do=index* -P doc_uk --cache=off --restrict-file-names=windows -k http://ap-i.net/static/skychart/uk/documentation/start http://ap-i.net/static/skychart/uk/news/start - -rm doc_*/robots.txt - -# Copy data to destination directory -cp -R -p doc_*/* ../doc/wiki_doc/ - -# ...and remove temporary directory -cd .. -rm -R --force temp - -# Create tarball -cd .. -tar zcvf documentation.tar.gz tools - -# Delete temporary folder -rm -R --force tools \ No newline at end of file diff --git a/gpl.txt b/gpl.txt deleted file mode 100644 index d159169..0000000 --- a/gpl.txt +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - <one line to give the program's name and a brief idea of what it does.> - Copyright (C) <year> <name of author> - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - <signature of Ty Coon>, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/skychart-desktop.patch b/skychart-desktop.patch deleted file mode 100644 index 364854d..0000000 --- a/skychart-desktop.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -ur skychart-3.4-source/system_integration/Linux/share/applications/skychart.desktop skychart-3.4-source.desktop/system_integration/Linux/share/applications/skychart.desktop ---- skychart-3.4-source/system_integration/Linux/share/applications/skychart.desktop 2010-11-27 10:58:59.000000000 +0100 -+++ skychart-3.4-source.desktop/system_integration/Linux/share/applications/skychart.desktop 2012-01-21 09:55:00.673279640 +0100 -@@ -2,10 +2,10 @@ - Version=1.0 - Encoding=UTF-8 - Name=Skychart --Comment=Skychart / Cartes du Ciel -+Comment=Planetarium software for the advanced amateur astronomer - Exec=skychart - Icon=skychart - Terminal=false - Type=Application --Categories=Astronomy;Education;Application --GenericName[fr_CH]= -+Categories=Education;Science;Astronomy; -+GenericName=SkyChart From 53a73b4eea17eac820ef6dddc06d297dcf315037 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 17 Mar 2012 18:54:33 +0100 Subject: [PATCH 042/162] Modify .spec for 3.6 version --- .gitignore | 2 - skychart.spec | 103 ++++++++++++++++++++++++++------------------------ 2 files changed, 53 insertions(+), 52 deletions(-) diff --git a/.gitignore b/.gitignore index bd24094..6dc1379 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ skychart-3.0.1.6.tar.gz /skychart_3.2-source.tgz -/data_jpleph.tgz /skychart-3.4-source.tgz -/documentation.tar.gz /skychart-3.6-2150-src-nopatents.tar.bz2 diff --git a/skychart.spec b/skychart.spec index b4b9b8b..6c9b24c 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,31 +1,36 @@ +%global svnversion 2150 + Name: skychart -Version: 3.4 -Release: 4%{?dist} +Version: 3.6 +Release: 1%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics License: GPLv2+ URL: http://www.ap-i.net/skychart/ -Source0: http://download.origo.ethz.ch/skychart/3239/skychart-%{version}-source.tgz -Source1: http://download.origo.ethz.ch/skychart/2443/data_jpleph.tgz -Source2: gpl.txt -Source3: getdoc.sh -# Source built using the following commands : ./getdoc.sh -Source4: documentation.tar.gz +%{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 +# Skychart contains iridflare.exe +# Since it is pre-built code and the license is not clear +# we remove it from sources. +# Download upstream tarball and invoke this script +# while in tarballs directory: +# ./generate-tarball.sh 3.6-2150 +Source1: generate-tarball.sh +Patch1: skychart-3.6-strip.patch +Patch2: skychart-wgetdata.patch -Patch1: skychart-desktop.patch -Patch2: skychart-strip.patch -Patch3: skychart-wgetdata.patch -Patch4: gcc47.patch +# no fpc and lazarus on s390(x) +# no lazarus on sparc(64) +ExcludeArch: s390 s390x sparc sparc64 -# FIXME: http://koji.fedoraproject.org/koji/taskinfo?taskID=918916 -# no lazarus on s390(x) and lazarus < 0.9.30 on ppc(64) -ExcludeArch: ppc ppc64 s390 s390x +# https://bugzilla.redhat.com/show_bug.cgi?id=789723 +ExcludeArch: ppc ppc64 -BuildRequires: lazarus >= 0.9.30 +BuildRequires: fpc >= 2.4.4 +BuildRequires: lazarus >= 0.9.30.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel BuildRequires: prelink -Requires: xdg-utils tzdata +Requires: xdg-utils tzdata xplanet %description This program enables you to draw sky charts, making use of the data in 16 @@ -52,30 +57,12 @@ within the program as an offline copy. %prep -%setup -q -n %{name}-%{version}-source +%setup -q -n %{name}-%{version}-%{svnversion}-src -# Fix old FSF address in license file -# See upstream bug at http://www.ap-i.net/mantis/view.php?id=910 -cp -p %SOURCE2 skychart/ - -# Fix .desktop file -# See upstream bug at http://www.ap-i.net/mantis/view.php?id=911 %patch1 -p1 -%patch2 -p1 - # Disable wget for documentation and ephemeris data -%patch3 -p1 - -# Fix compilation with gcc 4.7 -# See upstream bug at http://www.ap-i.net/mantis/view.php?id=935 -%patch4 -p1 - -# Use ephemeris data provided as source -cp -p %SOURCE1 BaseData - -# Extract documentation provided as source -%setup -q -T -D -a 4 -n %{name}-%{version}-source +%patch2 -p1 find skychart -type f -print0 |xargs -0 chmod 644 @@ -84,9 +71,8 @@ dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css dos2unix -q -k tools/doc/releasenotes*.txt -# Remove binary files quicksat.exe and IRIDFLAR.EXE +# Remove pre-compiled software quicksat.exe rm -R --force tools/data/quicksat -rm -R --force tools/data/iridflar %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -94,24 +80,22 @@ rm -R --force tools/data/iridflar # We build these separately so that we can apply optflags make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/getdss make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 +make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/wcs make # not concurrency-safe -# Remove executable-stack to fix rpmlint warnings due to old Freepascal compiler -# See upstream bug at http://www.ap-i.net/mantis/view.php?id=926 -# See Fedora bug at https://bugzilla.redhat.com/show_bug.cgi?id=771057 -execstack -c varobs/varobs -execstack -c varobs/varobs_lpv_bulletin -execstack -c skychart/cdc -execstack -c skychart/cdcicon - - %install rm -rf %{buildroot} +# Install main program make install PREFIX=%{buildroot}%{_prefix} + +# Install catalogs, translations and data files make install install_data PREFIX=%{buildroot}%{_prefix} +# Install wiki documentation +make install install_doc PREFIX=%{buildroot}%{_prefix} + # Fix multilib path [ %{_lib} = lib ] || mv %{buildroot}%{_prefix}/{lib,%{_lib}} @@ -129,6 +113,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %{_libdir}/*.so %{_datadir}/applications/* %{_datadir}/pixmaps/* +%{_datadir}/icons/* %dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat @@ -142,12 +127,30 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %defattr(-,root,root,-) %doc %{_datadir}/skychart/doc/wiki_doc -%post -p /sbin/ldconfig +%post +/sbin/ldconfig +/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : -%postun -p /sbin/ldconfig +%postun +/sbin/ldconfig +if [ $1 -eq 0 ] ; then + /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null + /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1 +- Update to 3.6 version +- Modify sources to remove iridflar.exe +- Remove patches merged upstream +- Make sure fpc >= 2.4.4 to avoid execstack errors +- Add scriptlets for icon cache +- Make sure lazarus >= 0.9.30.4 to work with F17 and higher + * Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 - Added wiki documentation as subpackage - Fix old FSF address in license file From abcd8594eeebd6a282bede291eb34a072511c51b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 8 Apr 2012 12:01:14 +0200 Subject: [PATCH 043/162] fix error in specfile --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 6c9b24c..a71d7de 100644 --- a/skychart.spec +++ b/skychart.spec @@ -8,7 +8,7 @@ Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics License: GPLv2+ URL: http://www.ap-i.net/skychart/ -%{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 # Skychart contains iridflare.exe # Since it is pre-built code and the license is not clear # we remove it from sources. From 2e37b2f27e4b7bfd900930cda5cb4af1ac9c302b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Fri, 20 Apr 2012 17:51:41 +0200 Subject: [PATCH 044/162] Rebuild with lazarus 0.9.30.4 --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index a71d7de..d7b9365 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -143,6 +143,9 @@ fi %changelog +* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-2 +- Rebuild with lazarus 0.9.30.4 fix bug #799711 + * Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1 - Update to 3.6 version - Modify sources to remove iridflar.exe From 006c5c24164d43cd646b608b1d8f2a4ebd1686a5 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Fri, 20 Apr 2012 18:09:57 +0200 Subject: [PATCH 045/162] Correct wrong patch --- skychart-wgetdata.patch | 19 ------------------- skychart.spec | 5 +++-- 2 files changed, 3 insertions(+), 21 deletions(-) diff --git a/skychart-wgetdata.patch b/skychart-wgetdata.patch index 4bb7202..d400995 100644 --- a/skychart-wgetdata.patch +++ b/skychart-wgetdata.patch @@ -13,22 +13,3 @@ tar xvzf $pkgz -C $ddir } -@@ -42,12 +42,12 @@ - install -v -m 644 $f $destdir/share/skychart/$f - done - --if [ ! -d doc/wiki_doc ]; then -- cd wiki_doc -- ./getdoc.sh -- ./copydoc.sh -- cd .. --fi -+#if [ ! -d doc/wiki_doc ]; then -+# cd wiki_doc -+# ./getdoc.sh -+# ./copydoc.sh -+# cd .. -+#fi - - for f in $(find doc/wiki_doc/|grep -v .svn) - do diff --git a/skychart.spec b/skychart.spec index d7b9365..71e5825 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -143,8 +143,9 @@ fi %changelog -* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-2 +* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 - Rebuild with lazarus 0.9.30.4 fix bug #799711 +- Correct patch * Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1 - Update to 3.6 version From 74026758b99a7d4e8000d666846caae8be6c827f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 1 Jul 2012 13:37:14 +0200 Subject: [PATCH 046/162] Enabled build on ppc and ppc64 --- skychart.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 71e5825..c211d69 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -23,9 +23,6 @@ Patch2: skychart-wgetdata.patch # no lazarus on sparc(64) ExcludeArch: s390 s390x sparc sparc64 -# https://bugzilla.redhat.com/show_bug.cgi?id=789723 -ExcludeArch: ppc ppc64 - BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 0.9.30.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel @@ -143,6 +140,9 @@ fi %changelog +* Sun Jul 1 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-4 +- Enabled build on ppc and ppc64 + * Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 - Rebuild with lazarus 0.9.30.4 fix bug #799711 - Correct patch From ade2067b08157979df49ebce014adb9016377292 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 1 Jul 2012 14:22:05 +0200 Subject: [PATCH 047/162] revert previous change. Skychart fails to compile on ppc and ppc64 --- skychart.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skychart.spec b/skychart.spec index c211d69..fb0acb0 100644 --- a/skychart.spec +++ b/skychart.spec @@ -23,6 +23,9 @@ Patch2: skychart-wgetdata.patch # no lazarus on sparc(64) ExcludeArch: s390 s390x sparc sparc64 +# Skychart fails to compile on ppc and ppc64 +ExcludeArch: ppc ppc64 + BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 0.9.30.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel @@ -140,9 +143,6 @@ fi %changelog -* Sun Jul 1 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-4 -- Enabled build on ppc and ppc64 - * Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 - Rebuild with lazarus 0.9.30.4 fix bug #799711 - Correct patch From d666b2c68e8660d17457657cd2fb10226b9e0482 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Sat, 21 Jul 2012 14:49:45 -0500 Subject: [PATCH 048/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index fb0acb0..94e846c 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -143,6 +143,9 @@ fi %changelog +* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 - Rebuild with lazarus 0.9.30.4 fix bug #799711 - Correct patch From 986c73089821b6e20360b2a7459ebe3cbcddf31c Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 6 Oct 2012 14:37:14 +0200 Subject: [PATCH 049/162] Update to 3.7 testing version --- .gitignore | 1 + skychart-wgetdata.patch | 8 ++++---- skychart.spec | 11 +++++++---- sources | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 6dc1379..ef44083 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ skychart-3.0.1.6.tar.gz /skychart_3.2-source.tgz /skychart-3.4-source.tgz /skychart-3.6-2150-src-nopatents.tar.bz2 +/skychart-3.7-2268-src-nopatents.tar.bz2 diff --git a/skychart-wgetdata.patch b/skychart-wgetdata.patch index d400995..efd1b24 100644 --- a/skychart-wgetdata.patch +++ b/skychart-wgetdata.patch @@ -1,14 +1,14 @@ ---- a/tools/install_data.sh 2010-12-28 22:37:10.000000000 +0100 -+++ b/tools/install_data.sh 2011-12-20 20:47:00.195311126 +0100 +--- a/tools/install_data.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/tools/install_data.sh 2012-10-06 13:37:24.214119567 +0200 @@ -4,9 +4,9 @@ pkg=$1.tgz ddir=$2 pkgz=../BaseData/$pkg - if [ ! -e $pkgz ]; then -- wget http://download.origo.ethz.ch/skychart/2443/$pkg -O $pkgz +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz - fi +# if [ ! -e $pkgz ]; then -+# wget http://download.origo.ethz.ch/skychart/2443/$pkg -O $pkgz ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +# fi tar xvzf $pkgz -C $ddir } diff --git a/skychart.spec b/skychart.spec index 94e846c..d1157a3 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 2150 +%global svnversion 2268 Name: skychart -Version: 3.6 -Release: 5%{?dist} +Version: 3.7 +Release: 0.1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -14,7 +14,7 @@ Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: -# ./generate-tarball.sh 3.6-2150 +# ./generate-tarball.sh 3.7-2268 Source1: generate-tarball.sh Patch1: skychart-3.6-strip.patch Patch2: skychart-wgetdata.patch @@ -143,6 +143,9 @@ fi %changelog +* Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn +- Update to 3.7 testing version + * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 89b5ecf..14ca990 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -573151ae28d72b2ac88dd7974f1b7e72 skychart-3.6-2150-src-nopatents.tar.bz2 +2e4e61e13db26cdfa6a28b2f97b31b2a skychart-3.7-2268-src-nopatents.tar.bz2 From dc48b5e2281100ea714e784f35d281518990dcaa Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Thu, 14 Feb 2013 18:05:49 -0600 Subject: [PATCH 050/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index d1157a3..e1f0880 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.7 -Release: 0.1.%{svnversion}svn%{?dist} +Release: 0.2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -143,6 +143,9 @@ fi %changelog +* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-0.2.2268svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn - Update to 3.7 testing version From fa29caaf9d708e7f18524e457127607d2ca36388 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 10 Mar 2013 09:33:17 +0100 Subject: [PATCH 051/162] Exclude armv7hl architecture from build --- skychart.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/skychart.spec b/skychart.spec index d1157a3..02c26ff 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.7 -Release: 0.1.%{svnversion}svn%{?dist} +Release: 0.2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -19,9 +19,9 @@ Source1: generate-tarball.sh Patch1: skychart-3.6-strip.patch Patch2: skychart-wgetdata.patch -# no fpc and lazarus on s390(x) +# no fpc and lazarus on s390(x) and armv7hl # no lazarus on sparc(64) -ExcludeArch: s390 s390x sparc sparc64 +ExcludeArch: s390 s390x sparc sparc64 armv7hl # Skychart fails to compile on ppc and ppc64 ExcludeArch: ppc ppc64 @@ -143,6 +143,9 @@ fi %changelog +* Sun Mar 10 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.2.2268svn +- Exclude armv7hl architecture + * Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn - Update to 3.7 testing version From 426a3dc2715c2e9e88ff4e2c03d9d419bd013046 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 16 Mar 2013 17:33:05 +0100 Subject: [PATCH 052/162] rename patch for new version --- skychart-3.6-strip.patch => skychart-3.8-strip.patch | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename skychart-3.6-strip.patch => skychart-3.8-strip.patch (100%) diff --git a/skychart-3.6-strip.patch b/skychart-3.8-strip.patch similarity index 100% rename from skychart-3.6-strip.patch rename to skychart-3.8-strip.patch From b60d5adad034b135c4c5c17a7d53fb97d42670a1 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 16 Mar 2013 17:42:03 +0100 Subject: [PATCH 053/162] upload new sources version 3.8 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ef44083..36f6959 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ skychart-3.0.1.6.tar.gz /skychart-3.4-source.tgz /skychart-3.6-2150-src-nopatents.tar.bz2 /skychart-3.7-2268-src-nopatents.tar.bz2 +/skychart-3.8-2450-src-nopatents.tar.bz2 diff --git a/sources b/sources index 14ca990..378bc22 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2e4e61e13db26cdfa6a28b2f97b31b2a skychart-3.7-2268-src-nopatents.tar.bz2 +7cbb142fd82e9cc74509bbf6513a7a2f skychart-3.8-2450-src-nopatents.tar.bz2 From 3ba7bf1feadda6e0dba480b8cec921f227ad98a0 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 16 Mar 2013 17:44:34 +0100 Subject: [PATCH 054/162] modify specfile for new version --- skychart.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/skychart.spec b/skychart.spec index 1fa79f4..7992a66 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 2268 +%global svnversion 2450 Name: skychart -Version: 3.7 -Release: 0.3.%{svnversion}svn%{?dist} +Version: 3.8 +Release: 1%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -14,9 +14,9 @@ Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: -# ./generate-tarball.sh 3.7-2268 +# ./generate-tarball.sh 3.8-2450 Source1: generate-tarball.sh -Patch1: skychart-3.6-strip.patch +Patch1: skychart-3.8-strip.patch Patch2: skychart-wgetdata.patch # no fpc and lazarus on s390(x) and armv7hl @@ -27,7 +27,7 @@ ExcludeArch: s390 s390x sparc sparc64 armv7hl ExcludeArch: ppc ppc64 BuildRequires: fpc >= 2.4.4 -BuildRequires: lazarus >= 0.9.30.4 +BuildRequires: lazarus >= 1.0.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel BuildRequires: prelink Requires: xdg-utils tzdata xplanet @@ -143,6 +143,10 @@ fi %changelog +* Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 +- Update to 3.8 +- Requires Lazarus >= 1.0.4 + * Sun Mar 10 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.3.2268svn - Exclude armv7hl architecture From 9e2a921b417cf1db1830d4d187f9b9e656c34d1f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 6 Apr 2013 09:25:45 +0200 Subject: [PATCH 055/162] Make doc package platform independent by building it as noarch Remove unneeded buildroot and files declarations as of more recent guidelines --- skychart.spec | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/skychart.spec b/skychart.spec index 7992a66..1d368c6 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer Group: Amusements/Graphics @@ -49,7 +49,8 @@ atlas more complete than a conventional planetarium. Summary: Documentation files for Skychart Group: Documentation License: CC-BY-SA or GFDL -Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch %description doc Documentation files from the official Skychart wiki provided @@ -85,8 +86,6 @@ make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/wcs make # not concurrency-safe %install -rm -rf %{buildroot} - # Install main program make install PREFIX=%{buildroot}%{_prefix} @@ -107,7 +106,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %files -%defattr(-,root,root,-) %doc skychart/gpl.txt %{_bindir}/* %{_libdir}/*.so @@ -124,7 +122,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %exclude /usr/share/doc/skychart/copyright %files doc -%defattr(-,root,root,-) %doc %{_datadir}/skychart/doc/wiki_doc %post @@ -143,6 +140,10 @@ fi %changelog +* Sat Apr 06 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 +- Make doc package platform independent +- Remove unneeded buildroot and files declarations + * Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 - Update to 3.8 - Requires Lazarus >= 1.0.4 From 4db522bf893d59443d56bccf0e0a89b23e7d18f1 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 May 2013 08:47:01 +0200 Subject: [PATCH 056/162] Remove Group tag --- skychart.spec | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 1d368c6..9b21cf4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -4,8 +4,6 @@ Name: skychart Version: 3.8 Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer - -Group: Amusements/Graphics License: GPLv2+ URL: http://www.ap-i.net/skychart/ Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 @@ -47,7 +45,6 @@ atlas more complete than a conventional planetarium. %package doc Summary: Documentation files for Skychart -Group: Documentation License: CC-BY-SA or GFDL Requires: %{name} = %{version}-%{release} BuildArch: noarch @@ -140,9 +137,10 @@ fi %changelog -* Sat Apr 06 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 +* Sun May 05 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 - Make doc package platform independent - Remove unneeded buildroot and files declarations +- Remove Group tag * Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 - Update to 3.8 From 63ff51d967c918b2da1c71d14e10ddd428fa8ed3 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 May 2013 09:02:49 +0200 Subject: [PATCH 057/162] Make available additional star catalogs as subpackage --- .gitignore | 4 ++++ skychart.spec | 39 +++++++++++++++++++++++++++++++++++++-- sources | 5 ++++- 3 files changed, 45 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 36f6959..210a7ca 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,7 @@ skychart-3.0.1.6.tar.gz /skychart-3.6-2150-src-nopatents.tar.bz2 /skychart-3.7-2268-src-nopatents.tar.bz2 /skychart-3.8-2450-src-nopatents.tar.bz2 +/catalog_gcvs.tgz +/catalog_idx.tgz +/catalog_tycho2.tgz +/catalog_wds.tgz diff --git a/skychart.spec b/skychart.spec index 9b21cf4..49a1f02 100644 --- a/skychart.spec +++ b/skychart.spec @@ -6,14 +6,18 @@ Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ -Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 # Skychart contains iridflare.exe # Since it is pre-built code and the license is not clear # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: # ./generate-tarball.sh 3.8-2450 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 Source1: generate-tarball.sh +Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz Patch1: skychart-3.8-strip.patch Patch2: skychart-wgetdata.patch @@ -53,6 +57,16 @@ BuildArch: noarch Documentation files from the official Skychart wiki provided within the program as an offline copy. +%package data-stars +Summary: Additional star catalogs for Skychart +License: Public Domain +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description data-stars +Additional star catalogs for Skychart. This package install all the standard +stars catalog down to magnitude 12, variable and double stars: +Tycho 2; General Catalogue of Variable Stars; Washington Double Stars; Sky2000. %prep %setup -q -n %{name}-%{version}-%{svnversion}-src @@ -72,6 +86,12 @@ dos2unix -q -k tools/doc/releasenotes*.txt # Remove pre-compiled software quicksat.exe rm -R --force tools/data/quicksat +# Put additional catalogs files where they should be for installation +cp -p %SOURCE2 ./BaseData +cp -p %SOURCE3 ./BaseData +cp -p %SOURCE4 ./BaseData +cp -p %SOURCE5 ./BaseData + %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -92,6 +112,9 @@ make install install_data PREFIX=%{buildroot}%{_prefix} # Install wiki documentation make install install_doc PREFIX=%{buildroot}%{_prefix} +# Install additional catalogs +make install install_cat1 PREFIX=%{buildroot}%{_prefix} + # Fix multilib path [ %{_lib} = lib ] || mv %{buildroot}%{_prefix}/{lib,%{_lib}} @@ -111,7 +134,12 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %{_datadir}/icons/* %dir %{_datadir}/skychart %{_datadir}/skychart/data -%{_datadir}/skychart/cat +%{_datadir}/skychart/cat/DSoutlines +%{_datadir}/skychart/cat/milkyway +%{_datadir}/skychart/cat/ngc2000 +%{_datadir}/skychart/cat/RealSky +%{_datadir}/skychart/cat/sac +%{_datadir}/skychart/cat/xhip %{_datadir}/skychart/doc/html_doc %{_datadir}/skychart/doc/releasenotes*.txt %{_datadir}/skychart/doc/varobs @@ -121,6 +149,12 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %files doc %doc %{_datadir}/skychart/doc/wiki_doc +%files data-stars +%{_datadir}/skychart/cat/bsc5 +%{_datadir}/skychart/cat/gcvs +%{_datadir}/skychart/cat/tycho2 +%{_datadir}/skychart/cat/wds + %post /sbin/ldconfig /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : @@ -141,6 +175,7 @@ fi - Make doc package platform independent - Remove unneeded buildroot and files declarations - Remove Group tag +- Make available additional star catalogs as subpackage * Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 - Update to 3.8 diff --git a/sources b/sources index 378bc22..b99cf42 100644 --- a/sources +++ b/sources @@ -1 +1,4 @@ -7cbb142fd82e9cc74509bbf6513a7a2f skychart-3.8-2450-src-nopatents.tar.bz2 +3031ca90157c291bfdd5a841dc926e64 catalog_gcvs.tgz +d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz +eb41098f194574662b147e4891ef261e catalog_tycho2.tgz +00d206019a86098d79c1e89b32103792 catalog_wds.tgz From 0360a0bf279a02d46590ff9a9e91250535ebd4d9 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 May 2013 11:30:25 +0200 Subject: [PATCH 058/162] Fix sources --- sources | 1 + 1 file changed, 1 insertion(+) diff --git a/sources b/sources index b99cf42..a266373 100644 --- a/sources +++ b/sources @@ -2,3 +2,4 @@ d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz +7cbb142fd82e9cc74509bbf6513a7a2f skychart-3.8-2450-src-nopatents.tar.bz2 From 75d0261566d4c64a25e90a6ab0373673c94beea8 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 16 May 2013 16:04:49 +0200 Subject: [PATCH 059/162] Modify patch to disable wget and make additional dso catalogs available --- skychart-wgetdata.patch | 29 ++++++++++++++++++++++ skychart.spec | 54 +++++++++++++++++++++++++++++++++++------ 2 files changed, 76 insertions(+), 7 deletions(-) diff --git a/skychart-wgetdata.patch b/skychart-wgetdata.patch index efd1b24..1dfa865 100644 --- a/skychart-wgetdata.patch +++ b/skychart-wgetdata.patch @@ -13,3 +13,32 @@ tar xvzf $pkgz -C $ddir } +--- a/install_cat1.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/install_cat1.sh 2013-03-17 19:47:02.024214677 +0100 +@@ -6,9 +6,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } + +--- a/install_cat2.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/install_cat2.sh 2013-03-17 19:47:02.024214677 +0100 +@@ -6,9 +6,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } diff --git a/skychart.spec b/skychart.spec index 49a1f02..aca8dde 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,10 +14,19 @@ URL: http://www.ap-i.net/skychart/ # ./generate-tarball.sh 3.8-2450 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 Source1: generate-tarball.sh +# Source data for skychart-data-stars Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz -Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz -Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz -Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +# Source data for skychart-data-dso +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_pgc.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ngc.tgz +Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz +Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz +Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz +Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz + Patch1: skychart-3.8-strip.patch Patch2: skychart-wgetdata.patch @@ -66,7 +75,19 @@ BuildArch: noarch %description data-stars Additional star catalogs for Skychart. This package install all the standard stars catalog down to magnitude 12, variable and double stars: -Tycho 2; General Catalogue of Variable Stars; Washington Double Stars; Sky2000. +Tycho 2; General Catalogue of Variable Stars; Washington Double Stars. + +%package data-dso +Summary: Additional Deep Sky Object catalogs for Skychart +License: Public Domain +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description data-dso +Additional DSO catalogs for Skychart. This package install all the standard +nebulae catalogs: New General Catalogue; Principal Galaxies Catalogue; +Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; +Galactic Planetary Nebulae. %prep %setup -q -n %{name}-%{version}-%{svnversion}-src @@ -91,6 +112,12 @@ cp -p %SOURCE2 ./BaseData cp -p %SOURCE3 ./BaseData cp -p %SOURCE4 ./BaseData cp -p %SOURCE5 ./BaseData +cp -p %SOURCE6 ./BaseData +cp -p %SOURCE7 ./BaseData +cp -p %SOURCE8 ./BaseData +cp -p %SOURCE9 ./BaseData +cp -p %SOURCE10 ./BaseData +cp -p %SOURCE11 ./BaseData %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -114,6 +141,7 @@ make install install_doc PREFIX=%{buildroot}%{_prefix} # Install additional catalogs make install install_cat1 PREFIX=%{buildroot}%{_prefix} +make install install_cat2 PREFIX=%{buildroot}%{_prefix} # Fix multilib path [ %{_lib} = lib ] || mv %{buildroot}%{_prefix}/{lib,%{_lib}} @@ -136,7 +164,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %{_datadir}/skychart/data %{_datadir}/skychart/cat/DSoutlines %{_datadir}/skychart/cat/milkyway -%{_datadir}/skychart/cat/ngc2000 +%{_datadir}/skychart/cat/ngc2000/*.idx %{_datadir}/skychart/cat/RealSky %{_datadir}/skychart/cat/sac %{_datadir}/skychart/cat/xhip @@ -150,10 +178,18 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %doc %{_datadir}/skychart/doc/wiki_doc %files data-stars -%{_datadir}/skychart/cat/bsc5 %{_datadir}/skychart/cat/gcvs %{_datadir}/skychart/cat/tycho2 %{_datadir}/skychart/cat/wds +%{_datadir}/skychart/cat/bsc5 + +%files data-dso +%{_datadir}/skychart/cat/ngc2000/*.dat +%{_datadir}/skychart/cat/pgc +%{_datadir}/skychart/cat/lbn +%{_datadir}/skychart/cat/ocl +%{_datadir}/skychart/cat/gcm +%{_datadir}/skychart/cat/gpn %post /sbin/ldconfig @@ -171,6 +207,10 @@ fi %changelog +* Wed May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 +- Make available additional dso catalogs as subpackage +- Modify patch to disable wget in catalog installation scripts + * Sun May 05 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 - Make doc package platform independent - Remove unneeded buildroot and files declarations From fb1fd354813c5b49e9bb6a70b77cb3c8e28973fd Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 16 May 2013 16:20:39 +0200 Subject: [PATCH 060/162] Upload sources From 4b16188ad8ef2fb8957175cb8ef7368cae13e4ce Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 16 May 2013 16:22:54 +0200 Subject: [PATCH 061/162] add sources From 73b6f955e52f209232451e10305ba4d9d07f2bc3 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 16 May 2013 16:26:25 +0200 Subject: [PATCH 062/162] Modify sources... again --- .gitignore | 6 ++++++ sources | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index 210a7ca..187d60d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,9 @@ skychart-3.0.1.6.tar.gz /catalog_idx.tgz /catalog_tycho2.tgz /catalog_wds.tgz +/catalog_pgc.tgz +/catalog_ngc.tgz +/catalog_gcm.tgz +/catalog_gpn.tgz +/catalog_lbn.tgz +/catalog_ocl.tgz diff --git a/sources b/sources index a266373..6a1bd00 100644 --- a/sources +++ b/sources @@ -3,3 +3,9 @@ d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz 7cbb142fd82e9cc74509bbf6513a7a2f skychart-3.8-2450-src-nopatents.tar.bz2 +7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz +81001f378ded89e298c7c4cdacd90e95 catalog_ngc.tgz +abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz +399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz +de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz +6df410542ed914df41514b64a427233f catalog_ocl.tgz From e0b19b5818eb14dd319408a5443bc43f032b08b7 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Fri, 2 Aug 2013 16:49:52 +0200 Subject: [PATCH 063/162] Use xz instead of bzip to compress sources --- .gitignore | 1 + generate-tarball.sh | 2 +- skychart.spec | 7 +++++-- sources | 14 +++++++------- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 187d60d..fb8b027 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ skychart-3.0.1.6.tar.gz /catalog_gpn.tgz /catalog_lbn.tgz /catalog_ocl.tgz +/skychart-3.8-2450-src-nopatents.tar.xz diff --git a/generate-tarball.sh b/generate-tarball.sh index 146b24c..e2c4dfd 100755 --- a/generate-tarball.sh +++ b/generate-tarball.sh @@ -5,7 +5,7 @@ VERSION=$1 tar -xjvf skychart-$VERSION-src.tar.bz2 rm -rf skychart-$VERSION-src/tools/data/iridflar -tar -cjvf skychart-$VERSION-src-nopatents.tar.bz2 skychart-$VERSION-src +tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src #Remove temporary directory rm -rf skychart-$VERSION-src \ No newline at end of file diff --git a/skychart.spec b/skychart.spec index aca8dde..6af4397 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -12,7 +12,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball and invoke this script # while in tarballs directory: # ./generate-tarball.sh 3.8-2450 -Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.bz2 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz @@ -207,6 +207,9 @@ fi %changelog +* Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4 +- Use xz to compress source file instead of bzip + * Wed May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 - Make available additional dso catalogs as subpackage - Modify patch to disable wget in catalog installation scripts diff --git a/sources b/sources index 6a1bd00..426c3f2 100644 --- a/sources +++ b/sources @@ -1,11 +1,11 @@ +9d9bca240e8fbbfb507805947360a973 skychart-3.8-2450-src-nopatents.tar.xz +abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz 3031ca90157c291bfdd5a841dc926e64 catalog_gcvs.tgz +399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz +de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz +81001f378ded89e298c7c4cdacd90e95 catalog_ngc.tgz +6df410542ed914df41514b64a427233f catalog_ocl.tgz +7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz -7cbb142fd82e9cc74509bbf6513a7a2f skychart-3.8-2450-src-nopatents.tar.bz2 -7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz -81001f378ded89e298c7c4cdacd90e95 catalog_ngc.tgz -abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz -399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz -de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz -6df410542ed914df41514b64a427233f catalog_ocl.tgz From a47129d9440f70d0e9bd8e1bece79cdcbb0522cb Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Sun, 4 Aug 2013 09:50:22 -0500 Subject: [PATCH 064/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 6af4397..8fa82c9 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -207,6 +207,9 @@ fi %changelog +* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4 - Use xz to compress source file instead of bzip From 3914fe8a66f4bd80f736ca0b32bd4c827ac5b8dc Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Mon, 12 Aug 2013 15:35:57 +0200 Subject: [PATCH 065/162] Enable arm build and try also ppc and ppc64 --- skychart.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 8fa82c9..45724ff 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -30,12 +30,12 @@ Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_o Patch1: skychart-3.8-strip.patch Patch2: skychart-wgetdata.patch -# no fpc and lazarus on s390(x) and armv7hl +# no fpc and lazarus on s390(x) # no lazarus on sparc(64) -ExcludeArch: s390 s390x sparc sparc64 armv7hl +ExcludeArch: s390 s390x sparc sparc64 # Skychart fails to compile on ppc and ppc64 -ExcludeArch: ppc ppc64 +# ExcludeArch: ppc ppc64 BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 @@ -207,6 +207,10 @@ fi %changelog +* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6 +- Enable arm build +- Enable ppc and ppc64 build + * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 45ec853a70005408307fa76722fa566fd930a00b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Mon, 12 Aug 2013 16:30:31 +0200 Subject: [PATCH 066/162] Manually add needed directory to fix arm build --- skychart.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 45724ff..66fa5e4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -119,6 +119,9 @@ cp -p %SOURCE9 ./BaseData cp -p %SOURCE10 ./BaseData cp -p %SOURCE11 ./BaseData +# Add directory to fix build for arm architecture +mkdir ./skychart/component/arm-linux-gtk2 + %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -207,6 +210,9 @@ fi %changelog +* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7 +- Manually create needed directory to fix arm build + * Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6 - Enable arm build - Enable ppc and ppc64 build From 2b21f99132d4be2f72325789f3942a354434d097 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Mon, 12 Aug 2013 16:50:58 +0200 Subject: [PATCH 067/162] Wrong directory path.... --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 66fa5e4..3b2b614 100644 --- a/skychart.spec +++ b/skychart.spec @@ -120,7 +120,7 @@ cp -p %SOURCE10 ./BaseData cp -p %SOURCE11 ./BaseData # Add directory to fix build for arm architecture -mkdir ./skychart/component/arm-linux-gtk2 +mkdir ./skychart/component/lib/arm-linux-gtk2 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} From 85b0a29c35d089016cec5e66f026a799d8773535 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Mon, 12 Aug 2013 17:19:44 +0200 Subject: [PATCH 068/162] More directories to fix arm build - fix also ppc and ppc64 --- skychart.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index 3b2b614..89eaee8 100644 --- a/skychart.spec +++ b/skychart.spec @@ -119,8 +119,13 @@ cp -p %SOURCE9 ./BaseData cp -p %SOURCE10 ./BaseData cp -p %SOURCE11 ./BaseData -# Add directory to fix build for arm architecture +# Add directories to fix builds for arm and ppc architectures mkdir ./skychart/component/lib/arm-linux-gtk2 +mkdir ./skychart/units/arm-linux-gtk2 +mkdir ./skychart/component/lib/powerpc-linux-gtk2 +mkdir ./skychart/units/powerpc-linux-gtk2 +mkdir ./skychart/component/lib/powerpc64-linux-gtk2 +mkdir ./skychart/units/powerpc64-linux-gtk2 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -211,7 +216,7 @@ fi %changelog * Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7 -- Manually create needed directory to fix arm build +- Manually create needed directories to fix arm and ppc builds * Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6 - Enable arm build From 19383f21a484480372d76f9aca82e16a885cd794 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Mon, 12 Aug 2013 18:14:36 +0200 Subject: [PATCH 069/162] Another directory missing... --- skychart.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/skychart.spec b/skychart.spec index 89eaee8..a43e2f1 100644 --- a/skychart.spec +++ b/skychart.spec @@ -122,10 +122,13 @@ cp -p %SOURCE11 ./BaseData # Add directories to fix builds for arm and ppc architectures mkdir ./skychart/component/lib/arm-linux-gtk2 mkdir ./skychart/units/arm-linux-gtk2 +mkdir ./varobs/units/arm-linux-gtk2 mkdir ./skychart/component/lib/powerpc-linux-gtk2 mkdir ./skychart/units/powerpc-linux-gtk2 +mkdir ./varobs/units/powerpc-linux-gtk2 mkdir ./skychart/component/lib/powerpc64-linux-gtk2 mkdir ./skychart/units/powerpc64-linux-gtk2 +mkdir ./varobs/units/powerpc64-linux-gtk2 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} From 3021ea40c786ecf264d8a9a5efd510edfc049a41 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 3 Apr 2014 18:35:23 +0200 Subject: [PATCH 070/162] Update to 3.10 --- .gitignore | 1 + generate-tarball.sh | 4 ++++ skychart.spec | 20 +++++++++----------- sources | 2 +- 4 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index fb8b027..cb45f98 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ skychart-3.0.1.6.tar.gz /catalog_lbn.tgz /catalog_ocl.tgz /skychart-3.8-2450-src-nopatents.tar.xz +/skychart-3.10-2854-src-nopatents.tar.xz diff --git a/generate-tarball.sh b/generate-tarball.sh index e2c4dfd..051ca40 100755 --- a/generate-tarball.sh +++ b/generate-tarball.sh @@ -3,7 +3,11 @@ VERSION=$1 tar -xjvf skychart-$VERSION-src.tar.bz2 + +#Remove pre-built software rm -rf skychart-$VERSION-src/tools/data/iridflar +rm -rf skychart-$VERSION-src/tools/data/quicksat +rm -rf skychart-$VERSION-src/system_integration/Windows/data tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src diff --git a/skychart.spec b/skychart.spec index a43e2f1..cbe1377 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 2450 +%global svnversion 2854 Name: skychart -Version: 3.8 -Release: 7%{?dist} +Version: 3.10 +Release: 1%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -11,7 +11,7 @@ URL: http://www.ap-i.net/skychart/ # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: -# ./generate-tarball.sh 3.8-2450 +# ./generate-tarball.sh 3.10-2854 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -34,8 +34,6 @@ Patch2: skychart-wgetdata.patch # no lazarus on sparc(64) ExcludeArch: s390 s390x sparc sparc64 -# Skychart fails to compile on ppc and ppc64 -# ExcludeArch: ppc ppc64 BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 @@ -104,10 +102,7 @@ dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css dos2unix -q -k tools/doc/releasenotes*.txt -# Remove pre-compiled software quicksat.exe -rm -R --force tools/data/quicksat - -# Put additional catalogs files where they should be for installation +# Put additional catalogs files where where required for installation cp -p %SOURCE2 ./BaseData cp -p %SOURCE3 ./BaseData cp -p %SOURCE4 ./BaseData @@ -218,6 +213,9 @@ fi %changelog +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 +- Update to 3.10 + * Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7 - Manually create needed directories to fix arm and ppc builds @@ -231,7 +229,7 @@ fi * Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4 - Use xz to compress source file instead of bzip -* Wed May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 +* Thu May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 - Make available additional dso catalogs as subpackage - Modify patch to disable wget in catalog installation scripts diff --git a/sources b/sources index 426c3f2..20d4056 100644 --- a/sources +++ b/sources @@ -1,4 +1,4 @@ -9d9bca240e8fbbfb507805947360a973 skychart-3.8-2450-src-nopatents.tar.xz +f0e27d2ff180a27d1ba1d6f7036f4d85 skychart-3.10-2854-src-nopatents.tar.xz abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz 3031ca90157c291bfdd5a841dc926e64 catalog_gcvs.tgz 399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz From 8f5f939dc7a8b7ccedba8348fa37865986432fc8 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 3 Apr 2014 19:07:05 +0200 Subject: [PATCH 071/162] Fix patch 1 --- skychart-3.8-strip.patch => skychart-3.10-strip.patch | 8 ++++---- skychart.spec | 7 +++++-- 2 files changed, 9 insertions(+), 6 deletions(-) rename skychart-3.8-strip.patch => skychart-3.10-strip.patch (84%) diff --git a/skychart-3.8-strip.patch b/skychart-3.10-strip.patch similarity index 84% rename from skychart-3.8-strip.patch rename to skychart-3.10-strip.patch index 7a3c070..5d23910 100644 --- a/skychart-3.8-strip.patch +++ b/skychart-3.10-strip.patch @@ -1,6 +1,6 @@ ---- a/install.sh 2012-02-02 10:34:34.000000000 +0100 -+++ b/install.sh 2012-03-04 10:44:30.960033937 +0100 -@@ -25,13 +25,13 @@ +--- a/install.sh 2013-09-29 18:20:08.000000000 +0200 ++++ b/install.sh 2014-04-03 19:00:07.580486108 +0200 +@@ -26,13 +26,13 @@ install -m 755 -d $destdir/share/icons/hicolor/scalable install -m 755 -d $destdir/share/icons/hicolor/scalable/apps @@ -19,5 +19,5 @@ +install -v -m 644 skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so +install -v -m 644 skychart/library/wcs/libcdcwcs.so $destdir/lib/libcdcwcs.so install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop + install -v -m 644 system_integration/Linux/share/appdata/skychart.appdata.xml $destdir/share/appdata/skychart.appdata.xml install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog - install -v -m 644 system_integration/Linux/share/doc/skychart/copyright $destdir/share/doc/skychart/copyright diff --git a/skychart.spec b/skychart.spec index cbe1377..337fd1b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -27,7 +27,7 @@ Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gp Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -Patch1: skychart-3.8-strip.patch +Patch1: skychart-3.10-strip.patch Patch2: skychart-wgetdata.patch # no fpc and lazarus on s390(x) @@ -213,6 +213,9 @@ fi %changelog +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2 +- Fix patch1 + * Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 - Update to 3.10 From e92b60075ee9bcb976df4b8478fbd15679a8a3ed Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Thu, 3 Apr 2014 19:17:14 +0200 Subject: [PATCH 072/162] Add appdata file to the list --- skychart.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/skychart.spec b/skychart.spec index 337fd1b..c1aa48b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -164,6 +164,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop %{_bindir}/* %{_libdir}/*.so %{_datadir}/applications/* +%{_datadir}/appdata/skychart.appdata.xml %{_datadir}/pixmaps/* %{_datadir}/icons/* %dir %{_datadir}/skychart From 2c3075acb3c46bdcb96f3d19949ba2f3f22806eb Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Sun, 8 Jun 2014 01:31:58 -0500 Subject: [PATCH 073/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index c1aa48b..f0bc374 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -214,6 +214,9 @@ fi %changelog +* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2 - Fix patch1 From 50ed8fd1b41c2791a11e067101d12697678eba52 Mon Sep 17 00:00:00 2001 From: Peter Robinson <pbrobinson@fedoraproject.org> Date: Mon, 18 Aug 2014 02:37:43 +0000 Subject: [PATCH 074/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index f0bc374..751fa62 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -214,6 +214,9 @@ fi %changelog +* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 8dc462d7f046b4ad230afe4e6d7cefcd982884fd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <dennis@ausil.us> Date: Fri, 19 Jun 2015 01:02:55 +0000 Subject: [PATCH 075/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 751fa62..ca95cad 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -214,6 +214,9 @@ fi %changelog +* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 2026c704dcab0b80cd1a6dcf3e1bc38bc1f8051e Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 20 Jun 2015 09:10:25 +0200 Subject: [PATCH 076/162] Added patch to fix build with lazarus 1.4 --- skychart-jdcalendar-laz14.patch | 69 +++++++++++++++++++++++++++++++++ skychart.spec | 9 ++++- 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 skychart-jdcalendar-laz14.patch diff --git a/skychart-jdcalendar-laz14.patch b/skychart-jdcalendar-laz14.patch new file mode 100644 index 0000000..f5a29db --- /dev/null +++ b/skychart-jdcalendar-laz14.patch @@ -0,0 +1,69 @@ +Index: skychart/component/jdcalendar/jdcalendar.pas +=================================================================== +--- skychart/component/jdcalendar/jdcalendar.pas (revision 2854) ++++ skychart/component/jdcalendar/jdcalendar.pas (working copy) +@@ -26,7 +26,7 @@ + interface + + uses +- SysUtils, Classes, Dialogs, LCLType, Grids, StdCtrls, ++ SysUtils, Classes, Dialogs, LCLType, Grids, StdCtrls, LCLVersion, + Controls, ExtCtrls, Types, GraphType, Graphics, Forms, Buttons, MaskEdit, + Math, LResources, EditBtn, enhedits; + +@@ -138,7 +138,11 @@ + + { TJDDatePicker } + ++ {$if (lcl_major<2) and (lcl_minor<3)} + TJDDatePicker = class(TEditButton) ++ {$ELSE} ++ TJDDatePicker = class(TCustomEditButton) ++ {$ENDIF} + private + savejd: double; + Flabels: TDatesLabelsArray; +@@ -145,7 +149,11 @@ + Fcaption: string; + procedure UpdDate; + protected ++ {$if (lcl_major<2) and (lcl_minor<3)} + procedure DoButtonClick(Sender: TObject); override; ++ {$ELSE} ++ procedure ButtonClick(Sender: TObject); ++ {$ENDIF} + procedure SetJD(Value: double); + public + constructor Create(AOwner: TComponent); override; +@@ -810,7 +818,11 @@ + Color := clBtnFace; + ReadOnly := True; + Button.Glyph.LoadFromLazarusResource('BtnDatePicker'); ++ {$if (lcl_major<2) and (lcl_minor<3)} + Button.OnClick := @DoButtonClick; ++ {$ELSE} ++ Button.OnClick := @ButtonClick; ++ {$ENDIF} + Button.Enabled := True; + UpdDate; + end; +@@ -820,11 +832,19 @@ + inherited Destroy; + end; + ++{$if (lcl_major<2) and (lcl_minor<3)} + procedure TJDDatePicker.DoButtonClick(Sender: TObject);//or onClick ++{$ELSE} ++procedure TJDDatePicker.ButtonClick(Sender: TObject);//or onClick ++{$ENDIF} + var + CD: TJDCalendarDialog; + begin ++ {$if (lcl_major<2) and (lcl_minor<3)} + inherited DoButtonClick(Sender); ++ {$ELSE} ++ inherited ButtonClick; ++ {$ENDIF} + + CD := TJDCalendarDialog.Create(Self); + CD.JD := savejd; diff --git a/skychart.spec b/skychart.spec index ca95cad..417a2ea 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -29,6 +29,8 @@ Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_o Patch1: skychart-3.10-strip.patch Patch2: skychart-wgetdata.patch +# Patch to fix versione 3.10 with lazarus 1.4. Upstream #1410 +Patch3: skychart-jdcalendar-laz14.patch # no fpc and lazarus on s390(x) # no lazarus on sparc(64) @@ -95,6 +97,8 @@ Galactic Planetary Nebulae. # Disable wget for documentation and ephemeris data %patch2 -p1 +%patch3 -p1 + find skychart -type f -print0 |xargs -0 chmod 644 # Fix exotic EOL encodings @@ -214,6 +218,9 @@ fi %changelog +* Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6 +- Added patch to fix build with lazarus 1.4 + * Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 82075c264beabb84ffd34fbc7d5f7bb93380a627 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 20 Jun 2015 09:30:42 +0200 Subject: [PATCH 077/162] Fix patch command --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 417a2ea..d27507c 100644 --- a/skychart.spec +++ b/skychart.spec @@ -97,7 +97,7 @@ Galactic Planetary Nebulae. # Disable wget for documentation and ephemeris data %patch2 -p1 -%patch3 -p1 +%patch3 find skychart -type f -print0 |xargs -0 chmod 644 From ff7427b5d7b1cf87cf616300492f2d18156edf84 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 21 Jun 2015 13:01:04 +0200 Subject: [PATCH 078/162] Validate appdata file --- skychart.spec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/skychart.spec b/skychart.spec index d27507c..8ae7085 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -40,7 +40,7 @@ ExcludeArch: s390 s390x sparc sparc64 BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel -BuildRequires: prelink +BuildRequires: prelink libappstream-glib Requires: xdg-utils tzdata xplanet %description @@ -162,9 +162,12 @@ chmod +x %{buildroot}%{_libdir}/* # Menu entry desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop +# Appdata file check +appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata.xml + %files -%doc skychart/gpl.txt +%license skychart/gpl.txt %{_bindir}/* %{_libdir}/*.so %{_datadir}/applications/* @@ -218,6 +221,10 @@ fi %changelog +* Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7 +- Validate appdata file +- Change license file location + * Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6 - Added patch to fix build with lazarus 1.4 From 247e70ed3d67ba35b70d09954946a31d7ff8ba38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl> Date: Tue, 4 Aug 2015 12:36:39 -0400 Subject: [PATCH 079/162] execstack is not used since last release --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 8ae7085..bb6607e 100644 --- a/skychart.spec +++ b/skychart.spec @@ -40,7 +40,7 @@ ExcludeArch: s390 s390x sparc sparc64 BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel -BuildRequires: prelink libappstream-glib +BuildRequires: libappstream-glib Requires: xdg-utils tzdata xplanet %description From b31cc2aadb4579ef7ac6c7a84a49dd053a6d8b05 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 10:40:16 +0100 Subject: [PATCH 080/162] Update to 3.11svn --- generate-tarball.sh | 2 +- ...0-strip.patch => skychart-3.11-strip.patch | 0 skychart-jdcalendar-laz14.patch | 69 ------------------- skychart.spec | 14 ++-- 4 files changed, 6 insertions(+), 79 deletions(-) rename skychart-3.10-strip.patch => skychart-3.11-strip.patch (100%) delete mode 100644 skychart-jdcalendar-laz14.patch diff --git a/generate-tarball.sh b/generate-tarball.sh index 051ca40..02ae0e5 100755 --- a/generate-tarball.sh +++ b/generate-tarball.sh @@ -2,7 +2,7 @@ VERSION=$1 -tar -xjvf skychart-$VERSION-src.tar.bz2 +tar -xJvf skychart-$VERSION-src.tar.xz #Remove pre-built software rm -rf skychart-$VERSION-src/tools/data/iridflar diff --git a/skychart-3.10-strip.patch b/skychart-3.11-strip.patch similarity index 100% rename from skychart-3.10-strip.patch rename to skychart-3.11-strip.patch diff --git a/skychart-jdcalendar-laz14.patch b/skychart-jdcalendar-laz14.patch deleted file mode 100644 index f5a29db..0000000 --- a/skychart-jdcalendar-laz14.patch +++ /dev/null @@ -1,69 +0,0 @@ -Index: skychart/component/jdcalendar/jdcalendar.pas -=================================================================== ---- skychart/component/jdcalendar/jdcalendar.pas (revision 2854) -+++ skychart/component/jdcalendar/jdcalendar.pas (working copy) -@@ -26,7 +26,7 @@ - interface - - uses -- SysUtils, Classes, Dialogs, LCLType, Grids, StdCtrls, -+ SysUtils, Classes, Dialogs, LCLType, Grids, StdCtrls, LCLVersion, - Controls, ExtCtrls, Types, GraphType, Graphics, Forms, Buttons, MaskEdit, - Math, LResources, EditBtn, enhedits; - -@@ -138,7 +138,11 @@ - - { TJDDatePicker } - -+ {$if (lcl_major<2) and (lcl_minor<3)} - TJDDatePicker = class(TEditButton) -+ {$ELSE} -+ TJDDatePicker = class(TCustomEditButton) -+ {$ENDIF} - private - savejd: double; - Flabels: TDatesLabelsArray; -@@ -145,7 +149,11 @@ - Fcaption: string; - procedure UpdDate; - protected -+ {$if (lcl_major<2) and (lcl_minor<3)} - procedure DoButtonClick(Sender: TObject); override; -+ {$ELSE} -+ procedure ButtonClick(Sender: TObject); -+ {$ENDIF} - procedure SetJD(Value: double); - public - constructor Create(AOwner: TComponent); override; -@@ -810,7 +818,11 @@ - Color := clBtnFace; - ReadOnly := True; - Button.Glyph.LoadFromLazarusResource('BtnDatePicker'); -+ {$if (lcl_major<2) and (lcl_minor<3)} - Button.OnClick := @DoButtonClick; -+ {$ELSE} -+ Button.OnClick := @ButtonClick; -+ {$ENDIF} - Button.Enabled := True; - UpdDate; - end; -@@ -820,11 +832,19 @@ - inherited Destroy; - end; - -+{$if (lcl_major<2) and (lcl_minor<3)} - procedure TJDDatePicker.DoButtonClick(Sender: TObject);//or onClick -+{$ELSE} -+procedure TJDDatePicker.ButtonClick(Sender: TObject);//or onClick -+{$ENDIF} - var - CD: TJDCalendarDialog; - begin -+ {$if (lcl_major<2) and (lcl_minor<3)} - inherited DoButtonClick(Sender); -+ {$ELSE} -+ inherited ButtonClick; -+ {$ENDIF} - - CD := TJDCalendarDialog.Create(Self); - CD.JD := savejd; diff --git a/skychart.spec b/skychart.spec index bb6607e..d414c19 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 2854 +%global svnversion 3141 Name: skychart -Version: 3.10 -Release: 7%{?dist} +Version: 3.11 +Release: 1.%{svnversion}svn.%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -11,7 +11,7 @@ URL: http://www.ap-i.net/skychart/ # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: -# ./generate-tarball.sh 3.10-2854 +# ./generate-tarball.sh 3.11-3141 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -27,10 +27,8 @@ Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gp Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -Patch1: skychart-3.10-strip.patch +Patch1: skychart-3.11-strip.patch Patch2: skychart-wgetdata.patch -# Patch to fix versione 3.10 with lazarus 1.4. Upstream #1410 -Patch3: skychart-jdcalendar-laz14.patch # no fpc and lazarus on s390(x) # no lazarus on sparc(64) @@ -97,8 +95,6 @@ Galactic Planetary Nebulae. # Disable wget for documentation and ephemeris data %patch2 -p1 -%patch3 - find skychart -type f -print0 |xargs -0 chmod 644 # Fix exotic EOL encodings From 29598aa7c919e92e720742e638c9ef73dfb1a447 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 10:56:33 +0100 Subject: [PATCH 081/162] new source From 93f6a751328c0a4188db282058ee6f5a6cd4f7ed Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 10:57:35 +0100 Subject: [PATCH 082/162] new source From 54dbc43b2017c57670aa711e155a55089c0c0d6c Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 11:00:46 +0100 Subject: [PATCH 083/162] modify source files From 92f22688edd17622d04e6f67b632677542a9062b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 11:02:45 +0100 Subject: [PATCH 084/162] fix files not being committed?? --- .gitignore | 1 + skychart.spec | 1 + sources | 1 + 3 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index cb45f98..8db86c8 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ skychart-3.0.1.6.tar.gz /catalog_ocl.tgz /skychart-3.8-2450-src-nopatents.tar.xz /skychart-3.10-2854-src-nopatents.tar.xz +/skychart-3.11-3141-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index d414c19..2e2acf1 100644 --- a/skychart.spec +++ b/skychart.spec @@ -41,6 +41,7 @@ BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel BuildRequires: libappstream-glib Requires: xdg-utils tzdata xplanet + %description This program enables you to draw sky charts, making use of the data in 16 catalogs of stars and nebulae. In addition the position of planets, diff --git a/sources b/sources index 20d4056..2f63a09 100644 --- a/sources +++ b/sources @@ -9,3 +9,4 @@ de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz 7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz +a34d0d2f86bfa01d86353198893cb538 skychart-3.11-3141-src-nopatents.tar.xz From a81a4bf0f6c3e5dfb947408e640bd7d6611df2b9 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 11:05:06 +0100 Subject: [PATCH 085/162] fix package release name --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 2e2acf1..45756ab 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 1.%{svnversion}svn.%{?dist} +Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ From 8ef2f8a02c6a6a2a518b94aaaef95051f31c1b4a Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 11:38:37 +0100 Subject: [PATCH 086/162] Correct files declaration --- skychart.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 45756ab..6a96cf1 100644 --- a/skychart.spec +++ b/skychart.spec @@ -167,10 +167,10 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %license skychart/gpl.txt %{_bindir}/* %{_libdir}/*.so -%{_datadir}/applications/* -%{_datadir}/appdata/skychart.appdata.xml -%{_datadir}/pixmaps/* -%{_datadir}/icons/* +%{_datadir}/applications/%{name}.desktop +%{_datadir}/appdata/%{name}.appdata.xml +%{_datadir}/pixmaps/%{name}.png +%{_datadir}/icons/*/*/*/%{name}.png %dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat/DSoutlines @@ -218,6 +218,9 @@ fi %changelog +* Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn +- Update to 3.11svn to fix incompatibility with lazarus 1.4.2 + * Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7 - Validate appdata file - Change license file location From b69954277279e30135c3924860f3e4d09afdef68 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 11:47:26 +0100 Subject: [PATCH 087/162] Remove old source file --- .gitignore | 8 -------- skychart.spec | 1 - sources | 1 - 3 files changed, 10 deletions(-) diff --git a/.gitignore b/.gitignore index 8db86c8..e8c5bfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,3 @@ -skychart-3.0.1.6.tar.gz -/skychart_3.2-source.tgz -/skychart-3.4-source.tgz -/skychart-3.6-2150-src-nopatents.tar.bz2 -/skychart-3.7-2268-src-nopatents.tar.bz2 -/skychart-3.8-2450-src-nopatents.tar.bz2 /catalog_gcvs.tgz /catalog_idx.tgz /catalog_tycho2.tgz @@ -14,6 +8,4 @@ skychart-3.0.1.6.tar.gz /catalog_gpn.tgz /catalog_lbn.tgz /catalog_ocl.tgz -/skychart-3.8-2450-src-nopatents.tar.xz -/skychart-3.10-2854-src-nopatents.tar.xz /skychart-3.11-3141-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 6a96cf1..4633d73 100644 --- a/skychart.spec +++ b/skychart.spec @@ -41,7 +41,6 @@ BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel BuildRequires: libappstream-glib Requires: xdg-utils tzdata xplanet - %description This program enables you to draw sky charts, making use of the data in 16 catalogs of stars and nebulae. In addition the position of planets, diff --git a/sources b/sources index 2f63a09..f299a98 100644 --- a/sources +++ b/sources @@ -1,4 +1,3 @@ -f0e27d2ff180a27d1ba1d6f7036f4d85 skychart-3.10-2854-src-nopatents.tar.xz abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz 3031ca90157c291bfdd5a841dc926e64 catalog_gcvs.tgz 399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz From 14beab02b7e85b3515b5fd7a25be77b438f64845 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 14 Nov 2015 12:09:07 +0100 Subject: [PATCH 088/162] Add unpackaged file --- skychart.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/skychart.spec b/skychart.spec index 4633d73..26e05e1 100644 --- a/skychart.spec +++ b/skychart.spec @@ -170,6 +170,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}.appdata.xml %{_datadir}/pixmaps/%{name}.png %{_datadir}/icons/*/*/*/%{name}.png +%{_datadir}/icons/*/*/*/%{name}.svg %dir %{_datadir}/skychart %{_datadir}/skychart/data %{_datadir}/skychart/cat/DSoutlines From 3353e407f7c04ce7e68025dc7e92ebdcd1119497 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Fri, 27 Nov 2015 10:09:01 +0100 Subject: [PATCH 089/162] Set ExclusiveArch to prevent build on arm and s390x because no fpc and lazarus are available on those architectures --- skychart.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/skychart.spec b/skychart.spec index 26e05e1..6c33d0d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 1.%{svnversion}svn%{?dist} +Release: 2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -30,9 +30,8 @@ Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_o Patch1: skychart-3.11-strip.patch Patch2: skychart-wgetdata.patch -# no fpc and lazarus on s390(x) -# no lazarus on sparc(64) -ExcludeArch: s390 s390x sparc sparc64 +# At this moment fpc and lazarus are not working on arm and s390x +ExclusiveArch: %{ix86} x86_64 ppc64 ppc64le BuildRequires: fpc >= 2.4.4 @@ -218,6 +217,9 @@ fi %changelog +* Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn +- Set ExclusiveArch to prevent build on arm and s390x + * Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn - Update to 3.11svn to fix incompatibility with lazarus 1.4.2 From 1841f6f50c1c487f80903d6d2e7007d444b82a3e Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Fri, 11 Dec 2015 17:41:39 +0100 Subject: [PATCH 090/162] Revert back to ExcludeArch --- skychart.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/skychart.spec b/skychart.spec index 6c33d0d..0a186af 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 2.%{svnversion}svn%{?dist} +Release: 3.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -30,8 +30,8 @@ Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_o Patch1: skychart-3.11-strip.patch Patch2: skychart-wgetdata.patch -# At this moment fpc and lazarus are not working on arm and s390x -ExclusiveArch: %{ix86} x86_64 ppc64 ppc64le +# fpc and lazarus are not working on s390 and ppc +ExcludeArch: s390 s390x ppc64 ppc64le BuildRequires: fpc >= 2.4.4 @@ -217,6 +217,9 @@ fi %changelog +* Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn +- Revert back to ExcludeArch + * Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn - Set ExclusiveArch to prevent build on arm and s390x From 9a18e2a1e4ef50410b550bb57745343e1b2bd2dd Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 20 Dec 2015 14:21:14 +0100 Subject: [PATCH 091/162] Properly set ExcludeArch --- skychart.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/skychart.spec b/skychart.spec index 0a186af..9b7f1f6 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 3.%{svnversion}svn%{?dist} +Release: 4.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -30,8 +30,8 @@ Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_o Patch1: skychart-3.11-strip.patch Patch2: skychart-wgetdata.patch -# fpc and lazarus are not working on s390 and ppc -ExcludeArch: s390 s390x ppc64 ppc64le +# fpc and lazarus are not working on aarch64 s390 and ppc +ExcludeArch: aarch64 %{power64} s390 s390x BuildRequires: fpc >= 2.4.4 @@ -217,6 +217,9 @@ fi %changelog +* Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn +- Properly set ExcludeArch + * Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn - Revert back to ExcludeArch From 10ae04714e7ebf57782bbd0fb57a5456e97487d7 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 10 Jan 2016 15:08:49 +0100 Subject: [PATCH 092/162] Update svn revision, libraries are now in separate package libpasastro. Fix appdata file validation. Correct wrong FSF address in source headers. --- .gitignore | 1 + skychart-3.11-fix-appdata.patch | 35 +++++++++++++++++ skychart-3.11-strip.patch | 12 ++---- skychart.spec | 67 +++++++++++++++++++-------------- sources | 1 + 5 files changed, 78 insertions(+), 38 deletions(-) create mode 100644 skychart-3.11-fix-appdata.patch diff --git a/.gitignore b/.gitignore index e8c5bfd..38a77ed 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /catalog_lbn.tgz /catalog_ocl.tgz /skychart-3.11-3141-src-nopatents.tar.xz +/skychart-3.11-3157-src-nopatents.tar.xz diff --git a/skychart-3.11-fix-appdata.patch b/skychart-3.11-fix-appdata.patch new file mode 100644 index 0000000..ae0f574 --- /dev/null +++ b/skychart-3.11-fix-appdata.patch @@ -0,0 +1,35 @@ +--- a/system_integration/Linux/share/appdata/skychart.appdata.xml 2013-09-29 18:21:18.000000000 +0200 ++++ b/system_integration/Linux/share/appdata/skychart.appdata.xml 2016-01-10 13:23:20.892471882 +0100 +@@ -1,20 +1,30 @@ + <?xml version="1.0" encoding="UTF-8"?> + <application> + <id type="desktop">skychart.desktop</id> +- <licence>CC0</licence> ++ <metadata_license>CC0-1.0</metadata_license> ++ <project_license>GPL-2.0+</project_license> ++ <name>Skychart</name> ++ <summary>Planetarium software for the advanced amateur astronomer</summary> + <description> + <p> + Skychart is a free and advanced planetarium software for drawing sky charts + for specific places and times with nicely graphic and for controlling + telescopes by connecting them to pc. ++ </p> ++ <p> + It can also calculate Solar System objects visibility and data, like planets, + comets and asteroids, and display moon and planets in realistic mode. ++ </p> ++ <p> + Skychart also includes VarObs, a software to help astronomers to get data + for variable stars observation. + </p> + </description> + <screenshots> +- <screenshot type="default" width="800" height="600">http://www.ap-i.net/skychart/_media/en/screenshot/vo_m101.jpg</screenshot> ++ <screenshot type="default"> ++ <image>http://www.ap-i.net/skychart/_media/en/screenshot/vo_m101.jpg</image> ++ <caption>The main window of Skychart in action.</caption> ++ </screenshot> + </screenshots> + <url type="homepage">http://www.ap-i.net/skychart/</url> + <updatecontact>pch@ap-i.net</updatecontact> diff --git a/skychart-3.11-strip.patch b/skychart-3.11-strip.patch index 5d23910..e5aac7e 100644 --- a/skychart-3.11-strip.patch +++ b/skychart-3.11-strip.patch @@ -1,6 +1,6 @@ ---- a/install.sh 2013-09-29 18:20:08.000000000 +0200 -+++ b/install.sh 2014-04-03 19:00:07.580486108 +0200 -@@ -26,13 +26,13 @@ +--- a/install.sh 2015-12-18 11:06:30.000000000 +0100 ++++ b/install.sh 2016-01-09 19:06:49.424399488 +0100 +@@ -25,10 +25,10 @@ install -m 755 -d $destdir/share/icons/hicolor/scalable install -m 755 -d $destdir/share/icons/hicolor/scalable/apps @@ -8,16 +8,10 @@ -install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon -install -v -m 755 -s varobs/varobs $destdir/bin/varobs -install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin --install -v -m 644 -s skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so --install -v -m 644 -s skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so --install -v -m 644 -s skychart/library/wcs/libcdcwcs.so $destdir/lib/libcdcwcs.so +install -v -m 755 skychart/cdc $destdir/bin/skychart +install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon +install -v -m 755 varobs/varobs $destdir/bin/varobs +install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin -+install -v -m 644 skychart/library/getdss/libgetdss.so $destdir/lib/libgetdss.so -+install -v -m 644 skychart/library/plan404/libplan404.so $destdir/lib/libplan404.so -+install -v -m 644 skychart/library/wcs/libcdcwcs.so $destdir/lib/libcdcwcs.so install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop install -v -m 644 system_integration/Linux/share/appdata/skychart.appdata.xml $destdir/share/appdata/skychart.appdata.xml install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog diff --git a/skychart.spec b/skychart.spec index 9b7f1f6..7fcfc4a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3141 +%global svnversion 3157 Name: skychart Version: 3.11 -Release: 4.%{svnversion}svn%{?dist} +Release: 5.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -11,7 +11,7 @@ URL: http://www.ap-i.net/skychart/ # we remove it from sources. # Download upstream tarball and invoke this script # while in tarballs directory: -# ./generate-tarball.sh 3.11-3141 +# ./generate-tarball.sh 3.11-3157 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -27,10 +27,22 @@ Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gp Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +# Avoid stripping debuginfo from executables +# This is Fedora specific and not reported upstream Patch1: skychart-3.11-strip.patch + +# Disable wget in install script +# This is Fedora specific and not reported upstream Patch2: skychart-wgetdata.patch -# fpc and lazarus are not working on aarch64 s390 and ppc +# Fix appdata file validation +# Reported upstream +Patch3: skychart-3.11-fix-appdata.patch + +# fpc isn't available on aarch64 and s390 +# lazarus isn't available on ppc and s390 +# so ccdciel could not build +# https://bugzilla.redhat.com/show_bug.cgi?id=### ExcludeArch: aarch64 %{power64} s390 s390x @@ -38,7 +50,8 @@ BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel BuildRequires: libappstream-glib -Requires: xdg-utils tzdata xplanet + +Requires: libpasastro xdg-utils tzdata xplanet %description This program enables you to draw sky charts, making use of the data in 16 @@ -87,19 +100,19 @@ Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; Galactic Planetary Nebulae. %prep -%setup -q -n %{name}-%{version}-%{svnversion}-src +%setup0 -q -n %{name}-%{version}-%{svnversion}-src %patch1 -p1 -# Disable wget for documentation and ephemeris data %patch2 -p1 -find skychart -type f -print0 |xargs -0 chmod 644 +%patch3 -p1 -# Fix exotic EOL encodings -dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/common.css -dos2unix -q -k tools/doc/html_doc/en/feature_class_fichiers/custom.css -dos2unix -q -k tools/doc/releasenotes*.txt +# Fix executable bit set on sources +find skychart -type f -print0 |xargs -0 chmod -x + +# Fix wrong FSF address in source headers +grep -rl '59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.' * | xargs -i@ sed -i 's/59 Temple Place - Suite 330, Boston, MA 02111-1307, USA./51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA./g' @ # Put additional catalogs files where where required for installation cp -p %SOURCE2 ./BaseData @@ -127,12 +140,9 @@ mkdir ./varobs/units/powerpc64-linux-gtk2 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} -# We build these separately so that we can apply optflags -make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/getdss -make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/plan404 -make %{_smp_mflags} arch_flags="%{optflags}" -C skychart/library/wcs - -make # not concurrency-safe +# Skychart doesn't like parallel building so we don't use macro. +# We pass options to fpc compiler for generate debug info. +make fpcopts="-O1 -g -gl -OoREGVAR -Ch2000000 -CX -XX" %install # Install main program @@ -148,12 +158,7 @@ make install install_doc PREFIX=%{buildroot}%{_prefix} make install install_cat1 PREFIX=%{buildroot}%{_prefix} make install install_cat2 PREFIX=%{buildroot}%{_prefix} -# Fix multilib path -[ %{_lib} = lib ] || mv %{buildroot}%{_prefix}/{lib,%{_lib}} - -# Fix debuginfo -chmod +x %{buildroot}%{_libdir}/* - +%check # Menu entry desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop @@ -163,8 +168,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %files %license skychart/gpl.txt +%doc %{_datadir}/doc/skychart/changelog +%doc %{_datadir}/doc/skychart/copyright %{_bindir}/* -%{_libdir}/*.so %{_datadir}/applications/%{name}.desktop %{_datadir}/appdata/%{name}.appdata.xml %{_datadir}/pixmaps/%{name}.png @@ -181,8 +187,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/doc/html_doc %{_datadir}/skychart/doc/releasenotes*.txt %{_datadir}/skychart/doc/varobs -%exclude /usr/share/doc/skychart/changelog -%exclude /usr/share/doc/skychart/copyright + %files doc %doc %{_datadir}/skychart/doc/wiki_doc @@ -202,11 +207,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/cat/gpn %post -/sbin/ldconfig /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -/sbin/ldconfig if [ $1 -eq 0 ] ; then /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : @@ -217,6 +220,12 @@ fi %changelog +* Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn +- Update svn version +- Libraries are now in separate package libpasastro +- Fix wrong FSF address in source headers +- Fix appdata file validation + * Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn - Properly set ExcludeArch diff --git a/sources b/sources index f299a98..c754473 100644 --- a/sources +++ b/sources @@ -9,3 +9,4 @@ de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz a34d0d2f86bfa01d86353198893cb538 skychart-3.11-3141-src-nopatents.tar.xz +93f8af8b9ea57606b531dcc0947275c1 skychart-3.11-3157-src-nopatents.tar.xz From 75f62e3a5989b0bb35e459f2e422f78b1ee9f74e Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 12 Jan 2016 17:22:32 +0100 Subject: [PATCH 093/162] Add .metainfo.xml files to subpackages --- skychart-data-dso.metainfo.xml | 11 +++++++++++ skychart-data-stars.metainfo.xml | 11 +++++++++++ skychart.spec | 18 +++++++++++++++--- 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 skychart-data-dso.metainfo.xml create mode 100644 skychart-data-stars.metainfo.xml diff --git a/skychart-data-dso.metainfo.xml b/skychart-data-dso.metainfo.xml new file mode 100644 index 0000000..25e26fc --- /dev/null +++ b/skychart-data-dso.metainfo.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +​<component type="addon"> +​ <id>skychart-data-dso</id> +​ <extends>skychart.desktop</extends> +​ <name>Additional Nebulae Catalogs</name> +​ <summary>Standard nebulae catalogs: New General Catalogue; Principal + Galaxies Catalogue; Lynds Bright Nebulae; Open Cluster Data; + Globular Clusters in the Milky Way; Galactic Planetary Nebulae.</summary> +​ <metadata_license>CC0-1.0</metadata_license> +​ <project_license>Public Domain</project_license> +​</component> \ No newline at end of file diff --git a/skychart-data-stars.metainfo.xml b/skychart-data-stars.metainfo.xml new file mode 100644 index 0000000..d1d6aaf --- /dev/null +++ b/skychart-data-stars.metainfo.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +​<component type="addon"> +​ <id>skychart-data-stars</id> +​ <extends>skychart.desktop</extends> +​ <name>Additional Star Catalogs</name> +​ <summary>Additional stars catalog down to magnitude 12, variable and + double stars: Tycho 2; General Catalogue of Variable Stars; + Washington Double Stars.</summary> +​ <metadata_license>CC0-1.0</metadata_license> +​ <project_license>Public Domain</project_license> +​</component> \ No newline at end of file diff --git a/skychart.spec b/skychart.spec index 7fcfc4a..dd02e0d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 5.%{svnversion}svn%{?dist} +Release: 6.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -26,6 +26,9 @@ Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gc Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +# Metainfo.xml files for subpackages +Source12: skychart-data-stars.metainfo.xml +Source13: skychart-data-dso.metainfo.xml # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream @@ -40,9 +43,9 @@ Patch2: skychart-wgetdata.patch Patch3: skychart-3.11-fix-appdata.patch # fpc isn't available on aarch64 and s390 -# lazarus isn't available on ppc and s390 +# lazarus isn't available on aarch64 ppc and s390 # so ccdciel could not build -# https://bugzilla.redhat.com/show_bug.cgi?id=### +# https://bugzilla.redhat.com/show_bug.cgi?id=1287833 ExcludeArch: aarch64 %{power64} s390 s390x @@ -158,6 +161,10 @@ make install install_doc PREFIX=%{buildroot}%{_prefix} make install install_cat1 PREFIX=%{buildroot}%{_prefix} make install install_cat2 PREFIX=%{buildroot}%{_prefix} +# Put .metainfo.xml files in appdata dir +cp %SOURCE12 %{buildroot}%{_datadir}/appdata/ +cp %SOURCE13 %{buildroot}%{_datadir}/appdata/ + %check # Menu entry desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop @@ -197,6 +204,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/cat/tycho2 %{_datadir}/skychart/cat/wds %{_datadir}/skychart/cat/bsc5 +%{_datadir}/appdata/%{name}-data-stars.metainfo.xml %files data-dso %{_datadir}/skychart/cat/ngc2000/*.dat @@ -205,6 +213,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/cat/ocl %{_datadir}/skychart/cat/gcm %{_datadir}/skychart/cat/gpn +%{_datadir}/appdata/%{name}-data-dso.metainfo.xml %post /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : @@ -220,6 +229,9 @@ fi %changelog +* Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn +- Add .metainfo.xml files to subpackages + * Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn - Update svn version - Libraries are now in separate package libpasastro From 5131195e2a3a8cf96804bea22117caf16bc66e88 Mon Sep 17 00:00:00 2001 From: Richard Hughes <richard@hughsie.com> Date: Fri, 15 Jan 2016 11:45:51 +0000 Subject: [PATCH 094/162] Fix the metainfo files by removing zero-width space chars --- skychart-data-dso.metainfo.xml | 16 ++++++++-------- skychart-data-stars.metainfo.xml | 16 ++++++++-------- skychart.spec | 5 ++++- 3 files changed, 20 insertions(+), 17 deletions(-) diff --git a/skychart-data-dso.metainfo.xml b/skychart-data-dso.metainfo.xml index 25e26fc..e785909 100644 --- a/skychart-data-dso.metainfo.xml +++ b/skychart-data-dso.metainfo.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> -​<component type="addon"> -​ <id>skychart-data-dso</id> -​ <extends>skychart.desktop</extends> -​ <name>Additional Nebulae Catalogs</name> -​ <summary>Standard nebulae catalogs: New General Catalogue; Principal +<component type="addon"> + <id>skychart-data-dso</id> + <extends>skychart.desktop</extends> + <name>Additional Nebulae Catalogs</name> + <summary>Standard nebulae catalogs: New General Catalogue; Principal Galaxies Catalogue; Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; Galactic Planetary Nebulae.</summary> -​ <metadata_license>CC0-1.0</metadata_license> -​ <project_license>Public Domain</project_license> -​</component> \ No newline at end of file + <metadata_license>CC0-1.0</metadata_license> + <project_license>Public Domain</project_license> +</component> diff --git a/skychart-data-stars.metainfo.xml b/skychart-data-stars.metainfo.xml index d1d6aaf..e74b315 100644 --- a/skychart-data-stars.metainfo.xml +++ b/skychart-data-stars.metainfo.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> -​<component type="addon"> -​ <id>skychart-data-stars</id> -​ <extends>skychart.desktop</extends> -​ <name>Additional Star Catalogs</name> -​ <summary>Additional stars catalog down to magnitude 12, variable and +<component type="addon"> + <id>skychart-data-stars</id> + <extends>skychart.desktop</extends> + <name>Additional Star Catalogs</name> + <summary>Additional stars catalog down to magnitude 12, variable and double stars: Tycho 2; General Catalogue of Variable Stars; Washington Double Stars.</summary> -​ <metadata_license>CC0-1.0</metadata_license> -​ <project_license>Public Domain</project_license> -​</component> \ No newline at end of file + <metadata_license>CC0-1.0</metadata_license> + <project_license>Public Domain</project_license> +</component> diff --git a/skychart.spec b/skychart.spec index dd02e0d..531f2b6 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 6.%{svnversion}svn%{?dist} +Release: 7.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -229,6 +229,9 @@ fi %changelog +* Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn +- Fix the metainfo files by removing zero-width space chars + * Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn - Add .metainfo.xml files to subpackages From 72a67fe215f5488b4d9112af75cb6ffd0bab30be Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Fri, 5 Feb 2016 00:08:17 +0000 Subject: [PATCH 095/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 531f2b6..e42db35 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 7.%{svnversion}svn%{?dist} +Release: 8.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -229,6 +229,9 @@ fi %changelog +* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn - Fix the metainfo files by removing zero-width space chars From b4952c3f08aa0d00a80cc47c4c29dc5b68425550 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 16 Feb 2016 17:12:23 +0100 Subject: [PATCH 096/162] New upstream sources and new patches --- .gitignore | 1 + generate-tarball.sh | 14 ++++++++++++- skychart-3.11-fix-appdata.patch | 35 --------------------------------- skychart-3.11-noupdate.patch | 11 +++++++++++ skychart-3.11-satmessage.patch | 13 ++++++++++++ sources | 2 ++ 6 files changed, 40 insertions(+), 36 deletions(-) delete mode 100644 skychart-3.11-fix-appdata.patch create mode 100644 skychart-3.11-noupdate.patch create mode 100644 skychart-3.11-satmessage.patch diff --git a/.gitignore b/.gitignore index 38a77ed..f05eaf2 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /catalog_ocl.tgz /skychart-3.11-3141-src-nopatents.tar.xz /skychart-3.11-3157-src-nopatents.tar.xz +/skychart-3.11-3238-src-nopatents.tar.xz diff --git a/generate-tarball.sh b/generate-tarball.sh index 02ae0e5..eee8c0c 100755 --- a/generate-tarball.sh +++ b/generate-tarball.sh @@ -7,7 +7,19 @@ tar -xJvf skychart-$VERSION-src.tar.xz #Remove pre-built software rm -rf skychart-$VERSION-src/tools/data/iridflar rm -rf skychart-$VERSION-src/tools/data/quicksat -rm -rf skychart-$VERSION-src/system_integration/Windows/data +rm -rf skychart-$VERSION-src/skychart/sample_client/astrolabe/*.dll +rm -rf skychart-$VERSION-src/skychart/sample_client/ds2cdc/*.dll.zip + +#Remove Mac and Windows unneeded stuff +rm -rf skychart-$VERSION-src/system_integration/Windows +rm -rf skychart-$VERSION-src/system_integration/MacOSX + +#Remove libraries provided by separate package libpasastro +#they are here only for building the Win version +rm -rf skychart-$VERSION-src/skychart/library/getdss +rm -rf skychart-$VERSION-src/skychart/library/plan404 +rm -rf skychart-$VERSION-src/skychart/library/wcs + tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src diff --git a/skychart-3.11-fix-appdata.patch b/skychart-3.11-fix-appdata.patch deleted file mode 100644 index ae0f574..0000000 --- a/skychart-3.11-fix-appdata.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/system_integration/Linux/share/appdata/skychart.appdata.xml 2013-09-29 18:21:18.000000000 +0200 -+++ b/system_integration/Linux/share/appdata/skychart.appdata.xml 2016-01-10 13:23:20.892471882 +0100 -@@ -1,20 +1,30 @@ - <?xml version="1.0" encoding="UTF-8"?> - <application> - <id type="desktop">skychart.desktop</id> -- <licence>CC0</licence> -+ <metadata_license>CC0-1.0</metadata_license> -+ <project_license>GPL-2.0+</project_license> -+ <name>Skychart</name> -+ <summary>Planetarium software for the advanced amateur astronomer</summary> - <description> - <p> - Skychart is a free and advanced planetarium software for drawing sky charts - for specific places and times with nicely graphic and for controlling - telescopes by connecting them to pc. -+ </p> -+ <p> - It can also calculate Solar System objects visibility and data, like planets, - comets and asteroids, and display moon and planets in realistic mode. -+ </p> -+ <p> - Skychart also includes VarObs, a software to help astronomers to get data - for variable stars observation. - </p> - </description> - <screenshots> -- <screenshot type="default" width="800" height="600">http://www.ap-i.net/skychart/_media/en/screenshot/vo_m101.jpg</screenshot> -+ <screenshot type="default"> -+ <image>http://www.ap-i.net/skychart/_media/en/screenshot/vo_m101.jpg</image> -+ <caption>The main window of Skychart in action.</caption> -+ </screenshot> - </screenshots> - <url type="homepage">http://www.ap-i.net/skychart/</url> - <updatecontact>pch@ap-i.net</updatecontact> diff --git a/skychart-3.11-noupdate.patch b/skychart-3.11-noupdate.patch new file mode 100644 index 0000000..65fa87b --- /dev/null +++ b/skychart-3.11-noupdate.patch @@ -0,0 +1,11 @@ +--- a/skychart/Makefile.in 2016-02-14 11:58:11.000000000 +0100 ++++ b/skychart/Makefile.in 2016-02-15 18:59:17.956482359 +0100 +@@ -17,7 +17,7 @@ + [compiler] + unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) + includedir=./ +-options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l ++options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l + unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ + + [clean] diff --git a/skychart-3.11-satmessage.patch b/skychart-3.11-satmessage.patch new file mode 100644 index 0000000..3518db8 --- /dev/null +++ b/skychart-3.11-satmessage.patch @@ -0,0 +1,13 @@ +--- a/skychart/u_satellite.pas 2016-01-27 12:11:49.000000000 +0100 ++++ b/skychart/u_satellite.pas 2016-02-14 10:43:53.444002970 +0100 +@@ -99,9 +99,8 @@ + buf:=''; + for j:=0 to r.Count-1 do buf:=buf+r[j]; + end else buf:=''; +- ShowMessage(rsPleaseInstWine+crlf+rsIfItIsNotIns+crlf+'apt-get install wine'+crlf +- +'yum install wine'+crlf+'wine return: '+buf); + end; ++ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); + r.free; + end; + diff --git a/sources b/sources index c754473..50a106b 100644 --- a/sources +++ b/sources @@ -10,3 +10,5 @@ eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 00d206019a86098d79c1e89b32103792 catalog_wds.tgz a34d0d2f86bfa01d86353198893cb538 skychart-3.11-3141-src-nopatents.tar.xz 93f8af8b9ea57606b531dcc0947275c1 skychart-3.11-3157-src-nopatents.tar.xz +9c0efcab1cd214ab20e44b5c81f10c36 catalog_wds.tgz +1fdd3897f9f46e73fd6adfd1387a3755 skychart-3.11-3238-src-nopatents.tar.xz From 49873f395a56652eef28767ad60a14d6cb0240e6 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 16 Feb 2016 17:20:17 +0100 Subject: [PATCH 097/162] Update .spec file for the new version --- skychart.spec | 48 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/skychart.spec b/skychart.spec index e42db35..587e7af 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,17 +1,20 @@ -%global svnversion 3157 +%global svnversion 3238 Name: skychart Version: 3.11 -Release: 8.%{svnversion}svn%{?dist} +Release: 10.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ -# Skychart contains iridflare.exe -# Since it is pre-built code and the license is not clear -# we remove it from sources. -# Download upstream tarball and invoke this script -# while in tarballs directory: -# ./generate-tarball.sh 3.11-3157 +# Upstream sources are modified to: +# - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) +# - Remove unneeded Windows and MacOS stuff +# - Remove libraries provided by libpasastro package +# (they still are in sources only for compiling the Windows version) +# To do this we use the generate-tarball.sh script +# Download upstream tarball in the same directory of the script +# and run: +# ./generate-tarball.sh 3.11-3238 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -38,9 +41,14 @@ Patch1: skychart-3.11-strip.patch # This is Fedora specific and not reported upstream Patch2: skychart-wgetdata.patch -# Fix appdata file validation -# Reported upstream -Patch3: skychart-3.11-fix-appdata.patch +# Notify the user that artificial satellites calculation +# has been disabled in Fedora RPMs due to Fedora policies +# This is Fedora specific and not reported upstream +Patch3: skychart-3.11-satmessage.patch + +# Disable software update menu item +# This feature was asked upstream specifically for Fedora +Patch4: skychart-3.11-noupdate.patch # fpc isn't available on aarch64 and s390 # lazarus isn't available on aarch64 ppc and s390 @@ -111,12 +119,11 @@ Galactic Planetary Nebulae. %patch3 -p1 +%patch4 -p1 + # Fix executable bit set on sources find skychart -type f -print0 |xargs -0 chmod -x -# Fix wrong FSF address in source headers -grep -rl '59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.' * | xargs -i@ sed -i 's/59 Temple Place - Suite 330, Boston, MA 02111-1307, USA./51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA./g' @ - # Put additional catalogs files where where required for installation cp -p %SOURCE2 ./BaseData cp -p %SOURCE3 ./BaseData @@ -229,6 +236,19 @@ fi %changelog +* Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn +- Update svn version +- Remove remnants of pre built .dll files in sources +- Remove libraries from sources that are now provided externally +- Patch to inform user about artificial satellites calculation removal +- Patch to set option to disable software update menu item + +* Fri Feb 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-9.3229svn +- Update svn version +- FSF address in sources is now fixed upstream +- Appdata file is now fixed upstream +- Updated catalog_wds source file from upstream + * Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From f9e57227708d18ec62a9b4ac3cb05555ce4c1f11 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 16 Feb 2016 17:32:56 +0100 Subject: [PATCH 098/162] Remove old file catalog_wds.tgz from sources --- sources | 1 - 1 file changed, 1 deletion(-) diff --git a/sources b/sources index 50a106b..98bf3f3 100644 --- a/sources +++ b/sources @@ -7,7 +7,6 @@ de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz 6df410542ed914df41514b64a427233f catalog_ocl.tgz 7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz -00d206019a86098d79c1e89b32103792 catalog_wds.tgz a34d0d2f86bfa01d86353198893cb538 skychart-3.11-3141-src-nopatents.tar.xz 93f8af8b9ea57606b531dcc0947275c1 skychart-3.11-3157-src-nopatents.tar.xz 9c0efcab1cd214ab20e44b5c81f10c36 catalog_wds.tgz From 3a06f06bcf8272f67f3649b6933cd90f3c8d23ea Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 17 Apr 2016 11:06:21 +0200 Subject: [PATCH 099/162] Remove additional NGC catalog due to incompatible license --- skychart-data-dso.metainfo.xml | 2 +- skychart.spec | 12 ++++++++---- sources | 3 --- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/skychart-data-dso.metainfo.xml b/skychart-data-dso.metainfo.xml index e785909..c7f8115 100644 --- a/skychart-data-dso.metainfo.xml +++ b/skychart-data-dso.metainfo.xml @@ -3,7 +3,7 @@ <id>skychart-data-dso</id> <extends>skychart.desktop</extends> <name>Additional Nebulae Catalogs</name> - <summary>Standard nebulae catalogs: New General Catalogue; Principal + <summary>Standard nebulae catalogs: Principal Galaxies Catalogue; Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; Galactic Planetary Nebulae.</summary> <metadata_license>CC0-1.0</metadata_license> diff --git a/skychart.spec b/skychart.spec index 587e7af..d240bdf 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 10.%{svnversion}svn%{?dist} +Release: 11.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -24,7 +24,8 @@ Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wd Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz # Source data for skychart-data-dso Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_pgc.tgz -Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ngc.tgz +# Catalog NGC removed due to incompatible license +#Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ngc.tgz Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz @@ -130,7 +131,7 @@ cp -p %SOURCE3 ./BaseData cp -p %SOURCE4 ./BaseData cp -p %SOURCE5 ./BaseData cp -p %SOURCE6 ./BaseData -cp -p %SOURCE7 ./BaseData + cp -p %SOURCE8 ./BaseData cp -p %SOURCE9 ./BaseData cp -p %SOURCE10 ./BaseData @@ -194,6 +195,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/data %{_datadir}/skychart/cat/DSoutlines %{_datadir}/skychart/cat/milkyway +%dir %{_datadir}/skychart/cat/ngc2000 %{_datadir}/skychart/cat/ngc2000/*.idx %{_datadir}/skychart/cat/RealSky %{_datadir}/skychart/cat/sac @@ -214,7 +216,6 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}-data-stars.metainfo.xml %files data-dso -%{_datadir}/skychart/cat/ngc2000/*.dat %{_datadir}/skychart/cat/pgc %{_datadir}/skychart/cat/lbn %{_datadir}/skychart/cat/ocl @@ -236,6 +237,9 @@ fi %changelog +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn +- Remove additional NGC catalog due to incompatible license + * Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn - Update svn version - Remove remnants of pre built .dll files in sources diff --git a/sources b/sources index 98bf3f3..409f7bc 100644 --- a/sources +++ b/sources @@ -3,11 +3,8 @@ abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz 399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz -81001f378ded89e298c7c4cdacd90e95 catalog_ngc.tgz 6df410542ed914df41514b64a427233f catalog_ocl.tgz 7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz -a34d0d2f86bfa01d86353198893cb538 skychart-3.11-3141-src-nopatents.tar.xz -93f8af8b9ea57606b531dcc0947275c1 skychart-3.11-3157-src-nopatents.tar.xz 9c0efcab1cd214ab20e44b5c81f10c36 catalog_wds.tgz 1fdd3897f9f46e73fd6adfd1387a3755 skychart-3.11-3238-src-nopatents.tar.xz From 8a8784456519011cecf17c42322cefc6b19c799f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 17 Apr 2016 11:52:46 +0200 Subject: [PATCH 100/162] Use new fpc_arches macro as ExclusiveArch --- skychart.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skychart.spec b/skychart.spec index d240bdf..2467d7b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 11.%{svnversion}svn%{?dist} +Release: 12.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -51,11 +51,8 @@ Patch3: skychart-3.11-satmessage.patch # This feature was asked upstream specifically for Fedora Patch4: skychart-3.11-noupdate.patch -# fpc isn't available on aarch64 and s390 -# lazarus isn't available on aarch64 ppc and s390 -# so ccdciel could not build -# https://bugzilla.redhat.com/show_bug.cgi?id=1287833 -ExcludeArch: aarch64 %{power64} s390 s390x + +ExclusiveArch: %{fpc_arches} BuildRequires: fpc >= 2.4.4 @@ -107,7 +104,7 @@ BuildArch: noarch %description data-dso Additional DSO catalogs for Skychart. This package install all the standard -nebulae catalogs: New General Catalogue; Principal Galaxies Catalogue; +nebulae catalogs: Principal Galaxies Catalogue; Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; Galactic Planetary Nebulae. @@ -237,6 +234,9 @@ fi %changelog +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn +- Use new fpc_arches macro as ExclusiveArch + * Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn - Remove additional NGC catalog due to incompatible license From 871a290bf897b72e9a00716ae6e415f8b8993dd7 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sat, 17 Sep 2016 10:50:40 +0200 Subject: [PATCH 101/162] Update svn version --- .gitignore | 1 + skychart-data-dso.metainfo.xml | 11 ----------- skychart-data-stars.metainfo.xml | 11 ----------- skychart.spec | 26 +++++++++++++++----------- sources | 2 +- 5 files changed, 17 insertions(+), 34 deletions(-) delete mode 100644 skychart-data-dso.metainfo.xml delete mode 100644 skychart-data-stars.metainfo.xml diff --git a/.gitignore b/.gitignore index f05eaf2..991dc49 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /skychart-3.11-3141-src-nopatents.tar.xz /skychart-3.11-3157-src-nopatents.tar.xz /skychart-3.11-3238-src-nopatents.tar.xz +/skychart-3.11-3287-src-nopatents.tar.xz diff --git a/skychart-data-dso.metainfo.xml b/skychart-data-dso.metainfo.xml deleted file mode 100644 index c7f8115..0000000 --- a/skychart-data-dso.metainfo.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<component type="addon"> - <id>skychart-data-dso</id> - <extends>skychart.desktop</extends> - <name>Additional Nebulae Catalogs</name> - <summary>Standard nebulae catalogs: Principal - Galaxies Catalogue; Lynds Bright Nebulae; Open Cluster Data; - Globular Clusters in the Milky Way; Galactic Planetary Nebulae.</summary> - <metadata_license>CC0-1.0</metadata_license> - <project_license>Public Domain</project_license> -</component> diff --git a/skychart-data-stars.metainfo.xml b/skychart-data-stars.metainfo.xml deleted file mode 100644 index e74b315..0000000 --- a/skychart-data-stars.metainfo.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<component type="addon"> - <id>skychart-data-stars</id> - <extends>skychart.desktop</extends> - <name>Additional Star Catalogs</name> - <summary>Additional stars catalog down to magnitude 12, variable and - double stars: Tycho 2; General Catalogue of Variable Stars; - Washington Double Stars.</summary> - <metadata_license>CC0-1.0</metadata_license> - <project_license>Public Domain</project_license> -</component> diff --git a/skychart.spec b/skychart.spec index 2467d7b..efe3c8a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3238 +%global svnversion 3287 Name: skychart Version: 3.11 -Release: 12.%{svnversion}svn%{?dist} +Release: 13.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 3.11-3238 +# ./generate-tarball.sh 3.11-3287 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -30,9 +30,7 @@ Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gc Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -# Metainfo.xml files for subpackages -Source12: skychart-data-stars.metainfo.xml -Source13: skychart-data-dso.metainfo.xml + # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream @@ -57,10 +55,16 @@ ExclusiveArch: %{fpc_arches} BuildRequires: fpc >= 2.4.4 BuildRequires: lazarus >= 1.0.4 -BuildRequires: ImageMagick desktop-file-utils dos2unix gtk2-devel +BuildRequires: desktop-file-utils +BuildRequires: dos2unix +BuildRequires: gtk2-devel +BuildRequires: ImageMagick BuildRequires: libappstream-glib -Requires: libpasastro xdg-utils tzdata xplanet +Requires: libpasastro +Requires: tzdata +Requires: xdg-utils +Requires: xplanet %description This program enables you to draw sky charts, making use of the data in 16 @@ -166,9 +170,6 @@ make install install_doc PREFIX=%{buildroot}%{_prefix} make install install_cat1 PREFIX=%{buildroot}%{_prefix} make install install_cat2 PREFIX=%{buildroot}%{_prefix} -# Put .metainfo.xml files in appdata dir -cp %SOURCE12 %{buildroot}%{_datadir}/appdata/ -cp %SOURCE13 %{buildroot}%{_datadir}/appdata/ %check # Menu entry @@ -234,6 +235,9 @@ fi %changelog +* Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn +- Update svn version + * Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn - Use new fpc_arches macro as ExclusiveArch diff --git a/sources b/sources index 409f7bc..8b17993 100644 --- a/sources +++ b/sources @@ -7,4 +7,4 @@ de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz 7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz eb41098f194574662b147e4891ef261e catalog_tycho2.tgz 9c0efcab1cd214ab20e44b5c81f10c36 catalog_wds.tgz -1fdd3897f9f46e73fd6adfd1387a3755 skychart-3.11-3238-src-nopatents.tar.xz +349b3707bcdc570ddab4d2a5b2f8f822 skychart-3.11-3287-src-nopatents.tar.xz From 8b5f0401349e153e96d55c9f3c040dfe9129eb12 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 11 Feb 2017 13:34:19 +0000 Subject: [PATCH 102/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index efe3c8a..5292c0a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 13.%{svnversion}svn%{?dist} +Release: 14.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -235,6 +235,9 @@ fi %changelog +* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn - Update svn version From 6f60da2640027a5ffea5724a419a1ee32dacb736 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 12 Feb 2017 18:00:44 +0100 Subject: [PATCH 103/162] Exclude ppc64 from building architectures due to lazarus limitations --- skychart.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 5292c0a..bb659f5 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 14.%{svnversion}svn%{?dist} +Release: 15.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -51,6 +51,9 @@ Patch4: skychart-3.11-noupdate.patch ExclusiveArch: %{fpc_arches} +# fpc is available on ppc64, but lazarus has some limitations that +# prevents this package to build +ExcludeArch: ppc64 BuildRequires: fpc >= 2.4.4 @@ -235,6 +238,9 @@ fi %changelog +* Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn +- Set ExcludeArch ppc64 due to lazarus limitations + * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 01504d284293758e9a50bb84cd0569b80416540f Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Tue, 28 Feb 2017 12:04:46 +0100 Subject: [PATCH 104/162] Update to 3.11.svn3549 (4.0beta) --- .gitignore | 4 ++ generate-tarball.sh | 4 +- skychart-3.11-satmessage.patch | 39 +++++++++++++------ skychart.spec | 71 ++++++++++++++++++---------------- sources | 22 ++++++----- 5 files changed, 85 insertions(+), 55 deletions(-) diff --git a/.gitignore b/.gitignore index 991dc49..589e921 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,7 @@ /skychart-3.11-3157-src-nopatents.tar.xz /skychart-3.11-3238-src-nopatents.tar.xz /skychart-3.11-3287-src-nopatents.tar.xz +/catalog_barnard.tgz +/catalog_leda.tgz +/catalog_sh2.tgz +/skychart-3.11-3549-src-nopatents.tar.xz diff --git a/generate-tarball.sh b/generate-tarball.sh index eee8c0c..69775e9 100755 --- a/generate-tarball.sh +++ b/generate-tarball.sh @@ -20,8 +20,10 @@ rm -rf skychart-$VERSION-src/skychart/library/getdss rm -rf skychart-$VERSION-src/skychart/library/plan404 rm -rf skychart-$VERSION-src/skychart/library/wcs +#Remove NGC2000 catalog with license problem and no more used +rm -rf skychart-$VERSION-src/tools/cat/ngc2000 tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src #Remove temporary directory -rm -rf skychart-$VERSION-src \ No newline at end of file +rm -rf skychart-$VERSION-src diff --git a/skychart-3.11-satmessage.patch b/skychart-3.11-satmessage.patch index 3518db8..cecee13 100644 --- a/skychart-3.11-satmessage.patch +++ b/skychart-3.11-satmessage.patch @@ -1,13 +1,30 @@ ---- a/skychart/u_satellite.pas 2016-01-27 12:11:49.000000000 +0100 -+++ b/skychart/u_satellite.pas 2016-02-14 10:43:53.444002970 +0100 -@@ -99,9 +99,8 @@ - buf:=''; - for j:=0 to r.Count-1 do buf:=buf+r[j]; - end else buf:=''; -- ShowMessage(rsPleaseInstWine+crlf+rsIfItIsNotIns+crlf+'apt-get install wine'+crlf -- +'yum install wine'+crlf+'wine return: '+buf); - end; -+ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); - r.free; +--- a/skychart/u_satellite.pas 2017-02-20 18:48:05.000000000 +0100 ++++ b/skychart/u_satellite.pas 2017-02-27 19:15:57.825178736 +0100 +@@ -86,26 +86,8 @@ end; + function CheckWine: boolean; +-var cmd,buf,msg: string; +- i,j: integer; +- r: Tstringlist; + begin +-r:=Tstringlist.Create; +-cmd:='wine --version'; +-i:=execprocess(cmd,r); +-result:=(i=0); +-if not result then begin +- if r.Count>0 then begin +- buf:=''; +- for j:=0 to r.Count-1 do buf:=buf+r[j]; +- end else buf:=''; +- msg:=rsPleaseInstWine; +- {$ifdef linux} +- msg:=msg+crlf+rsIfItIsNotIns+crlf+'apt-get install wine'+crlf+'yum install wine'; +- {$endif} +- ShowMessage(msg+crlf+'wine return: '+buf); +-end; +-r.free; ++ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); + end; + + function CheckDosbox: boolean; diff --git a/skychart.spec b/skychart.spec index bb659f5..470d8b2 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3287 +%global svnversion 3549 Name: skychart Version: 3.11 -Release: 15.%{svnversion}svn%{?dist} +Release: 16.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 3.11-3287 +# ./generate-tarball.sh 3.11-3549 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -23,13 +23,13 @@ Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ty Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz # Source data for skychart-data-dso -Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_pgc.tgz -# Catalog NGC removed due to incompatible license -#Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ngc.tgz +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz # Avoid stripping debuginfo from executables @@ -56,8 +56,8 @@ ExclusiveArch: %{fpc_arches} ExcludeArch: ppc64 -BuildRequires: fpc >= 2.4.4 -BuildRequires: lazarus >= 1.0.4 +BuildRequires: fpc +BuildRequires: lazarus BuildRequires: desktop-file-utils BuildRequires: dos2unix BuildRequires: gtk2-devel @@ -111,9 +111,9 @@ BuildArch: noarch %description data-dso Additional DSO catalogs for Skychart. This package install all the standard -nebulae catalogs: Principal Galaxies Catalogue; -Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; -Galactic Planetary Nebulae. +nebulae catalogs: LEDA Catalogue; Lynds Bright Nebulae; Open Cluster Data; +Globular Clusters in the Milky Way; Galactic Planetary Nebulae; +Barnard Catalogue of Dark Nebulae; Sharpless Catalog. %prep %setup0 -q -n %{name}-%{version}-%{svnversion}-src @@ -130,27 +130,28 @@ Galactic Planetary Nebulae. find skychart -type f -print0 |xargs -0 chmod -x # Put additional catalogs files where where required for installation -cp -p %SOURCE2 ./BaseData -cp -p %SOURCE3 ./BaseData -cp -p %SOURCE4 ./BaseData -cp -p %SOURCE5 ./BaseData -cp -p %SOURCE6 ./BaseData +%{__cp} -p %SOURCE2 ./BaseData +%{__cp} -p %SOURCE3 ./BaseData +%{__cp} -p %SOURCE4 ./BaseData +%{__cp} -p %SOURCE5 ./BaseData +%{__cp} -p %SOURCE6 ./BaseData +%{__cp} -p %SOURCE7 ./BaseData +%{__cp} -p %SOURCE8 ./BaseData +%{__cp} -p %SOURCE9 ./BaseData +%{__cp} -p %SOURCE10 ./BaseData +%{__cp} -p %SOURCE11 ./BaseData +%{__cp} -p %SOURCE12 ./BaseData + +# Add directories to fix builds on arm and ppc architectures +declare -a arches=("arm-linux-gtk2" "powerpc-linux-gtk2" "powerpc64-linux-gtk2") +for arch in "${arches[@]}" +do + %{__mkdir_p} ./skychart/component/lib/$arch + %{__mkdir_p} ./skychart/units/$arch + %{__mkdir_p} ./varobs/units/$arch +done -cp -p %SOURCE8 ./BaseData -cp -p %SOURCE9 ./BaseData -cp -p %SOURCE10 ./BaseData -cp -p %SOURCE11 ./BaseData -# Add directories to fix builds for arm and ppc architectures -mkdir ./skychart/component/lib/arm-linux-gtk2 -mkdir ./skychart/units/arm-linux-gtk2 -mkdir ./varobs/units/arm-linux-gtk2 -mkdir ./skychart/component/lib/powerpc-linux-gtk2 -mkdir ./skychart/units/powerpc-linux-gtk2 -mkdir ./varobs/units/powerpc-linux-gtk2 -mkdir ./skychart/component/lib/powerpc64-linux-gtk2 -mkdir ./skychart/units/powerpc64-linux-gtk2 -mkdir ./varobs/units/powerpc64-linux-gtk2 %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} @@ -196,8 +197,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/data %{_datadir}/skychart/cat/DSoutlines %{_datadir}/skychart/cat/milkyway -%dir %{_datadir}/skychart/cat/ngc2000 -%{_datadir}/skychart/cat/ngc2000/*.idx +%{_datadir}/skychart/cat/openngc %{_datadir}/skychart/cat/RealSky %{_datadir}/skychart/cat/sac %{_datadir}/skychart/cat/xhip @@ -217,11 +217,13 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}-data-stars.metainfo.xml %files data-dso -%{_datadir}/skychart/cat/pgc +%{_datadir}/skychart/cat/leda %{_datadir}/skychart/cat/lbn %{_datadir}/skychart/cat/ocl %{_datadir}/skychart/cat/gcm %{_datadir}/skychart/cat/gpn +%{_datadir}/skychart/cat/barnard +%{_datadir}/skychart/cat/sh2 %{_datadir}/appdata/%{name}-data-dso.metainfo.xml %post @@ -238,6 +240,9 @@ fi %changelog +* Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn +- Update svn version + * Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn - Set ExcludeArch ppc64 due to lazarus limitations diff --git a/sources b/sources index 8b17993..a723096 100644 --- a/sources +++ b/sources @@ -1,10 +1,12 @@ -abf0b88cfaf9986b3abce5827ad62196 catalog_gcm.tgz -3031ca90157c291bfdd5a841dc926e64 catalog_gcvs.tgz -399cf42d7653bbebfa4fa11530df9901 catalog_gpn.tgz -d0d475e4f7c8aea172247d4160562612 catalog_idx.tgz -de9e5492d4d29cd505e4a2fb2ffdfdff catalog_lbn.tgz -6df410542ed914df41514b64a427233f catalog_ocl.tgz -7ab9842429d0407e7dff1946a166a685 catalog_pgc.tgz -eb41098f194574662b147e4891ef261e catalog_tycho2.tgz -9c0efcab1cd214ab20e44b5c81f10c36 catalog_wds.tgz -349b3707bcdc570ddab4d2a5b2f8f822 skychart-3.11-3287-src-nopatents.tar.xz +SHA512 (catalog_barnard.tgz) = 7b91c80dfc25e006cd0cfad6a64fab78aea9b9ded1e8f75b2c54851be788b6512be96bf8891692d9b52825a90fc27d6ae262d1dd3ccc9ff76318f4d91330bf02 +SHA512 (catalog_gcm.tgz) = 957e87b81a23b64b5e40a6f3a55908637e86b01bba0fc36c9dd293966a9870faf7de22d548b324bf9a6c15641cd09d10f76a7200b52eab48fa4c7836115518ce +SHA512 (catalog_gcvs.tgz) = de2878a4ebe35c864d10354378ff033b0f8d261a818e5f66d6c39be28933501a94a662ed7dc85b40ec38270efe567cbd63a637c778aa386eb68584b32c4844f9 +SHA512 (catalog_gpn.tgz) = d0e83773f1dd59d45e9465e6bc0bb0110631f7956fa01f37c5de763be0f7048c22abf3dccc4333c126272f270485b37084d8e22cd02db08e7bb8412da9c66bb4 +SHA512 (catalog_idx.tgz) = 3b144993de14b73edaffd43a35b8404adb166c5b4edc223dd78e8db361ca9a61da2e9c3d29a0af97960c1cdcb94b307ce0824f1fda3b74b518f611666d1e362e +SHA512 (catalog_lbn.tgz) = bddc2cf48c2e575440ed114bb447187e2f30c87312a552ff63d40e88a08e05c31da1d45cb96a5bb0216093a07e4d16336a0a664a66d6e586221217ae45d803da +SHA512 (catalog_leda.tgz) = d8d1587ab937b1a14b6daa0a32dc1ee2238f13e198940c182abcfa73f27c89fe7657dd0f8c5a23372a847adfc76ce08276b41fbef13995b8713bef3dde0e1397 +SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13e0e86cf09e4a2ff3d915e5618940e9d8b2ab4a4198b59cd05302322a5862f53535449f343e7 +SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 +SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 +SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c +SHA512 (skychart-3.11-3549-src-nopatents.tar.xz) = 950b914af63a544de37ab6b710160a6eb26170f021d2a2ebe16bd99099bf4f69e86823c230bbb4775535ca73715459cb7fa0e52c520abbc8625c967148b55015 From 573f2081c30ad88397667719130af8ea4d8f3337 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 Mar 2017 11:31:18 +0100 Subject: [PATCH 105/162] Patch to fix libssl and libcrypto links --- skychart-3.11-libssl.patch | 13 +++++++++++++ skychart.spec | 13 ++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 skychart-3.11-libssl.patch diff --git a/skychart-3.11-libssl.patch b/skychart-3.11-libssl.patch new file mode 100644 index 0000000..76a616a --- /dev/null +++ b/skychart-3.11-libssl.patch @@ -0,0 +1,13 @@ +--- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2015-07-31 10:48:21.000000000 +0200 ++++ b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-03-02 19:06:19.869930572 +0100 +@@ -125,8 +125,8 @@ + DLLUtilName: string = 'crypto.dll'; + {$ENDIF OS2GCC} + {$ELSE OS2} +- DLLSSLName: string = 'libssl.so'; +- DLLUtilName: string = 'libcrypto.so'; ++ DLLSSLName: string = 'libssl.so.10'; ++ DLLUtilName: string = 'libcrypto.so.10'; + {$ENDIF OS2} + {$ENDIF} + {$ELSE} diff --git a/skychart.spec b/skychart.spec index 470d8b2..fe21bb4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 3.11 -Release: 16.%{svnversion}svn%{?dist} +Release: 17.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -49,6 +49,10 @@ Patch3: skychart-3.11-satmessage.patch # This feature was asked upstream specifically for Fedora Patch4: skychart-3.11-noupdate.patch +# Fix libssl and libcrypto links +# http://www.ap-i.net/mantis/view.php?id=1668 +Patch4: skychart-3.11-libssl.patch + ExclusiveArch: %{fpc_arches} # fpc is available on ppc64, but lazarus has some limitations that @@ -69,6 +73,8 @@ Requires: tzdata Requires: xdg-utils Requires: xplanet +Recommends: openssl-libs + %description This program enables you to draw sky charts, making use of the data in 16 catalogs of stars and nebulae. In addition the position of planets, @@ -126,6 +132,8 @@ Barnard Catalogue of Dark Nebulae; Sharpless Catalog. %patch4 -p1 +%patch5 -p1 + # Fix executable bit set on sources find skychart -type f -print0 |xargs -0 chmod -x @@ -240,6 +248,9 @@ fi %changelog +* Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn +- Patch to fix libssl and libcrypto links + * Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn - Update svn version From 607cd049d591a63189025023c9a99aba974427dd Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 Mar 2017 11:33:10 +0100 Subject: [PATCH 106/162] Fix version in libssl patch for F26> --- skychart-3.11-libssl.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skychart-3.11-libssl.patch b/skychart-3.11-libssl.patch index 76a616a..48cf019 100644 --- a/skychart-3.11-libssl.patch +++ b/skychart-3.11-libssl.patch @@ -6,8 +6,8 @@ {$ELSE OS2} - DLLSSLName: string = 'libssl.so'; - DLLUtilName: string = 'libcrypto.so'; -+ DLLSSLName: string = 'libssl.so.10'; -+ DLLUtilName: string = 'libcrypto.so.10'; ++ DLLSSLName: string = 'libssl.so.1.1'; ++ DLLUtilName: string = 'libcrypto.so.1.1'; {$ENDIF OS2} {$ENDIF} {$ELSE} From a36147e92fdf999298f6e5a26096800d0b83a3b2 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 5 Mar 2017 11:38:55 +0100 Subject: [PATCH 107/162] Fix patch number in .spec --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index fe21bb4..e3083fe 100644 --- a/skychart.spec +++ b/skychart.spec @@ -51,7 +51,7 @@ Patch4: skychart-3.11-noupdate.patch # Fix libssl and libcrypto links # http://www.ap-i.net/mantis/view.php?id=1668 -Patch4: skychart-3.11-libssl.patch +Patch5: skychart-3.11-libssl.patch ExclusiveArch: %{fpc_arches} From eec531f1744d42df6dae71541677bdc9b0729155 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Sun, 19 Mar 2017 16:23:46 +0100 Subject: [PATCH 108/162] Release ver 4.0 --- .gitignore | 1 + skychart.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 589e921..2c0dbf3 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /catalog_leda.tgz /catalog_sh2.tgz /skychart-3.11-3549-src-nopatents.tar.xz +/skychart-4.0-3575-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index e3083fe..adc3c91 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3549 +%global svnversion 3575 Name: skychart -Version: 3.11 -Release: 17.%{svnversion}svn%{?dist} +Version: 4.0 +Release: 1%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 3.11-3549 +# ./generate-tarball.sh 4.0-3575 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -248,6 +248,9 @@ fi %changelog +* Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1 +- Release ver 4.0 + * Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn - Patch to fix libssl and libcrypto links diff --git a/sources b/sources index a723096..297082d 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-3.11-3549-src-nopatents.tar.xz) = 950b914af63a544de37ab6b710160a6eb26170f021d2a2ebe16bd99099bf4f69e86823c230bbb4775535ca73715459cb7fa0e52c520abbc8625c967148b55015 +SHA512 (skychart-4.0-3575-src-nopatents.tar.xz) = 8c8ce72c177f804b2a2a42255e91303954b8a40cc4995330018add67f073cfff29da2c3ad35c0ba3dec275283a75db5a831365875ae4607fad1ff8611a3a763c From 2e4bc7b78566703d93747c8d746d6a501d631298 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@tiscali.it> Date: Wed, 12 Apr 2017 09:36:44 +0200 Subject: [PATCH 109/162] Fix for OpenSSL 1.1 --- skychart-3.11-libssl.patch | 13 --- skychart-4.0-libssl.patch | 173 +++++++++++++++++++++++++++++++++++++ skychart.spec | 9 +- 3 files changed, 180 insertions(+), 15 deletions(-) delete mode 100644 skychart-3.11-libssl.patch create mode 100644 skychart-4.0-libssl.patch diff --git a/skychart-3.11-libssl.patch b/skychart-3.11-libssl.patch deleted file mode 100644 index 48cf019..0000000 --- a/skychart-3.11-libssl.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2015-07-31 10:48:21.000000000 +0200 -+++ b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-03-02 19:06:19.869930572 +0100 -@@ -125,8 +125,8 @@ - DLLUtilName: string = 'crypto.dll'; - {$ENDIF OS2GCC} - {$ELSE OS2} -- DLLSSLName: string = 'libssl.so'; -- DLLUtilName: string = 'libcrypto.so'; -+ DLLSSLName: string = 'libssl.so.1.1'; -+ DLLUtilName: string = 'libcrypto.so.1.1'; - {$ENDIF OS2} - {$ENDIF} - {$ELSE} diff --git a/skychart-4.0-libssl.patch b/skychart-4.0-libssl.patch new file mode 100644 index 0000000..e8ac073 --- /dev/null +++ b/skychart-4.0-libssl.patch @@ -0,0 +1,173 @@ +diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/blcksock.pas b/skychart/component/synapse/source/lib/blcksock.pas +--- a/skychart/component/synapse/source/lib/blcksock.pas 2017-04-12 09:21:36.872249313 +0200 ++++ b/skychart/component/synapse/source/lib/blcksock.pas 2017-04-12 09:21:58.686247010 +0200 +@@ -240,7 +240,7 @@ + {:Specify requested SSL/TLS version for secure connection.} + TSSLType = ( + LT_all, +- LT_SSLv2, ++ LT_SSLv23, + LT_SSLv3, + LT_TLSv1, + LT_TLSv1_1, +diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas +--- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-03-05 10:27:48.000000000 +0100 ++++ b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-04-12 09:16:06.067282537 +0200 +@@ -125,8 +125,8 @@ + DLLUtilName: string = 'crypto.dll'; + {$ENDIF OS2GCC} + {$ELSE OS2} +- DLLSSLName: string = 'libssl.so'; +- DLLUtilName: string = 'libcrypto.so'; ++ DLLSSLName: string = 'libssl.so.1.1'; ++ DLLUtilName: string = 'libcrypto.so.1.1'; + {$ENDIF OS2} + {$ENDIF} + {$ELSE} +@@ -283,11 +283,6 @@ + + [DllImport(DLLSSLName, CharSet = CharSet.Ansi, + SetLastError = False, CallingConvention= CallingConvention.cdecl, +- EntryPoint = 'SSLv2_method')] +- function SslMethodV2 : PSSL_METHOD; external; +- +- [DllImport(DLLSSLName, CharSet = CharSet.Ansi, +- SetLastError = False, CallingConvention= CallingConvention.cdecl, + EntryPoint = 'SSLv3_method')] + function SslMethodV3 : PSSL_METHOD; external; + +@@ -313,6 +308,11 @@ + + [DllImport(DLLSSLName, CharSet = CharSet.Ansi, + SetLastError = False, CallingConvention= CallingConvention.cdecl, ++ EntryPoint = 'TLS_method')] ++ function SslMethodTLS : PSSL_METHOD; external; ++ ++ [DllImport(DLLSSLName, CharSet = CharSet.Ansi, ++ SetLastError = False, CallingConvention= CallingConvention.cdecl, + EntryPoint = 'SSL_CTX_use_PrivateKey')] + function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; external; + +@@ -713,12 +713,12 @@ + function SslCtxNew(meth: PSSL_METHOD):PSSL_CTX; + procedure SslCtxFree(arg0: PSSL_CTX); + function SslSetFd(s: PSSL; fd: Integer):Integer; +- function SslMethodV2:PSSL_METHOD; + function SslMethodV3:PSSL_METHOD; + function SslMethodTLSV1:PSSL_METHOD; + function SslMethodTLSV11:PSSL_METHOD; + function SslMethodTLSV12:PSSL_METHOD; + function SslMethodV23:PSSL_METHOD; ++ function SslMethodTLS:PSSL_METHOD; + function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; + function SslCtxUsePrivateKeyASN1(pk: integer; ctx: PSSL_CTX; d: AnsiString; len: integer):Integer; + // function SslCtxUsePrivateKeyFile(ctx: PSSL_CTX; const _file: PChar; _type: Integer):Integer; +@@ -841,12 +841,12 @@ + TSslCtxNew = function(meth: PSSL_METHOD):PSSL_CTX; cdecl; + TSslCtxFree = procedure(arg0: PSSL_CTX); cdecl; + TSslSetFd = function(s: PSSL; fd: Integer):Integer; cdecl; +- TSslMethodV2 = function:PSSL_METHOD; cdecl; + TSslMethodV3 = function:PSSL_METHOD; cdecl; + TSslMethodTLSV1 = function:PSSL_METHOD; cdecl; + TSslMethodTLSV11 = function:PSSL_METHOD; cdecl; + TSslMethodTLSV12 = function:PSSL_METHOD; cdecl; + TSslMethodV23 = function:PSSL_METHOD; cdecl; ++ TSslMethodTLS = function:PSSL_METHOD; cdecl; + TSslCtxUsePrivateKey = function(ctx: PSSL_CTX; pkey: sslptr):Integer; cdecl; + TSslCtxUsePrivateKeyASN1 = function(pk: integer; ctx: PSSL_CTX; d: sslptr; len: integer):Integer; cdecl; + TSslCtxUsePrivateKeyFile = function(ctx: PSSL_CTX; const _file: PAnsiChar; _type: Integer):Integer; cdecl; +@@ -948,12 +948,12 @@ + _SslCtxNew: TSslCtxNew = nil; + _SslCtxFree: TSslCtxFree = nil; + _SslSetFd: TSslSetFd = nil; +- _SslMethodV2: TSslMethodV2 = nil; + _SslMethodV3: TSslMethodV3 = nil; + _SslMethodTLSV1: TSslMethodTLSV1 = nil; + _SslMethodTLSV11: TSslMethodTLSV11 = nil; + _SslMethodTLSV12: TSslMethodTLSV12 = nil; + _SslMethodV23: TSslMethodV23 = nil; ++ _SslMethodTLS: TSslMethodTLS = nil; + _SslCtxUsePrivateKey: TSslCtxUsePrivateKey = nil; + _SslCtxUsePrivateKeyASN1: TSslCtxUsePrivateKeyASN1 = nil; + _SslCtxUsePrivateKeyFile: TSslCtxUsePrivateKeyFile = nil; +@@ -1106,14 +1106,6 @@ + Result := 0; + end; + +-function SslMethodV2:PSSL_METHOD; +-begin +- if InitSSLInterface and Assigned(_SslMethodV2) then +- Result := _SslMethodV2 +- else +- Result := nil; +-end; +- + function SslMethodV3:PSSL_METHOD; + begin + if InitSSLInterface and Assigned(_SslMethodV3) then +@@ -1154,6 +1146,14 @@ + Result := nil; + end; + ++function SslMethodTLS:PSSL_METHOD; ++begin ++ if InitSSLInterface and Assigned(_SslMethodTLS) then ++ Result := _SslMethodTLS ++ else ++ Result := nil; ++end; ++ + function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; + begin + if InitSSLInterface and Assigned(_SslCtxUsePrivateKey) then +@@ -1901,12 +1901,12 @@ + _SslCtxNew := GetProcAddr(SSLLibHandle, 'SSL_CTX_new'); + _SslCtxFree := GetProcAddr(SSLLibHandle, 'SSL_CTX_free'); + _SslSetFd := GetProcAddr(SSLLibHandle, 'SSL_set_fd'); +- _SslMethodV2 := GetProcAddr(SSLLibHandle, 'SSLv2_method'); + _SslMethodV3 := GetProcAddr(SSLLibHandle, 'SSLv3_method'); + _SslMethodTLSV1 := GetProcAddr(SSLLibHandle, 'TLSv1_method'); + _SslMethodTLSV11 := GetProcAddr(SSLLibHandle, 'TLSv1_1_method'); + _SslMethodTLSV12 := GetProcAddr(SSLLibHandle, 'TLSv1_2_method'); + _SslMethodV23 := GetProcAddr(SSLLibHandle, 'SSLv23_method'); ++ _SslMethodTLS := GetProcAddr(SSLLibHandle, 'TLS_method'); + _SslCtxUsePrivateKey := GetProcAddr(SSLLibHandle, 'SSL_CTX_use_PrivateKey'); + _SslCtxUsePrivateKeyASN1 := GetProcAddr(SSLLibHandle, 'SSL_CTX_use_PrivateKey_ASN1'); + //use SSL_CTX_use_RSAPrivateKey_file instead SSL_CTX_use_PrivateKey_file, +@@ -2098,12 +2098,12 @@ + _SslCtxNew := nil; + _SslCtxFree := nil; + _SslSetFd := nil; +- _SslMethodV2 := nil; + _SslMethodV3 := nil; + _SslMethodTLSV1 := nil; + _SslMethodTLSV11 := nil; + _SslMethodTLSV12 := nil; + _SslMethodV23 := nil; ++ _SslMethodTLS := nil; + _SslCtxUsePrivateKey := nil; + _SslCtxUsePrivateKeyASN1 := nil; + _SslCtxUsePrivateKeyFile := nil; +diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/ssl_openssl.pas b/skychart/component/synapse/source/lib/ssl_openssl.pas +--- a/skychart/component/synapse/source/lib/ssl_openssl.pas 2015-07-31 10:48:21.000000000 +0200 ++++ b/skychart/component/synapse/source/lib/ssl_openssl.pas 2017-04-12 09:07:20.000000000 +0200 +@@ -420,8 +420,8 @@ + FLastError := 0; + Fctx := nil; + case FSSLType of +- LT_SSLv2: +- Fctx := SslCtxNew(SslMethodV2); ++ LT_SSLv23: ++ Fctx := SslCtxNew(SslMethodV23); + LT_SSLv3: + Fctx := SslCtxNew(SslMethodV3); + LT_TLSv1: +@@ -431,7 +431,7 @@ + LT_TLSv1_2: + Fctx := SslCtxNew(SslMethodTLSV12); + LT_all: +- Fctx := SslCtxNew(SslMethodV23); ++ Fctx := SslCtxNew(SslMethodTLS); + else + Exit; + end; diff --git a/skychart.spec b/skychart.spec index adc3c91..930a5ab 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -51,7 +51,9 @@ Patch4: skychart-3.11-noupdate.patch # Fix libssl and libcrypto links # http://www.ap-i.net/mantis/view.php?id=1668 -Patch5: skychart-3.11-libssl.patch +# Fix for OpenSSL 1.1 +# http://www.ap-i.net/mantis/view.php?id=1702 +Patch5: skychart-4.0-libssl.patch ExclusiveArch: %{fpc_arches} @@ -248,6 +250,9 @@ fi %changelog +* Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2 +- Fix for OpenSSL 1.1 + * Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1 - Release ver 4.0 From 87f6859ed4b56971145f9d0fd66c09f6cd13f347 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Thu, 27 Jul 2017 18:45:41 +0000 Subject: [PATCH 110/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 930a5ab..8d19552 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -250,6 +250,9 @@ fi %changelog +* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2 - Fix for OpenSSL 1.1 From 6a8c5a34f217db77f1ec08fbe8251d72033e554b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@email.it> Date: Sat, 29 Jul 2017 18:13:43 +0200 Subject: [PATCH 111/162] Change FPC compiler options to fix debuginfo package build --- skychart.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index 8d19552..0a7d925 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -168,7 +168,7 @@ done # Skychart doesn't like parallel building so we don't use macro. # We pass options to fpc compiler for generate debug info. -make fpcopts="-O1 -g -gl -OoREGVAR -Ch2000000 -CX -XX" +make fpcopts="-O1 -gw3 -fPIC" %install # Install main program @@ -250,6 +250,9 @@ fi %changelog +* Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4 +- Change FPC compiler options to fix debuginfo package build + * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 37c0c74c1086192f4cb412524801701c9458824a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Thu, 3 Aug 2017 08:32:57 +0000 Subject: [PATCH 112/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 0a7d925..fb6b40a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -250,6 +250,9 @@ fi %changelog +* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4 - Change FPC compiler options to fix debuginfo package build From fc479ca26f992254bacb1fcb087a9445ecfcf396 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko <ignatenkobrain@fedoraproject.org> Date: Thu, 18 Jan 2018 22:27:40 +0100 Subject: [PATCH 113/162] Remove obsolete scriptlets Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org> --- skychart.spec | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/skychart.spec b/skychart.spec index fb6b40a..5a46d2c 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -236,20 +236,10 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/skychart/cat/sh2 %{_datadir}/appdata/%{name}-data-dso.metainfo.xml -%post -/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : - -%postun -if [ $1 -eq 0 ] ; then - /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null - /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - -%posttrans -/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - - %changelog +* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6 +- Remove obsolete scriptlets + * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From c8504f470e3b8384260246d8c59ec90eac06aa29 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Fri, 9 Feb 2018 16:57:55 +0000 Subject: [PATCH 114/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 5a46d2c..bc265f4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -237,6 +237,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}-data-dso.metainfo.xml %changelog +* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6 - Remove obsolete scriptlets From b4da629847c135b4cf870dcc9440710f208f4bce Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@email.it> Date: Sun, 25 Feb 2018 10:58:43 +0100 Subject: [PATCH 115/162] Rebuild for FPC 3.0.4 / Lazarus 1.8.0 --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index bc265f4..48ea59d 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -237,6 +237,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}-data-dso.metainfo.xml %changelog +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8 +- Rebuild for fpc 3.0.4 and lazarus 1.8 + * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 13a899e26e9af931d827e874dd357152770ea72d Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@email.it> Date: Sun, 25 Feb 2018 14:44:24 +0100 Subject: [PATCH 116/162] Upgrade to development version to fix build failures. --- .gitignore | 1 + skychart-3.11-satmessage.patch | 30 --- skychart-4.0-libssl.patch | 173 ------------------ ...-strip.patch => skychart-4.1-nostrip.patch | 7 +- skychart-4.1-satmessage.patch | 41 +++++ ...tdata.patch => skychart-4.1-wgetdata.patch | 0 skychart.spec | 31 ++-- sources | 2 +- 8 files changed, 60 insertions(+), 225 deletions(-) delete mode 100644 skychart-3.11-satmessage.patch delete mode 100644 skychart-4.0-libssl.patch rename skychart-3.11-strip.patch => skychart-4.1-nostrip.patch (76%) create mode 100644 skychart-4.1-satmessage.patch rename skychart-wgetdata.patch => skychart-4.1-wgetdata.patch (100%) diff --git a/.gitignore b/.gitignore index 2c0dbf3..834c5f0 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /catalog_sh2.tgz /skychart-3.11-3549-src-nopatents.tar.xz /skychart-4.0-3575-src-nopatents.tar.xz +/skychart-4.1-3730-src-nopatents.tar.xz diff --git a/skychart-3.11-satmessage.patch b/skychart-3.11-satmessage.patch deleted file mode 100644 index cecee13..0000000 --- a/skychart-3.11-satmessage.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- a/skychart/u_satellite.pas 2017-02-20 18:48:05.000000000 +0100 -+++ b/skychart/u_satellite.pas 2017-02-27 19:15:57.825178736 +0100 -@@ -86,26 +86,8 @@ - end; - - function CheckWine: boolean; --var cmd,buf,msg: string; -- i,j: integer; -- r: Tstringlist; - begin --r:=Tstringlist.Create; --cmd:='wine --version'; --i:=execprocess(cmd,r); --result:=(i=0); --if not result then begin -- if r.Count>0 then begin -- buf:=''; -- for j:=0 to r.Count-1 do buf:=buf+r[j]; -- end else buf:=''; -- msg:=rsPleaseInstWine; -- {$ifdef linux} -- msg:=msg+crlf+rsIfItIsNotIns+crlf+'apt-get install wine'+crlf+'yum install wine'; -- {$endif} -- ShowMessage(msg+crlf+'wine return: '+buf); --end; --r.free; -+ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); - end; - - function CheckDosbox: boolean; diff --git a/skychart-4.0-libssl.patch b/skychart-4.0-libssl.patch deleted file mode 100644 index e8ac073..0000000 --- a/skychart-4.0-libssl.patch +++ /dev/null @@ -1,173 +0,0 @@ -diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/blcksock.pas b/skychart/component/synapse/source/lib/blcksock.pas ---- a/skychart/component/synapse/source/lib/blcksock.pas 2017-04-12 09:21:36.872249313 +0200 -+++ b/skychart/component/synapse/source/lib/blcksock.pas 2017-04-12 09:21:58.686247010 +0200 -@@ -240,7 +240,7 @@ - {:Specify requested SSL/TLS version for secure connection.} - TSSLType = ( - LT_all, -- LT_SSLv2, -+ LT_SSLv23, - LT_SSLv3, - LT_TLSv1, - LT_TLSv1_1, -diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas ---- a/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-03-05 10:27:48.000000000 +0100 -+++ b/skychart/component/synapse/source/lib/ssl_openssl_lib.pas 2017-04-12 09:16:06.067282537 +0200 -@@ -125,8 +125,8 @@ - DLLUtilName: string = 'crypto.dll'; - {$ENDIF OS2GCC} - {$ELSE OS2} -- DLLSSLName: string = 'libssl.so'; -- DLLUtilName: string = 'libcrypto.so'; -+ DLLSSLName: string = 'libssl.so.1.1'; -+ DLLUtilName: string = 'libcrypto.so.1.1'; - {$ENDIF OS2} - {$ENDIF} - {$ELSE} -@@ -283,11 +283,6 @@ - - [DllImport(DLLSSLName, CharSet = CharSet.Ansi, - SetLastError = False, CallingConvention= CallingConvention.cdecl, -- EntryPoint = 'SSLv2_method')] -- function SslMethodV2 : PSSL_METHOD; external; -- -- [DllImport(DLLSSLName, CharSet = CharSet.Ansi, -- SetLastError = False, CallingConvention= CallingConvention.cdecl, - EntryPoint = 'SSLv3_method')] - function SslMethodV3 : PSSL_METHOD; external; - -@@ -313,6 +308,11 @@ - - [DllImport(DLLSSLName, CharSet = CharSet.Ansi, - SetLastError = False, CallingConvention= CallingConvention.cdecl, -+ EntryPoint = 'TLS_method')] -+ function SslMethodTLS : PSSL_METHOD; external; -+ -+ [DllImport(DLLSSLName, CharSet = CharSet.Ansi, -+ SetLastError = False, CallingConvention= CallingConvention.cdecl, - EntryPoint = 'SSL_CTX_use_PrivateKey')] - function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; external; - -@@ -713,12 +713,12 @@ - function SslCtxNew(meth: PSSL_METHOD):PSSL_CTX; - procedure SslCtxFree(arg0: PSSL_CTX); - function SslSetFd(s: PSSL; fd: Integer):Integer; -- function SslMethodV2:PSSL_METHOD; - function SslMethodV3:PSSL_METHOD; - function SslMethodTLSV1:PSSL_METHOD; - function SslMethodTLSV11:PSSL_METHOD; - function SslMethodTLSV12:PSSL_METHOD; - function SslMethodV23:PSSL_METHOD; -+ function SslMethodTLS:PSSL_METHOD; - function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; - function SslCtxUsePrivateKeyASN1(pk: integer; ctx: PSSL_CTX; d: AnsiString; len: integer):Integer; - // function SslCtxUsePrivateKeyFile(ctx: PSSL_CTX; const _file: PChar; _type: Integer):Integer; -@@ -841,12 +841,12 @@ - TSslCtxNew = function(meth: PSSL_METHOD):PSSL_CTX; cdecl; - TSslCtxFree = procedure(arg0: PSSL_CTX); cdecl; - TSslSetFd = function(s: PSSL; fd: Integer):Integer; cdecl; -- TSslMethodV2 = function:PSSL_METHOD; cdecl; - TSslMethodV3 = function:PSSL_METHOD; cdecl; - TSslMethodTLSV1 = function:PSSL_METHOD; cdecl; - TSslMethodTLSV11 = function:PSSL_METHOD; cdecl; - TSslMethodTLSV12 = function:PSSL_METHOD; cdecl; - TSslMethodV23 = function:PSSL_METHOD; cdecl; -+ TSslMethodTLS = function:PSSL_METHOD; cdecl; - TSslCtxUsePrivateKey = function(ctx: PSSL_CTX; pkey: sslptr):Integer; cdecl; - TSslCtxUsePrivateKeyASN1 = function(pk: integer; ctx: PSSL_CTX; d: sslptr; len: integer):Integer; cdecl; - TSslCtxUsePrivateKeyFile = function(ctx: PSSL_CTX; const _file: PAnsiChar; _type: Integer):Integer; cdecl; -@@ -948,12 +948,12 @@ - _SslCtxNew: TSslCtxNew = nil; - _SslCtxFree: TSslCtxFree = nil; - _SslSetFd: TSslSetFd = nil; -- _SslMethodV2: TSslMethodV2 = nil; - _SslMethodV3: TSslMethodV3 = nil; - _SslMethodTLSV1: TSslMethodTLSV1 = nil; - _SslMethodTLSV11: TSslMethodTLSV11 = nil; - _SslMethodTLSV12: TSslMethodTLSV12 = nil; - _SslMethodV23: TSslMethodV23 = nil; -+ _SslMethodTLS: TSslMethodTLS = nil; - _SslCtxUsePrivateKey: TSslCtxUsePrivateKey = nil; - _SslCtxUsePrivateKeyASN1: TSslCtxUsePrivateKeyASN1 = nil; - _SslCtxUsePrivateKeyFile: TSslCtxUsePrivateKeyFile = nil; -@@ -1106,14 +1106,6 @@ - Result := 0; - end; - --function SslMethodV2:PSSL_METHOD; --begin -- if InitSSLInterface and Assigned(_SslMethodV2) then -- Result := _SslMethodV2 -- else -- Result := nil; --end; -- - function SslMethodV3:PSSL_METHOD; - begin - if InitSSLInterface and Assigned(_SslMethodV3) then -@@ -1154,6 +1146,14 @@ - Result := nil; - end; - -+function SslMethodTLS:PSSL_METHOD; -+begin -+ if InitSSLInterface and Assigned(_SslMethodTLS) then -+ Result := _SslMethodTLS -+ else -+ Result := nil; -+end; -+ - function SslCtxUsePrivateKey(ctx: PSSL_CTX; pkey: SslPtr):Integer; - begin - if InitSSLInterface and Assigned(_SslCtxUsePrivateKey) then -@@ -1901,12 +1901,12 @@ - _SslCtxNew := GetProcAddr(SSLLibHandle, 'SSL_CTX_new'); - _SslCtxFree := GetProcAddr(SSLLibHandle, 'SSL_CTX_free'); - _SslSetFd := GetProcAddr(SSLLibHandle, 'SSL_set_fd'); -- _SslMethodV2 := GetProcAddr(SSLLibHandle, 'SSLv2_method'); - _SslMethodV3 := GetProcAddr(SSLLibHandle, 'SSLv3_method'); - _SslMethodTLSV1 := GetProcAddr(SSLLibHandle, 'TLSv1_method'); - _SslMethodTLSV11 := GetProcAddr(SSLLibHandle, 'TLSv1_1_method'); - _SslMethodTLSV12 := GetProcAddr(SSLLibHandle, 'TLSv1_2_method'); - _SslMethodV23 := GetProcAddr(SSLLibHandle, 'SSLv23_method'); -+ _SslMethodTLS := GetProcAddr(SSLLibHandle, 'TLS_method'); - _SslCtxUsePrivateKey := GetProcAddr(SSLLibHandle, 'SSL_CTX_use_PrivateKey'); - _SslCtxUsePrivateKeyASN1 := GetProcAddr(SSLLibHandle, 'SSL_CTX_use_PrivateKey_ASN1'); - //use SSL_CTX_use_RSAPrivateKey_file instead SSL_CTX_use_PrivateKey_file, -@@ -2098,12 +2098,12 @@ - _SslCtxNew := nil; - _SslCtxFree := nil; - _SslSetFd := nil; -- _SslMethodV2 := nil; - _SslMethodV3 := nil; - _SslMethodTLSV1 := nil; - _SslMethodTLSV11 := nil; - _SslMethodTLSV12 := nil; - _SslMethodV23 := nil; -+ _SslMethodTLS := nil; - _SslCtxUsePrivateKey := nil; - _SslCtxUsePrivateKeyASN1 := nil; - _SslCtxUsePrivateKeyFile := nil; -diff -U 3 -dHrN -- a/skychart/component/synapse/source/lib/ssl_openssl.pas b/skychart/component/synapse/source/lib/ssl_openssl.pas ---- a/skychart/component/synapse/source/lib/ssl_openssl.pas 2015-07-31 10:48:21.000000000 +0200 -+++ b/skychart/component/synapse/source/lib/ssl_openssl.pas 2017-04-12 09:07:20.000000000 +0200 -@@ -420,8 +420,8 @@ - FLastError := 0; - Fctx := nil; - case FSSLType of -- LT_SSLv2: -- Fctx := SslCtxNew(SslMethodV2); -+ LT_SSLv23: -+ Fctx := SslCtxNew(SslMethodV23); - LT_SSLv3: - Fctx := SslCtxNew(SslMethodV3); - LT_TLSv1: -@@ -431,7 +431,7 @@ - LT_TLSv1_2: - Fctx := SslCtxNew(SslMethodTLSV12); - LT_all: -- Fctx := SslCtxNew(SslMethodV23); -+ Fctx := SslCtxNew(SslMethodTLS); - else - Exit; - end; diff --git a/skychart-3.11-strip.patch b/skychart-4.1-nostrip.patch similarity index 76% rename from skychart-3.11-strip.patch rename to skychart-4.1-nostrip.patch index e5aac7e..572b3f5 100644 --- a/skychart-3.11-strip.patch +++ b/skychart-4.1-nostrip.patch @@ -1,5 +1,6 @@ ---- a/install.sh 2015-12-18 11:06:30.000000000 +0100 -+++ b/install.sh 2016-01-09 19:06:49.424399488 +0100 +diff -U 3 -dHrN -- a/install.sh b/install.sh +--- a/install.sh 2017-10-03 11:01:35.000000000 +0200 ++++ b/install.sh 2017-10-10 17:54:25.410030788 +0200 @@ -25,10 +25,10 @@ install -m 755 -d $destdir/share/icons/hicolor/scalable install -m 755 -d $destdir/share/icons/hicolor/scalable/apps @@ -13,5 +14,5 @@ +install -v -m 755 varobs/varobs $destdir/bin/varobs +install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop - install -v -m 644 system_integration/Linux/share/appdata/skychart.appdata.xml $destdir/share/appdata/skychart.appdata.xml + install -v -m 644 system_integration/Linux/share/metainfo/skychart.appdata.xml $destdir/share/metainfo/skychart.appdata.xml install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog diff --git a/skychart-4.1-satmessage.patch b/skychart-4.1-satmessage.patch new file mode 100644 index 0000000..a07454d --- /dev/null +++ b/skychart-4.1-satmessage.patch @@ -0,0 +1,41 @@ +diff -U 3 -dHrN -- a/skychart/u_satellite.pas b/skychart/u_satellite.pas +--- a/skychart/u_satellite.pas 2017-07-21 15:35:21.000000000 +0200 ++++ b/skychart/u_satellite.pas 2017-10-02 19:18:40.648161937 +0200 +@@ -110,36 +110,8 @@ + end; + + function CheckWine: boolean; +-var +- cmd, buf, msg: string; +- i, j: integer; +- r: TStringList; + begin +- r := TStringList.Create; +- cmd := 'wine --version'; +- i := execprocess(cmd, r); +- Result := (i = 0); +- +- if not Result then +- begin +- +- if r.Count > 0 then +- begin +- buf := ''; +- for j := 0 to r.Count - 1 do +- buf := buf + r[j]; +- end +- else +- buf := ''; +- +- msg := rsPleaseInstWine; +- {$ifdef linux} +- msg := msg + crlf + rsIfItIsNotIns + crlf + 'apt-get install wine' + +- crlf + 'yum install wine'; +- {$endif} +- ShowMessage(msg + crlf + 'wine return: ' + buf); +- end; +- r.Free; ++ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); + end; + + function CheckDosbox: boolean; diff --git a/skychart-wgetdata.patch b/skychart-4.1-wgetdata.patch similarity index 100% rename from skychart-wgetdata.patch rename to skychart-4.1-wgetdata.patch diff --git a/skychart.spec b/skychart.spec index 48ea59d..7a0be65 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3575 +%global svnversion 3730 Name: skychart -Version: 4.0 -Release: 8%{?dist} +Version: 4.1 +Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.0-3575 +# ./generate-tarball.sh 4.1-3730 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -34,27 +34,21 @@ Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_s # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream -Patch1: skychart-3.11-strip.patch +Patch1: skychart-4.1-nostrip.patch # Disable wget in install script # This is Fedora specific and not reported upstream -Patch2: skychart-wgetdata.patch +Patch2: skychart-4.1-wgetdata.patch # Notify the user that artificial satellites calculation # has been disabled in Fedora RPMs due to Fedora policies # This is Fedora specific and not reported upstream -Patch3: skychart-3.11-satmessage.patch +Patch3: skychart-4.1-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora Patch4: skychart-3.11-noupdate.patch -# Fix libssl and libcrypto links -# http://www.ap-i.net/mantis/view.php?id=1668 -# Fix for OpenSSL 1.1 -# http://www.ap-i.net/mantis/view.php?id=1702 -Patch5: skychart-4.0-libssl.patch - ExclusiveArch: %{fpc_arches} # fpc is available on ppc64, but lazarus has some limitations that @@ -134,10 +128,8 @@ Barnard Catalogue of Dark Nebulae; Sharpless Catalog. %patch4 -p1 -%patch5 -p1 - # Fix executable bit set on sources -find skychart -type f -print0 |xargs -0 chmod -x +find skychart -type f -print0 | xargs -0 chmod -x # Put additional catalogs files where where required for installation %{__cp} -p %SOURCE2 ./BaseData @@ -190,7 +182,7 @@ make install install_cat2 PREFIX=%{buildroot}%{_prefix} desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop # Appdata file check -appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata.xml +appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml %files @@ -199,7 +191,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %doc %{_datadir}/doc/skychart/copyright %{_bindir}/* %{_datadir}/applications/%{name}.desktop -%{_datadir}/appdata/%{name}.appdata.xml +%{_datadir}/metainfo/%{name}.appdata.xml %{_datadir}/pixmaps/%{name}.png %{_datadir}/icons/*/*/*/%{name}.png %{_datadir}/icons/*/*/*/%{name}.svg @@ -237,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata. %{_datadir}/appdata/%{name}-data-dso.metainfo.xml %changelog +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn +- Upgrade to development version to fix build failures + * Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8 - Rebuild for fpc 3.0.4 and lazarus 1.8 diff --git a/sources b/sources index 297082d..ff820be 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.0-3575-src-nopatents.tar.xz) = 8c8ce72c177f804b2a2a42255e91303954b8a40cc4995330018add67f073cfff29da2c3ad35c0ba3dec275283a75db5a831365875ae4607fad1ff8611a3a763c +SHA512 (skychart-4.1-3730-src-nopatents.tar.xz) = 35f735dcca03309c5fc2da3f3f49c1f125a0bcb77f84f7701b6b04c8e22202b00c6d5de852c75121a5ce8176a1fdc7bd3610514e0d202b316124ef46593f4681 From 1f0a341a4990ac430b6c285ee12414d0e48371fb Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@email.it> Date: Sun, 25 Feb 2018 15:13:16 +0100 Subject: [PATCH 117/162] Fix appdata files location --- skychart.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skychart.spec b/skychart.spec index 7a0be65..02cfe9a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -216,7 +216,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/skychart/cat/tycho2 %{_datadir}/skychart/cat/wds %{_datadir}/skychart/cat/bsc5 -%{_datadir}/appdata/%{name}-data-stars.metainfo.xml +%{_datadir}/metainfo/%{name}-data-stars.metainfo.xml %files data-dso %{_datadir}/skychart/cat/leda @@ -226,7 +226,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/skychart/cat/gpn %{_datadir}/skychart/cat/barnard %{_datadir}/skychart/cat/sh2 -%{_datadir}/appdata/%{name}-data-dso.metainfo.xml +%{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog * Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn From 54c240166ada4a9d31436faea1edc9337c8b8160 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 14 Jul 2018 06:15:58 +0000 Subject: [PATCH 118/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 02cfe9a..36047a3 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.1 -Release: 1.%{svnversion}svn%{?dist} +Release: 2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -229,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn - Upgrade to development version to fix build failures From 8cb5af07f6ce9e21f60e31253951d0950dba3975 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@yandex.com> Date: Sat, 3 Nov 2018 13:35:48 +0100 Subject: [PATCH 119/162] Update svn version. --- .gitignore | 1 + skychart.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 834c5f0..68da989 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /skychart-3.11-3549-src-nopatents.tar.xz /skychart-4.0-3575-src-nopatents.tar.xz /skychart-4.1-3730-src-nopatents.tar.xz +/skychart-4.1.1-3792-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 36047a3..3a22eb5 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3730 +%global svnversion 3792 Name: skychart -Version: 4.1 -Release: 2.%{svnversion}svn%{?dist} +Version: 4.1.1 +Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.1-3730 +# ./generate-tarball.sh 4.1.1-3792 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -229,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn +- Update svn version + * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index ff820be..c95fba2 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.1-3730-src-nopatents.tar.xz) = 35f735dcca03309c5fc2da3f3f49c1f125a0bcb77f84f7701b6b04c8e22202b00c6d5de852c75121a5ce8176a1fdc7bd3610514e0d202b316124ef46593f4681 +SHA512 (skychart-4.1.1-3792-src-nopatents.tar.xz) = 23e7701b8b9272e3d130136f855121976568ef5fe3bbce73f87f142a97ff356da943e8bc9ec42fc08282c398e158f42f37a1f312fb9ed4093c17c310ad635db2 From 70b2092cc102e538a7a01463fae064a53d6fb032 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@yandex.com> Date: Sat, 3 Nov 2018 14:12:30 +0100 Subject: [PATCH 120/162] Import from master --- .gitignore | 21 ++ generate-tarball.sh | 29 +++ skychart-3.11-noupdate.patch | 11 + skychart-4.1-nostrip.patch | 18 ++ skychart-4.1-satmessage.patch | 41 +++ skychart-4.1-wgetdata.patch | 44 ++++ skychart.spec | 471 ++++++++++++++++++++++++++++++++++ sources | 12 + 8 files changed, 647 insertions(+) create mode 100644 .gitignore create mode 100755 generate-tarball.sh create mode 100644 skychart-3.11-noupdate.patch create mode 100644 skychart-4.1-nostrip.patch create mode 100644 skychart-4.1-satmessage.patch create mode 100644 skychart-4.1-wgetdata.patch create mode 100644 skychart.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..68da989 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +/catalog_gcvs.tgz +/catalog_idx.tgz +/catalog_tycho2.tgz +/catalog_wds.tgz +/catalog_pgc.tgz +/catalog_ngc.tgz +/catalog_gcm.tgz +/catalog_gpn.tgz +/catalog_lbn.tgz +/catalog_ocl.tgz +/skychart-3.11-3141-src-nopatents.tar.xz +/skychart-3.11-3157-src-nopatents.tar.xz +/skychart-3.11-3238-src-nopatents.tar.xz +/skychart-3.11-3287-src-nopatents.tar.xz +/catalog_barnard.tgz +/catalog_leda.tgz +/catalog_sh2.tgz +/skychart-3.11-3549-src-nopatents.tar.xz +/skychart-4.0-3575-src-nopatents.tar.xz +/skychart-4.1-3730-src-nopatents.tar.xz +/skychart-4.1.1-3792-src-nopatents.tar.xz diff --git a/generate-tarball.sh b/generate-tarball.sh new file mode 100755 index 0000000..69775e9 --- /dev/null +++ b/generate-tarball.sh @@ -0,0 +1,29 @@ +#!/bin/sh + +VERSION=$1 + +tar -xJvf skychart-$VERSION-src.tar.xz + +#Remove pre-built software +rm -rf skychart-$VERSION-src/tools/data/iridflar +rm -rf skychart-$VERSION-src/tools/data/quicksat +rm -rf skychart-$VERSION-src/skychart/sample_client/astrolabe/*.dll +rm -rf skychart-$VERSION-src/skychart/sample_client/ds2cdc/*.dll.zip + +#Remove Mac and Windows unneeded stuff +rm -rf skychart-$VERSION-src/system_integration/Windows +rm -rf skychart-$VERSION-src/system_integration/MacOSX + +#Remove libraries provided by separate package libpasastro +#they are here only for building the Win version +rm -rf skychart-$VERSION-src/skychart/library/getdss +rm -rf skychart-$VERSION-src/skychart/library/plan404 +rm -rf skychart-$VERSION-src/skychart/library/wcs + +#Remove NGC2000 catalog with license problem and no more used +rm -rf skychart-$VERSION-src/tools/cat/ngc2000 + +tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src + +#Remove temporary directory +rm -rf skychart-$VERSION-src diff --git a/skychart-3.11-noupdate.patch b/skychart-3.11-noupdate.patch new file mode 100644 index 0000000..65fa87b --- /dev/null +++ b/skychart-3.11-noupdate.patch @@ -0,0 +1,11 @@ +--- a/skychart/Makefile.in 2016-02-14 11:58:11.000000000 +0100 ++++ b/skychart/Makefile.in 2016-02-15 18:59:17.956482359 +0100 +@@ -17,7 +17,7 @@ + [compiler] + unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) + includedir=./ +-options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l ++options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l + unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ + + [clean] diff --git a/skychart-4.1-nostrip.patch b/skychart-4.1-nostrip.patch new file mode 100644 index 0000000..572b3f5 --- /dev/null +++ b/skychart-4.1-nostrip.patch @@ -0,0 +1,18 @@ +diff -U 3 -dHrN -- a/install.sh b/install.sh +--- a/install.sh 2017-10-03 11:01:35.000000000 +0200 ++++ b/install.sh 2017-10-10 17:54:25.410030788 +0200 +@@ -25,10 +25,10 @@ + install -m 755 -d $destdir/share/icons/hicolor/scalable + install -m 755 -d $destdir/share/icons/hicolor/scalable/apps + +-install -v -m 755 -s skychart/cdc $destdir/bin/skychart +-install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon +-install -v -m 755 -s varobs/varobs $destdir/bin/varobs +-install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin ++install -v -m 755 skychart/cdc $destdir/bin/skychart ++install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon ++install -v -m 755 varobs/varobs $destdir/bin/varobs ++install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin + install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop + install -v -m 644 system_integration/Linux/share/metainfo/skychart.appdata.xml $destdir/share/metainfo/skychart.appdata.xml + install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog diff --git a/skychart-4.1-satmessage.patch b/skychart-4.1-satmessage.patch new file mode 100644 index 0000000..a07454d --- /dev/null +++ b/skychart-4.1-satmessage.patch @@ -0,0 +1,41 @@ +diff -U 3 -dHrN -- a/skychart/u_satellite.pas b/skychart/u_satellite.pas +--- a/skychart/u_satellite.pas 2017-07-21 15:35:21.000000000 +0200 ++++ b/skychart/u_satellite.pas 2017-10-02 19:18:40.648161937 +0200 +@@ -110,36 +110,8 @@ + end; + + function CheckWine: boolean; +-var +- cmd, buf, msg: string; +- i, j: integer; +- r: TStringList; + begin +- r := TStringList.Create; +- cmd := 'wine --version'; +- i := execprocess(cmd, r); +- Result := (i = 0); +- +- if not Result then +- begin +- +- if r.Count > 0 then +- begin +- buf := ''; +- for j := 0 to r.Count - 1 do +- buf := buf + r[j]; +- end +- else +- buf := ''; +- +- msg := rsPleaseInstWine; +- {$ifdef linux} +- msg := msg + crlf + rsIfItIsNotIns + crlf + 'apt-get install wine' + +- crlf + 'yum install wine'; +- {$endif} +- ShowMessage(msg + crlf + 'wine return: ' + buf); +- end; +- r.Free; ++ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); + end; + + function CheckDosbox: boolean; diff --git a/skychart-4.1-wgetdata.patch b/skychart-4.1-wgetdata.patch new file mode 100644 index 0000000..1dfa865 --- /dev/null +++ b/skychart-4.1-wgetdata.patch @@ -0,0 +1,44 @@ +--- a/tools/install_data.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/tools/install_data.sh 2012-10-06 13:37:24.214119567 +0200 +@@ -4,9 +4,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=../BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } + +--- a/install_cat1.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/install_cat1.sh 2013-03-17 19:47:02.024214677 +0100 +@@ -6,9 +6,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } + +--- a/install_cat2.orig.sh 2012-03-05 19:56:30.000000000 +0100 ++++ b/install_cat2.sh 2013-03-17 19:47:02.024214677 +0100 +@@ -6,9 +6,9 @@ + pkg=$1.tgz + ddir=$2 + pkgz=BaseData/$pkg +- if [ ! -e $pkgz ]; then +- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz +- fi ++# if [ ! -e $pkgz ]; then ++# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz ++# fi + tar xvzf $pkgz -C $ddir + } diff --git a/skychart.spec b/skychart.spec new file mode 100644 index 0000000..3a22eb5 --- /dev/null +++ b/skychart.spec @@ -0,0 +1,471 @@ +%global svnversion 3792 + +Name: skychart +Version: 4.1.1 +Release: 1.%{svnversion}svn%{?dist} +Summary: Planetarium software for the advanced amateur astronomer +License: GPLv2+ +URL: http://www.ap-i.net/skychart/ +# Upstream sources are modified to: +# - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) +# - Remove unneeded Windows and MacOS stuff +# - Remove libraries provided by libpasastro package +# (they still are in sources only for compiling the Windows version) +# To do this we use the generate-tarball.sh script +# Download upstream tarball in the same directory of the script +# and run: +# ./generate-tarball.sh 4.1.1-3792 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz +Source1: generate-tarball.sh +# Source data for skychart-data-stars +Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +# Source data for skychart-data-dso +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz +Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz +Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz +Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz +Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz + + +# Avoid stripping debuginfo from executables +# This is Fedora specific and not reported upstream +Patch1: skychart-4.1-nostrip.patch + +# Disable wget in install script +# This is Fedora specific and not reported upstream +Patch2: skychart-4.1-wgetdata.patch + +# Notify the user that artificial satellites calculation +# has been disabled in Fedora RPMs due to Fedora policies +# This is Fedora specific and not reported upstream +Patch3: skychart-4.1-satmessage.patch + +# Disable software update menu item +# This feature was asked upstream specifically for Fedora +Patch4: skychart-3.11-noupdate.patch + + +ExclusiveArch: %{fpc_arches} +# fpc is available on ppc64, but lazarus has some limitations that +# prevents this package to build +ExcludeArch: ppc64 + + +BuildRequires: fpc +BuildRequires: lazarus +BuildRequires: desktop-file-utils +BuildRequires: dos2unix +BuildRequires: gtk2-devel +BuildRequires: ImageMagick +BuildRequires: libappstream-glib + +Requires: libpasastro +Requires: tzdata +Requires: xdg-utils +Requires: xplanet + +Recommends: openssl-libs + +%description +This program enables you to draw sky charts, making use of the data in 16 +catalogs of stars and nebulae. In addition the position of planets, +asteroids and comets are shown. + +The purpose of this program is to prepare different sky maps for a +particular observation. A large number of parameters help you to choose +specifically or automatically which catalogs to use, the colour and the +dimension of stars and nebulae, the representation of planets, the display +of labels and coordinate grids, the superposition of pictures, the +condition of visibility and more. All these features make this celestial +atlas more complete than a conventional planetarium. + +%package doc +Summary: Documentation files for Skychart +License: CC-BY-SA or GFDL +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation files from the official Skychart wiki provided +within the program as an offline copy. + +%package data-stars +Summary: Additional star catalogs for Skychart +License: Public Domain +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description data-stars +Additional star catalogs for Skychart. This package install all the standard +stars catalog down to magnitude 12, variable and double stars: +Tycho 2; General Catalogue of Variable Stars; Washington Double Stars. + +%package data-dso +Summary: Additional Deep Sky Object catalogs for Skychart +License: Public Domain +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description data-dso +Additional DSO catalogs for Skychart. This package install all the standard +nebulae catalogs: LEDA Catalogue; Lynds Bright Nebulae; Open Cluster Data; +Globular Clusters in the Milky Way; Galactic Planetary Nebulae; +Barnard Catalogue of Dark Nebulae; Sharpless Catalog. + +%prep +%setup0 -q -n %{name}-%{version}-%{svnversion}-src + +%patch1 -p1 + +%patch2 -p1 + +%patch3 -p1 + +%patch4 -p1 + +# Fix executable bit set on sources +find skychart -type f -print0 | xargs -0 chmod -x + +# Put additional catalogs files where where required for installation +%{__cp} -p %SOURCE2 ./BaseData +%{__cp} -p %SOURCE3 ./BaseData +%{__cp} -p %SOURCE4 ./BaseData +%{__cp} -p %SOURCE5 ./BaseData +%{__cp} -p %SOURCE6 ./BaseData +%{__cp} -p %SOURCE7 ./BaseData +%{__cp} -p %SOURCE8 ./BaseData +%{__cp} -p %SOURCE9 ./BaseData +%{__cp} -p %SOURCE10 ./BaseData +%{__cp} -p %SOURCE11 ./BaseData +%{__cp} -p %SOURCE12 ./BaseData + +# Add directories to fix builds on arm and ppc architectures +declare -a arches=("arm-linux-gtk2" "powerpc-linux-gtk2" "powerpc64-linux-gtk2") +for arch in "${arches[@]}" +do + %{__mkdir_p} ./skychart/component/lib/$arch + %{__mkdir_p} ./skychart/units/$arch + %{__mkdir_p} ./varobs/units/$arch +done + + + +%build +./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} + +# Skychart doesn't like parallel building so we don't use macro. +# We pass options to fpc compiler for generate debug info. +make fpcopts="-O1 -gw3 -fPIC" + +%install +# Install main program +make install PREFIX=%{buildroot}%{_prefix} + +# Install catalogs, translations and data files +make install install_data PREFIX=%{buildroot}%{_prefix} + +# Install wiki documentation +make install install_doc PREFIX=%{buildroot}%{_prefix} + +# Install additional catalogs +make install install_cat1 PREFIX=%{buildroot}%{_prefix} +make install install_cat2 PREFIX=%{buildroot}%{_prefix} + + +%check +# Menu entry +desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop + +# Appdata file check +appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml + + +%files +%license skychart/gpl.txt +%doc %{_datadir}/doc/skychart/changelog +%doc %{_datadir}/doc/skychart/copyright +%{_bindir}/* +%{_datadir}/applications/%{name}.desktop +%{_datadir}/metainfo/%{name}.appdata.xml +%{_datadir}/pixmaps/%{name}.png +%{_datadir}/icons/*/*/*/%{name}.png +%{_datadir}/icons/*/*/*/%{name}.svg +%dir %{_datadir}/skychart +%{_datadir}/skychart/data +%{_datadir}/skychart/cat/DSoutlines +%{_datadir}/skychart/cat/milkyway +%{_datadir}/skychart/cat/openngc +%{_datadir}/skychart/cat/RealSky +%{_datadir}/skychart/cat/sac +%{_datadir}/skychart/cat/xhip +%{_datadir}/skychart/doc/html_doc +%{_datadir}/skychart/doc/releasenotes*.txt +%{_datadir}/skychart/doc/varobs + + +%files doc +%doc %{_datadir}/skychart/doc/wiki_doc + +%files data-stars +%{_datadir}/skychart/cat/gcvs +%{_datadir}/skychart/cat/tycho2 +%{_datadir}/skychart/cat/wds +%{_datadir}/skychart/cat/bsc5 +%{_datadir}/metainfo/%{name}-data-stars.metainfo.xml + +%files data-dso +%{_datadir}/skychart/cat/leda +%{_datadir}/skychart/cat/lbn +%{_datadir}/skychart/cat/ocl +%{_datadir}/skychart/cat/gcm +%{_datadir}/skychart/cat/gpn +%{_datadir}/skychart/cat/barnard +%{_datadir}/skychart/cat/sh2 +%{_datadir}/metainfo/%{name}-data-dso.metainfo.xml + +%changelog +* Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn +- Update svn version + +* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn +- Upgrade to development version to fix build failures + +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8 +- Rebuild for fpc 3.0.4 and lazarus 1.8 + +* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6 +- Remove obsolete scriptlets + +* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4 +- Change FPC compiler options to fix debuginfo package build + +* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2 +- Fix for OpenSSL 1.1 + +* Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1 +- Release ver 4.0 + +* Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn +- Patch to fix libssl and libcrypto links + +* Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn +- Update svn version + +* Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn +- Set ExcludeArch ppc64 due to lazarus limitations + +* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn +- Update svn version + +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn +- Use new fpc_arches macro as ExclusiveArch + +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn +- Remove additional NGC catalog due to incompatible license + +* Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn +- Update svn version +- Remove remnants of pre built .dll files in sources +- Remove libraries from sources that are now provided externally +- Patch to inform user about artificial satellites calculation removal +- Patch to set option to disable software update menu item + +* Fri Feb 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-9.3229svn +- Update svn version +- FSF address in sources is now fixed upstream +- Appdata file is now fixed upstream +- Updated catalog_wds source file from upstream + +* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn +- Fix the metainfo files by removing zero-width space chars + +* Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn +- Add .metainfo.xml files to subpackages + +* Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn +- Update svn version +- Libraries are now in separate package libpasastro +- Fix wrong FSF address in source headers +- Fix appdata file validation + +* Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn +- Properly set ExcludeArch + +* Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn +- Revert back to ExcludeArch + +* Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn +- Set ExclusiveArch to prevent build on arm and s390x + +* Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn +- Update to 3.11svn to fix incompatibility with lazarus 1.4.2 + +* Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7 +- Validate appdata file +- Change license file location + +* Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6 +- Added patch to fix build with lazarus 1.4 + +* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2 +- Fix patch1 + +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 +- Update to 3.10 + +* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7 +- Manually create needed directories to fix arm and ppc builds + +* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6 +- Enable arm build +- Enable ppc and ppc64 build + +* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4 +- Use xz to compress source file instead of bzip + +* Thu May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 +- Make available additional dso catalogs as subpackage +- Modify patch to disable wget in catalog installation scripts + +* Sun May 05 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 +- Make doc package platform independent +- Remove unneeded buildroot and files declarations +- Remove Group tag +- Make available additional star catalogs as subpackage + +* Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 +- Update to 3.8 +- Requires Lazarus >= 1.0.4 + +* Sun Mar 10 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.3.2268svn +- Exclude armv7hl architecture + +* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-0.2.2268svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn +- Update to 3.7 testing version + +* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 +- Rebuild with lazarus 0.9.30.4 fix bug #799711 +- Correct patch + +* Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1 +- Update to 3.6 version +- Modify sources to remove iridflar.exe +- Remove patches merged upstream +- Make sure fpc >= 2.4.4 to avoid execstack errors +- Add scriptlets for icon cache +- Make sure lazarus >= 0.9.30.4 to work with F17 and higher + +* Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 +- Added wiki documentation as subpackage +- Fix old FSF address in license file +- Remove binary software quicksat.exe and IRIDFLAR.EXE +- Excluded ppc architecture, since lazarus < 0.9.30 + +* Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 +- Patch to make it compile with gcc 4.7 + +* Fri Jan 20 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-2 +- Added missing source tarball +- Renamed patches + +* Thu Jan 19 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-1 +- New upstream source +- New source with ephemeris + +* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5 +- no lazarus on s390(x) + +* Thu Apr 28 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-4 +- Rebuilding with lazarus 0.9.30 + +* Wed Mar 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-3 +- Patch from upstream to make skychart work with lazarus 0.9.28 + +* Wed Feb 16 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-2 +- Missing patch added + +* Sat Feb 12 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-1 +- New upstream source + +* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-5.20100724svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Jan 13 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.0.1.6-4.20100724svn +- Using d-f-validate instead od d-f-install (Fixes bz #662472) +- Changed RPM_BUILD_ROOT macro to lower case form + +* Sat Jul 24 2010 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-3.20100724svn +- Update to a later snapshot + +* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-2.20090408svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-1.20090408svn +- Update to post latest beta +- Drop the unzip patch +- Upstream did the datadir and xdg-open chage as well, drop patches + +* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-6.20081026svn +- Enable GTK2 UI + +* Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-5.20081026svn +- Fix desktop entry categories + +* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.5-4.20081026svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Dec 01 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-3.20081026svn +- Own /usr/share/skychart (#474037) + +* Thu Nov 06 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-2.20081026svn +- Temporarily disable ppc64 build due to a compiler bug + +* Wed Oct 29 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-1.20081026svn +- Rebase to later upstream, since we have more recent fpc and lazarus now + +* Sun Oct 26 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.3-1.20071015svn +- Initial packaging attempt diff --git a/sources b/sources index e69de29..c95fba2 100644 --- a/sources +++ b/sources @@ -0,0 +1,12 @@ +SHA512 (catalog_barnard.tgz) = 7b91c80dfc25e006cd0cfad6a64fab78aea9b9ded1e8f75b2c54851be788b6512be96bf8891692d9b52825a90fc27d6ae262d1dd3ccc9ff76318f4d91330bf02 +SHA512 (catalog_gcm.tgz) = 957e87b81a23b64b5e40a6f3a55908637e86b01bba0fc36c9dd293966a9870faf7de22d548b324bf9a6c15641cd09d10f76a7200b52eab48fa4c7836115518ce +SHA512 (catalog_gcvs.tgz) = de2878a4ebe35c864d10354378ff033b0f8d261a818e5f66d6c39be28933501a94a662ed7dc85b40ec38270efe567cbd63a637c778aa386eb68584b32c4844f9 +SHA512 (catalog_gpn.tgz) = d0e83773f1dd59d45e9465e6bc0bb0110631f7956fa01f37c5de763be0f7048c22abf3dccc4333c126272f270485b37084d8e22cd02db08e7bb8412da9c66bb4 +SHA512 (catalog_idx.tgz) = 3b144993de14b73edaffd43a35b8404adb166c5b4edc223dd78e8db361ca9a61da2e9c3d29a0af97960c1cdcb94b307ce0824f1fda3b74b518f611666d1e362e +SHA512 (catalog_lbn.tgz) = bddc2cf48c2e575440ed114bb447187e2f30c87312a552ff63d40e88a08e05c31da1d45cb96a5bb0216093a07e4d16336a0a664a66d6e586221217ae45d803da +SHA512 (catalog_leda.tgz) = d8d1587ab937b1a14b6daa0a32dc1ee2238f13e198940c182abcfa73f27c89fe7657dd0f8c5a23372a847adfc76ce08276b41fbef13995b8713bef3dde0e1397 +SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13e0e86cf09e4a2ff3d915e5618940e9d8b2ab4a4198b59cd05302322a5862f53535449f343e7 +SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 +SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 +SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c +SHA512 (skychart-4.1.1-3792-src-nopatents.tar.xz) = 23e7701b8b9272e3d130136f855121976568ef5fe3bbce73f87f142a97ff356da943e8bc9ec42fc08282c398e158f42f37a1f312fb9ed4093c17c310ad635db2 From e427b251954c0d85201ed7e992bc663c31cf16ca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 2 Feb 2019 15:35:52 +0000 Subject: [PATCH 121/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 3a22eb5..947396f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.1.1 -Release: 1.%{svnversion}svn%{?dist} +Release: 2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -229,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn - Update svn version From e6e6332bd33e05a28c6248f36e6e6a5f8e5fd06b Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 27 Apr 2019 14:48:20 +0200 Subject: [PATCH 122/162] Update to svn commit #4925 --- .gitignore | 1 + skychart.spec | 56 +++++++++++++++++++++++++-------------------------- sources | 2 +- 3 files changed, 30 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 68da989..1253622 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /skychart-4.0-3575-src-nopatents.tar.xz /skychart-4.1-3730-src-nopatents.tar.xz /skychart-4.1.1-3792-src-nopatents.tar.xz +/skychart-4.1.1-3925-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 947396f..028485f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,11 +1,11 @@ -%global svnversion 3792 +%global svnversion 3925 -Name: skychart -Version: 4.1.1 -Release: 2.%{svnversion}svn%{?dist} -Summary: Planetarium software for the advanced amateur astronomer -License: GPLv2+ -URL: http://www.ap-i.net/skychart/ +Name: skychart +Version: 4.1.1 +Release: 3.%{svnversion}svn%{?dist} +Summary: Planetarium software for the advanced amateur astronomer +License: GPLv2+ +URL: http://www.ap-i.net/skychart/ # Upstream sources are modified to: # - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) # - Remove unneeded Windows and MacOS stuff @@ -14,46 +14,43 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.1.1-3792 -Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz -Source1: generate-tarball.sh +# ./generate-tarball.sh 4.1.1-3925 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz +Source1: generate-tarball.sh # Source data for skychart-data-stars -Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz -Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz -Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz -Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz # Source data for skychart-data-dso -Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz -Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz -Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz -Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz -Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz -Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz +Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz +Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz +Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz +Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream -Patch1: skychart-4.1-nostrip.patch +Patch1: skychart-4.1-nostrip.patch # Disable wget in install script # This is Fedora specific and not reported upstream -Patch2: skychart-4.1-wgetdata.patch +Patch2: skychart-4.1-wgetdata.patch # Notify the user that artificial satellites calculation # has been disabled in Fedora RPMs due to Fedora policies # This is Fedora specific and not reported upstream -Patch3: skychart-4.1-satmessage.patch +Patch3: skychart-4.1-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora -Patch4: skychart-3.11-noupdate.patch +Patch4: skychart-3.11-noupdate.patch ExclusiveArch: %{fpc_arches} -# fpc is available on ppc64, but lazarus has some limitations that -# prevents this package to build -ExcludeArch: ppc64 BuildRequires: fpc @@ -229,6 +226,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn +- Update svn version + * Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index c95fba2..28742d9 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.1.1-3792-src-nopatents.tar.xz) = 23e7701b8b9272e3d130136f855121976568ef5fe3bbce73f87f142a97ff356da943e8bc9ec42fc08282c398e158f42f37a1f312fb9ed4093c17c310ad635db2 +SHA512 (skychart-4.1.1-3925-src-nopatents.tar.xz) = c8f1115be50a4259345bb5677093bdc767e0838c243b09e4637cf8c40cc56d236361bbb3d2f2304bf124cf8f7bd1709c5257b4b9bfdc3be4d3e0b58d9fc4f399 From bf45a1de84ccb31f149349d4592a02efb552b1d0 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 27 Apr 2019 14:48:20 +0200 Subject: [PATCH 123/162] Update to svn commit #4925 --- .gitignore | 1 + skychart.spec | 59 +++++++++++++++++++++++++++------------------------ sources | 2 +- 3 files changed, 33 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 68da989..1253622 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /skychart-4.0-3575-src-nopatents.tar.xz /skychart-4.1-3730-src-nopatents.tar.xz /skychart-4.1.1-3792-src-nopatents.tar.xz +/skychart-4.1.1-3925-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 3a22eb5..028485f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,11 +1,11 @@ -%global svnversion 3792 +%global svnversion 3925 -Name: skychart -Version: 4.1.1 -Release: 1.%{svnversion}svn%{?dist} -Summary: Planetarium software for the advanced amateur astronomer -License: GPLv2+ -URL: http://www.ap-i.net/skychart/ +Name: skychart +Version: 4.1.1 +Release: 3.%{svnversion}svn%{?dist} +Summary: Planetarium software for the advanced amateur astronomer +License: GPLv2+ +URL: http://www.ap-i.net/skychart/ # Upstream sources are modified to: # - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) # - Remove unneeded Windows and MacOS stuff @@ -14,46 +14,43 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.1.1-3792 -Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz -Source1: generate-tarball.sh +# ./generate-tarball.sh 4.1.1-3925 +Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz +Source1: generate-tarball.sh # Source data for skychart-data-stars -Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz -Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz -Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz -Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz # Source data for skychart-data-dso -Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz -Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz -Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz -Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz -Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz -Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz +Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz +Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz +Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz +Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream -Patch1: skychart-4.1-nostrip.patch +Patch1: skychart-4.1-nostrip.patch # Disable wget in install script # This is Fedora specific and not reported upstream -Patch2: skychart-4.1-wgetdata.patch +Patch2: skychart-4.1-wgetdata.patch # Notify the user that artificial satellites calculation # has been disabled in Fedora RPMs due to Fedora policies # This is Fedora specific and not reported upstream -Patch3: skychart-4.1-satmessage.patch +Patch3: skychart-4.1-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora -Patch4: skychart-3.11-noupdate.patch +Patch4: skychart-3.11-noupdate.patch ExclusiveArch: %{fpc_arches} -# fpc is available on ppc64, but lazarus has some limitations that -# prevents this package to build -ExcludeArch: ppc64 BuildRequires: fpc @@ -229,6 +226,12 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn +- Update svn version + +* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn - Update svn version diff --git a/sources b/sources index c95fba2..28742d9 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.1.1-3792-src-nopatents.tar.xz) = 23e7701b8b9272e3d130136f855121976568ef5fe3bbce73f87f142a97ff356da943e8bc9ec42fc08282c398e158f42f37a1f312fb9ed4093c17c310ad635db2 +SHA512 (skychart-4.1.1-3925-src-nopatents.tar.xz) = c8f1115be50a4259345bb5677093bdc767e0838c243b09e4637cf8c40cc56d236361bbb3d2f2304bf124cf8f7bd1709c5257b4b9bfdc3be4d3e0b58d9fc4f399 From 35f3141630ebb234636f168db35abcfd4f8535d2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Fri, 26 Jul 2019 23:30:05 +0000 Subject: [PATCH 124/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 028485f..f3b8b00 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.1.1 -Release: 3.%{svnversion}svn%{?dist} +Release: 4.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -226,6 +226,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-4.3925svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn - Update svn version From 6f3f29e179c1a71898caf09381f785d51dfef0ae Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Thu, 29 Aug 2019 08:41:51 +0200 Subject: [PATCH 125/162] Update svn version to 4000 --- .gitignore | 1 + skychart.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1253622..00f647b 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /skychart-4.1-3730-src-nopatents.tar.xz /skychart-4.1.1-3792-src-nopatents.tar.xz /skychart-4.1.1-3925-src-nopatents.tar.xz +/skychart-4.1.1-4000-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index f3b8b00..21f38af 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 3925 +%global svnversion 4000 Name: skychart Version: 4.1.1 -Release: 4.%{svnversion}svn%{?dist} +Release: 5.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.1.1-3925 +# ./generate-tarball.sh 4.1.1-4000 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -226,6 +226,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Thu Aug 29 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-5.4000svn +- Update svn version + * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-4.3925svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 28742d9..0b04590 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.1.1-3925-src-nopatents.tar.xz) = c8f1115be50a4259345bb5677093bdc767e0838c243b09e4637cf8c40cc56d236361bbb3d2f2304bf124cf8f7bd1709c5257b4b9bfdc3be4d3e0b58d9fc4f399 +SHA512 (skychart-4.1.1-4000-src-nopatents.tar.xz) = b12ae55224c94bb6c12b5c4099effcfeef1c949c92c66cea0eff53ba906f8d81e7ed36c994330f57750dbaf628248f0488ff6fc33e6bb348dd05490c6269a093 From b8a6e65b14ab7e73de7c3b06d04064b97f6f7aec Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Fri, 18 Oct 2019 09:51:27 +0200 Subject: [PATCH 126/162] Release 4.2 stable --- .gitignore | 1 + ...e.patch => skychart-4.2-noupdatemenu.patch | 7 +- skychart.spec | 138 +----------------- sources | 2 +- 4 files changed, 14 insertions(+), 134 deletions(-) rename skychart-3.11-noupdate.patch => skychart-4.2-noupdatemenu.patch (82%) diff --git a/.gitignore b/.gitignore index 00f647b..d7e0f1c 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /skychart-4.1.1-3792-src-nopatents.tar.xz /skychart-4.1.1-3925-src-nopatents.tar.xz /skychart-4.1.1-4000-src-nopatents.tar.xz +/skychart-4.2-4046-src-nopatents.tar.xz diff --git a/skychart-3.11-noupdate.patch b/skychart-4.2-noupdatemenu.patch similarity index 82% rename from skychart-3.11-noupdate.patch rename to skychart-4.2-noupdatemenu.patch index 65fa87b..9546719 100644 --- a/skychart-3.11-noupdate.patch +++ b/skychart-4.2-noupdatemenu.patch @@ -1,11 +1,12 @@ ---- a/skychart/Makefile.in 2016-02-14 11:58:11.000000000 +0100 -+++ b/skychart/Makefile.in 2016-02-15 18:59:17.956482359 +0100 +diff -U 3 -dHrN -- a/skychart/Makefile.in b/skychart/Makefile.in +--- a/skychart/Makefile.in 2019-10-13 14:25:41.000000000 +0200 ++++ b/skychart/Makefile.in 2019-10-14 18:03:35.121425627 +0200 @@ -17,7 +17,7 @@ [compiler] unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) includedir=./ -options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l +options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l - unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ + unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ [clean] diff --git a/skychart.spec b/skychart.spec index 21f38af..9d1212b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4000 +%global svnversion 4046 Name: skychart -Version: 4.1.1 -Release: 5.%{svnversion}svn%{?dist} +Version: 4.2 +Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.1.1-4000 +# ./generate-tarball.sh 4.2-4046 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -47,7 +47,7 @@ Patch3: skychart-4.1-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora -Patch4: skychart-3.11-noupdate.patch +Patch4: skychart-4.2-noupdatemenu.patch ExclusiveArch: %{fpc_arches} @@ -226,6 +226,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Fri Oct 18 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2-1.4046svn +- Release stable 4.2 + * Thu Aug 29 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-5.4000svn - Update svn version @@ -353,128 +356,3 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata * Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 - Update to 3.10 - -* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7 -- Manually create needed directories to fix arm and ppc builds - -* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6 -- Enable arm build -- Enable ppc and ppc64 build - -* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4 -- Use xz to compress source file instead of bzip - -* Thu May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3 -- Make available additional dso catalogs as subpackage -- Modify patch to disable wget in catalog installation scripts - -* Sun May 05 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2 -- Make doc package platform independent -- Remove unneeded buildroot and files declarations -- Remove Group tag -- Make available additional star catalogs as subpackage - -* Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1 -- Update to 3.8 -- Requires Lazarus >= 1.0.4 - -* Sun Mar 10 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.3.2268svn -- Exclude armv7hl architecture - -* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-0.2.2268svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn -- Update to 3.7 testing version - -* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3 -- Rebuild with lazarus 0.9.30.4 fix bug #799711 -- Correct patch - -* Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1 -- Update to 3.6 version -- Modify sources to remove iridflar.exe -- Remove patches merged upstream -- Make sure fpc >= 2.4.4 to avoid execstack errors -- Add scriptlets for icon cache -- Make sure lazarus >= 0.9.30.4 to work with F17 and higher - -* Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4 -- Added wiki documentation as subpackage -- Fix old FSF address in license file -- Remove binary software quicksat.exe and IRIDFLAR.EXE -- Excluded ppc architecture, since lazarus < 0.9.30 - -* Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3 -- Patch to make it compile with gcc 4.7 - -* Fri Jan 20 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-2 -- Added missing source tarball -- Renamed patches - -* Thu Jan 19 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-1 -- New upstream source -- New source with ephemeris - -* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5 -- no lazarus on s390(x) - -* Thu Apr 28 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-4 -- Rebuilding with lazarus 0.9.30 - -* Wed Mar 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-3 -- Patch from upstream to make skychart work with lazarus 0.9.28 - -* Wed Feb 16 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-2 -- Missing patch added - -* Sat Feb 12 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-1 -- New upstream source - -* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-5.20100724svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Thu Jan 13 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.0.1.6-4.20100724svn -- Using d-f-validate instead od d-f-install (Fixes bz #662472) -- Changed RPM_BUILD_ROOT macro to lower case form - -* Sat Jul 24 2010 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-3.20100724svn -- Update to a later snapshot - -* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-2.20090408svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-1.20090408svn -- Update to post latest beta -- Drop the unzip patch -- Upstream did the datadir and xdg-open chage as well, drop patches - -* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-6.20081026svn -- Enable GTK2 UI - -* Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-5.20081026svn -- Fix desktop entry categories - -* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.5-4.20081026svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Dec 01 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-3.20081026svn -- Own /usr/share/skychart (#474037) - -* Thu Nov 06 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-2.20081026svn -- Temporarily disable ppc64 build due to a compiler bug - -* Wed Oct 29 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-1.20081026svn -- Rebase to later upstream, since we have more recent fpc and lazarus now - -* Sun Oct 26 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.3-1.20071015svn -- Initial packaging attempt diff --git a/sources b/sources index 0b04590..dd18b2e 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.1.1-4000-src-nopatents.tar.xz) = b12ae55224c94bb6c12b5c4099effcfeef1c949c92c66cea0eff53ba906f8d81e7ed36c994330f57750dbaf628248f0488ff6fc33e6bb348dd05490c6269a093 +SHA512 (skychart-4.2-4046-src-nopatents.tar.xz) = 817aa99047f29e5911010fa5747bc5e3f28531e750bf96aa6fb0e3d8afb0788417a902b98d10e8c9bc7296697930c53a1ba401dc01d572c2f7de33dfc9983573 From 510e2b531a760a0713de32ff6efd61baf41f8e64 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Fri, 18 Oct 2019 11:17:24 +0200 Subject: [PATCH 127/162] Fix unowned directories --- skychart.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skychart.spec b/skychart.spec index 9d1212b..fe7e775 100644 --- a/skychart.spec +++ b/skychart.spec @@ -194,12 +194,14 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/icons/*/*/*/%{name}.svg %dir %{_datadir}/skychart %{_datadir}/skychart/data +%dir %{_datadir}/skychart/cat %{_datadir}/skychart/cat/DSoutlines %{_datadir}/skychart/cat/milkyway %{_datadir}/skychart/cat/openngc %{_datadir}/skychart/cat/RealSky %{_datadir}/skychart/cat/sac %{_datadir}/skychart/cat/xhip +%dir %{_datadir}/skychart/doc %{_datadir}/skychart/doc/html_doc %{_datadir}/skychart/doc/releasenotes*.txt %{_datadir}/skychart/doc/varobs From 2423e1681b46bd88d6631f40236a3c2676713db8 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Fri, 18 Oct 2019 11:27:25 +0200 Subject: [PATCH 128/162] Add rpmlint whitelist --- skychart.rpmlintrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 skychart.rpmlintrc diff --git a/skychart.rpmlintrc b/skychart.rpmlintrc new file mode 100644 index 0000000..ba09904 --- /dev/null +++ b/skychart.rpmlintrc @@ -0,0 +1,5 @@ +# libpasastro is not a library +addFilter(r'explicit-lib-dependency libpasastro') + +# some catalog files are zero length, not an error +addFilter(r'zero-length %{_datadir}/skychart/cat/cat/.*/.*\.dat') From 977441fc3643f3bfbcf470ca5522b0fab8e2a0c9 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Tue, 26 Nov 2019 18:35:12 +0100 Subject: [PATCH 129/162] Update to stable 4.2.1 --- .gitignore | 1 + skychart.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d7e0f1c..a7d128e 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /skychart-4.1.1-3925-src-nopatents.tar.xz /skychart-4.1.1-4000-src-nopatents.tar.xz /skychart-4.2-4046-src-nopatents.tar.xz +/skychart-4.2.1-4073-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index fe7e775..be035ba 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,7 +1,7 @@ -%global svnversion 4046 +%global svnversion 4073 Name: skychart -Version: 4.2 +Version: 4.2.1 Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.2-4046 +# ./generate-tarball.sh 4.2.1-4073 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -228,6 +228,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Tue Nov 26 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2.1-1.4073svn +- Update to stable 4.2.1 + * Fri Oct 18 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2-1.4046svn - Release stable 4.2 diff --git a/sources b/sources index dd18b2e..001bb74 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.2-4046-src-nopatents.tar.xz) = 817aa99047f29e5911010fa5747bc5e3f28531e750bf96aa6fb0e3d8afb0788417a902b98d10e8c9bc7296697930c53a1ba401dc01d572c2f7de33dfc9983573 +SHA512 (skychart-4.2.1-4073-src-nopatents.tar.xz) = c498af5e4e265bfe204f736bbd0c5b24d499c03e92681b1933e842081c22f12fc7e80156338a8f99a754d777f841b42d420fddbb35e129c0ccfa96921324c2ed From 1eda79a111c5c88cb64b3163b15ef25d22a876d6 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Tue, 26 Nov 2019 18:07:53 +0000 Subject: [PATCH 130/162] Update skychart.rpmlintrc Correct regex for catalog files --- skychart.rpmlintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.rpmlintrc b/skychart.rpmlintrc index ba09904..fcd5453 100644 --- a/skychart.rpmlintrc +++ b/skychart.rpmlintrc @@ -2,4 +2,4 @@ addFilter(r'explicit-lib-dependency libpasastro') # some catalog files are zero length, not an error -addFilter(r'zero-length %{_datadir}/skychart/cat/cat/.*/.*\.dat') +addFilter(r'zero-length %{_datadir}/skychart/cat/.*/.*\.dat') From 3a9ec30d4c13dd0e7a54400b4c4d72b5a52a0453 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Thu, 30 Jan 2020 23:39:15 +0000 Subject: [PATCH 131/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index be035ba..650729f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.2.1 -Release: 1.%{svnversion}svn%{?dist} +Release: 2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -228,6 +228,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2.4073svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Nov 26 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2.1-1.4073svn - Update to stable 4.2.1 From 52c3de496dad216122ca423ae44d5b8481487724 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 1 Feb 2020 11:52:18 +0100 Subject: [PATCH 132/162] Update to 4.3 svn --- .gitignore | 1 + skychart-4.1-satmessage.patch | 41 ----------------------------------- skychart.spec | 13 ++++++----- sources | 2 +- 4 files changed, 10 insertions(+), 47 deletions(-) delete mode 100644 skychart-4.1-satmessage.patch diff --git a/.gitignore b/.gitignore index a7d128e..bfa2fa9 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /skychart-4.1.1-4000-src-nopatents.tar.xz /skychart-4.2-4046-src-nopatents.tar.xz /skychart-4.2.1-4073-src-nopatents.tar.xz +/skychart-4.3-4108-src-nopatents.tar.xz diff --git a/skychart-4.1-satmessage.patch b/skychart-4.1-satmessage.patch deleted file mode 100644 index a07454d..0000000 --- a/skychart-4.1-satmessage.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff -U 3 -dHrN -- a/skychart/u_satellite.pas b/skychart/u_satellite.pas ---- a/skychart/u_satellite.pas 2017-07-21 15:35:21.000000000 +0200 -+++ b/skychart/u_satellite.pas 2017-10-02 19:18:40.648161937 +0200 -@@ -110,36 +110,8 @@ - end; - - function CheckWine: boolean; --var -- cmd, buf, msg: string; -- i, j: integer; -- r: TStringList; - begin -- r := TStringList.Create; -- cmd := 'wine --version'; -- i := execprocess(cmd, r); -- Result := (i = 0); -- -- if not Result then -- begin -- -- if r.Count > 0 then -- begin -- buf := ''; -- for j := 0 to r.Count - 1 do -- buf := buf + r[j]; -- end -- else -- buf := ''; -- -- msg := rsPleaseInstWine; -- {$ifdef linux} -- msg := msg + crlf + rsIfItIsNotIns + crlf + 'apt-get install wine' + -- crlf + 'yum install wine'; -- {$endif} -- ShowMessage(msg + crlf + 'wine return: ' + buf); -- end; -- r.Free; -+ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); - end; - - function CheckDosbox: boolean; diff --git a/skychart.spec b/skychart.spec index 650729f..c400b77 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4073 +%global svnversion 4108 Name: skychart -Version: 4.2.1 -Release: 2.%{svnversion}svn%{?dist} +Version: 4.3 +Release: 1.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.2.1-4073 +# ./generate-tarball.sh 4.3-4108 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -43,7 +43,7 @@ Patch2: skychart-4.1-wgetdata.patch # Notify the user that artificial satellites calculation # has been disabled in Fedora RPMs due to Fedora policies # This is Fedora specific and not reported upstream -Patch3: skychart-4.1-satmessage.patch +Patch3: skychart-4.3-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora @@ -228,6 +228,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Feb 01 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-1.4108svn +- Update to 4.3 svn + * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2.4073svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 001bb74..996e714 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.2.1-4073-src-nopatents.tar.xz) = c498af5e4e265bfe204f736bbd0c5b24d499c03e92681b1933e842081c22f12fc7e80156338a8f99a754d777f841b42d420fddbb35e129c0ccfa96921324c2ed +SHA512 (skychart-4.3-4108-src-nopatents.tar.xz) = ebaaac53fe5c0573e4d909592924d09c484ae9bd6f62d51aebfeba96ae1d4badd4854e83ea54ec9aed4c6098a86481372042e5859fe4ddb1f99c64b74d39f10c From 30875b4ef0c3e46cab73ad5f1f88fe92c64e4ba1 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 1 Feb 2020 11:52:49 +0100 Subject: [PATCH 133/162] Add patch file --- skychart-4.3-satmessage.patch | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 skychart-4.3-satmessage.patch diff --git a/skychart-4.3-satmessage.patch b/skychart-4.3-satmessage.patch new file mode 100644 index 0000000..b3874cb --- /dev/null +++ b/skychart-4.3-satmessage.patch @@ -0,0 +1,41 @@ +diff -U 3 -dHrN -- a/skychart/u_satellite.pas b/skychart/u_satellite.pas +--- a/skychart/u_satellite.pas 2020-01-26 16:24:19.000000000 +0100 ++++ b/skychart/u_satellite.pas 2020-02-01 11:46:01.224703002 +0100 +@@ -100,36 +100,8 @@ + end; + + function CheckWine: boolean; +-var +- cmd, buf, msg: string; +- i, j: integer; +- r: TStringList; + begin +- r := TStringList.Create; +- cmd := 'wine --version'; +- i := execprocess(cmd, r); +- Result := (i = 0); +- +- if not Result then +- begin +- +- if r.Count > 0 then +- begin +- buf := ''; +- for j := 0 to r.Count - 1 do +- buf := buf + r[j]; +- end +- else +- buf := ''; +- +- msg := rsPleaseInstWine; +- {$ifdef linux} +- msg := msg + crlf + rsIfItIsNotIns + crlf + 'apt-get install wine' + +- crlf + 'yum install wine'; +- {$endif} +- ShowMessage(msg + crlf + 'wine return: ' + buf); +- end; +- r.Free; ++ ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.'); + end; + + procedure SatelliteList(y, m, startd, endd, maglimit, tle, tmpdir, From e9db6968d709b3225d7808fea8e35cfb2806974e Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 8 Feb 2020 18:04:15 +0100 Subject: [PATCH 134/162] ExcludeArch ppc64le due to compilation errors --- skychart.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index c400b77..37bb260 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.3 -Release: 1.%{svnversion}svn%{?dist} +Release: 2.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -51,6 +51,7 @@ Patch4: skychart-4.2-noupdatemenu.patch ExclusiveArch: %{fpc_arches} +ExcludeArch: ppc64le BuildRequires: fpc @@ -228,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sat Feb 08 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-2.4108svn +- ExcludeArch ppc64le due to compilation errors + * Sat Feb 01 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-1.4108svn - Update to 4.3 svn From e4fe302eb21fe70dee7f09e1bc2c7761d7b364fb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Wed, 29 Jul 2020 10:55:51 +0000 Subject: [PATCH 135/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 37bb260..5138ea6 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.3 -Release: 2.%{svnversion}svn%{?dist} +Release: 3.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -229,6 +229,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-3.4108svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat Feb 08 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-2.4108svn - ExcludeArch ppc64le due to compilation errors From 199e7c2df793568c5519b7d6a223b18405c02a8c Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Tue, 15 Dec 2020 15:26:24 +0100 Subject: [PATCH 136/162] Update svn version --- .gitignore | 1 + skychart.spec | 11 ++++++++--- sources | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bfa2fa9..2d72679 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /skychart-4.2-4046-src-nopatents.tar.xz /skychart-4.2.1-4073-src-nopatents.tar.xz /skychart-4.3-4108-src-nopatents.tar.xz +/skychart-4.3-4238-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 5138ea6..499f9bb 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4108 +%global svnversion 4238 Name: skychart Version: 4.3 -Release: 3.%{svnversion}svn%{?dist} +Release: 4.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.3-4108 +# ./generate-tarball.sh 4.3-4238 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -68,6 +68,8 @@ Requires: xdg-utils Requires: xplanet Recommends: openssl-libs +Recommends: calceph-libs + %description This program enables you to draw sky charts, making use of the data in 16 @@ -229,6 +231,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Tue Dec 15 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-4.4238svn +- Update svn version + * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-3.4108svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 996e714..44886dd 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4108-src-nopatents.tar.xz) = ebaaac53fe5c0573e4d909592924d09c484ae9bd6f62d51aebfeba96ae1d4badd4854e83ea54ec9aed4c6098a86481372042e5859fe4ddb1f99c64b74d39f10c +SHA512 (skychart-4.3-4238-src-nopatents.tar.xz) = 54265a6fb4eb929d904f1dbce5933a0bf1faff6eb45b722de1d2ea9e52542982659cfc4e9a6cc01057cfeed1254460f7e60c9a4337e9980bd9b13b307d69c924 From dba62ee5d844ab801d0739f180c32854a499af93 Mon Sep 17 00:00:00 2001 From: Tom Stellard <tstellar@redhat.com> Date: Fri, 8 Jan 2021 21:35:21 +0000 Subject: [PATCH 137/162] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- skychart.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/skychart.spec b/skychart.spec index 499f9bb..3b20604 100644 --- a/skychart.spec +++ b/skychart.spec @@ -54,6 +54,7 @@ ExclusiveArch: %{fpc_arches} ExcludeArch: ppc64le +BuildRequires: make BuildRequires: fpc BuildRequires: lazarus BuildRequires: desktop-file-utils From 38aae281ea3d203a74d42d659066775aa004f249 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Wed, 27 Jan 2021 20:33:41 +0000 Subject: [PATCH 138/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 3b20604..0d5ea30 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.3 -Release: 4.%{svnversion}svn%{?dist} +Release: 5.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -232,6 +232,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-5.4238svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Dec 15 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-4.4238svn - Update svn version From be699354daf33d1f1f2c2f6538c003b4f5142279 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sun, 2 May 2021 11:10:31 +0200 Subject: [PATCH 139/162] Update svn version to commit 4358 --- .gitignore | 1 + skychart.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2d72679..539ab7b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /skychart-4.2.1-4073-src-nopatents.tar.xz /skychart-4.3-4108-src-nopatents.tar.xz /skychart-4.3-4238-src-nopatents.tar.xz +/skychart-4.3-4358-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 0d5ea30..af25fa5 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4238 +%global svnversion 4358 Name: skychart Version: 4.3 -Release: 5.%{svnversion}svn%{?dist} +Release: 6.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -14,7 +14,7 @@ URL: http://www.ap-i.net/skychart/ # To do this we use the generate-tarball.sh script # Download upstream tarball in the same directory of the script # and run: -# ./generate-tarball.sh 4.3-4238 +# ./generate-tarball.sh 4.3-4358 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -232,6 +232,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Sun May 02 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-6.4358svn +- Update svn version + * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-5.4238svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 44886dd..8448602 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4238-src-nopatents.tar.xz) = 54265a6fb4eb929d904f1dbce5933a0bf1faff6eb45b722de1d2ea9e52542982659cfc4e9a6cc01057cfeed1254460f7e60c9a4337e9980bd9b13b307d69c924 +SHA512 (skychart-4.3-4358-src-nopatents.tar.xz) = 002b34eb95ff95f8be4b3aa905ea9a49cd5dcdac25fa6fe15af8dbc326d8b8b12aa482cf584f19e629cbbff1b8d0dc308f3477d3f61d36e7a5c6e7b5f17e7f52 From b579191ab5dd1b9857a3d4640039f0a845dc09e3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Fri, 23 Jul 2021 17:44:36 +0000 Subject: [PATCH 140/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index af25fa5..683cda9 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.3 -Release: 6.%{svnversion}svn%{?dist} +Release: 7.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -232,6 +232,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/metainfo/%{name}-data-dso.metainfo.xml %changelog +* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-7.4358svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Sun May 02 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-6.4358svn - Update svn version From c9e99fff7991bfae6a3dcf7c8ee2c15c5e75e3e4 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Mon, 1 Nov 2021 14:04:57 +0100 Subject: [PATCH 141/162] Update svn version --- .gitignore | 1 + ...ostrip.patch => skychart-4.3-nostrip.patch | 14 ++++----- skychart.spec | 31 ++++++++++++------- sources | 2 +- 4 files changed, 28 insertions(+), 20 deletions(-) rename skychart-4.1-nostrip.patch => skychart-4.3-nostrip.patch (51%) diff --git a/.gitignore b/.gitignore index 539ab7b..bec6663 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /skychart-4.3-4108-src-nopatents.tar.xz /skychart-4.3-4238-src-nopatents.tar.xz /skychart-4.3-4358-src-nopatents.tar.xz +/skychart-4.3-4401-src-nopatents.tar.xz diff --git a/skychart-4.1-nostrip.patch b/skychart-4.3-nostrip.patch similarity index 51% rename from skychart-4.1-nostrip.patch rename to skychart-4.3-nostrip.patch index 572b3f5..9c0b2b4 100644 --- a/skychart-4.1-nostrip.patch +++ b/skychart-4.3-nostrip.patch @@ -1,7 +1,7 @@ -diff -U 3 -dHrN -- a/install.sh b/install.sh ---- a/install.sh 2017-10-03 11:01:35.000000000 +0200 -+++ b/install.sh 2017-10-10 17:54:25.410030788 +0200 -@@ -25,10 +25,10 @@ +diff -udHrN -- a/install.sh b/install.sh +--- a/install.sh 2021-10-22 09:47:36.000000000 +0200 ++++ b/install.sh 2021-10-22 20:28:25.389306148 +0200 +@@ -31,10 +31,10 @@ install -m 755 -d $destdir/share/icons/hicolor/scalable install -m 755 -d $destdir/share/icons/hicolor/scalable/apps @@ -13,6 +13,6 @@ diff -U 3 -dHrN -- a/install.sh b/install.sh +install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon +install -v -m 755 varobs/varobs $destdir/bin/varobs +install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin - install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop - install -v -m 644 system_integration/Linux/share/metainfo/skychart.appdata.xml $destdir/share/metainfo/skychart.appdata.xml - install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog + install -v -m 644 system_integration/Linux/share/applications/net.ap_i.skychart.desktop $destdir/share/applications/net.ap_i.skychart.desktop + install -v -m 644 system_integration/Linux/share/metainfo/net.ap_i.skychart.metainfo.xml $destdir/share/metainfo/net.ap_i.skychart.metainfo.xml + install -v -m 644 system_integration/Linux/share/mime/packages/net.ap_i.skychart.xml $destdir/share/mime/packages/net.ap_i.skychart.xml diff --git a/skychart.spec b/skychart.spec index 683cda9..583eab4 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4358 +%global svnversion 4401 Name: skychart Version: 4.3 -Release: 7.%{svnversion}svn%{?dist} +Release: 8.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -12,9 +12,10 @@ URL: http://www.ap-i.net/skychart/ # - Remove libraries provided by libpasastro package # (they still are in sources only for compiling the Windows version) # To do this we use the generate-tarball.sh script -# Download upstream tarball in the same directory of the script -# and run: -# ./generate-tarball.sh 4.3-4358 +# Download upstream tarball from +# https://sourceforge.net/projects/skychart/files/0-beta/ +# in the same directory of the script and run: +# ./generate-tarball.sh 4.3-4401 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -34,7 +35,7 @@ Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream -Patch1: skychart-4.1-nostrip.patch +Patch1: skychart-4.3-nostrip.patch # Disable wget in install script # This is Fedora specific and not reported upstream @@ -69,7 +70,10 @@ Requires: xdg-utils Requires: xplanet Recommends: openssl-libs +# Used for binary planetary ephemeris files Recommends: calceph-libs +# Used for Gaia catalog +Recommends: chealpix %description @@ -180,7 +184,7 @@ make install install_cat2 PREFIX=%{buildroot}%{_prefix} %check # Menu entry -desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/net.ap_i.skychart.desktop # Appdata file check appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml @@ -191,8 +195,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %doc %{_datadir}/doc/skychart/changelog %doc %{_datadir}/doc/skychart/copyright %{_bindir}/* -%{_datadir}/applications/%{name}.desktop -%{_datadir}/metainfo/%{name}.appdata.xml +%{_datadir}/applications/net.ap_i.%{name}.desktop +%{_datadir}/metainfo/net.ap_i.%{name}.metainfo.xml +%{_datadir}/mime/packages/net.ap_i.%{name}.xml %{_datadir}/pixmaps/%{name}.png %{_datadir}/icons/*/*/*/%{name}.png %{_datadir}/icons/*/*/*/%{name}.svg @@ -210,7 +215,6 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/skychart/doc/releasenotes*.txt %{_datadir}/skychart/doc/varobs - %files doc %doc %{_datadir}/skychart/doc/wiki_doc @@ -219,7 +223,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/skychart/cat/tycho2 %{_datadir}/skychart/cat/wds %{_datadir}/skychart/cat/bsc5 -%{_datadir}/metainfo/%{name}-data-stars.metainfo.xml +%{_datadir}/metainfo/net.ap_i.%{name}.%{name}_data_stars.metainfo.xml %files data-dso %{_datadir}/skychart/cat/leda @@ -229,9 +233,12 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata %{_datadir}/skychart/cat/gpn %{_datadir}/skychart/cat/barnard %{_datadir}/skychart/cat/sh2 -%{_datadir}/metainfo/%{name}-data-dso.metainfo.xml +%{_datadir}/metainfo/net.ap_i.%{name}.%{name}_data_dso.metainfo.xml %changelog +* Mon Nov 01 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-8.4401svn +- Update svn version + * Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-7.4358svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 8448602..631d432 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4358-src-nopatents.tar.xz) = 002b34eb95ff95f8be4b3aa905ea9a49cd5dcdac25fa6fe15af8dbc326d8b8b12aa482cf584f19e629cbbff1b8d0dc308f3477d3f61d36e7a5c6e7b5f17e7f52 +SHA512 (skychart-4.3-4401-src-nopatents.tar.xz) = e86e9bbad828c82a9190b306aa3b2467bf3c24de4be598d07ed348cf831113284aa1603449c13b2b1a00da0e8dc0aa64852371224d2a1aadd624424f41cea8e7 From 0b1338ff819a1344ffd0da674e9da569c1571cae Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Mon, 1 Nov 2021 14:17:33 +0100 Subject: [PATCH 142/162] Update noupdatemenu patch --- ...-noupdatemenu.patch => skychart-4.3-noupdatemenu.patch | 8 ++++---- skychart.spec | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) rename skychart-4.2-noupdatemenu.patch => skychart-4.3-noupdatemenu.patch (85%) diff --git a/skychart-4.2-noupdatemenu.patch b/skychart-4.3-noupdatemenu.patch similarity index 85% rename from skychart-4.2-noupdatemenu.patch rename to skychart-4.3-noupdatemenu.patch index 9546719..b3cbca3 100644 --- a/skychart-4.2-noupdatemenu.patch +++ b/skychart-4.3-noupdatemenu.patch @@ -1,12 +1,12 @@ -diff -U 3 -dHrN -- a/skychart/Makefile.in b/skychart/Makefile.in ---- a/skychart/Makefile.in 2019-10-13 14:25:41.000000000 +0200 -+++ b/skychart/Makefile.in 2019-10-14 18:03:35.121425627 +0200 +diff -udHrN -- a/skychart/Makefile.in b/skychart/Makefile.in +--- a/skychart/Makefile.in 2021-10-21 02:49:20.000000000 +0200 ++++ b/skychart/Makefile.in 2021-10-21 14:00:02.319281349 +0200 @@ -17,7 +17,7 @@ [compiler] unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) includedir=./ -options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l +options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l - unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ + unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/freetype/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ [clean] diff --git a/skychart.spec b/skychart.spec index 583eab4..11e0985 100644 --- a/skychart.spec +++ b/skychart.spec @@ -48,7 +48,7 @@ Patch3: skychart-4.3-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora -Patch4: skychart-4.2-noupdatemenu.patch +Patch4: skychart-4.3-noupdatemenu.patch ExclusiveArch: %{fpc_arches} From f46ae03f978ce6ff94566e31dc641549c11ad187 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Mon, 1 Nov 2021 14:28:20 +0100 Subject: [PATCH 143/162] Fix appdata file name for validation --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 11e0985..62d04ea 100644 --- a/skychart.spec +++ b/skychart.spec @@ -187,7 +187,7 @@ make install install_cat2 PREFIX=%{buildroot}%{_prefix} desktop-file-validate %{buildroot}%{_datadir}/applications/net.ap_i.skychart.desktop # Appdata file check -appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml +appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainfo.xml %files From 0e10221e12b03b45c6c9a073dad9a461cf53b432 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 22 Jan 2022 01:05:15 +0000 Subject: [PATCH 144/162] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> --- skychart.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 62d04ea..921a185 100644 --- a/skychart.spec +++ b/skychart.spec @@ -2,7 +2,7 @@ Name: skychart Version: 4.3 -Release: 8.%{svnversion}svn%{?dist} +Release: 9.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -236,6 +236,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/metainfo/net.ap_i.%{name}.%{name}_data_dso.metainfo.xml %changelog +* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-9.4401svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Mon Nov 01 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-8.4401svn - Update svn version From f2fc2cf49c83dae068e73ea229052abaca0c7601 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Sat, 5 Feb 2022 11:12:00 +0100 Subject: [PATCH 145/162] Update svn version --- .gitignore | 1 + skychart-4.3-nostrip.patch | 12 +++++------ skychart.spec | 41 +++++++++++++++++++++++++++++++++----- sources | 2 +- 4 files changed, 44 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index bec6663..bf91440 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ /skychart-4.3-4238-src-nopatents.tar.xz /skychart-4.3-4358-src-nopatents.tar.xz /skychart-4.3-4401-src-nopatents.tar.xz +/skychart-4.3-4466-src-nopatents.tar.xz diff --git a/skychart-4.3-nostrip.patch b/skychart-4.3-nostrip.patch index 9c0b2b4..bd05df2 100644 --- a/skychart-4.3-nostrip.patch +++ b/skychart-4.3-nostrip.patch @@ -1,18 +1,18 @@ diff -udHrN -- a/install.sh b/install.sh ---- a/install.sh 2021-10-22 09:47:36.000000000 +0200 -+++ b/install.sh 2021-10-22 20:28:25.389306148 +0200 +--- a/install.sh 2022-01-16 17:11:45.000000000 +0100 ++++ b/install.sh 2022-01-17 20:59:08.009725109 +0100 @@ -31,10 +31,10 @@ install -m 755 -d $destdir/share/icons/hicolor/scalable install -m 755 -d $destdir/share/icons/hicolor/scalable/apps -install -v -m 755 -s skychart/cdc $destdir/bin/skychart -install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon +-install -v -m 755 -s skychart/catgen $destdir/bin/catgen -install -v -m 755 -s varobs/varobs $destdir/bin/varobs --install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin +install -v -m 755 skychart/cdc $destdir/bin/skychart +install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon ++install -v -m 755 skychart/catgen $destdir/bin/catgen +install -v -m 755 varobs/varobs $destdir/bin/varobs -+install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin install -v -m 644 system_integration/Linux/share/applications/net.ap_i.skychart.desktop $destdir/share/applications/net.ap_i.skychart.desktop - install -v -m 644 system_integration/Linux/share/metainfo/net.ap_i.skychart.metainfo.xml $destdir/share/metainfo/net.ap_i.skychart.metainfo.xml - install -v -m 644 system_integration/Linux/share/mime/packages/net.ap_i.skychart.xml $destdir/share/mime/packages/net.ap_i.skychart.xml + install -v -m 644 system_integration/Linux/share/applications/net.ap_i.catgen.desktop $destdir/share/applications/net.ap_i.catgen.desktop + install -v -m 644 system_integration/Linux/share/applications/net.ap_i.varobs.desktop $destdir/share/applications/net.ap_i.varobs.desktop diff --git a/skychart.spec b/skychart.spec index 921a185..1e18bfa 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,8 @@ -%global svnversion 4401 +%global svnversion 4466 Name: skychart Version: 4.3 -Release: 9.%{svnversion}svn%{?dist} +Release: 10.%{svnversion}svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -15,7 +15,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4401 +# ./generate-tarball.sh 4.3-4466 Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -75,6 +75,9 @@ Recommends: calceph-libs # Used for Gaia catalog Recommends: chealpix +# Weak dependency on catgen +Recommends: skychart-catgen = %{version}-%{release} + %description This program enables you to draw sky charts, making use of the data in 16 @@ -122,6 +125,14 @@ nebulae catalogs: LEDA Catalogue; Lynds Bright Nebulae; Open Cluster Data; Globular Clusters in the Milky Way; Galactic Planetary Nebulae; Barnard Catalogue of Dark Nebulae; Sharpless Catalog. +%package catgen +Summary: Custom catalog builder for Skychart +License: GPLv2+ +Provides: catgen = %{version}-%{release} + +%description catgen +Custom catalog builder for Skychart. + %prep %setup0 -q -n %{name}-%{version}-%{svnversion}-src @@ -184,7 +195,7 @@ make install install_cat2 PREFIX=%{buildroot}%{_prefix} %check # Menu entry -desktop-file-validate %{buildroot}%{_datadir}/applications/net.ap_i.skychart.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/net.ap_i.*.desktop # Appdata file check appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainfo.xml @@ -194,13 +205,20 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %license skychart/gpl.txt %doc %{_datadir}/doc/skychart/changelog %doc %{_datadir}/doc/skychart/copyright -%{_bindir}/* +%{_bindir}/%{name} +%{_bindir}/cdcicon +%{_bindir}/varobs %{_datadir}/applications/net.ap_i.%{name}.desktop +%{_datadir}/applications/net.ap_i.varobs.desktop %{_datadir}/metainfo/net.ap_i.%{name}.metainfo.xml +%{_datadir}/metainfo/net.ap_i.varobs.metainfo.xml %{_datadir}/mime/packages/net.ap_i.%{name}.xml %{_datadir}/pixmaps/%{name}.png +%{_datadir}/pixmaps/varobs.png %{_datadir}/icons/*/*/*/%{name}.png +%{_datadir}/icons/*/*/*/varobs.png %{_datadir}/icons/*/*/*/%{name}.svg +%{_datadir}/icons/*/*/*/varobs.svg %dir %{_datadir}/skychart %{_datadir}/skychart/data %dir %{_datadir}/skychart/cat @@ -235,7 +253,20 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/skychart/cat/sh2 %{_datadir}/metainfo/net.ap_i.%{name}.%{name}_data_dso.metainfo.xml +%files catgen +%{_bindir}/catgen +%{_datadir}/applications/net.ap_i.catgen.desktop +%{_datadir}/metainfo/net.ap_i.catgen.metainfo.xml +%{_datadir}/pixmaps/catgen.png +%{_datadir}/icons/*/*/*/catgen.png +%{_datadir}/icons/*/*/*/catgen.svg + + %changelog +* Sat Feb 05 2022 Mattia Verga <mattia.verga@protonmail.com> - 4.3-10.4466svn +- Update svn version +- Provide catgen by separate standalone subpackage + * Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-9.4401svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 631d432..d4d9e57 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4401-src-nopatents.tar.xz) = e86e9bbad828c82a9190b306aa3b2467bf3c24de4be598d07ed348cf831113284aa1603449c13b2b1a00da0e8dc0aa64852371224d2a1aadd624424f41cea8e7 +SHA512 (skychart-4.3-4466-src-nopatents.tar.xz) = 2e9dfa16ac3d4dd1435c8be1800a906b189a9367b5be55f6ad9da7a35c7a84fd40044657b7c1c0a66771a77d2806cdf48b4daf5ab3beb129b6e7b315a903237c From 0b88577def42c12fddd71e521447c5856cd706d0 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Mon, 11 Apr 2022 15:35:45 +0200 Subject: [PATCH 146/162] Move old changelog to external file --- changelog | 167 +++++++++++++++++++++++++++++++++++++++++++++++++ skychart.spec | 168 +------------------------------------------------- 2 files changed, 168 insertions(+), 167 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..b4dccc7 --- /dev/null +++ b/changelog @@ -0,0 +1,167 @@ +* Sat Feb 05 2022 Mattia Verga <mattia.verga@protonmail.com> - 4.3-10.4466svn +- Update svn version +- Provide catgen by separate standalone subpackage + +* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-9.4401svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Mon Nov 01 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-8.4401svn +- Update svn version + +* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-7.4358svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sun May 02 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-6.4358svn +- Update svn version + +* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-5.4238svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Dec 15 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-4.4238svn +- Update svn version + +* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-3.4108svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat Feb 08 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-2.4108svn +- ExcludeArch ppc64le due to compilation errors + +* Sat Feb 01 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-1.4108svn +- Update to 4.3 svn + +* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2.4073svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Nov 26 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2.1-1.4073svn +- Update to stable 4.2.1 + +* Fri Oct 18 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2-1.4046svn +- Release stable 4.2 + +* Thu Aug 29 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-5.4000svn +- Update svn version + +* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-4.3925svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn +- Update svn version + +* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn +- Update svn version + +* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn +- Upgrade to development version to fix build failures + +* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8 +- Rebuild for fpc 3.0.4 and lazarus 1.8 + +* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6 +- Remove obsolete scriptlets + +* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4 +- Change FPC compiler options to fix debuginfo package build + +* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2 +- Fix for OpenSSL 1.1 + +* Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1 +- Release ver 4.0 + +* Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn +- Patch to fix libssl and libcrypto links + +* Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn +- Update svn version + +* Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn +- Set ExcludeArch ppc64 due to lazarus limitations + +* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn +- Update svn version + +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn +- Use new fpc_arches macro as ExclusiveArch + +* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn +- Remove additional NGC catalog due to incompatible license + +* Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn +- Update svn version +- Remove remnants of pre built .dll files in sources +- Remove libraries from sources that are now provided externally +- Patch to inform user about artificial satellites calculation removal +- Patch to set option to disable software update menu item + +* Fri Feb 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-9.3229svn +- Update svn version +- FSF address in sources is now fixed upstream +- Appdata file is now fixed upstream +- Updated catalog_wds source file from upstream + +* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn +- Fix the metainfo files by removing zero-width space chars + +* Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn +- Add .metainfo.xml files to subpackages + +* Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn +- Update svn version +- Libraries are now in separate package libpasastro +- Fix wrong FSF address in source headers +- Fix appdata file validation + +* Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn +- Properly set ExcludeArch + +* Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn +- Revert back to ExcludeArch + +* Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn +- Set ExclusiveArch to prevent build on arm and s390x + +* Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn +- Update to 3.11svn to fix incompatibility with lazarus 1.4.2 + +* Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7 +- Validate appdata file +- Change license file location + +* Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6 +- Added patch to fix build with lazarus 1.4 + +* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2 +- Fix patch1 + +* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 +- Update to 3.10 diff --git a/skychart.spec b/skychart.spec index 1e18bfa..6fdeb54 100644 --- a/skychart.spec +++ b/skychart.spec @@ -263,170 +263,4 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %changelog -* Sat Feb 05 2022 Mattia Verga <mattia.verga@protonmail.com> - 4.3-10.4466svn -- Update svn version -- Provide catgen by separate standalone subpackage - -* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-9.4401svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Mon Nov 01 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-8.4401svn -- Update svn version - -* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-7.4358svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Sun May 02 2021 Mattia Verga <mattia.verga@protonmail.com> - 4.3-6.4358svn -- Update svn version - -* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-5.4238svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Dec 15 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-4.4238svn -- Update svn version - -* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-3.4108svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sat Feb 08 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-2.4108svn -- ExcludeArch ppc64le due to compilation errors - -* Sat Feb 01 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.3-1.4108svn -- Update to 4.3 svn - -* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2.4073svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Nov 26 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2.1-1.4073svn -- Update to stable 4.2.1 - -* Fri Oct 18 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.2-1.4046svn -- Release stable 4.2 - -* Thu Aug 29 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-5.4000svn -- Update svn version - -* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-4.3925svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn -- Update svn version - -* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn -- Update svn version - -* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn -- Upgrade to development version to fix build failures - -* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8 -- Rebuild for fpc 3.0.4 and lazarus 1.8 - -* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6 -- Remove obsolete scriptlets - -* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4 -- Change FPC compiler options to fix debuginfo package build - -* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2 -- Fix for OpenSSL 1.1 - -* Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1 -- Release ver 4.0 - -* Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn -- Patch to fix libssl and libcrypto links - -* Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn -- Update svn version - -* Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn -- Set ExcludeArch ppc64 due to lazarus limitations - -* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn -- Update svn version - -* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn -- Use new fpc_arches macro as ExclusiveArch - -* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn -- Remove additional NGC catalog due to incompatible license - -* Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn -- Update svn version -- Remove remnants of pre built .dll files in sources -- Remove libraries from sources that are now provided externally -- Patch to inform user about artificial satellites calculation removal -- Patch to set option to disable software update menu item - -* Fri Feb 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-9.3229svn -- Update svn version -- FSF address in sources is now fixed upstream -- Appdata file is now fixed upstream -- Updated catalog_wds source file from upstream - -* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn -- Fix the metainfo files by removing zero-width space chars - -* Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn -- Add .metainfo.xml files to subpackages - -* Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn -- Update svn version -- Libraries are now in separate package libpasastro -- Fix wrong FSF address in source headers -- Fix appdata file validation - -* Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn -- Properly set ExcludeArch - -* Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn -- Revert back to ExcludeArch - -* Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn -- Set ExclusiveArch to prevent build on arm and s390x - -* Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn -- Update to 3.11svn to fix incompatibility with lazarus 1.4.2 - -* Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7 -- Validate appdata file -- Change license file location - -* Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6 -- Added patch to fix build with lazarus 1.4 - -* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2 -- Fix patch1 - -* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1 -- Update to 3.10 +%autochangelog From 14a1ffe848f015ed47382dc3916c76c9c51b0119 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@protonmail.com> Date: Mon, 11 Apr 2022 15:40:02 +0200 Subject: [PATCH 147/162] Update to 4.3-4486 - Add support for OpenSSL3 --- .gitignore | 1 + skychart-4.3-noupdatemenu.patch | 6 +++--- skychart.spec | 23 ++++++++++++++--------- sources | 2 +- 4 files changed, 19 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index bf91440..6d6f599 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ /skychart-4.3-4358-src-nopatents.tar.xz /skychart-4.3-4401-src-nopatents.tar.xz /skychart-4.3-4466-src-nopatents.tar.xz +/skychart-4.3-4486-src-nopatents.tar.xz diff --git a/skychart-4.3-noupdatemenu.patch b/skychart-4.3-noupdatemenu.patch index b3cbca3..b3a13bd 100644 --- a/skychart-4.3-noupdatemenu.patch +++ b/skychart-4.3-noupdatemenu.patch @@ -1,12 +1,12 @@ diff -udHrN -- a/skychart/Makefile.in b/skychart/Makefile.in ---- a/skychart/Makefile.in 2021-10-21 02:49:20.000000000 +0200 -+++ b/skychart/Makefile.in 2021-10-21 14:00:02.319281349 +0200 +--- a/skychart/Makefile.in 2022-04-09 11:57:49.000000000 +0200 ++++ b/skychart/Makefile.in 2022-04-11 15:01:56.238713121 +0200 @@ -17,7 +17,7 @@ [compiler] unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) includedir=./ -options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l +options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l - unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/freetype/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ + unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/freetype/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./ [clean] diff --git a/skychart.spec b/skychart.spec index 6fdeb54..90a1ee0 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,8 +1,10 @@ -%global svnversion 4466 +%global svnversion 4486 +%global date 20220411 +%global maj_ver 4.3 Name: skychart -Version: 4.3 -Release: 10.%{svnversion}svn%{?dist} +Version: %{maj_ver}^%{date}svn%{svnversion} +Release: %autorelease Summary: Planetarium software for the advanced amateur astronomer License: GPLv2+ URL: http://www.ap-i.net/skychart/ @@ -15,8 +17,8 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4466 -Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz +# ./generate-tarball.sh 4.3-4486 +Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz @@ -134,7 +136,7 @@ Provides: catgen = %{version}-%{release} Custom catalog builder for Skychart. %prep -%setup0 -q -n %{name}-%{version}-%{svnversion}-src +%setup0 -q -n %{name}-%{maj_ver}-%{svnversion}-src %patch1 -p1 @@ -170,13 +172,16 @@ do done - %build ./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix} # Skychart doesn't like parallel building so we don't use macro. -# We pass options to fpc compiler for generate debug info. -make fpcopts="-O1 -gw3 -fPIC" +# We pass the following options to fpc compiler: +# - O2 for code optimization level +# - gw4 for generating dwarf 4 debug symbols +# - Cg to generate PIC code +make fpcopts="-O2 -gw4 -Cg" + %install # Install main program diff --git a/sources b/sources index d4d9e57..e3e2bb4 100644 --- a/sources +++ b/sources @@ -9,4 +9,4 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4466-src-nopatents.tar.xz) = 2e9dfa16ac3d4dd1435c8be1800a906b189a9367b5be55f6ad9da7a35c7a84fd40044657b7c1c0a66771a77d2806cdf48b4daf5ab3beb129b6e7b315a903237c +SHA512 (skychart-4.3-4486-src-nopatents.tar.xz) = fd3e786605f8032905a2843e3ac8e75b79cf69282f935ccfaecce8ab5f000de9384005a4de01dd942a1d57510caeb3a5e1e29c193626720848d3473a581a4a82 From 8ad45ec29603bed3d63ee08d692515edca25ebf6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 23 Jul 2022 08:48:13 +0000 Subject: [PATCH 148/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> From 185bf6293acf41c239debb2f74b723e2650f9706 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Sat, 3 Dec 2022 09:44:22 +0100 Subject: [PATCH 149/162] Update to svn4558 ... - Add VdB catalog to data-dso --- .gitignore | 2 ++ skychart.spec | 9 ++++++--- sources | 3 ++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 6d6f599..541a9df 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,5 @@ /skychart-4.3-4401-src-nopatents.tar.xz /skychart-4.3-4466-src-nopatents.tar.xz /skychart-4.3-4486-src-nopatents.tar.xz +/catalog_vdb.tgz +/skychart-4.3-4558-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 90a1ee0..1127752 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,5 +1,5 @@ -%global svnversion 4486 -%global date 20220411 +%global svnversion 4558 +%global date 20221203 %global maj_ver 4.3 Name: skychart @@ -17,7 +17,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4486 +# ./generate-tarball.sh 4.3-4558 Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Source data for skychart-data-stars @@ -33,6 +33,7 @@ Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz +Source13: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_vdb.tgz # Avoid stripping debuginfo from executables @@ -161,6 +162,7 @@ find skychart -type f -print0 | xargs -0 chmod -x %{__cp} -p %SOURCE10 ./BaseData %{__cp} -p %SOURCE11 ./BaseData %{__cp} -p %SOURCE12 ./BaseData +%{__cp} -p %SOURCE13 ./BaseData # Add directories to fix builds on arm and ppc architectures declare -a arches=("arm-linux-gtk2" "powerpc-linux-gtk2" "powerpc64-linux-gtk2") @@ -256,6 +258,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/skychart/cat/gpn %{_datadir}/skychart/cat/barnard %{_datadir}/skychart/cat/sh2 +%{_datadir}/skychart/cat/vdb %{_datadir}/metainfo/net.ap_i.%{name}.%{name}_data_dso.metainfo.xml %files catgen diff --git a/sources b/sources index e3e2bb4..2b287cd 100644 --- a/sources +++ b/sources @@ -9,4 +9,5 @@ SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13 SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c -SHA512 (skychart-4.3-4486-src-nopatents.tar.xz) = fd3e786605f8032905a2843e3ac8e75b79cf69282f935ccfaecce8ab5f000de9384005a4de01dd942a1d57510caeb3a5e1e29c193626720848d3473a581a4a82 +SHA512 (catalog_vdb.tgz) = d3df026a2b5a1de6c41c7ec4202da48784d12a9a0adc6e6069a1b5f50b3beb6c80a66fd1be26fdf60fbbccbf32d392bffd0c020a867fe5d276231ecceaaa8528 +SHA512 (skychart-4.3-4558-src-nopatents.tar.xz) = e08bbb7744b370e6932713476b66252eb139fd24ea206737baecf2742ff620ee254ed0fec076e65fc789e37c675c613f25a8a3ebf8eeda4b203a4effb37926fa From 6a2e49749833a24daa0dd9a777ffe3d5067d3f7c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 21 Jan 2023 03:27:29 +0000 Subject: [PATCH 150/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> From e10e4642f5f7f092421688d97d117ae5b012a8a3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 22 Jul 2023 01:53:10 +0000 Subject: [PATCH 151/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org> From 37ec51b563ef719be8c5037d3cd8d622dca2dd56 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Sun, 10 Sep 2023 10:01:32 +0200 Subject: [PATCH 152/162] Migrate to SPDX license --- skychart.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skychart.spec b/skychart.spec index 1127752..1ba1c9a 100644 --- a/skychart.spec +++ b/skychart.spec @@ -6,7 +6,7 @@ Name: skychart Version: %{maj_ver}^%{date}svn%{svnversion} Release: %autorelease Summary: Planetarium software for the advanced amateur astronomer -License: GPLv2+ +License: GPL-2.0-or-later URL: http://www.ap-i.net/skychart/ # Upstream sources are modified to: # - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) From 91ee701e6388fa0b89adda98f3dd44ada28dcba4 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Mon, 2 Oct 2023 18:19:26 +0200 Subject: [PATCH 153/162] Update to latest snapshot --- .gitignore | 2 + skychart.spec | 105 ++++++++++++++++++++++++-------------------------- sources | 3 +- 3 files changed, 55 insertions(+), 55 deletions(-) diff --git a/.gitignore b/.gitignore index 541a9df..9ebd651 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,5 @@ /skychart-4.3-4486-src-nopatents.tar.xz /catalog_vdb.tgz /skychart-4.3-4558-src-nopatents.tar.xz +/data_spicesun.tgz +/skychart-4.3-4630-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index 1ba1c9a..edaef2b 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,12 +1,13 @@ -%global svnversion 4558 -%global date 20221203 +%global svnversion 4630 +%global date 20230918 %global maj_ver 4.3 Name: skychart -Version: %{maj_ver}^%{date}svn%{svnversion} +Version: %{maj_ver}^%{date}.svn%{svnversion} Release: %autorelease Summary: Planetarium software for the advanced amateur astronomer -License: GPL-2.0-or-later +# bgrabitmap code is licensed LGPL-3.0-only WITH LGPL-3.0-linking-exception +License: GPL-2.0-or-later AND LGPL-3.0-only WITH LGPL-3.0-linking-exception URL: http://www.ap-i.net/skychart/ # Upstream sources are modified to: # - Remove pre-built software (iridflare.exe, quicksat.exe, dll files) @@ -17,50 +18,59 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4558 +# ./generate-tarball.sh 4.3-4630 Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh +# Base source data +Source2: http://sourceforge.net/projects/skychart/files/4-source_data/data_spicesun.tgz # Source data for skychart-data-stars -Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz -Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz -Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz -Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz +Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz +Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz +Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz +Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz # Source data for skychart-data-dso -Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz -Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz -Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz -Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz -Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz -Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz -Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz -Source13: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_vdb.tgz +Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz +Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz +Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz +Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz +Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz +Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz +Source13: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz +Source14: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_vdb.tgz # Avoid stripping debuginfo from executables # This is Fedora specific and not reported upstream -Patch1: skychart-4.3-nostrip.patch +Patch: skychart-4.3-nostrip.patch # Disable wget in install script # This is Fedora specific and not reported upstream -Patch2: skychart-4.1-wgetdata.patch +Patch: skychart-4.1-wgetdata.patch # Notify the user that artificial satellites calculation # has been disabled in Fedora RPMs due to Fedora policies # This is Fedora specific and not reported upstream -Patch3: skychart-4.3-satmessage.patch +Patch: skychart-4.3-satmessage.patch # Disable software update menu item # This feature was asked upstream specifically for Fedora -Patch4: skychart-4.3-noupdatemenu.patch +Patch: skychart-4.3-noupdatemenu.patch ExclusiveArch: %{fpc_arches} -ExcludeArch: ppc64le +ExcludeArch: %{ix86} BuildRequires: make BuildRequires: fpc -BuildRequires: lazarus +%if 0%{?fedora} >= 39 +BuildRequires: fpc-src +BuildRequires: lazarus-lcl-nogui +BuildRequires: lazarus-lcl-qt5 +BuildRequires: lazarus-tools +%else +BuildRequires: lazarus >= 1.6.2 +%endif BuildRequires: desktop-file-utils BuildRequires: dos2unix BuildRequires: gtk2-devel @@ -97,7 +107,7 @@ atlas more complete than a conventional planetarium. %package doc Summary: Documentation files for Skychart -License: CC-BY-SA or GFDL +License: CC-BY-SA-3.0 OR GFDL-1.3-no-invariants-or-later Requires: %{name} = %{version}-%{release} BuildArch: noarch @@ -107,7 +117,7 @@ within the program as an offline copy. %package data-stars Summary: Additional star catalogs for Skychart -License: Public Domain +License: LicenseRef-Fedora-Public-Domain Requires: %{name} = %{version}-%{release} BuildArch: noarch @@ -118,7 +128,7 @@ Tycho 2; General Catalogue of Variable Stars; Washington Double Stars. %package data-dso Summary: Additional Deep Sky Object catalogs for Skychart -License: Public Domain +License: LicenseRef-Fedora-Public-Domain Requires: %{name} = %{version}-%{release} BuildArch: noarch @@ -130,7 +140,7 @@ Barnard Catalogue of Dark Nebulae; Sharpless Catalog. %package catgen Summary: Custom catalog builder for Skychart -License: GPLv2+ +License: GPL-2.0-or-later Provides: catgen = %{version}-%{release} %description catgen @@ -139,39 +149,26 @@ Custom catalog builder for Skychart. %prep %setup0 -q -n %{name}-%{maj_ver}-%{svnversion}-src -%patch1 -p1 - -%patch2 -p1 - -%patch3 -p1 - -%patch4 -p1 +%autopatch -p1 # Fix executable bit set on sources find skychart -type f -print0 | xargs -0 chmod -x # Put additional catalogs files where where required for installation -%{__cp} -p %SOURCE2 ./BaseData -%{__cp} -p %SOURCE3 ./BaseData -%{__cp} -p %SOURCE4 ./BaseData -%{__cp} -p %SOURCE5 ./BaseData -%{__cp} -p %SOURCE6 ./BaseData -%{__cp} -p %SOURCE7 ./BaseData -%{__cp} -p %SOURCE8 ./BaseData -%{__cp} -p %SOURCE9 ./BaseData -%{__cp} -p %SOURCE10 ./BaseData -%{__cp} -p %SOURCE11 ./BaseData -%{__cp} -p %SOURCE12 ./BaseData -%{__cp} -p %SOURCE13 ./BaseData -# Add directories to fix builds on arm and ppc architectures -declare -a arches=("arm-linux-gtk2" "powerpc-linux-gtk2" "powerpc64-linux-gtk2") -for arch in "${arches[@]}" -do - %{__mkdir_p} ./skychart/component/lib/$arch - %{__mkdir_p} ./skychart/units/$arch - %{__mkdir_p} ./varobs/units/$arch -done +cp -p %SOURCE2 ./BaseData +cp -p %SOURCE3 ./BaseData +cp -p %SOURCE4 ./BaseData +cp -p %SOURCE5 ./BaseData +cp -p %SOURCE6 ./BaseData +cp -p %SOURCE7 ./BaseData +cp -p %SOURCE8 ./BaseData +cp -p %SOURCE9 ./BaseData +cp -p %SOURCE10 ./BaseData +cp -p %SOURCE11 ./BaseData +cp -p %SOURCE12 ./BaseData +cp -p %SOURCE13 ./BaseData +cp -p %SOURCE14 ./BaseData %build diff --git a/sources b/sources index 2b287cd..e17501f 100644 --- a/sources +++ b/sources @@ -10,4 +10,5 @@ SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a89 SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67 SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c SHA512 (catalog_vdb.tgz) = d3df026a2b5a1de6c41c7ec4202da48784d12a9a0adc6e6069a1b5f50b3beb6c80a66fd1be26fdf60fbbccbf32d392bffd0c020a867fe5d276231ecceaaa8528 -SHA512 (skychart-4.3-4558-src-nopatents.tar.xz) = e08bbb7744b370e6932713476b66252eb139fd24ea206737baecf2742ff620ee254ed0fec076e65fc789e37c675c613f25a8a3ebf8eeda4b203a4effb37926fa +SHA512 (data_spicesun.tgz) = 6656d6dd089025cb4cbbb1a76e2a5ae219b1be4ee87d8ceb8ce6abff9d59ed813939928baed2bd8eb4a1a48ec374c76527a5e70e53584bc3612aa12002604706 +SHA512 (skychart-4.3-4630-src-nopatents.tar.xz) = 9b9d6eafbf40078e23b46553d91dd3b53ced693785df7045d8fd99ea0d43945a19e71a47fc421670cfae417c2c6520d65b4b3fff2ae20a3a03f96d5ae1a785f1 From c8afa8c3e19c1be7b9cec797e589866ce5285b52 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Wed, 22 Nov 2023 18:11:35 +0100 Subject: [PATCH 154/162] Update to latest svn snapshot --- .gitignore | 1 + skychart.spec | 6 +++--- sources | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9ebd651..dad6452 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ /skychart-4.3-4558-src-nopatents.tar.xz /data_spicesun.tgz /skychart-4.3-4630-src-nopatents.tar.xz +/skychart-4.3-4639-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index edaef2b..fb215dc 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,5 +1,5 @@ -%global svnversion 4630 -%global date 20230918 +%global svnversion 4639 +%global date 20231122 %global maj_ver 4.3 Name: skychart @@ -18,7 +18,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4630 +# ./generate-tarball.sh 4.3-4639 Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Base source data diff --git a/sources b/sources index e17501f..7d48cfa 100644 --- a/sources +++ b/sources @@ -11,4 +11,4 @@ SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63e SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c SHA512 (catalog_vdb.tgz) = d3df026a2b5a1de6c41c7ec4202da48784d12a9a0adc6e6069a1b5f50b3beb6c80a66fd1be26fdf60fbbccbf32d392bffd0c020a867fe5d276231ecceaaa8528 SHA512 (data_spicesun.tgz) = 6656d6dd089025cb4cbbb1a76e2a5ae219b1be4ee87d8ceb8ce6abff9d59ed813939928baed2bd8eb4a1a48ec374c76527a5e70e53584bc3612aa12002604706 -SHA512 (skychart-4.3-4630-src-nopatents.tar.xz) = 9b9d6eafbf40078e23b46553d91dd3b53ced693785df7045d8fd99ea0d43945a19e71a47fc421670cfae417c2c6520d65b4b3fff2ae20a3a03f96d5ae1a785f1 +SHA512 (skychart-4.3-4639-src-nopatents.tar.xz) = 8c6176d8cdd9e2d8cd8b7d4cba695993456830a922209e48e35dce9217490f081295aa524bc833bb7bd542bf4f5827698e101fe8a01af7058a35099ebe050d3f From 4bf60622da3ef9afa67ded0a6e6f9394e185af35 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 27 Jan 2024 03:29:30 +0000 Subject: [PATCH 155/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From c1a1464affe875716cf4444ef1c37f876bdded5c Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Thu, 8 Feb 2024 17:50:22 +0100 Subject: [PATCH 156/162] Update to latest svn version --- .gitignore | 1 + skychart.spec | 6 +++--- sources | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index dad6452..3f2f12f 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ /data_spicesun.tgz /skychart-4.3-4630-src-nopatents.tar.xz /skychart-4.3-4639-src-nopatents.tar.xz +/skychart-4.3-4719-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index fb215dc..0626edb 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,5 +1,5 @@ -%global svnversion 4639 -%global date 20231122 +%global svnversion 4719 +%global date 20240205 %global maj_ver 4.3 Name: skychart @@ -18,7 +18,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4639 +# ./generate-tarball.sh 4.3-4719 Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Base source data diff --git a/sources b/sources index 7d48cfa..1ce5e58 100644 --- a/sources +++ b/sources @@ -11,4 +11,4 @@ SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63e SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c SHA512 (catalog_vdb.tgz) = d3df026a2b5a1de6c41c7ec4202da48784d12a9a0adc6e6069a1b5f50b3beb6c80a66fd1be26fdf60fbbccbf32d392bffd0c020a867fe5d276231ecceaaa8528 SHA512 (data_spicesun.tgz) = 6656d6dd089025cb4cbbb1a76e2a5ae219b1be4ee87d8ceb8ce6abff9d59ed813939928baed2bd8eb4a1a48ec374c76527a5e70e53584bc3612aa12002604706 -SHA512 (skychart-4.3-4639-src-nopatents.tar.xz) = 8c6176d8cdd9e2d8cd8b7d4cba695993456830a922209e48e35dce9217490f081295aa524bc833bb7bd542bf4f5827698e101fe8a01af7058a35099ebe050d3f +SHA512 (skychart-4.3-4719-src-nopatents.tar.xz) = 8b08e337a6f5ffb97b3f09c212fa1a26c1761ddd24296fc4a8214e949cba3161034bd29417796c0754b6c4e09d5ef179480d2b63a729935f8e3716111232eec3 From 9e8fda5da78e336d8e221f56b396379a2f94e1c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sat, 20 Jul 2024 05:47:55 +0000 Subject: [PATCH 157/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From c7cacc4ff6936d1023913fda9dfad4321daa2582 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Fri, 2 Aug 2024 18:49:24 +0200 Subject: [PATCH 158/162] Fix F41 FTB (Fedora#2301274) --- skychart.spec | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/skychart.spec b/skychart.spec index 0626edb..e813c32 100644 --- a/skychart.spec +++ b/skychart.spec @@ -63,14 +63,10 @@ ExcludeArch: %{ix86} BuildRequires: make BuildRequires: fpc -%if 0%{?fedora} >= 39 BuildRequires: fpc-src BuildRequires: lazarus-lcl-nogui BuildRequires: lazarus-lcl-qt5 BuildRequires: lazarus-tools -%else -BuildRequires: lazarus >= 1.6.2 -%endif BuildRequires: desktop-file-utils BuildRequires: dos2unix BuildRequires: gtk2-devel @@ -147,14 +143,14 @@ Provides: catgen = %{version}-%{release} Custom catalog builder for Skychart. %prep -%setup0 -q -n %{name}-%{maj_ver}-%{svnversion}-src +%setup -q -n %{name}-%{maj_ver}-%{svnversion}-src %autopatch -p1 # Fix executable bit set on sources find skychart -type f -print0 | xargs -0 chmod -x -# Put additional catalogs files where where required for installation +# Put additional catalogs files where are required for installation cp -p %SOURCE2 ./BaseData cp -p %SOURCE3 ./BaseData From 7e0d8b2261ef9ecd77b6ea4558c0136e385be430 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Sun, 19 Jan 2025 10:55:20 +0000 Subject: [PATCH 159/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 83f39af43bd6ee91b606515b0918efca521c0cdf Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.verga@proton.me> Date: Sun, 9 Mar 2025 15:53:05 +0100 Subject: [PATCH 160/162] Update to svn4974 --- .gitignore | 1 + skychart.spec | 7 +++---- sources | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3f2f12f..307e9be 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /skychart-4.3-4630-src-nopatents.tar.xz /skychart-4.3-4639-src-nopatents.tar.xz /skychart-4.3-4719-src-nopatents.tar.xz +/skychart-4.3-4974-src-nopatents.tar.xz diff --git a/skychart.spec b/skychart.spec index e813c32..2af587f 100644 --- a/skychart.spec +++ b/skychart.spec @@ -1,5 +1,5 @@ -%global svnversion 4719 -%global date 20240205 +%global svnversion 4974 +%global date 20250303 %global maj_ver 4.3 Name: skychart @@ -18,7 +18,7 @@ URL: http://www.ap-i.net/skychart/ # Download upstream tarball from # https://sourceforge.net/projects/skychart/files/0-beta/ # in the same directory of the script and run: -# ./generate-tarball.sh 4.3-4719 +# ./generate-tarball.sh 4.3-4974 Source0: %{name}-%{maj_ver}-%{svnversion}-src-nopatents.tar.xz Source1: generate-tarball.sh # Base source data @@ -226,7 +226,6 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainf %{_datadir}/skychart/cat/milkyway %{_datadir}/skychart/cat/openngc %{_datadir}/skychart/cat/RealSky -%{_datadir}/skychart/cat/sac %{_datadir}/skychart/cat/xhip %dir %{_datadir}/skychart/doc %{_datadir}/skychart/doc/html_doc diff --git a/sources b/sources index 1ce5e58..c87be5e 100644 --- a/sources +++ b/sources @@ -11,4 +11,4 @@ SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63e SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c SHA512 (catalog_vdb.tgz) = d3df026a2b5a1de6c41c7ec4202da48784d12a9a0adc6e6069a1b5f50b3beb6c80a66fd1be26fdf60fbbccbf32d392bffd0c020a867fe5d276231ecceaaa8528 SHA512 (data_spicesun.tgz) = 6656d6dd089025cb4cbbb1a76e2a5ae219b1be4ee87d8ceb8ce6abff9d59ed813939928baed2bd8eb4a1a48ec374c76527a5e70e53584bc3612aa12002604706 -SHA512 (skychart-4.3-4719-src-nopatents.tar.xz) = 8b08e337a6f5ffb97b3f09c212fa1a26c1761ddd24296fc4a8214e949cba3161034bd29417796c0754b6c4e09d5ef179480d2b63a729935f8e3716111232eec3 +SHA512 (skychart-4.3-4974-src-nopatents.tar.xz) = 89e5c5c4294b5472b7640d094c498c5be1845616a8b9fd40a5e70b7defe268ddd86cf86e2454bb85dd00b3173fc162eceeddfba54c2cb4f9f0f6f83083b4d13b From e349e4daf303d6946f7b3e0ef27ee626af3d3efe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <releng@fedoraproject.org> Date: Fri, 25 Jul 2025 18:23:58 +0000 Subject: [PATCH 161/162] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From a1f9b40e251e612d47cca1b29341533084433513 Mon Sep 17 00:00:00 2001 From: Artur Frenszek-Iwicki <fedora@svgames.pl> Date: Fri, 15 Aug 2025 10:35:00 +0200 Subject: [PATCH 162/162] Fix build with FPC 3.2.4 --- skychart-4.3-fpc-3.2.4.patch | 15 +++++++++++++++ skychart.spec | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 skychart-4.3-fpc-3.2.4.patch diff --git a/skychart-4.3-fpc-3.2.4.patch b/skychart-4.3-fpc-3.2.4.patch new file mode 100644 index 0000000..f4b928c --- /dev/null +++ b/skychart-4.3-fpc-3.2.4.patch @@ -0,0 +1,15 @@ +diff -rU4 skychart-4.3-4974-src--orig/skychart/cu_tz.pas skychart-4.3-4974-src--patched/skychart/cu_tz.pas +--- skychart-4.3-4974-src--orig/skychart/cu_tz.pas 2025-03-03 03:30:14.000000000 +0100 ++++ skychart-4.3-4974-src--patched/skychart/cu_tz.pas 2025-08-15 10:32:52.001369952 +0200 +@@ -41,8 +41,11 @@ + Windows, + {$endif} + {$ifdef unix} + unixutil, ++ {$IF FPC_FULLVERSION > 30202} // FPC 3.2.4 moves TzSeconds from UnixUtil to Unix ++ unix, ++ {$ENDIF} + {$endif} + Classes, SysUtils, Math; + + type diff --git a/skychart.spec b/skychart.spec index 2af587f..25ef4a9 100644 --- a/skychart.spec +++ b/skychart.spec @@ -56,6 +56,8 @@ Patch: skychart-4.3-satmessage.patch # This feature was asked upstream specifically for Fedora Patch: skychart-4.3-noupdatemenu.patch +# Fix build with FPC 3.2.4 +Patch: skychart-4.3-fpc-3.2.4.patch ExclusiveArch: %{fpc_arches} ExcludeArch: %{ix86}