[skychart] Patch from upstream to make skychart work with lazarus 0.9.28

Sergio Pascual sergiopr at fedoraproject.org
Thu Mar 10 12:46:12 UTC 2011


commit 44b1a5ff640806397937a44a622431bd6d84c0c4
Author: Sergio Pascual <sergiopr at fis.ucm.es>
Date:   Thu Mar 10 13:45:52 2011 +0100

    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(-)
---
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 @@
+ <?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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at .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 ) ;. at .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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 =. at X6XyXvXxXyX6X@X=.V      '
+-  +'                                   s %. at 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 ! :. at .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 #. at .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 @.''. at .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 at .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. at .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 ] :. at .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. at .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 ] *. at .! 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 at .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 at .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 @. at .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 [ ;. at .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 _ :.:. at .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 at .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 ) ;. at .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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 =. at X6XyXvXxXyX6X@X=.V      '
++  +'                                   s %. at 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 ! :. at .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 #. at .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 @.''. at .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 at .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. at .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 ] :. at .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. at .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 ] *. at .! 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 at .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 at .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 @. at .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 [ ;. at .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 _ :.:. at .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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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
+-    { Déclarations privées }
+-  public
+-    { Déclarations 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 at 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
++    { Déclarations privées }
++  public
++    { Déclarations 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 at 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 at 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 at fedoraproject.org> - 3.2.1-2
+* Wed Mar 09 2011 Sergio Pascual <sergiopr at fedoraproject.org> - 3.2-3
+- Patch from upstream to make skychart work with lazarus 0.9.28
+
+* Wed Feb 16 2011 Sergio Pascual <sergiopr at fedoraproject.org> - 3.2-2
 - Missing patch added
 
-* Sat Feb 12 2011 Sergio Pascual <sergiopr at fedoraproject.org> - 3.2.1-1
+* Sat Feb 12 2011 Sergio Pascual <sergiopr at fedoraproject.org> - 3.2-1
 - New upstream source
 
 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 3.0.1.6-5.20100724svn


More information about the scm-commits mailing list