added auto ping and obs count to dxchan
authordjk <djk>
Thu, 18 Nov 1999 17:50:48 +0000 (17:50 +0000)
committerdjk <djk>
Thu, 18 Nov 1999 17:50:48 +0000 (17:50 +0000)
started sysop/user html docs

16 files changed:
Changes
cmd/Commands_en.hlp
cmd/show/sun.pl
cmd/show/var.pl
data/prefix_data.pl
data/wpxloc.raw
html/sysop_en.html [new file with mode: 0644]
html/sysop_en_t.html [new file with mode: 0644]
html/user_en.html [new file with mode: 0644]
html/user_en_t.html [new file with mode: 0644]
perl/DXChannel.pm
perl/DXProt.pm
perl/DXUser.pm
perl/Messages
perl/console.pl
perl/hlptohtml.pl [new file with mode: 0755]

diff --git a/Changes b/Changes
index e6271715c724c99e7da7192ed19793e639df4d94..634602533a96c4ac34f4469e2eb832475a9e1bf8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,14 @@
+18Nov99=======================================================================
+1. Added ping obs counter together with Time::HiRes timers. This will dis-
+connect nodes that fail to respond to 3 ping requests (on the 4th attempt). 
+The default time is a ping every 3 mins, therefore a link will be struck out
+after 12 minutes of nil response.
+17Nov99=======================================================================
+1. Started using Data::Dumper for things again
+2. 'Fixed' DXUser file corruption?
+3. Allow multiline (ie lines with \n in them) output in $DXChannel::send 
+4. Added Andrew K9CW's updated wpxloc.raw, regenerated prefix_data.pl
+5. Put in callsign matching and stuff into sh/sun.
 14Nov99=======================================================================
 1. added BBS.pm to start BBS input of mail
 2. fixed eval in DXUser to log errors rather than banging out
index 3964680fe8269f45294f61fce94d7c5bd13e42a8..6c2db106801699e0963da02e77372933fc034c64 100644 (file)
 # Comment lines are indented before printing
 #
 === 0^ANNOUNCE <text>^Send an announcement to LOCAL users only
+<text> is the text of the announcement you wish to broadcast 
 
 === 0^ANNOUNCE FULL <text>^Send an announcement cluster wide
 This will send your announcement cluster wide
 
 === 5^ANNOUNCE SYSOP <text>^Send an announcement to Sysops only
 
-=== 0^ANNOUNCE-
-<text> is the text of the announcement you wish to broadcast 
-
 === 0^APROPOS <string>^Search help database for <string>
 Search the help database for <string> (it isn't case sensitive), and print
 the names of all the commands that may be relevant.
@@ -43,13 +41,13 @@ outstanding non-private messages will be forwarded to them. This may well
 be ALL the non-private messages. You can prevent this by using these 
 commmands:-
 
-    catch GB7DJK all
-    catch GB7DJK 300 301 302 303
+  catch GB7DJK all
+  catch GB7DJK 300 301 302 303
        
 and to undo what you have just done:-
-
-       uncatch GB7DJK all
-       uncatch GB7DJK 300 301 302 303
+  
+  uncatch GB7DJK all
+  uncatch GB7DJK 300 301 302 303
 
 which will arrange for them to be forward candidates again.
 
@@ -90,7 +88,6 @@ a chain can be a remote database eg:
 
   DBCREATE qsl chain gb7dxc
 
-
 To see what databases have been defined do:
 
   DBAVAIL (or it will have been aliased to SHOW/COMMAND)
@@ -646,7 +643,18 @@ together with the internal country no, the CQ and ITU regions.
 
 See also SHOW/DXCC
 
-=== 0^SHOW/PROGRAM^Show the locations of all the included program modules
+=== 0^SHOW/SUN [<callsign>|<prefix>]^Display sunrise and sunset times
+Show the sunrise and sunset times for a callsign (if it is known to the
+cluster), a prefix or, if nothing is specified, at your QTH (if you have
+remembered to set your location using SET/LOCATION or SET/QRA). If all else
+fails it will show the sunrise and set times for the node that you are 
+connected to.
+
+You can enter more than one prefix or callsign:-
+
+  SH/SUN G1TLH G8TIC W9
+
+=== 5^SHOW/PROGRAM^Show the locations of all the included program modules
 Show the name and location where every program module was load from. This
 is useful for checking where you think you have loaded a .pm file from. 
 
@@ -692,13 +700,13 @@ required in the correct order. You may intersperse those characters
 with others to obscure your reply for any watchers. For example (and
 these values are for explanation :-):
 
-password = 012345678901234567890123456789
- > sysop
-22 10 15 17 3
+  password = 012345678901234567890123456789
 > sysop
+  22 10 15 17 3
 you type:-
-aa2bbbb0ccc5ddd7xxx3n
-or 2 0 5 7 3
-or 20573
+ aa2bbbb0ccc5ddd7xxx3n
+ or 2 0 5 7 3
+ or 20573
 
 They will all match. If there is no password you will still be offered
 numbers but nothing will happen when you input a string. Any match is
@@ -736,3 +744,4 @@ what sort of connection they have
 === 5^WX SYSOP <text>^Send a weather message to other clusters only
 Weather messages can sometimes be useful if you are experiencing an extreme
 that may indicate enhanced conditions
+
index 5104e2276035d73d0b13a0f452aee701d89a7b09..1e9b9b06f84716ffc75aa0167057f414ca04dd20 100644 (file)
@@ -15,21 +15,41 @@ my ($sec, $min, $hr, $day, $month, $yr) = (gmtime($main::systime))[0,1,2,3,4,5];
 $month++;
 $yr += 1900;
 
-foreach $l (@list) {
-       # prefixes --->
-       my @ans = Prefix::extract($l);
-       next if !@ans;
-       my $pre = shift @ans;
-       my $a;
-       foreach $a (@ans) {
-               $lat = $a->{lat};
-               $lon = $a->{long};
-               $lat *= $d2r;
-               $lon *= -$d2r;
-               my $string=Sun::riseset($yr,$month,$day,$lat,$lon);
-               push @out,sprintf("%-2s   %s   %s",$pre,$a->name(),$string);
-               $l="";
+my @in;
+
+if (@list) {
+       foreach $l (@list) {
+               my $user = DXUser->get_current(uc $l);
+               if ($user && $user->lat && $user->long) {
+                       push @in, [$user->qth, $user->lat * $d2r, $user->long * -$d2r, uc $l ];
+               } else {
+                       # prefixes --->
+                       my @ans = Prefix::extract($l);
+                       next if !@ans;
+                       my $pre = shift @ans;
+                       my $a;
+                       foreach $a (@ans) {
+                               $lat = $a->{lat};
+                               $lon = $a->{long};
+                               $lat *= $d2r;
+                               $lon *= -$d2r;
+                               push @in, [ $a->name, $lat, $lon, $pre ];
+                       }
+               }
+       }
+} else {
+       if ($self->user->lat && $self->user->long) {
+               push @in, [$self->user->qth, $self->user->lat * $d2r, $self->user->long * -$d2r, $self->call ];
+       } else {
+               push @in, [$main::myqth, $main::mylatitude * $d2r, $main::mylogitude * -$d2r, $main::mycall ];
        }
 }
 
+foreach $l (@in) {
+       my $string=Sun::riseset($yr,$month,$day,$l->[1],$l->[2]);
+       push @out,sprintf("%-2s   %s   %s",$l->[3],$l->[0],$string);
+}
+
+                       
+
 return (1, @out);
index 7f73558ee6142dcccff9b30a74db1b3134ec7920..b09193c29bc306f71dffd5822de649a5f77cf409 100644 (file)
@@ -18,9 +18,12 @@ foreach $f (@f) {
     print "\$f = $f\n";
        my $var = eval "$f";
        if ($var) {
-        my $s = Data::Dumper->Dump([ $var ], [ "$f" ]);
+        my $dd = Data::Dumper->new([ $var ], [ "$f" ]);
+        $dd->Indent(1);
+               $dd->Quotekeys(0);
+               my $s = $dd->Dumpxs;
                push @out, $s;
-               Log('DXCommand', $self->call . " show/var $s");
+               Log('DXCommand', $self->call . " show/var $f");
        } else {
                push @out, $@ ? $@ : $self->msg('e3', 'show/var', $f);
                Log('DXCommand', $self->call . " show/var $f not found" );
index d42750b67cb940919c7271e21e77fb52e5abdfed..0e9708718013d507c558f1d5d44a913d15847022 100644 (file)
 %pre = (
-  '0' => '334',
-  '10G' => '334',
+  '0' => '336',
+  '10G' => '336',
   '1A' => '1',
-  '1B' => '334',
+  '1B' => '336',
   '1S' => '2',
-  '1Z' => '298',
-  '2' => '122',
-  '2A2' => '122',
-  '2A3' => '126',
-  '2A4' => '128',
-  '2A5' => '124',
-  '2A6' => '123',
-  '2A7' => '125',
-  '2A8' => '127',
-  '2B2' => '122',
-  '2B3' => '126',
-  '2B4' => '128',
-  '2B5' => '124',
-  '2B6' => '123',
-  '2B7' => '125',
-  '2B8' => '127',
-  '2C' => '128',
-  '2C2' => '122',
-  '2C3' => '126',
-  '2C4' => '128',
-  '2C5' => '124',
-  '2C6' => '123',
-  '2C7' => '125',
-  '2C8' => '127',
-  '2D' => '123',
-  '2D2' => '122',
-  '2D3' => '126',
-  '2D4' => '128',
-  '2D5' => '124',
-  '2D6' => '123',
-  '2D7' => '125',
-  '2D8' => '127',
-  '2E2' => '122',
-  '2E3' => '126',
-  '2E4' => '128',
-  '2E5' => '124',
-  '2E6' => '123',
-  '2E7' => '125',
-  '2E8' => '127',
-  '2F2' => '122',
-  '2F3' => '126',
-  '2F4' => '128',
-  '2F5' => '124',
-  '2F6' => '123',
-  '2F7' => '125',
-  '2F8' => '127',
-  '2G2' => '122',
-  '2G3' => '126',
-  '2G4' => '128',
-  '2G5' => '124',
-  '2G6' => '123',
-  '2G7' => '125',
-  '2G8' => '127',
-  '2H' => '125',
-  '2H2' => '122',
-  '2H3' => '126',
-  '2H4' => '128',
-  '2H5' => '124',
-  '2H6' => '123',
-  '2H7' => '125',
-  '2H8' => '127',
-  '2I' => '124',
-  '2I2' => '122',
-  '2I3' => '126',
-  '2I4' => '128',
-  '2I5' => '124',
-  '2I6' => '123',
-  '2I7' => '125',
-  '2I8' => '127',
-  '2J' => '125',
-  '2J2' => '122',
-  '2J3' => '126',
-  '2J4' => '128',
-  '2J5' => '124',
-  '2J6' => '123',
-  '2J7' => '125',
-  '2J8' => '127',
-  '2K2' => '122',
-  '2K3' => '126',
-  '2K4' => '128',
-  '2K5' => '124',
-  '2K6' => '123',
-  '2K7' => '125',
-  '2K8' => '127',
-  '2L2' => '122',
-  '2L3' => '126',
-  '2L4' => '128',
-  '2L5' => '124',
-  '2L6' => '123',
-  '2L7' => '125',
-  '2L8' => '127',
-  '2M' => '126',
-  '2M2' => '122',
-  '2M3' => '126',
-  '2M4' => '128',
-  '2M5' => '124',
-  '2M6' => '123',
-  '2M7' => '125',
-  '2M8' => '127',
-  '2N' => '124',
-  '2N2' => '122',
-  '2N3' => '126',
-  '2N4' => '128',
-  '2N5' => '124',
-  '2N6' => '123',
-  '2N7' => '125',
-  '2N8' => '127',
-  '2O2' => '122',
-  '2O3' => '126',
-  '2O4' => '128',
-  '2O5' => '124',
-  '2O6' => '123',
-  '2O7' => '125',
-  '2O8' => '127',
-  '2P' => '127',
-  '2P2' => '122',
-  '2P3' => '126',
-  '2P4' => '128',
-  '2P5' => '124',
-  '2P6' => '123',
-  '2P7' => '125',
-  '2P8' => '127',
-  '2Q2' => '122',
-  '2Q3' => '126',
-  '2Q4' => '128',
-  '2Q5' => '124',
-  '2Q6' => '123',
-  '2Q7' => '125',
-  '2Q8' => '127',
-  '2R2' => '122',
-  '2R3' => '126',
-  '2R4' => '128',
-  '2R5' => '124',
-  '2R6' => '123',
-  '2R7' => '125',
-  '2R8' => '127',
-  '2S' => '126',
-  '2S2' => '122',
-  '2S3' => '126',
-  '2S4' => '128',
-  '2S5' => '124',
-  '2S6' => '123',
-  '2S7' => '125',
-  '2S8' => '127',
-  '2T' => '123',
-  '2T2' => '122',
-  '2T3' => '126',
-  '2T4' => '128',
-  '2T5' => '124',
-  '2T6' => '123',
-  '2T7' => '125',
-  '2T8' => '127',
-  '2U' => '127',
-  '2U2' => '122',
-  '2U3' => '126',
-  '2U4' => '128',
-  '2U5' => '124',
-  '2U6' => '123',
-  '2U7' => '125',
-  '2U8' => '127',
-  '2V2' => '122',
-  '2V3' => '126',
-  '2V4' => '128',
-  '2V5' => '124',
-  '2V6' => '123',
-  '2V7' => '125',
-  '2V8' => '127',
-  '2W' => '128',
-  '2W2' => '122',
-  '2W3' => '126',
-  '2W4' => '128',
-  '2W5' => '124',
-  '2W6' => '123',
-  '2W7' => '125',
-  '2W8' => '127',
-  '2X2' => '122',
-  '2X3' => '126',
-  '2X4' => '128',
-  '2X5' => '124',
-  '2X6' => '123',
-  '2X7' => '125',
-  '2X8' => '127',
-  '2Y2' => '122',
-  '2Y3' => '126',
-  '2Y4' => '128',
-  '2Y5' => '124',
-  '2Y6' => '123',
-  '2Y7' => '125',
-  '2Y8' => '127',
-  '2Z2' => '122',
-  '2Z3' => '126',
-  '2Z4' => '128',
-  '2Z5' => '124',
-  '2Z6' => '123',
-  '2Z7' => '125',
-  '2Z8' => '127',
+  '1Z' => '300',
+  '2' => '124',
+  '2A2' => '124',
+  '2A3' => '128',
+  '2A4' => '130',
+  '2A5' => '126',
+  '2A6' => '125',
+  '2A7' => '127',
+  '2A8' => '129',
+  '2B2' => '124',
+  '2B3' => '128',
+  '2B4' => '130',
+  '2B5' => '126',
+  '2B6' => '125',
+  '2B7' => '127',
+  '2B8' => '129',
+  '2C' => '130',
+  '2C2' => '124',
+  '2C3' => '128',
+  '2C4' => '130',
+  '2C5' => '126',
+  '2C6' => '125',
+  '2C7' => '127',
+  '2C8' => '129',
+  '2D' => '125',
+  '2D2' => '124',
+  '2D3' => '128',
+  '2D4' => '130',
+  '2D5' => '126',
+  '2D6' => '125',
+  '2D7' => '127',
+  '2D8' => '129',
+  '2E2' => '124',
+  '2E3' => '128',
+  '2E4' => '130',
+  '2E5' => '126',
+  '2E6' => '125',
+  '2E7' => '127',
+  '2E8' => '129',
+  '2F2' => '124',
+  '2F3' => '128',
+  '2F4' => '130',
+  '2F5' => '126',
+  '2F6' => '125',
+  '2F7' => '127',
+  '2F8' => '129',
+  '2G2' => '124',
+  '2G3' => '128',
+  '2G4' => '130',
+  '2G5' => '126',
+  '2G6' => '125',
+  '2G7' => '127',
+  '2G8' => '129',
+  '2H' => '127',
+  '2H2' => '124',
+  '2H3' => '128',
+  '2H4' => '130',
+  '2H5' => '126',
+  '2H6' => '125',
+  '2H7' => '127',
+  '2H8' => '129',
+  '2I' => '126',
+  '2I2' => '124',
+  '2I3' => '128',
+  '2I4' => '130',
+  '2I5' => '126',
+  '2I6' => '125',
+  '2I7' => '127',
+  '2I8' => '129',
+  '2J' => '127',
+  '2J2' => '124',
+  '2J3' => '128',
+  '2J4' => '130',
+  '2J5' => '126',
+  '2J6' => '125',
+  '2J7' => '127',
+  '2J8' => '129',
+  '2K2' => '124',
+  '2K3' => '128',
+  '2K4' => '130',
+  '2K5' => '126',
+  '2K6' => '125',
+  '2K7' => '127',
+  '2K8' => '129',
+  '2L2' => '124',
+  '2L3' => '128',
+  '2L4' => '130',
+  '2L5' => '126',
+  '2L6' => '125',
+  '2L7' => '127',
+  '2L8' => '129',
+  '2M' => '128',
+  '2M2' => '124',
+  '2M3' => '128',
+  '2M4' => '130',
+  '2M5' => '126',
+  '2M6' => '125',
+  '2M7' => '127',
+  '2M8' => '129',
+  '2N' => '126',
+  '2N2' => '124',
+  '2N3' => '128',
+  '2N4' => '130',
+  '2N5' => '126',
+  '2N6' => '125',
+  '2N7' => '127',
+  '2N8' => '129',
+  '2O2' => '124',
+  '2O3' => '128',
+  '2O4' => '130',
+  '2O5' => '126',
+  '2O6' => '125',
+  '2O7' => '127',
+  '2O8' => '129',
+  '2P' => '129',
+  '2P2' => '124',
+  '2P3' => '128',
+  '2P4' => '130',
+  '2P5' => '126',
+  '2P6' => '125',
+  '2P7' => '127',
+  '2P8' => '129',
+  '2Q2' => '124',
+  '2Q3' => '128',
+  '2Q4' => '130',
+  '2Q5' => '126',
+  '2Q6' => '125',
+  '2Q7' => '127',
+  '2Q8' => '129',
+  '2R2' => '124',
+  '2R3' => '128',
+  '2R4' => '130',
+  '2R5' => '126',
+  '2R6' => '125',
+  '2R7' => '127',
+  '2R8' => '129',
+  '2S' => '128',
+  '2S2' => '124',
+  '2S3' => '128',
+  '2S4' => '130',
+  '2S5' => '126',
+  '2S6' => '125',
+  '2S7' => '127',
+  '2S8' => '129',
+  '2T' => '125',
+  '2T2' => '124',
+  '2T3' => '128',
+  '2T4' => '130',
+  '2T5' => '126',
+  '2T6' => '125',
+  '2T7' => '127',
+  '2T8' => '129',
+  '2U' => '129',
+  '2U2' => '124',
+  '2U3' => '128',
+  '2U4' => '130',
+  '2U5' => '126',
+  '2U6' => '125',
+  '2U7' => '127',
+  '2U8' => '129',
+  '2V2' => '124',
+  '2V3' => '128',
+  '2V4' => '130',
+  '2V5' => '126',
+  '2V6' => '125',
+  '2V7' => '127',
+  '2V8' => '129',
+  '2W' => '130',
+  '2W2' => '124',
+  '2W3' => '128',
+  '2W4' => '130',
+  '2W5' => '126',
+  '2W6' => '125',
+  '2W7' => '127',
+  '2W8' => '129',
+  '2X2' => '124',
+  '2X3' => '128',
+  '2X4' => '130',
+  '2X5' => '126',
+  '2X6' => '125',
+  '2X7' => '127',
+  '2X8' => '129',
+  '2Y2' => '124',
+  '2Y3' => '128',
+  '2Y4' => '130',
+  '2Y5' => '126',
+  '2Y6' => '125',
+  '2Y7' => '127',
+  '2Y8' => '129',
+  '2Z2' => '124',
+  '2Z3' => '128',
+  '2Z4' => '130',
+  '2Z5' => '126',
+  '2Z6' => '125',
+  '2Z7' => '127',
+  '2Z8' => '129',
   '3A' => '3',
   '3B6' => '4',
-  '3B7' => '335',
+  '3B7' => '337',
   '3B8' => '5',
   '3B9' => '6',
   '3C' => '7',
   '3C0' => '8',
-  '3D2' => '9,336,11',
+  '3D2' => '9,338,11',
   '3D2/C' => '9',
   '3D2/F' => '10',
   '3D2/R' => '11',
   '3D2XX' => '11',
   '3D6' => '12',
   '3DA' => '12',
-  '3E' => '143',
-  '3F' => '143',
+  '3E' => '145',
+  '3F' => '145',
   '3G' => '74',
   '3G0' => '76',
   '3G0X' => '77',
   '3G0Z' => '78',
-  '3H' => '348',
-  '3I' => '348',
-  '3J' => '348',
-  '3K' => '348',
-  '3L' => '348',
-  '3M' => '348',
-  '3N' => '348',
-  '3O' => '348',
-  '3P' => '348',
-  '3Q' => '348',
-  '3R' => '348',
-  '3S' => '348',
-  '3T' => '348',
-  '3U' => '348',
+  '3H' => '350',
+  '3I' => '350',
+  '3J' => '350',
+  '3K' => '350',
+  '3L' => '350',
+  '3M' => '350',
+  '3N' => '350',
+  '3O' => '350',
+  '3P' => '350',
+  '3Q' => '350',
+  '3R' => '350',
+  '3S' => '350',
+  '3T' => '350',
+  '3U' => '350',
   '3V' => '13',
   '3W' => '14',
   '3X' => '15',
   '3Y/P' => '17',
   '3Y0PI' => '17',
   '3Y1EE' => '17',
-  '3Y2AQ' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '3Y2GV' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '3Y9YBA' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '3Z' => '215',
-  '4A' => '525',
-  '4A4' => '293',
-  '4B' => '525',
-  '4B4' => '293',
-  '4C' => '525',
-  '4C4' => '293',
+  '3Y2AQ' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '3Y2GV' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '3Y9YBA' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '3Z' => '217',
+  '4A' => '526',
+  '4A4' => '295',
+  '4B' => '526',
+  '4B4' => '295',
+  '4C' => '526',
+  '4C4' => '295',
   '4D' => '92',
   '4E' => '92',
   '4F' => '92',
   '4G' => '92',
   '4H' => '92',
   '4I' => '92',
-  '4J' => '249',
+  '4J' => '251',
   '4J1FM' => '18',
   '4J1FS' => '18',
   '4J1FW' => '18',
-  '4K' => '249',
-  '4K1' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '4K1ADQ' => '276',
-  '4K1F' => '276',
-  '4K1ZI' => '275',
+  '4K' => '251',
+  '4K1' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '4K1ADQ' => '278',
+  '4K1F' => '278',
+  '4K1ZI' => '277',
   '4K2' => '19',
-  '4K4' => '246,428',
-  '4K4BEU' => '246,428',
-  '4K4POL' => '246,428',
-  '4K4QQ' => '246,428',
-  '4L' => '250',
-  '4M' => '313',
-  '4M0' => '314',
-  '4N' => '530',
-  '4N4' => '309',
-  '4O' => '530',
+  '4K4' => '248,428',
+  '4K4BEU' => '248,428',
+  '4K4POL' => '248,428',
+  '4K4QQ' => '248,428',
+  '4L' => '252',
+  '4M' => '315',
+  '4M0' => '316',
+  '4N' => '531',
+  '4N4' => '311',
+  '4O' => '531',
   '4P' => '20',
   '4Q' => '20',
   '4R' => '20',
   '4S' => '20',
-  '4T' => '188',
-  '4U/KC0PA' => '210',
+  '4T' => '190',
+  '4U/KC0PA' => '212',
   '4U/OH2BBF' => '55',
-  '4U/RW3AH' => '308',
+  '4U/RW3AH' => '310',
   '4U0ITU' => '21',
-  '4U0UN' => '338,22',
+  '4U0UN' => '340,22',
   '4U1I' => '21',
   '4U1ITU' => '21',
   '4U1SCO' => '104',
-  '4U1U' => '338,22',
-  '4U1UN' => '338,22',
-  '4U1V' => '190',
-  '4U1WB' => '291',
+  '4U1U' => '340,22',
+  '4U1UN' => '340,22',
+  '4U1V' => '192',
+  '4U1WB' => '293',
   '4U2ITU' => '21',
-  '4U2UN' => '338,22',
+  '4U2UN' => '340,22',
   '4U3ITU' => '21',
-  '4U3UN' => '338,22',
-  '4U43' => '338',
-  '4U47UN' => '338,22',
-  '4U48UN' => '338,22',
-  '4U49UN' => '338,22',
+  '4U3UN' => '340,22',
+  '4U43' => '340',
+  '4U47UN' => '340,22',
+  '4U48UN' => '340,22',
+  '4U49UN' => '340,22',
   '4U4ITU' => '21',
-  '4U4UN' => '338,22',
-  '4U50UN' => '338,22',
+  '4U4UN' => '340,22',
+  '4U50UN' => '340,22',
   '4U5ITU' => '21',
-  '4U5UN' => '338,22',
+  '4U5UN' => '340,22',
   '4U6ITU' => '21',
-  '4U6UN' => '338,22',
+  '4U6UN' => '340,22',
   '4U7ITU' => '21',
-  '4U7UN' => '338,22',
+  '4U7UN' => '340,22',
   '4U8ITU' => '21',
-  '4U8UN' => '338,22',
+  '4U8UN' => '340,22',
   '4U9ITU' => '21',
-  '4U9Q' => '52,343,344',
+  '4U9Q' => '52,345,346',
   '4U9U' => '53',
-  '4U9UN' => '338,22',
-  '4V' => '136',
-  '4W' => '339,341',
+  '4U9UN' => '340,22',
+  '4V' => '138',
+  '4W' => '341,343',
   '4X' => '23',
   '4Z' => '23',
-  '50V' => '334',
+  '50V' => '336',
   '5A' => '24',
   '5B' => '25',
   '5C' => '80',
   '5H' => '26',
   '5I' => '26',
   '5J' => '377',
-  '5J0' => '140',
-  '5J0M' => '139',
+  '5J0' => '142',
+  '5J0M' => '141',
   '5K' => '377',
-  '5K0' => '140',
-  '5K0M' => '139',
+  '5K0' => '142',
+  '5K0M' => '141',
   '5L' => '99,99',
   '5M' => '99',
   '5N' => '27',
   '5O' => '27',
-  '5P' => '199',
-  '5Q' => '199',
+  '5P' => '201',
+  '5Q' => '201',
   '5R' => '28',
   '5S' => '28',
   '5T' => '29',
   '5X' => '33',
   '5Y' => '34',
   '5Z' => '34',
-  '6A' => '218',
-  '6B' => '218',
-  '6C' => '303',
-  '6D' => '525',
-  '6D4' => '293',
-  '6E' => '525',
-  '6E4' => '293',
-  '6F' => '292,523,524',
-  '6F4' => '293',
-  '6G' => '525',
-  '6G4' => '293',
-  '6H' => '525',
-  '6H4' => '293',
-  '6I' => '525',
-  '6I4' => '293',
-  '6J' => '525',
-  '6J4' => '293',
-  '6K' => '141',
-  '6L' => '141',
-  '6M' => '141',
-  '6N' => '141',
-  '6O' => '228',
+  '6A' => '220',
+  '6B' => '220',
+  '6C' => '305',
+  '6D' => '526',
+  '6D4' => '295',
+  '6E' => '526',
+  '6E4' => '295',
+  '6F' => '294,524,525',
+  '6F4' => '295',
+  '6G' => '526',
+  '6G4' => '295',
+  '6H' => '526',
+  '6H4' => '295',
+  '6I' => '526',
+  '6I4' => '295',
+  '6J' => '526',
+  '6J4' => '295',
+  '6K' => '143',
+  '6L' => '143',
+  '6M' => '143',
+  '6N' => '143',
+  '6O' => '230',
   '6P' => '64',
   '6Q' => '64',
   '6R' => '64',
   '6S' => '64',
-  '6T' => '216',
-  '6T0' => '217',
-  '6U' => '216',
-  '6U0' => '217',
+  '6T' => '218',
+  '6T0' => '219',
+  '6U' => '218',
+  '6U0' => '219',
   '6V' => '35',
   '6W' => '35',
   '6X' => '28',
   '6Y' => '36',
   '6Z' => '99',
-  '7A' => '300',
-  '7B' => '300',
-  '7C' => '300',
-  '7D' => '300',
-  '7E' => '300',
-  '7F' => '300',
-  '7G' => '300',
-  '7H' => '300',
-  '7I' => '300',
-  '7J' => '157',
-  '7J1ACH' => '159',
-  '7K' => '157',
-  '7L' => '157',
-  '7M' => '157',
-  '7N' => '157',
-  '7O' => '340',
+  '7A' => '302',
+  '7B' => '302',
+  '7C' => '302',
+  '7D' => '302',
+  '7E' => '302',
+  '7F' => '302',
+  '7G' => '302',
+  '7H' => '302',
+  '7I' => '302',
+  '7J' => '159',
+  '7J1ACH' => '161',
+  '7K' => '159',
+  '7L' => '159',
+  '7M' => '159',
+  '7N' => '159',
+  '7O' => '342',
   '7P' => '38',
   '7Q' => '39',
   '7R' => '40',
-  '7S' => '214,214',
-  '7S8' => '369',
-  '7S8AAA' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '7S8BBB' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
+  '7S' => '216,216',
+  '7S8' => '371',
+  '7S8AAA' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '7S8BBB' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
   '7T' => '40',
   '7U' => '40',
   '7V' => '40',
   '7W' => '40',
   '7X' => '40',
   '7Y' => '40',
-  '7Z' => '147,379',
-  '8A' => '300',
-  '8B' => '300',
-  '8C' => '300',
-  '8D' => '300',
-  '8E' => '300',
-  '8F' => '300',
-  '8G' => '300',
-  '8H' => '300',
-  '8I' => '300',
-  '8J' => '369,157',
-  '8J1RL' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '8J1RM' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  '8K' => '157',
-  '8L' => '157,158,381,382,383',
-  '8M' => '157',
-  '8N' => '157,158,381,382,383',
+  '7Z' => '149,379',
+  '8A' => '302',
+  '8B' => '302',
+  '8C' => '302',
+  '8D' => '302',
+  '8E' => '302',
+  '8F' => '302',
+  '8G' => '302',
+  '8H' => '302',
+  '8I' => '302',
+  '8J' => '371,159',
+  '8J1RL' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '8J1RM' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  '8K' => '159',
+  '8L' => '159,160,381,382,383',
+  '8M' => '159',
+  '8N' => '159,160,381,382,383',
   '8O' => '57',
   '8P' => '41',
   '8Q' => '42',
   '8R' => '43',
-  '8S' => '214,214',
-  '8T' => '467',
-  '8T4' => '282',
-  '8T7' => '282,283',
-  '8U' => '467',
-  '8U4' => '282',
-  '8U7' => '282,283',
-  '8V' => '467',
-  '8V4' => '282',
-  '8V7' => '282,283',
-  '8W' => '467',
-  '8W4' => '282',
-  '8W7' => '282,283',
-  '8X' => '467',
-  '8X4' => '282',
-  '8X7' => '282,283',
-  '8Y' => '467',
-  '8Y4' => '282',
-  '8Y7' => '282,283',
-  '8Z' => '147,379',
-  '8l' => '157',
-  '9A' => '311',
-  '9A3A/4U' => '136',
+  '8S' => '216,216',
+  '8T' => '468',
+  '8T4' => '284',
+  '8T7' => '284,285',
+  '8U' => '468',
+  '8U4' => '284',
+  '8U7' => '284,285',
+  '8V' => '468',
+  '8V4' => '284',
+  '8V7' => '284,285',
+  '8W' => '468',
+  '8W4' => '284',
+  '8W7' => '284,285',
+  '8X' => '468',
+  '8X4' => '284',
+  '8X7' => '284,285',
+  '8Y' => '468',
+  '8Y4' => '284',
+  '8Y7' => '284,285',
+  '8Z' => '149,379',
+  '8l' => '159',
+  '9A' => '313',
+  '9A3A/4U' => '138',
   '9B' => '100',
   '9C' => '100',
   '9D' => '100,103',
   '9M0' => '2',
   '9M2' => '49',
   '9M4' => '49',
-  '9M6' => '50,342',
-  '9M8' => '50,342',
+  '9M6' => '50,344',
+  '9M8' => '50,344',
   '9N' => '51',
-  '9O' => '345',
-  '9P' => '345',
-  '9Q' => '52,343,344',
-  '9R' => '345',
-  '9S' => '345',
-  '9T' => '345',
+  '9O' => '347',
+  '9P' => '347',
+  '9Q' => '52,345,346',
+  '9R' => '347',
+  '9S' => '347',
+  '9T' => '347',
   '9U' => '53',
   '9V' => '54',
   '9W0' => '2',
   '9W2' => '49',
   '9W4' => '49',
-  '9W6' => '50,342',
-  '9W8' => '50,342',
+  '9W6' => '50,344',
+  '9W8' => '50,344',
   '9X' => '55',
   '9Y' => '56',
   '9Z' => '56',
-  'A' => '291',
+  'A' => '293',
   'A2' => '57',
   'A3' => '58',
   'A4' => '59',
   'A7' => '62',
   'A8' => '99',
   'A9' => '63',
-  'AA' => '291',
-  'AB' => '291',
-  'AC' => '291',
-  'AD' => '291',
-  'AE' => '291',
-  'AF' => '291',
-  'AG' => '291',
-  'AH0' => '177',
-  'AH1' => '167',
-  'AH2' => '168',
-  'AH2M' => '291',
-  'AH3' => '169',
-  'AH3C' => '291',
-  'AH3D' => '291',
-  'AH4' => '170',
-  'AH5' => '171',
-  'AH5K' => '172',
-  'AH6' => '173,389',
-  'AH7' => '173,389',
-  'AH7K' => '174',
-  'AH8' => '175',
-  'AH9' => '176',
-  'AI' => '291',
-  'AJ' => '291',
-  'AK' => '291',
+  'AA' => '293',
+  'AB' => '293',
+  'AC' => '293',
+  'AD' => '293',
+  'AE' => '293',
+  'AF' => '293',
+  'AG' => '293',
+  'AH0' => '179',
+  'AH1' => '169',
+  'AH2' => '170',
+  'AH2M' => '293',
+  'AH3' => '171',
+  'AH3C' => '293',
+  'AH3D' => '293',
+  'AH4' => '172',
+  'AH5' => '173',
+  'AH5K' => '174',
+  'AH6' => '175,389',
+  'AH7' => '175,389',
+  'AH7K' => '176',
+  'AH8' => '177',
+  'AH9' => '178',
+  'AI' => '293',
+  'AJ' => '293',
+  'AK' => '293',
   'AL' => '392',
   'AL7' => '393',
-  'AL7H' => '291',
+  'AL7H' => '293',
   'AM' => '94',
   'AM6' => '95',
   'AM8' => '96',
-  'AM9' => '371',
+  'AM9' => '373',
   'AN' => '94',
   'AN6' => '95',
-  'AN8' => '96,371',
-  'AN9' => '97,371',
-  'ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
+  'AN8' => '96,373',
+  'AN9' => '97,373',
+  'ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
   'AO' => '94',
   'AO6' => '95',
   'AO8' => '96',
-  'AO9' => '371',
+  'AO9' => '373',
   'AP' => '64',
   'AQ' => '64',
   'AR' => '64',
   'AS' => '64',
-  'AT' => '467',
-  'AT0' => '369',
-  'AT3A' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'AT3D' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'AT4' => '282',
-  'AT7' => '282,283',
-  'AU' => '467',
-  'AU4' => '282',
-  'AU7' => '282,283',
-  'AV' => '467',
-  'AV4' => '282',
-  'AV7' => '282,283',
-  'AW' => '467',
-  'AW4' => '282',
-  'AW7' => '282,283',
-  'AX' => '454',
-  'AX0' => '267',
-  'AX1' => '455',
-  'AX2' => '456',
-  'AX3' => '457',
-  'AX4' => '458',
-  'AX5' => '459',
-  'AX6' => '460',
-  'AX7' => '461',
-  'AX8' => '462',
-  'AX9' => '264',
-  'AX9C' => '463',
-  'AX9L' => '260',
-  'AX9M' => '263',
-  'AX9W' => '265',
-  'AX9X' => '261',
-  'AX9Y' => '463',
-  'AY' => '184',
-  'AZ' => '184',
-  'BA' => '348',
-  'BB' => '348',
-  'BC' => '348',
-  'BD' => '348',
-  'BE' => '348',
-  'BF' => '348',
-  'BG' => '348',
-  'BH' => '348',
-  'BI' => '348',
-  'BJ' => '348',
-  'BK' => '348',
-  'BL' => '348',
-  'BM' => '348',
-  'BN' => '348',
+  'AT' => '468',
+  'AT0' => '371',
+  'AT3A' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'AT3D' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'AT4' => '284',
+  'AT7' => '284,285',
+  'AU' => '468',
+  'AU4' => '284',
+  'AU7' => '284,285',
+  'AV' => '468',
+  'AV4' => '284',
+  'AV7' => '284,285',
+  'AW' => '468',
+  'AW4' => '284',
+  'AW7' => '284,285',
+  'AX' => '455',
+  'AX0' => '269',
+  'AX1' => '456',
+  'AX2' => '457',
+  'AX3' => '458',
+  'AX4' => '459',
+  'AX5' => '460',
+  'AX6' => '461',
+  'AX7' => '462',
+  'AX8' => '463',
+  'AX9' => '266',
+  'AX9C' => '464',
+  'AX9L' => '262',
+  'AX9M' => '265',
+  'AX9W' => '267',
+  'AX9X' => '263',
+  'AX9Y' => '464',
+  'AY' => '186',
+  'AZ' => '186',
+  'BA' => '350',
+  'BB' => '350',
+  'BC' => '350',
+  'BD' => '350',
+  'BE' => '350',
+  'BF' => '350',
+  'BG' => '350',
+  'BH' => '350',
+  'BI' => '350',
+  'BJ' => '350',
+  'BK' => '350',
+  'BL' => '350',
+  'BM' => '350',
+  'BN' => '350',
   'BO' => '67',
-  'BP' => '348',
-  'BQ' => '348',
-  'BR' => '348',
-  'BS' => '348',
+  'BP' => '350',
+  'BQ' => '350',
+  'BR' => '350',
+  'BS' => '350',
   'BS7' => '65',
-  'BT' => '68,346,347',
-  'BU' => '348',
-  'BV' => '67,348',
+  'BT' => '68,348,349',
+  'BU' => '350',
+  'BV' => '67,350',
   'BV9P' => '66',
   'BV9S' => '2',
-  'BW' => '348',
-  'BX' => '348',
-  'BY' => '68,346,347',
-  'BZ' => '348',
+  'BW' => '350',
+  'BX' => '350',
+  'BY' => '68,348,349',
+  'BZ' => '350',
   'C2' => '69',
   'C3' => '70',
   'C4' => '25',
   'C5' => '71',
   'C6' => '72',
-  'C8' => '350',
-  'C9' => '73,349',
+  'C8' => '352',
+  'C9' => '73,351',
   'CA' => '74',
   'CA0' => '76',
   'CA0X' => '77',
   'CD0' => '76',
   'CD0X' => '77',
   'CD0Z' => '78',
-  'CE' => '74,351,352',
+  'CE' => '74,353,354',
   'CE0' => '76',
   'CE0A' => '76',
   'CE0BYM' => '78',
   'CE0OHA' => '78',
   'CE0X' => '77',
   'CE0Z' => '78',
-  'CE9' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'CE9/CE2NVH' => '276',
-  'CE9/CE3LOJ' => '276',
-  'CE9/CE3MMV' => '276',
-  'CE9/CE5BYE' => '276',
-  'CE9AP' => '276',
-  'CE9CMK' => '276',
-  'CE9EVG' => '276',
-  'CE9GEW' => '276',
-  'CE9MFJ' => '276',
-  'CE9MFR' => '276',
-  'CE9NGV' => '276',
-  'CE9OHB' => '276',
-  'CE9PUA' => '276',
-  'CE9PWE' => '276',
-  'CE9RDS' => '276',
-  'CF' => '446',
-  'CF1' => '258,437,438',
+  'CE9' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'CE9/CE2NVH' => '278',
+  'CE9/CE3LOJ' => '278',
+  'CE9/CE3MMV' => '278',
+  'CE9/CE5BYE' => '278',
+  'CE9AP' => '278',
+  'CE9CMK' => '278',
+  'CE9EVG' => '278',
+  'CE9GEW' => '278',
+  'CE9MFJ' => '278',
+  'CE9MFR' => '278',
+  'CE9NGV' => '278',
+  'CE9OHB' => '278',
+  'CE9PUA' => '278',
+  'CE9PWE' => '278',
+  'CE9RDS' => '278',
+  'CF' => '447',
+  'CF1' => '260,438',
   'CF2' => '439',
   'CF3' => '440',
   'CF4' => '441',
   'CF6' => '443',
   'CF7' => '444',
   'CF8' => '445',
-  'CF9' => '258',
-  'CG' => '446',
-  'CG1' => '258,437,438',
+  'CF9' => '260',
+  'CG' => '447',
+  'CG1' => '260,438',
   'CG2' => '439',
   'CG3' => '440',
   'CG4' => '441',
   'CG6' => '443',
   'CG7' => '444',
   'CG8' => '445',
-  'CG9' => '258',
-  'CH' => '446',
-  'CH1' => '258,437,438',
+  'CG9' => '260',
+  'CH' => '447',
+  'CH1' => '260,438',
   'CH2' => '439',
   'CH3' => '440',
   'CH4' => '441',
   'CH6' => '443',
   'CH7' => '444',
   'CH8' => '445',
-  'CH9' => '258',
-  'CI' => '446',
-  'CI1' => '258,437,438',
+  'CH9' => '260',
+  'CI' => '447',
+  'CI1' => '260,438',
   'CI2' => '439',
   'CI3' => '440',
   'CI4' => '441',
   'CI6' => '443',
   'CI7' => '444',
   'CI8' => '445',
-  'CI9' => '258',
-  'CJ' => '446',
-  'CJ1' => '258,437,438',
+  'CI9' => '260',
+  'CJ' => '447',
+  'CJ1' => '260,438',
   'CJ2' => '439',
   'CJ3' => '440',
   'CJ4' => '441',
   'CJ6' => '443',
   'CJ7' => '444',
   'CJ8' => '445',
-  'CJ9' => '258',
-  'CK' => '446',
+  'CJ9' => '260',
+  'CK' => '447',
   'CL' => '79',
   'CM' => '79',
   'CN' => '80',
   'CV' => '85',
   'CW' => '85',
   'CX' => '85',
-  'CX0' => '369',
-  'CX0XY' => '276',
-  'CY' => '446',
+  'CX0' => '371',
+  'CX0XY' => '278',
+  'CY' => '447',
   'CY0' => '87',
   'CY0SPI' => '86',
-  'CY1' => '258,437,438',
+  'CY1' => '260,438',
   'CY2' => '439',
   'CY3' => '440',
   'CY4' => '441',
   'CY7' => '444',
   'CY8' => '445',
   'CY9' => '86',
-  'CZ' => '446',
-  'CZ1' => '258,437,438',
+  'CZ' => '447',
+  'CZ1' => '260,438',
   'CZ2' => '439',
   'CZ3' => '440',
   'CZ4' => '441',
   'CZ6' => '443',
   'CZ7' => '444',
   'CZ8' => '445',
-  'CZ9' => '258',
+  'CZ9' => '260',
   'D' => '91',
   'D2' => '88',
   'D3' => '88',
   'D4' => '89',
   'D5' => '71',
   'D6' => '90',
-  'D7' => '141',
-  'D8' => '141',
-  'D9' => '141',
+  'D7' => '143',
+  'D8' => '143',
+  'D9' => '143',
   'DA' => '91',
   'DB' => '91',
   'DC' => '91',
   'DJ' => '91',
   'DK' => '91',
   'DL' => '91',
-  'DL1KVC/P' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
+  'DL1KVC/P' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
   'DM' => '91',
   'DN' => '91',
   'DO' => '91',
   'DP' => '91',
-  'DP0' => '369',
-  'DP0GVN' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'DP1KGI' => '276',
+  'DP0' => '371',
+  'DP0GVN' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'DP1KGI' => '278',
   'DQ' => '91',
   'DR' => '91',
-  'DS' => '141',
-  'DT' => '141',
+  'DS' => '143',
+  'DT' => '143',
   'DU' => '92',
   'DU0' => '2',
   'DU0K' => '2',
   'DX' => '92',
   'DY' => '92',
   'DZ' => '92',
-  'E2' => '145',
+  'E2' => '147',
   'E3' => '103',
-  'E4' => '93,370',
-  'E5' => '247',
+  'E4' => '93,372',
+  'E5' => '249',
   'EA' => '94',
   'EA6' => '95',
   'EA8' => '96',
-  'EA9' => '97,371',
+  'EA9' => '97,373',
   'EB' => '94',
   'EB6' => '95',
   'EB8' => '96',
-  'EB9' => '371',
+  'EB9' => '373',
   'EC' => '94',
   'EC6' => '95',
   'EC8' => '96',
-  'EC9' => '97,371',
+  'EC9' => '97,373',
   'ED' => '94',
-  'ED0BAE' => '276',
-  'ED0BOD' => '274',
+  'ED0BAE' => '278',
+  'ED0BOD' => '276',
   'ED6' => '95',
   'ED8' => '96',
-  'ED9' => '97,371',
+  'ED9' => '97,373',
   'EE' => '94',
   'EE6' => '95',
   'EE8' => '96',
-  'EE9' => '97,371',
+  'EE9' => '97,373',
   'EF' => '94',
   'EF6' => '95',
   'EF8' => '96',
-  'EF9' => '371',
+  'EF9' => '373',
   'EG' => '94',
-  'EG0BOD' => '276',
+  'EG0BOD' => '278',
   'EG6' => '95',
   'EG8' => '96',
-  'EG9' => '371',
+  'EG9' => '373',
   'EH' => '94',
   'EH6' => '95',
   'EH8' => '96',
-  'EH9' => '371',
+  'EH9' => '373',
   'EI' => '98',
   'EJ' => '98',
-  'EK' => '251',
+  'EK' => '253',
   'EL' => '99',
-  'EM' => '247',
-  'EM1ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'EN' => '247',
-  'EO' => '247',
+  'EM' => '249',
+  'EM1ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'EN' => '249',
+  'EO' => '249',
   'EP' => '100',
   'EQ' => '100',
-  'ER' => '257',
+  'ER' => '259',
   'ES' => '101',
   'ET' => '102',
-  'EU' => '248',
-  'EV' => '248',
-  'EW' => '248',
-  'EX' => '256',
-  'EY' => '254',
-  'EZ' => '252',
+  'EU' => '250',
+  'EV' => '250',
+  'EW' => '250',
+  'EX' => '258',
+  'EY' => '256',
+  'EZ' => '254',
   'F' => '104',
   'FA' => '104',
   'FB' => '104',
-  'FC' => '236',
+  'FC' => '238',
   'FD' => '104',
   'FE' => '104',
   'FF' => '104',
   'FG' => '105',
   'FH' => '106',
   'FI' => '104',
-  'FJ' => '116',
+  'FJ' => '118',
   'FJL' => '19',
   'FK' => '107',
   'FL' => '104',
   'FM' => '108',
   'FN' => '104',
-  'FO' => '109,372,373,374,375,110',
-  'FO/C' => '110',
-  'FO0CI' => '110',
-  'FP' => '111',
+  'FO' => '109,374,375,110,111,112',
+  'FO/A' => '110',
+  'FO/C' => '111',
+  'FO/M' => '112',
+  'FO0CI' => '111',
+  'FP' => '113',
   'FQ' => '104',
-  'FR' => '112,113,114,115',
-  'FR/G' => '113',
-  'FR/J' => '114',
-  'FR/T' => '115',
-  'FR4FA' => '114',
-  'FR5AI' => '113',
-  'FR5ZQ/E' => '114',
-  'FR5ZQ/G' => '113',
-  'FR5ZQ/J' => '114',
-  'FR5ZQ/T' => '115',
-  'FR5ZU/E' => '114',
-  'FR5ZU/G' => '113',
-  'FR5ZU/J' => '114',
-  'FR5ZU/T' => '115',
-  'FR7CG' => '115',
-  'FR7GL' => '113',
-  'FS' => '116',
-  'FT' => '117,118,376,119',
-  'FT0W' => '117',
-  'FT0X' => '118',
-  'FT0Y' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'FT0Z' => '119',
-  'FT2W' => '117',
-  'FT2X' => '118',
-  'FT2Y' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'FT2Z' => '119',
-  'FT4W' => '117',
-  'FT4X' => '118',
-  'FT4Y' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'FT4Z' => '119',
-  'FT5W' => '117',
-  'FT5X' => '118',
-  'FT5Y' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'FT5Z' => '119',
-  'FT8W' => '117',
-  'FT8X' => '118',
+  'FR' => '114,115,116,117',
+  'FR/G' => '115',
+  'FR/J' => '116',
+  'FR/T' => '117',
+  'FR4FA' => '116',
+  'FR5AI' => '115',
+  'FR5ZQ/E' => '116',
+  'FR5ZQ/G' => '115',
+  'FR5ZQ/J' => '116',
+  'FR5ZQ/T' => '117',
+  'FR5ZU/E' => '116',
+  'FR5ZU/G' => '115',
+  'FR5ZU/J' => '116',
+  'FR5ZU/T' => '117',
+  'FR7CG' => '117',
+  'FR7GL' => '115',
+  'FS' => '118',
+  'FT' => '119,120,376,121',
+  'FT0W' => '119',
+  'FT0X' => '120',
+  'FT0Y' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'FT0Z' => '121',
+  'FT2W' => '119',
+  'FT2X' => '120',
+  'FT2Y' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'FT2Z' => '121',
+  'FT4W' => '119',
+  'FT4X' => '120',
+  'FT4Y' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'FT4Z' => '121',
+  'FT5W' => '119',
+  'FT5X' => '120',
+  'FT5Y' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'FT5Z' => '121',
+  'FT8W' => '119',
+  'FT8X' => '120',
   'FT8Y' => '376',
-  'FT8Z' => '119',
+  'FT8Z' => '121',
   'FU' => '104',
   'FV' => '104',
-  'FW' => '120',
+  'FW' => '122',
   'FX' => '104',
-  'FY' => '121',
+  'FY' => '123',
   'FZ' => '104',
-  'G' => '122',
-  'GB' => '122',
-  'GB6AR' => '128',
-  'GC' => '128',
-  'GD' => '123',
-  'GH' => '125',
-  'GI' => '124',
-  'GJ' => '125',
-  'GM' => '126',
-  'GN' => '127',
-  'GP' => '127',
-  'GS' => '126',
-  'GT' => '123',
-  'GU' => '127',
-  'GW' => '128',
-  'GX' => '122',
+  'G' => '124',
+  'GB' => '124',
+  'GB6AR' => '130',
+  'GC' => '130',
+  'GD' => '125',
+  'GH' => '127',
+  'GI' => '126',
+  'GJ' => '127',
+  'GM' => '128',
+  'GN' => '129',
+  'GP' => '129',
+  'GS' => '128',
+  'GT' => '125',
+  'GU' => '129',
+  'GW' => '130',
+  'GX' => '124',
   'H2' => '25',
-  'H3' => '143',
-  'H4' => '129',
-  'H40' => '130',
-  'H5' => '541',
-  'H6' => '305',
-  'H7' => '305',
-  'H8' => '143',
-  'H9' => '143',
-  'HA' => '131',
-  'HB' => '132',
-  'HB0' => '133',
-  'HC' => '134',
-  'HC8' => '135',
-  'HD' => '134',
-  'HD8' => '135',
-  'HE' => '132',
-  'HE0' => '133',
-  'HF' => '215',
-  'HF0' => '276',
-  'HF0POL' => '276',
-  'HG' => '131',
-  'HH' => '136',
-  'HI' => '137',
+  'H3' => '145',
+  'H4' => '131',
+  'H40' => '132',
+  'H5' => '542',
+  'H6' => '307',
+  'H7' => '307',
+  'H8' => '145',
+  'H9' => '145',
+  'HA' => '133',
+  'HB' => '134',
+  'HB0' => '135',
+  'HC' => '136',
+  'HC8' => '137',
+  'HD' => '136',
+  'HD8' => '137',
+  'HE' => '134',
+  'HE0' => '135',
+  'HF' => '217',
+  'HF0' => '278',
+  'HF0POL' => '278',
+  'HG' => '133',
+  'HH' => '138',
+  'HI' => '139',
   'HJ' => '377',
-  'HJ0' => '140',
-  'HJ0M' => '139',
-  'HK' => '138',
-  'HK0' => '139,378',
-  'HK0/A' => '140',
-  'HK0/M' => '139',
-  'HK0M' => '139',
-  'HK0TU' => '139',
-  'HL' => '141',
-  'HL5BDS' => '276',
-  'HL8KSJ' => '276',
-  'HM' => '142',
-  'HN' => '301',
-  'HO' => '143',
-  'HP' => '143',
-  'HQ' => '144',
-  'HR' => '144',
-  'HS' => '145',
-  'HT' => '305',
-  'HU' => '307',
-  'HV' => '146',
+  'HJ0' => '142',
+  'HJ0M' => '141',
+  'HK' => '140',
+  'HK0' => '141,378',
+  'HK0/A' => '142',
+  'HK0/M' => '141',
+  'HK0M' => '141',
+  'HK0TU' => '141',
+  'HL' => '143',
+  'HL5BDS' => '278',
+  'HL8KSJ' => '278',
+  'HM' => '144',
+  'HN' => '303',
+  'HO' => '145',
+  'HP' => '145',
+  'HQ' => '146',
+  'HR' => '146',
+  'HS' => '147',
+  'HT' => '307',
+  'HU' => '309',
+  'HV' => '148',
   'HW' => '104',
   'HX' => '104',
   'HY' => '104',
-  'HZ' => '147,379',
-  'I' => '148,380',
-  'IA' => '148',
-  'IA/I3JPA' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'IA0PS' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'IB' => '148',
-  'IC' => '148',
-  'ID' => '148',
-  'IE' => '148',
-  'IF' => '148',
-  'IG' => '148',
-  'IH' => '148',
-  'II' => '148',
-  'IJ' => '148',
-  'IK' => '148',
-  'IL' => '148',
-  'IM' => '148',
-  'IM0' => '149',
-  'IN' => '148',
-  'IO' => '148',
-  'IP' => '148',
-  'IQ' => '148',
-  'IR' => '148',
-  'IS' => '149',
-  'IT' => '150',
-  'IU' => '148',
-  'IV' => '148',
-  'IW' => '148',
-  'IW0U' => '149',
-  'IX' => '148',
-  'IY' => '148',
-  'IY0GA' => '149',
-  'IZ' => '148',
-  'J' => '157,158,381,382,383',
-  'J2' => '151',
-  'J3' => '152',
-  'J4' => '219',
-  'J45' => '220',
-  'J49' => '221',
-  'J5' => '153',
-  'J6' => '154',
-  'J7' => '155',
-  'J8' => '156',
-  'JA' => '157,158,381,382,383',
-  'JB' => '157',
-  'JC' => '157',
-  'JD' => '159,160',
-  'JD/M' => '159',
-  'JD/O' => '160',
-  'JD1' => '159',
-  'JD1/JI7BCD' => '159',
-  'JD1/JQ1SUO' => '160',
-  'JD1AMA' => '160',
-  'JD1BIE' => '160',
-  'JD1BIE/JD1' => '159',
-  'JD1BIK' => '160',
-  'JD1BIP' => '159',
-  'JD1BIU' => '159',
-  'JD1BIV' => '160',
-  'JD1BIY' => '159',
-  'JD1BIZ' => '159',
-  'JD1BJA' => '159',
-  'JD1BJC' => '160',
-  'JD1BJE' => '159',
-  'JD1YAA' => '159',
-  'JD1YBJ' => '159',
-  'JE' => '157',
-  'JF' => '157',
-  'JG' => '157',
-  'JH' => '157',
-  'JH2ENF/JD1' => '160',
-  'JI' => '157',
-  'JJ' => '157',
-  'JK' => '157',
-  'JL' => '157',
-  'JM' => '157',
-  'JN' => '157',
-  'JO' => '157',
-  'JP' => '157',
-  'JQ' => '157',
-  'JQ8NQJ/JD1' => '159',
-  'JR' => '157',
-  'JS' => '157',
-  'JT' => '161,384',
-  'JU' => '161',
-  'JV' => '161',
-  'JW' => '162',
-  'JX' => '163',
-  'JY' => '164',
-  'JZ' => '300',
-  'K' => '291',
-  'K0' => '522',
-  'KA' => '291',
-  'KA2CC' => '157,158,381,382,383',
-  'KA2DX' => '157,158,381,382,383',
-  'KA2EX' => '157,158,381,382,383',
-  'KA2IJ' => '160',
-  'KB' => '291',
-  'KC' => '291',
+  'HZ' => '149,379',
+  'I' => '150,380',
+  'IA' => '150',
+  'IA/I3JPA' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'IA0PS' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'IB' => '150',
+  'IC' => '150',
+  'ID' => '150',
+  'IE' => '150',
+  'IF' => '150',
+  'IG' => '150',
+  'IH' => '150',
+  'II' => '150',
+  'IJ' => '150',
+  'IK' => '150',
+  'IL' => '150',
+  'IM' => '150',
+  'IM0' => '151',
+  'IN' => '150',
+  'IO' => '150',
+  'IP' => '150',
+  'IQ' => '150',
+  'IR' => '150',
+  'IS' => '151',
+  'IT' => '152',
+  'IU' => '150',
+  'IV' => '150',
+  'IW' => '150',
+  'IW0U' => '151',
+  'IX' => '150',
+  'IY' => '150',
+  'IY0GA' => '151',
+  'IZ' => '150',
+  'J' => '159,160,381,382,383',
+  'J2' => '153',
+  'J3' => '154',
+  'J4' => '221',
+  'J45' => '222',
+  'J49' => '223',
+  'J5' => '155',
+  'J6' => '156',
+  'J7' => '157',
+  'J8' => '158',
+  'JA' => '159,160,381,382,383',
+  'JB' => '159',
+  'JC' => '159',
+  'JD' => '161,162',
+  'JD/M' => '161',
+  'JD/O' => '162',
+  'JD1' => '161',
+  'JD1/JI7BCD' => '161',
+  'JD1/JQ1SUO' => '162',
+  'JD1AMA' => '162',
+  'JD1BIE' => '162',
+  'JD1BIE/JD1' => '161',
+  'JD1BIK' => '162',
+  'JD1BIP' => '161',
+  'JD1BIU' => '161',
+  'JD1BIV' => '162',
+  'JD1BIY' => '161',
+  'JD1BIZ' => '161',
+  'JD1BJA' => '161',
+  'JD1BJC' => '162',
+  'JD1BJE' => '161',
+  'JD1YAA' => '161',
+  'JD1YBJ' => '161',
+  'JE' => '159',
+  'JF' => '159',
+  'JG' => '159',
+  'JH' => '159',
+  'JH2ENF/JD1' => '162',
+  'JI' => '159',
+  'JJ' => '159',
+  'JK' => '159',
+  'JL' => '159',
+  'JM' => '159',
+  'JN' => '159',
+  'JO' => '159',
+  'JP' => '159',
+  'JQ' => '159',
+  'JQ8NQJ/JD1' => '161',
+  'JR' => '159',
+  'JS' => '159',
+  'JT' => '163,384',
+  'JU' => '163',
+  'JV' => '163',
+  'JW' => '164',
+  'JX' => '165',
+  'JY' => '166',
+  'JZ' => '302',
+  'K' => '293',
+  'K0' => '523',
+  'KA' => '293',
+  'KA2CC' => '159,160,381,382,383',
+  'KA2DX' => '159,160,381,382,383',
+  'KA2EX' => '159,160,381,382,383',
+  'KA2IJ' => '162',
+  'KB' => '293',
+  'KC' => '293',
   'KC4' => '385,386,387',
   'KC6' => '420',
   'KC6BP' => '420',
   'KC6JF' => '420',
   'KC6JJ' => '420',
-  'KD' => '291',
-  'KE' => '291',
-  'KF' => '291',
-  'KG' => '291',
-  'KG4' => '166',
-  'KG4AU' => '166',
-  'KG6' => '168',
-  'KG6ARL' => '168',
-  'KG6DV' => '168',
-  'KG6DX' => '168',
-  'KG6JEI' => '168',
-  'KG6JHC' => '168',
-  'KG6JJH' => '168',
-  'KG6JJP' => '168',
-  'KG6JKG' => '168',
-  'KG6JKR' => '168',
-  'KG6JKT' => '168',
-  'KG6JKV' => '168',
-  'KG6RE' => '177',
-  'KG6RI' => '177',
-  'KG6SB' => '177',
-  'KG6SL' => '177',
-  'KH0' => '177',
-  'KH1' => '167',
-  'KH2' => '168',
-  'KH3' => '169',
-  'KH4' => '170',
-  'KH5' => '171',
-  'KH5K' => '172',
-  'KH6' => '173,389',
-  'KH6CP' => '291',
-  'KH6ND' => '291',
-  'KH7' => '173,389',
-  'KH7K' => '174',
-  'KH8' => '175',
-  'KH9' => '176',
-  'KI' => '291',
-  'KJ' => '291',
-  'KJ6BZ' => '169',
-  'KK' => '291',
+  'KD' => '293',
+  'KE' => '293',
+  'KF' => '293',
+  'KG' => '293',
+  'KG4' => '168',
+  'KG4AU' => '168',
+  'KG6' => '170',
+  'KG6ARL' => '170',
+  'KG6DV' => '170',
+  'KG6DX' => '170',
+  'KG6JEI' => '170',
+  'KG6JHC' => '170',
+  'KG6JJH' => '170',
+  'KG6JJP' => '170',
+  'KG6JKG' => '170',
+  'KG6JKR' => '170',
+  'KG6JKT' => '170',
+  'KG6JKV' => '170',
+  'KG6RE' => '179',
+  'KG6RI' => '179',
+  'KG6SB' => '179',
+  'KG6SL' => '179',
+  'KH0' => '179',
+  'KH1' => '169',
+  'KH2' => '170',
+  'KH3' => '171',
+  'KH4' => '172',
+  'KH5' => '173',
+  'KH5K' => '174',
+  'KH6' => '175,389',
+  'KH6CP' => '293',
+  'KH6ND' => '293',
+  'KH7' => '175,389',
+  'KH7K' => '176',
+  'KH8' => '177',
+  'KH9' => '178',
+  'KI' => '293',
+  'KJ' => '293',
+  'KJ6BZ' => '171',
+  'KK' => '293',
   'KL' => '392',
-  'KL7' => '178,390,391,392',
-  'KL7DN/1' => '291',
-  'KL7HIR' => '291',
-  'KL7HIR/3' => '291',
-  'KL7NA' => '291',
-  'KL7TF/4' => '291',
-  'KL9K' => '141',
-  'KM' => '291',
-  'KN' => '291',
-  'KO' => '291',
-  'KP1' => '179',
-  'KP2' => '180',
-  'KP3' => '181',
-  'KP4' => '181',
-  'KP4XS' => '291',
-  'KP5' => '182',
-  'KQ' => '291',
-  'KR' => '291',
-  'KS' => '291',
-  'KS6BK' => '175',
-  'KS6CQ' => '175',
-  'KS6DV' => '175',
-  'KS6EL' => '175',
-  'KS6FL' => '175',
-  'KS6FO' => '175',
-  'KS6FS' => '175',
-  'KT' => '291',
-  'KU' => '291',
-  'KV' => '291',
-  'KV4' => '180',
-  'KV4AD' => '180',
-  'KV4AQ' => '180',
-  'KV4BA' => '180',
-  'KV4BS' => '180',
-  'KV4BT' => '180',
-  'KV4BV' => '180',
-  'KV4CF' => '180',
-  'KV4CQ' => '180',
-  'KV4CR' => '180',
-  'KV4CS' => '180',
-  'KV4EW' => '180',
-  'KV4EY' => '180',
-  'KV4FW' => '180',
-  'KV4FZ' => '180',
-  'KV4GJ' => '180',
-  'KV4HC' => '180',
-  'KV4HH' => '180',
-  'KV4HR' => '180',
-  'KV4IE' => '180',
-  'KV4IH' => '180',
-  'KV4II' => '180',
-  'KV4IJ' => '180',
-  'KV4JC' => '180',
-  'KV4KD' => '180',
-  'KV4KW' => '180',
-  'KW' => '291',
-  'KX6BU' => '290',
-  'KY' => '291',
-  'KZ' => '291',
-  'L' => '184,397,398',
-  'L1' => '184',
-  'L2' => '184',
-  'L3' => '184',
-  'L4' => '184',
-  'L5' => '184',
-  'L6' => '184',
-  'L7' => '184',
-  'L8' => '184',
-  'L9' => '184',
-  'LA' => '183,394,395,396',
-  'LB' => '183',
-  'LC' => '183',
-  'LD' => '183',
-  'LE' => '183',
-  'LF' => '183',
-  'LG' => '183',
-  'LH' => '183',
-  'LI' => '183',
-  'LJ' => '183',
-  'LK' => '183',
-  'LL' => '183',
-  'LM' => '183',
-  'LN' => '183',
-  'LO' => '184',
-  'LP' => '184',
-  'LQ' => '184',
-  'LR' => '184',
-  'LS' => '184',
-  'LT' => '184',
-  'LU' => '184,397,398',
-  'LU1ZA' => '274',
-  'LU1ZAR' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU1ZC' => '276',
-  'LU1ZD' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU1ZG' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU1ZS' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU1ZV' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU2ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU2ZD' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU4ZS' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'LU6Z' => '274',
-  'LV' => '184',
-  'LW' => '184',
-  'LW3DPP' => '274',
-  'LX' => '185',
-  'LY' => '187',
-  'LZ' => '186',
-  'LZ0A' => '276',
-  'M' => '122',
-  'M0' => '122',
-  'M1' => '122',
-  'M2' => '122',
-  'M3' => '122',
-  'M4' => '122',
-  'M5' => '122',
-  'M6' => '122',
-  'M7' => '122',
-  'M8' => '122',
-  'M9' => '122',
-  'MA2' => '122',
-  'MA3' => '126',
-  'MA4' => '128',
-  'MA5' => '124',
-  'MA6' => '123',
-  'MA7' => '125',
-  'MA8' => '127',
-  'MAJ' => '334',
-  'MB2' => '122',
-  'MB3' => '126',
-  'MB4' => '128',
-  'MB5' => '124',
-  'MB6' => '123',
-  'MB7' => '125',
-  'MB8' => '127',
-  'MC' => '128',
-  'MD' => '123',
-  'ME2' => '122',
-  'ME3' => '126',
-  'ME4' => '128',
-  'ME5' => '124',
-  'ME6' => '123',
-  'ME7' => '125',
-  'ME8' => '127',
-  'MF2' => '122',
-  'MF3' => '126',
-  'MF4' => '128',
-  'MF5' => '124',
-  'MF6' => '123',
-  'MF7' => '125',
-  'MF8' => '127',
-  'MG2' => '122',
-  'MG3' => '126',
-  'MG4' => '128',
-  'MG5' => '124',
-  'MG6' => '123',
-  'MG7' => '125',
-  'MG8' => '127',
-  'MH' => '125',
-  'MI' => '124',
-  'MJ' => '125',
-  'MK2' => '122',
-  'MK3' => '126',
-  'MK4' => '128',
-  'MK5' => '124',
-  'MK6' => '123',
-  'MK7' => '125',
-  'MK8' => '127',
-  'ML2' => '122',
-  'ML3' => '126',
-  'ML4' => '128',
-  'ML5' => '124',
-  'ML6' => '123',
-  'ML7' => '125',
-  'ML8' => '127',
-  'MM' => '126',
-  'MN' => '124',
-  'MO2' => '122',
-  'MO3' => '126',
-  'MO4' => '128',
-  'MO5' => '124',
-  'MO6' => '123',
-  'MO7' => '125',
-  'MO8' => '127',
-  'MP' => '125',
-  'MQ2' => '122',
-  'MQ3' => '126',
-  'MQ4' => '128',
-  'MQ5' => '124',
-  'MQ6' => '123',
-  'MQ7' => '125',
-  'MQ8' => '127',
-  'MR2' => '122',
-  'MR3' => '126',
-  'MR4' => '128',
-  'MR5' => '124',
-  'MR6' => '123',
-  'MR7' => '125',
-  'MR8' => '127',
-  'MS' => '126',
-  'MT' => '123',
-  'MU' => '127',
-  'MV2' => '122',
-  'MV3' => '126',
-  'MV4' => '128',
-  'MV5' => '124',
-  'MV6' => '123',
-  'MV7' => '125',
-  'MV8' => '127',
+  'KL7' => '180,390,391,392',
+  'KL7DN/1' => '293',
+  'KL7HIR' => '293',
+  'KL7HIR/3' => '293',
+  'KL7NA' => '293',
+  'KL7TF/4' => '293',
+  'KL9K' => '143',
+  'KM' => '293',
+  'KN' => '293',
+  'KO' => '293',
+  'KP1' => '181',
+  'KP2' => '182',
+  'KP3' => '183',
+  'KP4' => '183',
+  'KP4XS' => '293',
+  'KP5' => '184',
+  'KQ' => '293',
+  'KR' => '293',
+  'KS' => '293',
+  'KS6BK' => '177',
+  'KS6CQ' => '177',
+  'KS6DV' => '177',
+  'KS6EL' => '177',
+  'KS6FL' => '177',
+  'KS6FO' => '177',
+  'KS6FS' => '177',
+  'KT' => '293',
+  'KU' => '293',
+  'KV' => '293',
+  'KV4' => '182',
+  'KV4AD' => '182',
+  'KV4AQ' => '182',
+  'KV4BA' => '182',
+  'KV4BS' => '182',
+  'KV4BT' => '182',
+  'KV4BV' => '182',
+  'KV4CF' => '182',
+  'KV4CQ' => '182',
+  'KV4CR' => '182',
+  'KV4CS' => '182',
+  'KV4EW' => '182',
+  'KV4EY' => '182',
+  'KV4FW' => '182',
+  'KV4FZ' => '182',
+  'KV4GJ' => '182',
+  'KV4HC' => '182',
+  'KV4HH' => '182',
+  'KV4HR' => '182',
+  'KV4IE' => '182',
+  'KV4IH' => '182',
+  'KV4II' => '182',
+  'KV4IJ' => '182',
+  'KV4JC' => '182',
+  'KV4KD' => '182',
+  'KV4KW' => '182',
+  'KW' => '293',
+  'KX6BU' => '292',
+  'KY' => '293',
+  'KZ' => '293',
+  'L' => '186,397,398',
+  'L1' => '186',
+  'L2' => '186',
+  'L3' => '186',
+  'L4' => '186',
+  'L5' => '186',
+  'L6' => '186',
+  'L7' => '186',
+  'L8' => '186',
+  'L9' => '186',
+  'LA' => '185,394,395,396',
+  'LB' => '185',
+  'LC' => '185',
+  'LD' => '185',
+  'LE' => '185',
+  'LF' => '185',
+  'LG' => '185',
+  'LH' => '185',
+  'LI' => '185',
+  'LJ' => '185',
+  'LK' => '185',
+  'LL' => '185',
+  'LM' => '185',
+  'LN' => '185',
+  'LO' => '186',
+  'LP' => '186',
+  'LQ' => '186',
+  'LR' => '186',
+  'LS' => '186',
+  'LT' => '186',
+  'LU' => '186,397,398',
+  'LU1ZA' => '276',
+  'LU1ZAR' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU1ZC' => '278',
+  'LU1ZD' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU1ZG' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU1ZS' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU1ZV' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU2ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU2ZD' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU4ZS' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'LU6Z' => '276',
+  'LV' => '186',
+  'LW' => '186',
+  'LW3DPP' => '276',
+  'LX' => '187',
+  'LY' => '189',
+  'LZ' => '188',
+  'LZ0A' => '278',
+  'M' => '124',
+  'M0' => '124',
+  'M1' => '124',
+  'M2' => '124',
+  'M3' => '124',
+  'M4' => '124',
+  'M5' => '124',
+  'M6' => '124',
+  'M7' => '124',
+  'M8' => '124',
+  'M9' => '124',
+  'MA2' => '124',
+  'MA3' => '128',
+  'MA4' => '130',
+  'MA5' => '126',
+  'MA6' => '125',
+  'MA7' => '127',
+  'MA8' => '129',
+  'MAJ' => '336',
+  'MB2' => '124',
+  'MB3' => '128',
+  'MB4' => '130',
+  'MB5' => '126',
+  'MB6' => '125',
+  'MB7' => '127',
+  'MB8' => '129',
+  'MC' => '130',
+  'MD' => '125',
+  'ME2' => '124',
+  'ME3' => '128',
+  'ME4' => '130',
+  'ME5' => '126',
+  'ME6' => '125',
+  'ME7' => '127',
+  'ME8' => '129',
+  'MF2' => '124',
+  'MF3' => '128',
+  'MF4' => '130',
+  'MF5' => '126',
+  'MF6' => '125',
+  'MF7' => '127',
+  'MF8' => '129',
+  'MG2' => '124',
+  'MG3' => '128',
+  'MG4' => '130',
+  'MG5' => '126',
+  'MG6' => '125',
+  'MG7' => '127',
+  'MG8' => '129',
+  'MH' => '127',
+  'MI' => '126',
+  'MJ' => '127',
+  'MK2' => '124',
+  'MK3' => '128',
+  'MK4' => '130',
+  'MK5' => '126',
+  'MK6' => '125',
+  'MK7' => '127',
+  'MK8' => '129',
+  'ML2' => '124',
+  'ML3' => '128',
+  'ML4' => '130',
+  'ML5' => '126',
+  'ML6' => '125',
+  'ML7' => '127',
+  'ML8' => '129',
+  'MM' => '128',
+  'MN' => '126',
+  'MO2' => '124',
+  'MO3' => '128',
+  'MO4' => '130',
+  'MO5' => '126',
+  'MO6' => '125',
+  'MO7' => '127',
+  'MO8' => '129',
+  'MP' => '127',
+  'MQ2' => '124',
+  'MQ3' => '128',
+  'MQ4' => '130',
+  'MQ5' => '126',
+  'MQ6' => '125',
+  'MQ7' => '127',
+  'MQ8' => '129',
+  'MR2' => '124',
+  'MR3' => '128',
+  'MR4' => '130',
+  'MR5' => '126',
+  'MR6' => '125',
+  'MR7' => '127',
+  'MR8' => '129',
+  'MS' => '128',
+  'MT' => '125',
+  'MU' => '129',
+  'MV2' => '124',
+  'MV3' => '128',
+  'MV4' => '130',
+  'MV5' => '126',
+  'MV6' => '125',
+  'MV7' => '127',
+  'MV8' => '129',
   'MVI' => '18',
-  'MW' => '128',
-  'MX' => '122',
-  'MY2' => '122',
-  'MY3' => '126',
-  'MY4' => '128',
-  'MY5' => '124',
-  'MY6' => '123',
-  'MY7' => '125',
-  'MY8' => '127',
-  'MZ2' => '122',
-  'MZ3' => '126',
-  'MZ4' => '128',
-  'MZ5' => '124',
-  'MZ6' => '123',
-  'MZ7' => '125',
-  'MZ8' => '127',
-  'N' => '291',
-  'N0' => '522',
-  'NA' => '291',
-  'NB' => '291',
-  'NC' => '291',
-  'ND' => '291',
-  'NE' => '291',
-  'NF' => '291',
-  'NG' => '291',
-  'NH0' => '177',
-  'NH1' => '167',
-  'NH2' => '168',
-  'NH3' => '169',
-  'NH4' => '170',
-  'NH5' => '171',
-  'NH5K' => '172',
-  'NH6' => '173,389',
-  'NH7' => '173,389',
-  'NH7K' => '174',
-  'NH8' => '175',
-  'NH9' => '176',
-  'NI' => '291',
-  'NJ' => '291',
-  'NK' => '291',
+  'MW' => '130',
+  'MX' => '124',
+  'MY2' => '124',
+  'MY3' => '128',
+  'MY4' => '130',
+  'MY5' => '126',
+  'MY6' => '125',
+  'MY7' => '127',
+  'MY8' => '129',
+  'MZ2' => '124',
+  'MZ3' => '128',
+  'MZ4' => '130',
+  'MZ5' => '126',
+  'MZ6' => '125',
+  'MZ7' => '127',
+  'MZ8' => '129',
+  'N' => '293',
+  'N0' => '523',
+  'NA' => '293',
+  'NB' => '293',
+  'NC' => '293',
+  'ND' => '293',
+  'NE' => '293',
+  'NF' => '293',
+  'NG' => '293',
+  'NH0' => '179',
+  'NH1' => '169',
+  'NH2' => '170',
+  'NH3' => '171',
+  'NH4' => '172',
+  'NH5' => '173',
+  'NH5K' => '174',
+  'NH6' => '175,389',
+  'NH7' => '175,389',
+  'NH7K' => '176',
+  'NH8' => '177',
+  'NH9' => '178',
+  'NI' => '293',
+  'NJ' => '293',
+  'NK' => '293',
   'NL' => '392',
   'NL7' => '393',
-  'NL7H/6' => '291',
-  'NM' => '291',
-  'NN' => '470',
-  'NO' => '470',
-  'NP1' => '179',
-  'NP2' => '180',
-  'NP3' => '181',
-  'NP4' => '181',
-  'NP5' => '182',
-  'NQ' => '470',
-  'NR' => '470',
-  'NS' => '470',
-  'NT' => '470',
-  'NU' => '470',
-  'NV' => '470',
-  'NW' => '470',
-  'NY' => '470',
-  'NZ' => '470',
-  'OA' => '188',
-  'OA0MP' => '276',
-  'OB' => '188',
-  'OC' => '188',
-  'OD' => '189',
-  'OE' => '190',
-  'OEM' => '190',
-  'OF' => '191',
-  'OF0' => '192',
-  'OG' => '191',
-  'OG0' => '192',
-  'OH' => '191,399',
-  'OH0' => '192',
+  'NL7H/6' => '293',
+  'NM' => '293',
+  'NN' => '471',
+  'NO' => '471',
+  'NP1' => '181',
+  'NP2' => '182',
+  'NP3' => '183',
+  'NP4' => '183',
+  'NP5' => '184',
+  'NQ' => '471',
+  'NR' => '471',
+  'NS' => '471',
+  'NT' => '471',
+  'NU' => '471',
+  'NV' => '471',
+  'NW' => '471',
+  'NY' => '471',
+  'NZ' => '471',
+  'OA' => '190',
+  'OA0MP' => '278',
+  'OB' => '190',
+  'OC' => '190',
+  'OD' => '191',
+  'OE' => '192',
+  'OEM' => '192',
+  'OF' => '193',
+  'OF0' => '194',
+  'OG' => '193',
+  'OG0' => '194',
+  'OH' => '193,399',
+  'OH0' => '194',
   'OH0M' => '400',
-  'OH0MA' => '193',
-  'OH0MB' => '193',
-  'OH0MD' => '193',
-  'OI' => '191',
-  'OI0' => '192',
-  'OJ' => '191',
-  'OJ0' => '193',
-  'OK' => '194',
+  'OH0MA' => '195',
+  'OH0MB' => '195',
+  'OH0MD' => '195',
+  'OI' => '193',
+  'OI0' => '194',
+  'OJ' => '193',
+  'OJ0' => '195',
+  'OK' => '196',
   'OK1' => '401',
   'OK2' => '402',
-  'OL' => '403,194',
-  'OM' => '195',
-  'ON' => '196',
-  'OO' => '196',
-  'OP' => '196',
-  'OQ' => '196',
-  'OR' => '196',
-  'OS' => '196',
-  'OT' => '196',
-  'OU' => '199',
-  'OV' => '199',
-  'OW' => '199',
-  'OX' => '197,404,405,406,407',
-  'OY' => '198',
-  'OZ' => '199',
-  'P2' => '200,408',
+  'OL' => '403,196',
+  'OM' => '197',
+  'ON' => '198',
+  'OO' => '198',
+  'OP' => '198',
+  'OQ' => '198',
+  'OR' => '198',
+  'OS' => '198',
+  'OT' => '198',
+  'OU' => '201',
+  'OV' => '201',
+  'OW' => '201',
+  'OX' => '199,404,405,406,407',
+  'OY' => '200',
+  'OZ' => '201',
+  'P2' => '202,408',
   'P3' => '25',
   'P30' => '25',
   'P36' => '25',
-  'P4' => '201',
-  'P5' => '142',
-  'P6' => '142',
-  'P7' => '142',
-  'P8' => '142',
-  'P9' => '142',
-  'PA' => '202',
-  'PB' => '202',
-  'PC' => '202',
-  'PD' => '202',
-  'PE' => '202',
-  'PF' => '202',
-  'PG' => '202',
-  'PH' => '202',
-  'PI' => '202',
-  'PJ' => '203,204',
-  'PJ0' => '203',
-  'PJ1' => '203',
-  'PJ2' => '203',
-  'PJ3' => '203',
-  'PJ4' => '203',
-  'PJ5' => '204',
-  'PJ6' => '204',
-  'PJ7' => '204',
-  'PJ8' => '204',
-  'PJ9' => '203',
-  'PK' => '300',
-  'PL' => '300',
-  'PM' => '300',
-  'PN' => '300',
-  'PO' => '300',
+  'P4' => '203',
+  'P5' => '144',
+  'P6' => '144',
+  'P7' => '144',
+  'P8' => '144',
+  'P9' => '144',
+  'PA' => '204',
+  'PB' => '204',
+  'PC' => '204',
+  'PD' => '204',
+  'PE' => '204',
+  'PF' => '204',
+  'PG' => '204',
+  'PH' => '204',
+  'PI' => '204',
+  'PJ' => '205,206',
+  'PJ0' => '205',
+  'PJ1' => '205',
+  'PJ2' => '205',
+  'PJ3' => '205',
+  'PJ4' => '205',
+  'PJ5' => '206',
+  'PJ6' => '206',
+  'PJ7' => '206',
+  'PJ8' => '206',
+  'PJ9' => '205',
+  'PK' => '302',
+  'PL' => '302',
+  'PM' => '302',
+  'PN' => '302',
+  'PO' => '302',
   'PP' => '411,412',
-  'PP0F' => '206,206',
-  'PP0S' => '207,207',
-  'PP0T' => '208,208',
-  'PP0ZF' => '206,206',
-  'PP0ZS' => '207,207',
-  'PP0ZT' => '208,208',
+  'PP0F' => '208,208',
+  'PP0S' => '209,209',
+  'PP0T' => '210,210',
+  'PP0ZF' => '208,208',
+  'PP0ZS' => '209,209',
+  'PP0ZT' => '210,210',
   'PQ' => '412',
-  'PQ0F' => '206,206',
-  'PQ0S' => '207,207',
-  'PQ0T' => '208,208',
-  'PQ0ZF' => '206,206',
-  'PQ0ZS' => '207,207',
-  'PQ0ZT' => '208,208',
+  'PQ0F' => '208,208',
+  'PQ0S' => '209,209',
+  'PQ0T' => '210,210',
+  'PQ0ZF' => '208,208',
+  'PQ0ZS' => '209,209',
+  'PQ0ZT' => '210,210',
   'PR' => '412',
-  'PR0F' => '206,206',
-  'PR0S' => '207,207',
-  'PR0T' => '208,208',
-  'PR0ZF' => '206,206',
-  'PR0ZS' => '207,207',
-  'PR0ZT' => '208,208',
+  'PR0F' => '208,208',
+  'PR0S' => '209,209',
+  'PR0T' => '210,210',
+  'PR0ZF' => '208,208',
+  'PR0ZS' => '209,209',
+  'PR0ZT' => '210,210',
   'PS' => '412',
-  'PS0F' => '206,206',
-  'PS0S' => '207,207',
-  'PS0T' => '208,208',
-  'PS0ZF' => '206,206',
-  'PS0ZS' => '207,207',
-  'PS0ZT' => '208,208',
+  'PS0F' => '208,208',
+  'PS0S' => '209,209',
+  'PS0T' => '210,210',
+  'PS0ZF' => '208,208',
+  'PS0ZS' => '209,209',
+  'PS0ZT' => '210,210',
   'PT' => '411,412',
-  'PT0F' => '206,206',
-  'PT0S' => '207,207',
-  'PT0T' => '208,208',
-  'PT0ZF' => '206,206',
-  'PT0ZS' => '207,207',
-  'PT0ZT' => '208,208',
+  'PT0F' => '208,208',
+  'PT0S' => '209,209',
+  'PT0T' => '210,210',
+  'PT0ZF' => '208,208',
+  'PT0ZS' => '209,209',
+  'PT0ZT' => '210,210',
   'PU' => '412',
-  'PU0F' => '206,206',
-  'PU0S' => '207,207',
-  'PU0T' => '208,208',
-  'PU0ZF' => '206,206',
-  'PU0ZS' => '207,207',
-  'PU0ZT' => '208,208',
+  'PU0F' => '208,208',
+  'PU0S' => '209,209',
+  'PU0T' => '210,210',
+  'PU0ZF' => '208,208',
+  'PU0ZS' => '209,209',
+  'PU0ZT' => '210,210',
   'PV' => '412',
-  'PV0F' => '206,206',
-  'PV0S' => '207,207',
-  'PV0T' => '208,208',
-  'PV0ZF' => '206,206',
-  'PV0ZS' => '207,207',
-  'PV0ZT' => '208,208',
+  'PV0F' => '208,208',
+  'PV0S' => '209,209',
+  'PV0T' => '210,210',
+  'PV0ZF' => '208,208',
+  'PV0ZS' => '209,209',
+  'PV0ZT' => '210,210',
   'PW' => '412',
-  'PW0F' => '206,206',
-  'PW0S' => '207,207',
-  'PW0T' => '208,208',
-  'PW0ZF' => '206,206',
-  'PW0ZS' => '207,207',
-  'PW0ZT' => '208,208',
+  'PW0F' => '208,208',
+  'PW0S' => '209,209',
+  'PW0T' => '210,210',
+  'PW0ZF' => '208,208',
+  'PW0ZS' => '209,209',
+  'PW0ZT' => '210,210',
   'PX' => '412',
-  'PX0F' => '206,206',
-  'PX0S' => '207,207',
-  'PX0T' => '208,208',
-  'PX0ZF' => '206,206',
-  'PX0ZS' => '207,207',
-  'PX0ZT' => '208,208',
-  'PY' => '205,409,410',
-  'PY0' => '206,207,208',
-  'PY0F' => '206,206',
-  'PY0S' => '207,207',
-  'PY0T' => '208,208',
-  'PY0ZF' => '206,206',
-  'PY0ZS' => '207,207',
-  'PY0ZT' => '208,208',
-  'PZ' => '209',
-  'Q' => '334',
+  'PX0F' => '208,208',
+  'PX0S' => '209,209',
+  'PX0T' => '210,210',
+  'PX0ZF' => '208,208',
+  'PX0ZS' => '209,209',
+  'PX0ZT' => '210,210',
+  'PY' => '207,409,410',
+  'PY0' => '208,209,210',
+  'PY0F' => '208,208',
+  'PY0S' => '209,209',
+  'PY0T' => '210,210',
+  'PY0ZF' => '208,208',
+  'PY0ZS' => '209,209',
+  'PY0ZT' => '210,210',
+  'PZ' => '211',
+  'Q' => '336',
   'R' => '424',
   'R0' => '435,431,436',
   'R1' => '425',
-  'R1AN' => '337',
+  'R1AN' => '339',
   'R1FJ' => '19',
   'R1MV' => '18',
-  'R1P' => '244,421,422,423',
-  'R2' => '245,245',
+  'R1P' => '246,421,422,423',
+  'R2' => '247,247',
   'R3' => '426',
-  'R3F/9' => '246,428',
+  'R3F/9' => '248,428',
   'R4' => '427',
   'R6' => '424',
   'R8' => '429',
-  'R9' => '246,428',
+  'R9' => '248,428',
   'RA0' => '435,431,436',
   'RA1' => '425',
-  'RA1P' => '244,421,422,423',
-  'RA2' => '245',
+  'RA1P' => '246,421,422,423',
+  'RA2' => '247',
   'RA3' => '426',
   'RA4' => '427',
   'RA6' => '424',
   'RA8' => '429',
-  'RA9' => '246,428',
+  'RA9' => '248,428',
   'RB0' => '435,431,436',
   'RB1' => '425',
-  'RB2' => '245',
+  'RB2' => '247',
   'RB3' => '426',
   'RB4' => '427',
   'RB6' => '424',
   'RB8' => '429',
-  'RB9' => '246,428',
+  'RB9' => '248,428',
   'RC0' => '435,431,436',
   'RC1' => '425',
-  'RC2' => '245',
+  'RC2' => '247',
   'RC3' => '426',
   'RC4' => '427',
   'RC6' => '424',
   'RC8' => '429',
-  'RC9' => '246,428',
+  'RC9' => '248,428',
   'RD0' => '435,431,436',
   'RD1' => '425',
-  'RD2' => '245',
+  'RD2' => '247',
   'RD3' => '426',
   'RD4' => '427',
   'RD6' => '424',
   'RD8' => '429',
-  'RD9' => '246,428',
+  'RD9' => '248,428',
   'RE0' => '435,431,436',
   'RE1' => '425',
-  'RE1P' => '244,421,422,423',
-  'RE2' => '245',
+  'RE1P' => '246,421,422,423',
+  'RE2' => '247',
   'RE3' => '426',
   'RE4' => '427',
   'RE6' => '424',
   'RE8' => '429',
-  'RE9' => '246,428',
+  'RE9' => '248,428',
   'RF0' => '435,431,436',
   'RF1' => '425',
-  'RF2' => '245',
+  'RF2' => '247',
   'RF3' => '426',
   'RF4' => '427',
   'RF6' => '424',
   'RF8' => '429',
-  'RF9' => '246,428',
+  'RF9' => '248,428',
   'RG0' => '435,431,436',
   'RG1' => '425',
-  'RG2' => '245',
+  'RG2' => '247',
   'RG3' => '426',
   'RG4' => '427',
   'RG6' => '424',
   'RG8' => '429',
-  'RG9' => '246,428',
+  'RG9' => '248,428',
   'RH0' => '435,431,436',
   'RH1' => '425',
-  'RH2' => '245',
+  'RH2' => '247',
   'RH3' => '426',
   'RH4' => '427',
   'RH6' => '424',
   'RH8' => '429',
-  'RH9' => '246,428',
+  'RH9' => '248,428',
   'RI0' => '435,431,436',
   'RI1' => '425',
-  'RI2' => '245',
+  'RI2' => '247',
   'RI3' => '426',
   'RI4' => '427',
   'RI6' => '424',
   'RI8' => '429',
-  'RI9' => '246,428',
+  'RI9' => '248,428',
   'RJ0' => '435,431,436',
   'RJ1' => '425',
-  'RJ2' => '245',
+  'RJ2' => '247',
   'RJ3' => '426',
   'RJ4' => '427',
   'RJ6' => '424',
   'RJ8' => '429',
-  'RJ9' => '246,428',
+  'RJ9' => '248,428',
   'RK0' => '435,431,436',
   'RK1' => '425',
-  'RK1P' => '244,421,422,423',
-  'RK2' => '245',
+  'RK1P' => '246,421,422,423',
+  'RK2' => '247',
   'RK3' => '426',
   'RK4' => '427',
   'RK6' => '424',
   'RK8' => '429',
-  'RK9' => '246,428',
+  'RK9' => '248,428',
   'RL0' => '435,431,436',
   'RL1' => '425',
-  'RL2' => '245',
+  'RL2' => '247',
   'RL3' => '426',
   'RL4' => '427',
   'RL6' => '424',
   'RL8' => '429',
-  'RL9' => '246,428',
+  'RL9' => '248,428',
   'RM0' => '435,431,436',
   'RM1' => '425',
-  'RM1P' => '244,421,422,423',
-  'RM2' => '245',
+  'RM1P' => '246,421,422,423',
+  'RM2' => '247',
   'RM3' => '426',
   'RM4' => '427',
   'RM6' => '424',
   'RM8' => '429',
-  'RM9' => '246,428',
+  'RM9' => '248,428',
   'RN0' => '435,431,436',
   'RN1' => '425',
-  'RN2' => '245',
+  'RN2' => '247',
   'RN3' => '426',
   'RN4' => '427',
   'RN6' => '424',
   'RN8' => '429',
-  'RN9' => '246,428',
+  'RN9' => '248,428',
   'RO0' => '435,431,436',
   'RO1' => '425',
-  'RO2' => '245',
+  'RO2' => '247',
   'RO3' => '426',
   'RO4' => '427',
   'RO6' => '424',
   'RO8' => '429',
-  'RO9' => '246,428',
+  'RO9' => '248,428',
   'RP0' => '435,431,436',
   'RP1' => '425',
-  'RP2' => '245',
+  'RP2' => '247',
   'RP3' => '426',
   'RP4' => '427',
   'RP6' => '424',
   'RP8' => '429',
-  'RP9' => '246,428',
+  'RP9' => '248,428',
   'RQ0' => '435,431,436',
   'RQ1' => '425',
-  'RQ1P' => '244,421,422,423',
-  'RQ2' => '245',
+  'RQ1P' => '246,421,422,423',
+  'RQ2' => '247',
   'RQ3' => '426',
   'RQ4' => '427',
   'RQ6' => '424',
   'RQ8' => '429',
-  'RQ9' => '246,428',
+  'RQ9' => '248,428',
   'RR0' => '435,431,436',
   'RR1' => '425',
-  'RR2' => '245',
+  'RR2' => '247',
   'RR3' => '426',
   'RR4' => '427',
   'RR6' => '424',
   'RR8' => '429',
-  'RR9' => '246,428',
+  'RR9' => '248,428',
   'RS0' => '435,431,436',
   'RS1' => '425',
-  'RS1P' => '244,421,422,423',
-  'RS2' => '245',
+  'RS1P' => '246,421,422,423',
+  'RS2' => '247',
   'RS3' => '426',
   'RS4' => '427',
   'RS6' => '424',
   'RS8' => '429',
-  'RS9' => '246,428',
+  'RS9' => '248,428',
   'RT0' => '435,431,436',
   'RT1' => '425',
-  'RT2' => '245',
+  'RT2' => '247',
   'RT3' => '426',
   'RT4' => '427',
   'RT6' => '424',
   'RT8' => '429',
-  'RT9' => '246,428',
+  'RT9' => '248,428',
   'RU0' => '435,431,436',
   'RU1' => '425',
-  'RU1P' => '244,421,422,423',
-  'RU2' => '245',
+  'RU1P' => '246,421,422,423',
+  'RU2' => '247',
   'RU3' => '426',
   'RU4' => '427',
   'RU6' => '424',
   'RU8' => '429',
-  'RU9' => '246,428',
+  'RU9' => '248,428',
   'RV0' => '435,431,436',
   'RV1' => '425',
-  'RV1P' => '244,421,422,423',
-  'RV2' => '245',
+  'RV1P' => '246,421,422,423',
+  'RV2' => '247',
   'RV3' => '426',
   'RV4' => '427',
   'RV6' => '424',
   'RV8' => '429',
-  'RV9' => '246,428',
+  'RV9' => '248,428',
   'RW0' => '435,431,436',
   'RW1' => '425',
-  'RW1P' => '244,421,422,423',
-  'RW2' => '245',
+  'RW1P' => '246,421,422,423',
+  'RW2' => '247',
   'RW3' => '426',
   'RW4' => '427',
   'RW6' => '424',
   'RW8' => '429',
-  'RW9' => '246,428',
+  'RW9' => '248,428',
   'RX0' => '435,431,436',
   'RX1' => '425',
-  'RX1P' => '244,421,422,423',
-  'RX2' => '245',
+  'RX1P' => '246,421,422,423',
+  'RX2' => '247',
   'RX3' => '426',
   'RX4' => '427',
   'RX6' => '424',
   'RX8' => '429',
-  'RX9' => '246,428',
+  'RX9' => '248,428',
   'RY0' => '435,431,436',
   'RY1' => '425',
-  'RY2' => '245',
+  'RY2' => '247',
   'RY3' => '426',
   'RY4' => '427',
   'RY6' => '424',
   'RY8' => '429',
-  'RY9' => '246,428',
+  'RY9' => '248,428',
   'RZ0' => '435,431,436',
   'RZ1' => '425',
-  'RZ1P' => '244,421,422,423',
-  'RZ2' => '245',
+  'RZ1P' => '246,421,422,423',
+  'RZ2' => '247',
   'RZ3' => '426',
   'RZ4' => '427',
   'RZ6' => '424',
   'RZ8' => '429',
-  'RZ9' => '246,428',
-  'S0' => '210',
-  'S2' => '211',
-  'S3' => '211',
-  'S4' => '541',
-  'S5' => '312',
+  'RZ9' => '248,428',
+  'S0' => '212',
+  'S2' => '213',
+  'S3' => '213',
+  'S4' => '542',
+  'S5' => '314',
   'S6' => '54',
-  'S7' => '212',
-  'S8' => '541',
-  'S9' => '213',
-  'SA' => '214',
-  'SB' => '214,413,414,415,416,417',
-  'SC' => '214',
-  'SD' => '214',
-  'SE' => '214',
-  'SF' => '214',
-  'SG' => '214',
-  'SH' => '214',
-  'SI' => '214',
-  'SJ' => '214',
-  'SK' => '214',
-  'SL' => '214',
-  'SM' => '214,413,414,415,416,417',
-  'SM1TDE' => '189',
-  'SN' => '215',
-  'SO' => '215',
-  'SP' => '215',
-  'SQ' => '215',
-  'SR' => '215',
-  'SS' => '218',
-  'SSB' => '334',
-  'ST' => '216',
-  'ST0' => '217',
-  'ST0K' => '216',
-  'SU' => '218',
-  'SV' => '219',
-  'SV/A' => '222',
-  'SV2ASP/A' => '222',
-  'SV5' => '220',
-  'SV9' => '221',
-  'SW' => '219',
-  'SW5' => '220',
-  'SW9' => '221',
-  'SX' => '219',
-  'SX5' => '220',
-  'SX9' => '221',
-  'SY' => '222',
-  'SZ' => '219',
-  'SZ5' => '220',
-  'SZ9' => '221',
-  'T0' => '334',
-  'T2' => '223',
-  'T3' => '224,418,226,419,227',
-  'T30' => '224',
-  'T31' => '225',
-  'T32' => '226,419',
-  'T33' => '227',
+  'S7' => '214',
+  'S8' => '542',
+  'S9' => '215',
+  'SA' => '216',
+  'SB' => '216,413,414,415,416,417',
+  'SC' => '216',
+  'SD' => '216',
+  'SE' => '216',
+  'SF' => '216',
+  'SG' => '216',
+  'SH' => '216',
+  'SI' => '216',
+  'SJ' => '216',
+  'SK' => '216',
+  'SL' => '216',
+  'SM' => '216,413,414,415,416,417',
+  'SM1TDE' => '191',
+  'SN' => '217',
+  'SO' => '217',
+  'SP' => '217',
+  'SQ' => '217',
+  'SR' => '217',
+  'SS' => '220',
+  'SSB' => '336',
+  'ST' => '218',
+  'ST0' => '219',
+  'ST0K' => '218',
+  'SU' => '220',
+  'SV' => '221',
+  'SV/A' => '224',
+  'SV2ASP/A' => '224',
+  'SV5' => '222',
+  'SV9' => '223',
+  'SW' => '221',
+  'SW5' => '222',
+  'SW9' => '223',
+  'SX' => '221',
+  'SX5' => '222',
+  'SX9' => '223',
+  'SY' => '224',
+  'SZ' => '221',
+  'SZ5' => '222',
+  'SZ9' => '223',
+  'T0' => '336',
+  'T2' => '225',
+  'T3' => '226,418,228,419,229',
+  'T30' => '226',
+  'T31' => '227',
+  'T32' => '228,419',
+  'T33' => '229',
   'T4' => '79',
-  'T5' => '228',
-  'T6' => '299',
-  'T7' => '229',
+  'T5' => '230',
+  'T6' => '301',
+  'T7' => '231',
   'T8' => '420',
-  'T88' => '165',
-  'T9' => '309',
-  'T93A/4U' => '136',
-  'TA' => '230',
-  'TB' => '230',
-  'TC' => '230',
-  'TD' => '232',
-  'TE' => '233',
-  'TE9' => '234',
-  'TF' => '231',
-  'TG' => '232',
+  'T88' => '167',
+  'T9' => '311',
+  'T93A/4U' => '138',
+  'TA' => '232',
+  'TB' => '232',
+  'TC' => '232',
+  'TD' => '234',
+  'TE' => '235',
+  'TE9' => '236',
+  'TF' => '233',
+  'TG' => '234',
   'TH' => '104',
-  'TI' => '233',
-  'TI9' => '234',
-  'TJ' => '235',
-  'TK' => '236',
-  'TL' => '237',
+  'TI' => '235',
+  'TI9' => '236',
+  'TJ' => '237',
+  'TK' => '238',
+  'TL' => '239',
   'TM' => '104',
-  'TN' => '238',
+  'TN' => '240',
   'TO' => '104',
   'TO0P' => '108',
   'TO2DX' => '108',
-  'TO3R' => '112,113,114,115',
+  'TO3R' => '114,115,116,117',
   'TO5A' => '108',
   'TO5G' => '105',
-  'TO5M' => '111',
+  'TO5M' => '113',
   'TO5MM' => '108',
   'TO5T' => '108',
-  'TO7I' => '111',
-  'TO8K' => '109,372,373,374,375,110',
-  'TO9IS' => '121',
+  'TO7I' => '113',
+  'TO8K' => '109,374,375,110,111,112',
+  'TO9IS' => '123',
   'TP' => '104',
   'TQ' => '104',
-  'TR' => '239',
+  'TR' => '241',
   'TS' => '13',
-  'TT' => '240',
-  'TU' => '241',
+  'TT' => '242',
+  'TU' => '243',
   'TV' => '104',
   'TW' => '104',
   'TX' => '104',
   'TX8FU' => '107',
-  'TY' => '242',
-  'TZ' => '243',
+  'TY' => '244',
+  'TZ' => '245',
   'U' => '424',
   'U0' => '435,431,436',
   'U1' => '425',
-  'U1P' => '244,421,422,423',
-  'U2' => '245,245',
+  'U1P' => '246,421,422,423',
+  'U2' => '247,247',
   'U3' => '426',
   'U4' => '427',
-  'U5' => '247',
+  'U5' => '249',
   'U6' => '424',
   'U8' => '429',
-  'U9' => '246,428',
-  'UA' => '244,421,422,423',
+  'U9' => '248,428',
+  'UA' => '246,421,422,423',
   'UA0' => '430,431,432,433,434',
   'UA1' => '425',
-  'UA1P' => '244,421,422,423',
-  'UA2' => '245,245',
+  'UA1P' => '246,421,422,423',
+  'UA2' => '247,247',
   'UA3' => '426',
-  'UA3YH/KC4' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
+  'UA3YH/KC4' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
   'UA4' => '427',
   'UA6' => '424',
   'UA8' => '429',
-  'UA9' => '246,428',
+  'UA9' => '248,428',
   'UB0' => '435,431,436',
   'UB1' => '425',
-  'UB2' => '245',
+  'UB2' => '247',
   'UB3' => '426',
   'UB4' => '427',
   'UB6' => '424',
   'UB8' => '429',
-  'UB9' => '246,428',
+  'UB9' => '248,428',
   'UC0' => '435,431,436',
   'UC1' => '425',
-  'UC2' => '245',
+  'UC2' => '247',
   'UC3' => '426',
   'UC4' => '427',
   'UC6' => '424',
   'UC8' => '429',
-  'UC9' => '246,428',
-  'UD' => '249',
+  'UC9' => '248,428',
+  'UD' => '251',
   'UD0' => '435,431,436',
   'UD1' => '425',
-  'UD2' => '245',
+  'UD2' => '247',
   'UD3' => '426',
   'UD4' => '427',
   'UD6' => '424',
   'UD8' => '429',
-  'UD9' => '246,428',
+  'UD9' => '248,428',
   'UE0' => '435,431,436',
   'UE1' => '425',
-  'UE1P' => '244,421,422,423',
-  'UE2' => '245',
+  'UE1P' => '246,421,422,423',
+  'UE2' => '247',
   'UE3' => '426',
   'UE4' => '427',
   'UE6' => '424',
   'UE8' => '429',
-  'UE9' => '246,428',
-  'UF' => '250',
+  'UE9' => '248,428',
+  'UF' => '252',
   'UF0' => '435,431,436',
   'UF1' => '425',
-  'UF2' => '245',
+  'UF2' => '247',
   'UF3' => '426',
   'UF4' => '427',
   'UF6' => '424',
   'UF8' => '429',
-  'UF9' => '246,428',
+  'UF9' => '248,428',
   'UG0' => '435,431,436',
   'UG1' => '425',
-  'UG2' => '245',
+  'UG2' => '247',
   'UG3' => '426',
   'UG4' => '427',
   'UG6' => '424',
   'UG8' => '429',
-  'UG9' => '246,428',
+  'UG9' => '248,428',
   'UH0' => '435,431,436',
   'UH1' => '425',
-  'UH2' => '245',
+  'UH2' => '247',
   'UH3' => '426',
   'UH4' => '427',
   'UH6' => '424',
   'UH8' => '429',
-  'UH9' => '246,428',
+  'UH9' => '248,428',
   'UI0' => '435,431,436',
   'UI1' => '425',
-  'UI2' => '245',
+  'UI2' => '247',
   'UI3' => '426',
   'UI4' => '427',
   'UI6' => '424',
   'UI8' => '429',
-  'UI9' => '246,428',
-  'UJ' => '253',
-  'UK' => '253',
-  'UL' => '253',
-  'UM' => '253',
-  'UN' => '255',
-  'UO' => '255',
-  'UP' => '255',
-  'UQ' => '255',
-  'UR' => '247',
-  'US' => '247',
-  'UT' => '247',
-  'UU' => '247',
-  'UV' => '247',
-  'UW' => '247',
-  'UX' => '247',
-  'UY' => '247',
-  'UZ' => '247',
-  'V2' => '284',
-  'V3' => '285',
-  'V4' => '286',
-  'V5' => '287',
-  'V50' => '287',
-  'V51' => '287',
-  'V6' => '289,469',
-  'V7' => '290',
-  'V8' => '288',
-  'VA' => '446',
-  'VA1' => '258,437,438',
+  'UI9' => '248,428',
+  'UJ' => '255',
+  'UK' => '255',
+  'UL' => '255',
+  'UM' => '255',
+  'UN' => '257',
+  'UO' => '257',
+  'UP' => '257',
+  'UQ' => '257',
+  'UR' => '249',
+  'US' => '249',
+  'UT' => '249',
+  'UU' => '249',
+  'UV' => '249',
+  'UW' => '249',
+  'UX' => '249',
+  'UY' => '249',
+  'UZ' => '249',
+  'V2' => '286',
+  'V3' => '287',
+  'V4' => '288',
+  'V5' => '289',
+  'V50' => '289',
+  'V51' => '289',
+  'V6' => '291,470',
+  'V7' => '292',
+  'V8' => '290',
+  'VA' => '447',
+  'VA1' => '260,438',
   'VA2' => '439',
   'VA3' => '440',
   'VA4' => '441',
   'VA6' => '443',
   'VA7' => '444',
   'VA8' => '445',
-  'VA9' => '258',
-  'VB' => '446',
-  'VB1' => '258,437,438',
+  'VA9' => '260',
+  'VB' => '447',
+  'VB1' => '260,438',
   'VB2' => '439',
   'VB3' => '440',
   'VB4' => '441',
   'VB6' => '443',
   'VB7' => '444',
   'VB8' => '445',
-  'VB9' => '258',
-  'VC' => '446',
-  'VC1' => '258,437,438',
+  'VB9' => '260',
+  'VC' => '447',
+  'VC1' => '260,438',
   'VC2' => '439',
   'VC3' => '440',
   'VC4' => '441',
   'VC6' => '443',
   'VC7' => '444',
   'VC8' => '445',
-  'VC9' => '258',
-  'VD' => '446',
-  'VD1' => '258,437,438',
+  'VC9' => '260',
+  'VD' => '447',
+  'VD1' => '260,438',
   'VD2' => '439',
   'VD3' => '440',
   'VD4' => '441',
   'VD6' => '443',
   'VD7' => '444',
   'VD8' => '445',
-  'VD9' => '258',
-  'VE' => '258,437,438,439,440,441,442,443,444,445',
-  'VE1' => '258,437,438',
+  'VD9' => '260',
+  'VE' => '260,437,438,439,440,441,442,443,444,445',
+  'VE1' => '260,438',
   'VE2' => '439',
   'VE3' => '440',
   'VE4' => '441',
   'VE6' => '443',
   'VE7' => '444',
   'VE8' => '445',
-  'VE9' => '258',
-  'VF' => '446',
-  'VF1' => '258,437,438',
+  'VE9' => '260',
+  'VF' => '447',
+  'VF1' => '260,438',
   'VF2' => '439',
   'VF3' => '440',
   'VF4' => '441',
   'VF6' => '443',
   'VF7' => '444',
   'VF8' => '445',
-  'VF9' => '258',
-  'VG' => '446',
-  'VG1' => '258,437,438',
+  'VF9' => '260',
+  'VG' => '447',
+  'VG1' => '260,438',
   'VG2' => '439',
   'VG3' => '440',
   'VG4' => '441',
   'VG6' => '443',
   'VG7' => '444',
   'VG8' => '445',
-  'VG9' => '258',
-  'VH' => '454',
-  'VH0' => '267',
-  'VH1' => '455',
-  'VH2' => '456',
-  'VH3' => '457',
-  'VH4' => '458',
-  'VH5' => '459',
-  'VH6' => '460',
-  'VH7' => '461',
-  'VH8' => '462',
-  'VH9' => '264',
-  'VH9C' => '463',
-  'VH9L' => '260',
-  'VH9M' => '263',
-  'VH9W' => '265',
-  'VH9X' => '261',
-  'VH9Y' => '463',
-  'VI' => '454',
-  'VI0' => '267',
-  'VI0ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VI1' => '455',
-  'VI2' => '456',
-  'VI3' => '457',
-  'VI4' => '458',
-  'VI5' => '459',
-  'VI6' => '460',
-  'VI7' => '461',
-  'VI8' => '462',
-  'VI9' => '264',
-  'VI9C' => '463',
-  'VI9L' => '260',
-  'VI9M' => '263',
-  'VI9W' => '265',
-  'VI9X' => '261',
-  'VI9Y' => '463',
-  'VJ' => '454',
-  'VJ0' => '267',
-  'VJ1' => '455',
-  'VJ2' => '456',
-  'VJ3' => '457',
-  'VJ4' => '458',
-  'VJ5' => '459',
-  'VJ6' => '460',
-  'VJ7' => '461',
-  'VJ8' => '462',
-  'VJ9' => '264',
-  'VJ9C' => '463',
-  'VJ9L' => '260',
-  'VJ9M' => '263',
-  'VJ9W' => '265',
-  'VJ9X' => '261',
-  'VJ9Y' => '463',
-  'VK' => '259,447,448,449,450,451,452,453',
-  'VK0' => '266,267',
-  'VK0/H' => '266',
-  'VK0/M' => '267',
-  'VK0AQ' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0CK' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0CL' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0ERZ' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0FPS' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0HI' => '266',
-  'VK0IC' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0KC' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0LL' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0MP' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0NE' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0PD' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0PN' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK0WD' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VK1' => '455',
-  'VK2' => '456',
-  'VK3' => '457',
-  'VK4' => '458',
-  'VK5' => '459',
-  'VK6' => '460',
-  'VK7' => '461',
-  'VK8' => '462',
-  'VK9' => '260,261,463,263,264,265',
-  'VK9/L' => '260',
-  'VK9/N' => '264',
-  'VK9/W' => '265',
-  'VK9/X' => '261',
-  'VK9/Y' => '262',
-  'VK9/Z' => '263',
-  'VK9AE' => '260',
-  'VK9C' => '463',
-  'VK9EW' => '463',
-  'VK9GA' => '261',
-  'VK9GS' => '265',
-  'VK9KC' => '463',
-  'VK9KL' => '260',
-  'VK9KM' => '263',
-  'VK9KN' => '264',
-  'VK9KW' => '265',
-  'VK9KX' => '261',
-  'VK9L' => '260',
-  'VK9M' => '263',
-  'VK9N' => '264',
-  'VK9NC' => '463',
-  'VK9NL' => '260',
-  'VK9NM' => '263',
-  'VK9NN' => '264',
-  'VK9NW' => '265',
-  'VK9NX' => '261',
-  'VK9TR' => '265',
-  'VK9W' => '265',
-  'VK9WB' => '463',
-  'VK9X' => '261',
-  'VK9Y' => '463',
-  'VK9YQS' => '260',
-  'VK9ZC' => '463',
-  'VK9ZG' => '265',
-  'VK9ZL' => '260',
-  'VK9ZM' => '263',
-  'VK9ZN' => '264',
-  'VK9ZW' => '265',
-  'VK9ZX' => '261',
-  'VL' => '454',
-  'VL0' => '267',
-  'VL1' => '455',
-  'VL2' => '456',
-  'VL3' => '457',
-  'VL4' => '458',
-  'VL5' => '459',
-  'VL6' => '460',
-  'VL7' => '461',
-  'VL8' => '462',
-  'VL9' => '264',
-  'VL9C' => '463',
-  'VL9L' => '260',
-  'VL9M' => '263',
-  'VL9W' => '265',
-  'VL9X' => '261',
-  'VL9Y' => '463',
-  'VM' => '454',
-  'VM0' => '267',
-  'VM1' => '258,437,438',
+  'VG9' => '260',
+  'VH' => '455',
+  'VH0' => '269',
+  'VH1' => '456',
+  'VH2' => '457',
+  'VH3' => '458',
+  'VH4' => '459',
+  'VH5' => '460',
+  'VH6' => '461',
+  'VH7' => '462',
+  'VH8' => '463',
+  'VH9' => '266',
+  'VH9C' => '464',
+  'VH9L' => '262',
+  'VH9M' => '265',
+  'VH9W' => '267',
+  'VH9X' => '263',
+  'VH9Y' => '464',
+  'VI' => '455',
+  'VI0' => '269',
+  'VI0ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VI1' => '456',
+  'VI2' => '457',
+  'VI3' => '458',
+  'VI4' => '459',
+  'VI5' => '460',
+  'VI6' => '461',
+  'VI7' => '462',
+  'VI8' => '463',
+  'VI9' => '266',
+  'VI9C' => '464',
+  'VI9L' => '262',
+  'VI9M' => '265',
+  'VI9W' => '267',
+  'VI9X' => '263',
+  'VI9Y' => '464',
+  'VJ' => '455',
+  'VJ0' => '269',
+  'VJ1' => '456',
+  'VJ2' => '457',
+  'VJ3' => '458',
+  'VJ4' => '459',
+  'VJ5' => '460',
+  'VJ6' => '461',
+  'VJ7' => '462',
+  'VJ8' => '463',
+  'VJ9' => '266',
+  'VJ9C' => '464',
+  'VJ9L' => '262',
+  'VJ9M' => '265',
+  'VJ9W' => '267',
+  'VJ9X' => '263',
+  'VJ9Y' => '464',
+  'VK' => '261,448,449,450,451,452,453,454',
+  'VK0' => '268,269',
+  'VK0/H' => '268',
+  'VK0/M' => '269',
+  'VK0AQ' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0CK' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0CL' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0ERZ' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0FPS' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0HI' => '268',
+  'VK0IC' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0KC' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0LL' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0MP' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0NE' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0PD' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0PN' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK0WD' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VK1' => '456',
+  'VK2' => '457',
+  'VK3' => '458',
+  'VK4' => '459',
+  'VK5' => '460',
+  'VK6' => '461',
+  'VK7' => '462',
+  'VK8' => '463',
+  'VK9' => '262,263,464,265,266,267',
+  'VK9/L' => '262',
+  'VK9/N' => '266',
+  'VK9/W' => '267',
+  'VK9/X' => '263',
+  'VK9/Y' => '264',
+  'VK9/Z' => '265',
+  'VK9AE' => '262',
+  'VK9C' => '464',
+  'VK9EW' => '464',
+  'VK9GA' => '263',
+  'VK9GS' => '267',
+  'VK9KC' => '464',
+  'VK9KL' => '262',
+  'VK9KM' => '265',
+  'VK9KN' => '266',
+  'VK9KW' => '267',
+  'VK9KX' => '263',
+  'VK9L' => '262',
+  'VK9M' => '265',
+  'VK9N' => '266',
+  'VK9NC' => '464',
+  'VK9NL' => '262',
+  'VK9NM' => '265',
+  'VK9NN' => '266',
+  'VK9NW' => '267',
+  'VK9NX' => '263',
+  'VK9TR' => '267',
+  'VK9W' => '267',
+  'VK9WB' => '464',
+  'VK9X' => '263',
+  'VK9Y' => '464',
+  'VK9YQS' => '262',
+  'VK9ZC' => '464',
+  'VK9ZG' => '267',
+  'VK9ZL' => '262',
+  'VK9ZM' => '265',
+  'VK9ZN' => '266',
+  'VK9ZW' => '267',
+  'VK9ZX' => '263',
+  'VL' => '455',
+  'VL0' => '269',
+  'VL1' => '456',
+  'VL2' => '457',
+  'VL3' => '458',
+  'VL4' => '459',
+  'VL5' => '460',
+  'VL6' => '461',
+  'VL7' => '462',
+  'VL8' => '463',
+  'VL9' => '266',
+  'VL9C' => '464',
+  'VL9L' => '262',
+  'VL9M' => '265',
+  'VL9W' => '267',
+  'VL9X' => '263',
+  'VL9Y' => '464',
+  'VM' => '455',
+  'VM0' => '269',
+  'VM1' => '260,438',
   'VM2' => '439',
   'VM3' => '440',
   'VM4' => '441',
   'VM6' => '443',
   'VM7' => '444',
   'VM8' => '445',
-  'VM9' => '258',
-  'VM9C' => '463',
-  'VM9L' => '260',
-  'VM9M' => '263',
-  'VM9W' => '265',
-  'VM9X' => '261',
-  'VM9Y' => '463',
-  'VN' => '454',
-  'VN0' => '267',
-  'VN1' => '455',
-  'VN2' => '456',
-  'VN3' => '457',
-  'VN4' => '458',
-  'VN5' => '459',
-  'VN6' => '460',
-  'VN7' => '461',
-  'VN8' => '462',
-  'VN9' => '264',
-  'VN9C' => '463',
-  'VN9L' => '260',
-  'VN9M' => '263',
-  'VN9W' => '265',
-  'VN9X' => '261',
-  'VN9Y' => '463',
-  'VO' => '446',
-  'VO1' => '258',
-  'VO2' => '437',
-  'VP29E' => '268',
-  'VP2E' => '268',
-  'VP2M' => '269',
-  'VP2V' => '270',
-  'VP5' => '271',
-  'VP6' => '277',
-  'VP8' => '273,274,275,276,272',
-  'VP8/F' => '272',
-  'VP8/G' => '273',
-  'VP8/GB4MSS' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8/H' => '276',
-  'VP8/O' => '274',
-  'VP8/S' => '275',
-  'VP8BQE' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8BRT' => '274',
-  'VP8BUB' => '273',
-  'VP8BXK' => '274',
-  'VP8CBA' => '273',
-  'VP8CBL' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CDJ' => '273',
-  'VP8CES' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CFM' => '274',
-  'VP8CGE' => '273',
-  'VP8CGK' => '273',
-  'VP8CID' => '273',
-  'VP8CIZ' => '273',
-  'VP8CKB' => '273',
-  'VP8CLR' => '273',
-  'VP8CMR' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CQC' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CQS' => '276',
-  'VP8CRE' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CRI' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8CSE' => '274',
-  'VP8FAR' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8GAV' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8LU' => '274',
-  'VP8ROT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VP8SGB' => '273',
-  'VP8SGP' => '273',
-  'VP8SSI' => '275',
-  'VP9' => '278',
-  'VQ9' => '279',
-  'VR2' => '464',
-  'VR6' => '277',
-  'VR8B' => '277',
-  'VS' => '280',
-  'VS6' => '464',
-  'VT' => '468',
-  'VT4' => '282',
-  'VT7' => '282,283',
-  'VU' => '281,465,466',
-  'VU2AXA/P' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VU2MSW/P' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VU3HKQ' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'VU4' => '282',
-  'VU7' => '282,283',
-  'VU7/A' => '282',
-  'VU7/L' => '283',
-  'VV' => '468',
-  'VV4' => '282',
-  'VV7' => '282,283',
-  'VW' => '468',
-  'VW4' => '282',
-  'VW7' => '282,283',
-  'VX' => '446',
-  'VX1' => '258,437,438',
+  'VM9' => '260',
+  'VM9C' => '464',
+  'VM9L' => '262',
+  'VM9M' => '265',
+  'VM9W' => '267',
+  'VM9X' => '263',
+  'VM9Y' => '464',
+  'VN' => '455',
+  'VN0' => '269',
+  'VN1' => '456',
+  'VN2' => '457',
+  'VN3' => '458',
+  'VN4' => '459',
+  'VN5' => '460',
+  'VN6' => '461',
+  'VN7' => '462',
+  'VN8' => '463',
+  'VN9' => '266',
+  'VN9C' => '464',
+  'VN9L' => '262',
+  'VN9M' => '265',
+  'VN9W' => '267',
+  'VN9X' => '263',
+  'VN9Y' => '464',
+  'VO' => '447',
+  'VO1' => '437',
+  'VO2' => '446',
+  'VP29E' => '270',
+  'VP2E' => '270',
+  'VP2M' => '271',
+  'VP2V' => '272',
+  'VP5' => '273',
+  'VP6' => '279',
+  'VP8' => '275,276,277,278,274',
+  'VP8/F' => '274',
+  'VP8/G' => '275',
+  'VP8/GB4MSS' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8/H' => '278',
+  'VP8/O' => '276',
+  'VP8/S' => '277',
+  'VP8BQE' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8BRT' => '276',
+  'VP8BUB' => '275',
+  'VP8BXK' => '276',
+  'VP8CBA' => '275',
+  'VP8CBL' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CDJ' => '275',
+  'VP8CES' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CFM' => '276',
+  'VP8CGE' => '275',
+  'VP8CGK' => '275',
+  'VP8CID' => '275',
+  'VP8CIZ' => '275',
+  'VP8CKB' => '275',
+  'VP8CLR' => '275',
+  'VP8CMR' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CQC' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CQS' => '278',
+  'VP8CRE' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CRI' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8CSE' => '276',
+  'VP8FAR' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8GAV' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8LU' => '276',
+  'VP8ROT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VP8SGB' => '275',
+  'VP8SGP' => '275',
+  'VP8SSI' => '277',
+  'VP9' => '280',
+  'VQ9' => '281',
+  'VR2' => '465',
+  'VR6' => '279',
+  'VR8B' => '279',
+  'VS' => '282',
+  'VS6' => '465',
+  'VT' => '469',
+  'VT4' => '284',
+  'VT7' => '284,285',
+  'VU' => '283,466,467',
+  'VU2AXA/P' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VU2MSW/P' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VU3HKQ' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'VU4' => '284',
+  'VU7' => '284,285',
+  'VU7/A' => '284',
+  'VU7/L' => '285',
+  'VV' => '469',
+  'VV4' => '284',
+  'VV7' => '284,285',
+  'VW' => '469',
+  'VW4' => '284',
+  'VW7' => '284,285',
+  'VX' => '447',
+  'VX1' => '260,438',
   'VX2' => '439',
   'VX3' => '440',
   'VX4' => '441',
   'VX6' => '443',
   'VX7' => '444',
   'VX8' => '445',
-  'VX9' => '258',
-  'VY' => '446',
+  'VX9' => '260',
+  'VY' => '447',
   'VY1' => '445',
   'VY2' => '439',
   'VY3' => '440',
   'VY6' => '443',
   'VY7' => '444',
   'VY8' => '445',
-  'VY9' => '258',
-  'VZ' => '454',
-  'VZ0' => '267',
-  'VZ1' => '455',
-  'VZ2' => '456',
-  'VZ3' => '457',
-  'VZ4' => '458',
-  'VZ5' => '459',
-  'VZ6' => '460',
-  'VZ7' => '461',
-  'VZ8' => '462',
-  'VZ9' => '264',
-  'VZ9C' => '463',
-  'VZ9L' => '260',
-  'VZ9M' => '263',
-  'VZ9W' => '265',
-  'VZ9X' => '261',
-  'VZ9Y' => '463',
-  'W' => '291',
-  'W0' => '515,516,517,518,519,520,521,522',
-  'W1' => '471,472,473,474,475,476',
-  'W2' => '477,478',
-  'W3' => '479,480,481,482',
-  'W4' => '483,484,485,486,487,488,489,490',
-  'W5' => '491,492,493,494,495,496',
-  'W6' => '497,498,499,500',
-  'W7' => '501,502,503,504,505,506,507,508',
-  'W8' => '509,510,511',
-  'W9' => '512,513,514',
-  'WA' => '291',
-  'WB' => '291',
-  'WC' => '291',
-  'WD' => '291',
-  'WE' => '291',
-  'WF' => '291',
-  'WG' => '291',
-  'WH0' => '177',
-  'WH1' => '167',
-  'WH2' => '168',
-  'WH3' => '169',
-  'WH4' => '170',
-  'WH5' => '171',
-  'WH5K' => '172',
-  'WH6' => '173,389',
-  'WH7' => '173,389',
-  'WH7K' => '174',
-  'WH8' => '175',
-  'WH9' => '176',
-  'WI' => '291',
-  'WJ' => '291',
-  'WK' => '291',
+  'VY9' => '260',
+  'VZ' => '455',
+  'VZ0' => '269',
+  'VZ1' => '456',
+  'VZ2' => '457',
+  'VZ3' => '458',
+  'VZ4' => '459',
+  'VZ5' => '460',
+  'VZ6' => '461',
+  'VZ7' => '462',
+  'VZ8' => '463',
+  'VZ9' => '266',
+  'VZ9C' => '464',
+  'VZ9L' => '262',
+  'VZ9M' => '265',
+  'VZ9W' => '267',
+  'VZ9X' => '263',
+  'VZ9Y' => '464',
+  'W' => '293',
+  'W0' => '516,517,518,519,520,521,522,523',
+  'W1' => '472,473,474,475,476,477',
+  'W2' => '478,479',
+  'W3' => '480,481,482,483',
+  'W4' => '484,485,486,487,488,489,490,491',
+  'W5' => '492,493,494,495,496,497',
+  'W6' => '498,499,500,501',
+  'W7' => '502,503,504,505,506,507,508,509',
+  'W8' => '510,511,512',
+  'W9' => '513,514,515',
+  'WA' => '293',
+  'WB' => '293',
+  'WC' => '293',
+  'WD' => '293',
+  'WE' => '293',
+  'WF' => '293',
+  'WG' => '293',
+  'WH0' => '179',
+  'WH1' => '169',
+  'WH2' => '170',
+  'WH3' => '171',
+  'WH4' => '172',
+  'WH5' => '173',
+  'WH5K' => '174',
+  'WH6' => '175,389',
+  'WH7' => '175,389',
+  'WH7K' => '176',
+  'WH8' => '177',
+  'WH9' => '178',
+  'WI' => '293',
+  'WJ' => '293',
+  'WK' => '293',
   'WL' => '392',
   'WL7' => '393',
-  'WL7WO' => '291',
-  'WL7Y' => '291',
-  'WM' => '291',
-  'WN' => '291',
-  'WN4KKN' => '291',
-  'WO' => '291',
-  'WP1' => '179',
-  'WP2' => '180',
-  'WP3' => '181',
-  'WP4' => '181',
-  'WP5' => '182',
-  'WQ' => '291',
-  'WR' => '291',
-  'WS' => '291',
-  'WT' => '291',
-  'WU' => '291',
-  'WV' => '291',
-  'WW' => '291',
-  'WY' => '291',
-  'WZ' => '291',
-  'X5' => '334',
-  'X8' => '334',
-  'XA' => '525',
-  'XA4' => '293',
-  'XB' => '525',
-  'XB4' => '293',
-  'XC' => '525',
-  'XC4' => '293',
-  'XD' => '525',
-  'XD4' => '293',
-  'XE' => '292,523,524',
-  'XE1' => '526',
-  'XE2' => '527',
-  'XE3' => '525',
-  'XE4' => '293',
-  'XF' => '525',
-  'XF0C' => '293',
-  'XF4' => '293',
-  'XG' => '525',
-  'XG4' => '293',
-  'XH' => '525',
-  'XH4' => '293',
-  'XI' => '446,525',
-  'XI4' => '293',
-  'XJ' => '446',
-  'XJ1' => '258,437,438',
+  'WL7WO' => '293',
+  'WL7Y' => '293',
+  'WM' => '293',
+  'WN' => '293',
+  'WN4KKN' => '293',
+  'WO' => '293',
+  'WP1' => '181',
+  'WP2' => '182',
+  'WP3' => '183',
+  'WP4' => '183',
+  'WP5' => '184',
+  'WQ' => '293',
+  'WR' => '293',
+  'WS' => '293',
+  'WT' => '293',
+  'WU' => '293',
+  'WV' => '293',
+  'WW' => '293',
+  'WY' => '293',
+  'WZ' => '293',
+  'X5' => '336',
+  'X8' => '336',
+  'XA' => '526',
+  'XA4' => '295',
+  'XB' => '526',
+  'XB4' => '295',
+  'XC' => '526',
+  'XC4' => '295',
+  'XD' => '526',
+  'XD4' => '295',
+  'XE' => '294,524,525',
+  'XE1' => '527',
+  'XE2' => '528',
+  'XE3' => '526',
+  'XE4' => '295',
+  'XF' => '526',
+  'XF0C' => '295',
+  'XF4' => '295',
+  'XG' => '526',
+  'XG4' => '295',
+  'XH' => '526',
+  'XH4' => '295',
+  'XI' => '447,526',
+  'XI4' => '295',
+  'XJ' => '447',
+  'XJ1' => '260,438',
   'XJ2' => '439',
   'XJ3' => '440',
   'XJ4' => '441',
   'XJ6' => '443',
   'XJ7' => '444',
   'XJ8' => '445',
-  'XJ9' => '258',
-  'XK' => '446',
-  'XK1' => '258,437,438',
+  'XJ9' => '260',
+  'XK' => '447',
+  'XK1' => '260,438',
   'XK2' => '439',
   'XK3' => '440',
   'XK4' => '441',
   'XK6' => '443',
   'XK7' => '444',
   'XK8' => '445',
-  'XK9' => '258',
-  'XL' => '446',
-  'XL1' => '258,437,438',
+  'XK9' => '260',
+  'XL' => '447',
+  'XL1' => '260,438',
   'XL2' => '439',
   'XL3' => '440',
   'XL4' => '441',
   'XL6' => '443',
   'XL7' => '444',
   'XL8' => '445',
-  'XL9' => '258',
-  'XM' => '446',
-  'XN' => '446',
-  'XN1' => '258,437,438',
+  'XL9' => '260',
+  'XM' => '447',
+  'XN' => '447',
+  'XN1' => '260,438',
   'XN2' => '439',
   'XN3' => '440',
   'XN4' => '441',
   'XN6' => '443',
   'XN7' => '444',
   'XN8' => '445',
-  'XN9' => '258',
-  'XO' => '446',
-  'XO1' => '258,437,438',
+  'XN9' => '260',
+  'XO' => '447',
+  'XO1' => '260,438',
   'XO2' => '439',
   'XO3' => '440',
   'XO4' => '441',
   'XO6' => '443',
   'XO7' => '444',
   'XO8' => '445',
-  'XO9' => '258',
-  'XP' => '199',
+  'XO9' => '260',
+  'XP' => '201',
   'XQ' => '74,74',
   'XQ0' => '76',
   'XQ0X' => '77',
   'XR' => '74',
   'XR0' => '76',
   'XR0X' => '77',
-  'XS' => '348',
-  'XT' => '294',
-  'XU' => '295',
+  'XS' => '350',
+  'XT' => '296',
+  'XU' => '297',
   'XV' => '14',
-  'XW' => '296',
-  'XX' => '297',
-  'XX9' => '297',
-  'XY' => '298',
-  'XZ' => '298',
-  'Y88POL' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
+  'XW' => '298',
+  'XX' => '299',
+  'XX9' => '299',
+  'XY' => '300',
+  'XZ' => '300',
+  'Y88POL' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
   'Y90' => '388',
-  'Y90ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'YA' => '299',
-  'YB' => '300,528,529',
-  'YC' => '300',
-  'YD' => '300',
-  'YE' => '300',
-  'YF' => '300',
-  'YG' => '300',
-  'YH' => '300',
-  'YI' => '301',
-  'YJ' => '302',
-  'YK' => '303',
-  'YL' => '304',
-  'YM' => '230',
-  'YN' => '305',
-  'YO' => '306',
-  'YP' => '306',
-  'YQ' => '306',
-  'YR' => '306',
-  'YS' => '307',
-  'YT' => '530',
-  'YU' => '308',
-  'YU5' => '310',
-  'YV' => '313',
-  'YV0' => '314',
-  'YW' => '313',
-  'YW0' => '314',
-  'YX' => '313',
-  'YX0' => '314',
-  'YY' => '313',
-  'YY0' => '314',
-  'YZ' => '530',
-  'Z2' => '321',
-  'Z3' => '310',
-  'ZA' => '315',
-  'ZB' => '316',
-  'ZC4' => '317',
-  'ZC6' => '334',
-  'ZD7' => '318',
-  'ZD8' => '319',
-  'ZD9' => '320',
-  'ZE' => '321',
-  'ZF' => '322',
-  'ZG' => '316',
-  'ZG2' => '316',
-  'ZK1' => '323,324',
-  'ZK1/N' => '323',
-  'ZK1/S' => '324',
-  'ZK1AAH' => '323',
-  'ZK1AJJ' => '323',
-  'ZK1AL' => '323',
-  'ZK1AR' => '323',
-  'ZK1AT' => '323',
-  'ZK1BW' => '323',
-  'ZK1BY' => '323',
-  'ZK1CQ' => '323',
-  'ZK1DT' => '323',
-  'ZK1HU' => '323',
-  'ZK1KH' => '323',
-  'ZK1OQ' => '323',
-  'ZK1TW' => '323',
-  'ZK1UVO' => '323',
-  'ZK1VDX' => '323',
-  'ZK1VTK' => '323',
-  'ZK1WL' => '323',
-  'ZK1XP' => '323',
-  'ZK1XR' => '323',
-  'ZK1XY' => '323',
-  'ZK2' => '325',
-  'ZK3' => '326',
-  'ZL' => '327,531,532,533',
-  'ZL0' => '538',
-  'ZL0AAF' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'ZL0AIC' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'ZL1' => '535',
-  'ZL2' => '536',
-  'ZL3' => '537',
-  'ZL4' => '534',
-  'ZL5' => '538',
-  'ZL7' => '328',
-  'ZL8' => '329',
-  'ZL9' => '330',
-  'ZM' => '534',
-  'ZM0' => '538',
-  'ZM1' => '535',
-  'ZM2' => '536',
-  'ZM3' => '537',
-  'ZM4' => '534',
-  'ZM7' => '328',
-  'ZM8' => '329',
-  'ZM9' => '330',
-  'ZP' => '331',
-  'ZR' => '541',
-  'ZR1' => '542',
-  'ZR2' => '333',
-  'ZR4' => '543',
-  'ZR5' => '544',
-  'ZR6' => '541',
-  'ZR8' => '333',
-  'ZS' => '332,539,540',
-  'ZS1' => '542',
-  'ZS2' => '333',
-  'ZS4' => '543',
-  'ZS5' => '544',
-  'ZS6' => '541',
-  'ZS7ANT' => '75,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368',
-  'ZS8' => '333',
-  'ZT' => '541',
-  'ZT1' => '542',
-  'ZT2' => '333',
-  'ZT4' => '543',
-  'ZT5' => '544',
-  'ZT8' => '333',
-  'ZU' => '541',
-  'ZU1' => '542',
-  'ZU2' => '333',
-  'ZU4' => '543',
-  'ZU5' => '544',
-  'ZU6' => '541',
-  'ZU8' => '333',
+  'Y90ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'YA' => '301',
+  'YB' => '302,529,530',
+  'YC' => '302',
+  'YD' => '302',
+  'YE' => '302',
+  'YF' => '302',
+  'YG' => '302',
+  'YH' => '302',
+  'YI' => '303',
+  'YJ' => '304',
+  'YK' => '305',
+  'YL' => '306',
+  'YM' => '232',
+  'YN' => '307',
+  'YO' => '308',
+  'YP' => '308',
+  'YQ' => '308',
+  'YR' => '308',
+  'YS' => '309',
+  'YT' => '531',
+  'YU' => '310',
+  'YU5' => '312',
+  'YV' => '315',
+  'YV0' => '316',
+  'YW' => '315',
+  'YW0' => '316',
+  'YX' => '315',
+  'YX0' => '316',
+  'YY' => '315',
+  'YY0' => '316',
+  'YZ' => '531',
+  'Z2' => '323',
+  'Z3' => '312',
+  'ZA' => '317',
+  'ZB' => '318',
+  'ZC4' => '319',
+  'ZC6' => '336',
+  'ZD7' => '320',
+  'ZD8' => '321',
+  'ZD9' => '322',
+  'ZE' => '323',
+  'ZF' => '324',
+  'ZG' => '318',
+  'ZG2' => '318',
+  'ZK1' => '325,326',
+  'ZK1/N' => '325',
+  'ZK1/S' => '326',
+  'ZK1AAH' => '325',
+  'ZK1AJJ' => '325',
+  'ZK1AL' => '325',
+  'ZK1AR' => '325',
+  'ZK1AT' => '325',
+  'ZK1BW' => '325',
+  'ZK1BY' => '325',
+  'ZK1CQ' => '325',
+  'ZK1DT' => '325',
+  'ZK1HU' => '325',
+  'ZK1KH' => '325',
+  'ZK1OQ' => '325',
+  'ZK1TW' => '325',
+  'ZK1UVO' => '325',
+  'ZK1VDX' => '325',
+  'ZK1VTK' => '325',
+  'ZK1WL' => '325',
+  'ZK1XP' => '325',
+  'ZK1XR' => '325',
+  'ZK1XY' => '325',
+  'ZK2' => '327',
+  'ZK3' => '328',
+  'ZL' => '329,532,533,534',
+  'ZL0' => '539',
+  'ZL0AAF' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'ZL0AIC' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'ZL1' => '536',
+  'ZL2' => '537',
+  'ZL3' => '538',
+  'ZL4' => '535',
+  'ZL5' => '539',
+  'ZL7' => '330',
+  'ZL8' => '331',
+  'ZL9' => '332',
+  'ZM' => '535',
+  'ZM0' => '539',
+  'ZM1' => '536',
+  'ZM2' => '537',
+  'ZM3' => '538',
+  'ZM4' => '535',
+  'ZM7' => '330',
+  'ZM8' => '331',
+  'ZM9' => '332',
+  'ZP' => '333',
+  'ZR' => '542',
+  'ZR1' => '543',
+  'ZR2' => '335',
+  'ZR4' => '544',
+  'ZR5' => '545',
+  'ZR6' => '542',
+  'ZR8' => '335',
+  'ZS' => '334,540,541',
+  'ZS1' => '543',
+  'ZS2' => '335',
+  'ZS4' => '544',
+  'ZS5' => '545',
+  'ZS6' => '542',
+  'ZS7ANT' => '75,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370',
+  'ZS8' => '335',
+  'ZT' => '542',
+  'ZT1' => '543',
+  'ZT2' => '335',
+  'ZT4' => '544',
+  'ZT5' => '545',
+  'ZT8' => '335',
+  'ZU' => '542',
+  'ZU1' => '543',
+  'ZU2' => '335',
+  'ZU4' => '544',
+  'ZU5' => '545',
+  'ZU6' => '542',
+  'ZU8' => '335',
   'ZV' => '412',
-  'ZV0ASN' => '276',
-  'ZV0F' => '206,206',
-  'ZV0S' => '207,207',
-  'ZV0T' => '208,208',
-  'ZV0ZF' => '206,206',
-  'ZV0ZS' => '207,207',
-  'ZV0ZT' => '208,208',
+  'ZV0ASN' => '278',
+  'ZV0F' => '208,208',
+  'ZV0S' => '209,209',
+  'ZV0T' => '210,210',
+  'ZV0ZF' => '208,208',
+  'ZV0ZS' => '209,209',
+  'ZV0ZT' => '210,210',
   'ZW' => '412',
-  'ZW0F' => '206,206',
-  'ZW0S' => '207,207',
-  'ZW0T' => '208,208',
-  'ZW0ZF' => '206,206',
-  'ZW0ZS' => '207,207',
-  'ZW0ZT' => '208,208',
+  'ZW0F' => '208,208',
+  'ZW0S' => '209,209',
+  'ZW0T' => '210,210',
+  'ZW0ZF' => '208,208',
+  'ZW0ZS' => '209,209',
+  'ZW0ZT' => '210,210',
   'ZX' => '412',
-  'ZX0ECF' => '276',
-  'ZX0F' => '206',
-  'ZX0S' => '207',
-  'ZX0T' => '208',
-  'ZX0ZF' => '206,206',
-  'ZX0ZS' => '207,207',
-  'ZX0ZT' => '208,208',
+  'ZX0ECF' => '278',
+  'ZX0F' => '208',
+  'ZX0S' => '209',
+  'ZX0T' => '210',
+  'ZX0ZF' => '208,208',
+  'ZX0ZS' => '209,209',
+  'ZX0ZT' => '210,210',
   'ZY' => '411,412',
-  'ZY0F' => '206',
-  'ZY0S' => '207',
-  'ZY0T' => '208',
-  'ZY0ZF' => '206,206',
-  'ZY0ZS' => '207,207',
-  'ZY0ZT' => '208,208',
+  'ZY0F' => '208',
+  'ZY0S' => '209',
+  'ZY0T' => '210',
+  'ZY0ZF' => '208,208',
+  'ZY0ZS' => '209,209',
+  'ZY0ZT' => '210,210',
   'ZZ' => '412',
-  'ZZ0F' => '206',
-  'ZZ0S' => '207',
-  'ZZ0T' => '208',
-  'ZZ0ZF' => '206,206',
-  'ZZ0ZS' => '207,207',
-  'ZZ0ZT' => '208,208',
+  'ZZ0F' => '208',
+  'ZZ0S' => '209',
+  'ZZ0T' => '210',
+  'ZZ0ZF' => '208,208',
+  'ZZ0ZS' => '209,209',
+  'ZZ0ZT' => '210,210',
 );
 
 
    5 => bless( { name => 'Mauritius-3B8', dxcc => 273, itu => 53, cq => 39, utcoff => -4.0, lat => -20.3, long => 57.5 }, 'Prefix'),
    6 => bless( { name => 'Rodriguez-Is-3B9', dxcc => 274, itu => 53, cq => 39, utcoff => -4.0, lat => -19.7, long => 63.4 }, 'Prefix'),
    7 => bless( { name => 'Equatorial-Guinea-3C', dxcc => 275, itu => 47, cq => 36, utcoff => -1.0, lat => 1.8, long => 10 }, 'Prefix'),
-   8 => bless( { name => 'Annobon-3C0', dxcc => 276, itu => 52, cq => 36, utcoff => 0.0, lat => 1.5, long => 5.6 }, 'Prefix'),
+   8 => bless( { name => 'Annobon-3C0', dxcc => 276, itu => 52, cq => 36, utcoff => 0.0, lat => -1.5, long => 5.6 }, 'Prefix'),
    9 => bless( { name => 'Conway-Reef-3D2/C', dxcc => 321, itu => 56, cq => 32, utcoff => -13.0, lat => -21.7333333333333, long => 174.633333333333 }, 'Prefix'),
    10 => bless( { name => 'Fiji-Islands-3D2/F', dxcc => 277, itu => 56, cq => 32, utcoff => -12.0, lat => -17, long => 178 }, 'Prefix'),
    11 => bless( { name => 'Rotuma-3D2/R', dxcc => 324, itu => 56, cq => 32, utcoff => -12.0, lat => -12.5, long => 177 }, 'Prefix'),
    15 => bless( { name => 'Guinea-3X', dxcc => 280, itu => 46, cq => 35, utcoff => 0.0, lat => 10, long => -13 }, 'Prefix'),
    16 => bless( { name => 'Bouvet-Is-3Y/B', dxcc => 281, itu => 67, cq => 38, utcoff => 0.0, lat => -54.5, long => 3 }, 'Prefix'),
    17 => bless( { name => 'Peter-Is-3Y/P', dxcc => 320, itu => 72, cq => 12, utcoff => 6.0, lat => -68.8166666666667, long => -90.7333333333333 }, 'Prefix'),
-   18 => bless( { name => 'Malyj-Vystoskij-R1MV(OLD_4J1)', dxcc => 322, itu => 18, cq => 15, utcoff => -3.0, lat => 60, long => 28 }, 'Prefix'),
+   18 => bless( { name => 'Malyj-Vystoskij-R1MV(OLD_4J1)', dxcc => 322, itu => 29, cq => 16, utcoff => -3.0, lat => 60, long => 28 }, 'Prefix'),
    19 => bless( { name => 'Franz-Jo-Land-R1FJ(OLD_4K2)', dxcc => 180, itu => 75, cq => 40, utcoff => -5.0, lat => 80, long => 50 }, 'Prefix'),
    20 => bless( { name => 'Sri-Lanka-4S', dxcc => 282, itu => 41, cq => 22, utcoff => -5.30, lat => 7, long => 79.9 }, 'Prefix'),
    21 => bless( { name => 'I.T.U.-Geneva-4U/I', dxcc => 283, itu => 28, cq => 14, utcoff => -1.0, lat => 46.2, long => 6.2 }, 'Prefix'),
    62 => bless( { name => 'Qatar-A7', dxcc => 6, itu => 39, cq => 21, utcoff => -3.0, lat => 25.3, long => 51.5 }, 'Prefix'),
    63 => bless( { name => 'Bahrein-A9', dxcc => 7, itu => 39, cq => 21, utcoff => -3.0, lat => 26, long => 48.5 }, 'Prefix'),
    64 => bless( { name => 'Pakistan-AP', dxcc => 8, itu => 41, cq => 21, utcoff => -5.0, lat => 25, long => 67 }, 'Prefix'),
-   65 => bless( { name => 'Scarborough-Reef-BS7', dxcc => 329, itu => 44, cq => 24, utcoff => -8.0, lat => 15.1166666666667, long => 117.85 }, 'Prefix'),
+   65 => bless( { name => 'Scarborough-Reef-BS7', dxcc => 329, itu => 50, cq => 27, utcoff => -8.0, lat => 15.1166666666667, long => 117.85 }, 'Prefix'),
    66 => bless( { name => 'Pratas-Island-BV9P', dxcc => 330, itu => 44, cq => 24, utcoff => -8.0, lat => 21, long => 117 }, 'Prefix'),
    67 => bless( { name => 'Taiwan-BV', dxcc => 9, itu => 44, cq => 24, utcoff => -8.0, lat => 25, long => 122 }, 'Prefix'),
-   68 => bless( { name => 'China-Bejing-BY', dxcc => 10, itu => 33, cq => 23, utcoff => -8.0, lat => 29.8, long => 106.5 }, 'Prefix'),
+   68 => bless( { name => 'China-Bejing-BY', dxcc => 10, itu => 33, cq => 24, utcoff => -8.0, lat => 29.8, long => 106.5 }, 'Prefix'),
    69 => bless( { name => 'Nauru-C2', dxcc => 11, itu => 65, cq => 31, utcoff => -11.30, lat => -0.5, long => 166.9 }, 'Prefix'),
    70 => bless( { name => 'Andorra-C3', dxcc => 12, itu => 27, cq => 14, utcoff => -1.0, lat => 42.5, long => 1.5 }, 'Prefix'),
    71 => bless( { name => 'Gambia-C5', dxcc => 13, itu => 46, cq => 35, utcoff => 0.0, lat => 13, long => -17 }, 'Prefix'),
    107 => bless( { name => 'New-Caledonia-FK', dxcc => 45, itu => 56, cq => 32, utcoff => -11.0, lat => -22, long => 167 }, 'Prefix'),
    108 => bless( { name => 'Martinique-FM', dxcc => 46, itu => 11, cq => 8, utcoff => 4.0, lat => 15, long => -61 }, 'Prefix'),
    109 => bless( { name => 'Fr.-Polynesia-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -17.8833333333333, long => -149.933333333333 }, 'Prefix'),
-   110 => bless( { name => 'Clipperton-FO/C', dxcc => 48, itu => 10, cq => 7, utcoff => 7.0, lat => 11, long => -110 }, 'Prefix'),
-   111 => bless( { name => 'S-Pierre-Miquelon-FP', dxcc => 49, itu => 9, cq => 5, utcoff => 5.0, lat => 47, long => -56.5 }, 'Prefix'),
-   112 => bless( { name => 'Reunion-FR', dxcc => 50, itu => 53, cq => 39, utcoff => -4.0, lat => -21, long => 55.5 }, 'Prefix'),
-   113 => bless( { name => 'Glorioso-FR/G', dxcc => 51, itu => 53, cq => 39, utcoff => -4.0, lat => -10.6, long => 47.3 }, 'Prefix'),
-   114 => bless( { name => 'Juan-De-Nova-FR/J', dxcc => 52, itu => 53, cq => 39, utcoff => -4.0, lat => -21.5, long => 40 }, 'Prefix'),
-   115 => bless( { name => 'Tromelin-FR/T', dxcc => 53, itu => 53, cq => 39, utcoff => -4.0, lat => -15.5, long => 54.5 }, 'Prefix'),
-   116 => bless( { name => 'St-Martin-FS', dxcc => 54, itu => 11, cq => 8, utcoff => 4.0, lat => 18, long => -63 }, 'Prefix'),
-   117 => bless( { name => 'Crozet-FT8W', dxcc => 55, itu => 68, cq => 39, utcoff => -4.0, lat => -46.5, long => 52 }, 'Prefix'),
-   118 => bless( { name => 'Kerguelen-Is-FT8X', dxcc => 56, itu => 68, cq => 39, utcoff => -5.0, lat => -50, long => 70 }, 'Prefix'),
-   119 => bless( { name => 'Amsterdam-Paul-FT8Z', dxcc => 58, itu => 68, cq => 39, utcoff => -5.0, lat => -37, long => 77.6 }, 'Prefix'),
-   120 => bless( { name => 'Wallis-Is-FW', dxcc => 59, itu => 62, cq => 32, utcoff => -12.0, lat => -14, long => -176 }, 'Prefix'),
-   121 => bless( { name => 'French-Guiana-FY', dxcc => 60, itu => 12, cq => 9, utcoff => 3.0, lat => 5, long => -52 }, 'Prefix'),
-   122 => bless( { name => 'England-G', dxcc => 61, itu => 27, cq => 14, utcoff => 0.0, lat => 51.5, long => -0.1 }, 'Prefix'),
-   123 => bless( { name => 'Isle-of-Man-GD', dxcc => 62, itu => 27, cq => 14, utcoff => 0.0, lat => 54, long => -4.5 }, 'Prefix'),
-   124 => bless( { name => 'Northern-Ireland-GI', dxcc => 63, itu => 27, cq => 14, utcoff => 0.0, lat => 54.6, long => -5.9 }, 'Prefix'),
-   125 => bless( { name => 'Jersey-GJ', dxcc => 64, itu => 27, cq => 14, utcoff => 0.0, lat => 49.3, long => -2.2 }, 'Prefix'),
-   126 => bless( { name => 'Scotland-GM', dxcc => 65, itu => 27, cq => 14, utcoff => 0.0, lat => 55.8, long => -4.3 }, 'Prefix'),
-   127 => bless( { name => 'Guernsey-GU', dxcc => 66, itu => 27, cq => 14, utcoff => 0.0, lat => 49.5, long => -2.7 }, 'Prefix'),
-   128 => bless( { name => 'Wales-GW', dxcc => 67, itu => 27, cq => 14, utcoff => 0.0, lat => 52.5, long => -3.5 }, 'Prefix'),
-   129 => bless( { name => 'Solomon-Island-H4', dxcc => 68, itu => 51, cq => 28, utcoff => 11.0, lat => -9.4, long => 160 }, 'Prefix'),
-   130 => bless( { name => 'TEMUTO-H40', dxcc => 332, itu => 51, cq => 28, utcoff => 11.0, lat => -10.7166666666667, long => 165.866666666667 }, 'Prefix'),
-   131 => bless( { name => 'Hungary-HA', dxcc => 69, itu => 28, cq => 15, utcoff => -1.0, lat => 47.5, long => 19.1 }, 'Prefix'),
-   132 => bless( { name => 'Switzerland-HB', dxcc => 70, itu => 28, cq => 14, utcoff => -1.0, lat => 47, long => 7 }, 'Prefix'),
-   133 => bless( { name => 'Lichtenstein-HB0', dxcc => 71, itu => 28, cq => 14, utcoff => -1.0, lat => 47, long => 9.5 }, 'Prefix'),
-   134 => bless( { name => 'Ecuador-HC', dxcc => 72, itu => 12, cq => 10, utcoff => 5.0, lat => -0.2, long => -78 }, 'Prefix'),
-   135 => bless( { name => 'Galapagos-HC8', dxcc => 73, itu => 12, cq => 10, utcoff => 5.0, lat => -2, long => -92 }, 'Prefix'),
-   136 => bless( { name => 'Haiti-HH', dxcc => 74, itu => 11, cq => 8, utcoff => 4.0, lat => 19, long => -72 }, 'Prefix'),
-   137 => bless( { name => 'Dominican-Rep-HI', dxcc => 75, itu => 11, cq => 8, utcoff => 5.0, lat => 18.5, long => -70 }, 'Prefix'),
-   138 => bless( { name => 'Colombia-HK', dxcc => 76, itu => 12, cq => 9, utcoff => 5.0, lat => 5, long => -74 }, 'Prefix'),
-   139 => bless( { name => 'Malpelo-Is-HK0/M', dxcc => 77, itu => 12, cq => 9, utcoff => 5.0, lat => 4, long => -81.1 }, 'Prefix'),
-   140 => bless( { name => 'San-Andres-Is-HK0A', dxcc => 78, itu => 11, cq => 7, utcoff => 5.0, lat => 12.5, long => -81.7 }, 'Prefix'),
-   141 => bless( { name => 'South-Korea-HL', dxcc => 79, itu => 44, cq => 25, utcoff => -9.0, lat => 37.5, long => 127 }, 'Prefix'),
-   142 => bless( { name => 'North-Korea-P5', dxcc => 327, itu => 44, cq => 25, utcoff => -9.0, lat => 37.5, long => 127 }, 'Prefix'),
-   143 => bless( { name => 'Panama-HP', dxcc => 80, itu => 11, cq => 7, utcoff => 5.0, lat => 9, long => -79.5 }, 'Prefix'),
-   144 => bless( { name => 'Honduras-HR', dxcc => 81, itu => 11, cq => 7, utcoff => 6.0, lat => 14, long => -87 }, 'Prefix'),
-   145 => bless( { name => 'Thailand-HS', dxcc => 82, itu => 49, cq => 26, utcoff => -7.0, lat => 13.8, long => 100.5 }, 'Prefix'),
-   146 => bless( { name => 'Vatican-City-HV', dxcc => 83, itu => 28, cq => 15, utcoff => -1.0, lat => 41.9, long => 12.5 }, 'Prefix'),
-   147 => bless( { name => 'Saudi-Arabia-Dhar-HZ', dxcc => 84, itu => 39, cq => 21, utcoff => -3.0, lat => 26.3, long => 50 }, 'Prefix'),
-   148 => bless( { name => 'Italy-Rome-I', dxcc => 85, itu => 28, cq => 15, utcoff => -1.0, lat => 41.9, long => 12.5 }, 'Prefix'),
-   149 => bless( { name => 'Sardinia-IS', dxcc => 86, itu => 28, cq => 15, utcoff => -1.0, lat => 40, long => 9 }, 'Prefix'),
-   150 => bless( { name => 'Sicily-IT', dxcc => 87, itu => 28, cq => 15, utcoff => -1.0, lat => 37.5, long => 14 }, 'Prefix'),
-   151 => bless( { name => 'Djibouti-J2', dxcc => 88, itu => 48, cq => 37, utcoff => -3.0, lat => 12, long => 43 }, 'Prefix'),
-   152 => bless( { name => 'Grenada-J3', dxcc => 90, itu => 11, cq => 8, utcoff => 4.0, lat => 12, long => -61.8 }, 'Prefix'),
-   153 => bless( { name => 'Guinea-Bissau-J5', dxcc => 91, itu => 46, cq => 35, utcoff => 0.0, lat => 12, long => -15 }, 'Prefix'),
-   154 => bless( { name => 'St-Lucia-J6', dxcc => 92, itu => 11, cq => 8, utcoff => 4.0, lat => 14, long => -61 }, 'Prefix'),
-   155 => bless( { name => 'Dominica-J7', dxcc => 93, itu => 11, cq => 8, utcoff => 4.0, lat => 15.4, long => -61.3 }, 'Prefix'),
-   156 => bless( { name => 'St-Vincent-J8', dxcc => 94, itu => 11, cq => 8, utcoff => 4.0, lat => 13.3, long => -61.3 }, 'Prefix'),
-   157 => bless( { name => 'Japan-JA', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 35.7, long => 139.8 }, 'Prefix'),
-   158 => bless( { name => 'Japan-JA6', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 32.7, long => 131 }, 'Prefix'),
-   159 => bless( { name => 'Minami-Torishima-JD/M', dxcc => 96, itu => 45, cq => 27, utcoff => -11.0, lat => 25, long => 154 }, 'Prefix'),
-   160 => bless( { name => 'Ogasawara-JD/O', dxcc => 97, itu => 45, cq => 27, utcoff => -9.0, lat => 27.5, long => 141 }, 'Prefix'),
-   161 => bless( { name => 'Mongolia-JT', dxcc => 98, itu => 32, cq => 23, utcoff => -8.0, lat => 48, long => 107 }, 'Prefix'),
-   162 => bless( { name => 'Svalbard-Is-JW', dxcc => 99, itu => 18, cq => 40, utcoff => -1.0, lat => 78, long => 16 }, 'Prefix'),
-   163 => bless( { name => 'Jan-Mayen-JX', dxcc => 100, itu => 18, cq => 40, utcoff => -1.0, lat => 71, long => -8 }, 'Prefix'),
-   164 => bless( { name => 'Jordan-JY', dxcc => 101, itu => 39, cq => 20, utcoff => -2.0, lat => 32, long => 36 }, 'Prefix'),
-   165 => bless( { name => 'West-Carolines-T88', dxcc => 104, itu => 64, cq => 27, utcoff => -9.0, lat => 9.5, long => 138.1 }, 'Prefix'),
-   166 => bless( { name => 'Guantanamo-Bay-KG4', dxcc => 105, itu => 11, cq => 8, utcoff => 5.0, lat => 20, long => -75 }, 'Prefix'),
-   167 => bless( { name => 'Amer-Phoenix-KH1', dxcc => 106, itu => 62, cq => 31, utcoff => 11.0, lat => 0.5, long => -176 }, 'Prefix'),
-   168 => bless( { name => 'Guam-KH2', dxcc => 107, itu => 64, cq => 27, utcoff => -10.0, lat => 14, long => 145 }, 'Prefix'),
-   169 => bless( { name => 'Johnston-Is-KH3', dxcc => 108, itu => 61, cq => 31, utcoff => 10.0, lat => 17, long => -170 }, 'Prefix'),
-   170 => bless( { name => 'Midway-Is-KH4', dxcc => 109, itu => 61, cq => 31, utcoff => 11.0, lat => 28, long => -177.5 }, 'Prefix'),
-   171 => bless( { name => 'Palmyra-Is-KH5', dxcc => 110, itu => 61, cq => 31, utcoff => 10.0, lat => 6, long => -162 }, 'Prefix'),
-   172 => bless( { name => 'Kingman-Reef-KH5K', dxcc => 111, itu => 61, cq => 31, utcoff => 10.0, lat => 7.5, long => -162.8 }, 'Prefix'),
-   173 => bless( { name => 'Hawaii-Hilo-KH6', dxcc => 112, itu => 61, cq => 31, utcoff => 10.0, lat => 19.7, long => -155.1 }, 'Prefix'),
-   174 => bless( { name => 'Kure-Is-KH7K', dxcc => 113, itu => 61, cq => 31, utcoff => 11.0, lat => 28.5, long => -178.5 }, 'Prefix'),
-   175 => bless( { name => 'Amer-Samoa-KH8', dxcc => 114, itu => 62, cq => 32, utcoff => 11.0, lat => -14, long => -171 }, 'Prefix'),
-   176 => bless( { name => 'Wake-Is-KH9', dxcc => 115, itu => 65, cq => 31, utcoff => 11.0, lat => 19.5, long => 167.033333333333 }, 'Prefix'),
-   177 => bless( { name => 'Mariana-Is-KH0', dxcc => 116, itu => 64, cq => 27, utcoff => 10.0, lat => 16, long => 146 }, 'Prefix'),
-   178 => bless( { name => 'Alaska-Anchorage-KL7', dxcc => 117, itu => 1, cq => 1, utcoff => 10.0, lat => 61.2, long => -150 }, 'Prefix'),
-   179 => bless( { name => 'Navassa-Is-KP1', dxcc => 118, itu => 11, cq => 8, utcoff => 5.0, lat => 18, long => -75 }, 'Prefix'),
-   180 => bless( { name => 'Virgin-Is-KP2', dxcc => 119, itu => 11, cq => 8, utcoff => 5.0, lat => 18, long => -64.5 }, 'Prefix'),
-   181 => bless( { name => 'Puerto-Rico-KP4', dxcc => 120, itu => 11, cq => 8, utcoff => 5.0, lat => 18.5, long => -66.2 }, 'Prefix'),
-   182 => bless( { name => 'Desecheo-Is-KP5', dxcc => 121, itu => 11, cq => 8, utcoff => 5.0, lat => 18.3, long => -67.5 }, 'Prefix'),
-   183 => bless( { name => 'Norway-LA', dxcc => 123, itu => 18, cq => 14, utcoff => -1.0, lat => 60, long => 10.7 }, 'Prefix'),
-   184 => bless( { name => 'Argentina-LU', dxcc => 124, itu => 14, cq => 13, utcoff => 3.0, lat => -34.6, long => -58.4 }, 'Prefix'),
-   185 => bless( { name => 'Luxembourg-LX', dxcc => 125, itu => 27, cq => 14, utcoff => -1.0, lat => 49, long => 6.5 }, 'Prefix'),
-   186 => bless( { name => 'Bulgaria-LZ', dxcc => 126, itu => 28, cq => 20, utcoff => -2.0, lat => 42.7, long => 23.3 }, 'Prefix'),
-   187 => bless( { name => 'Lithuania-LY', dxcc => 194, itu => 29, cq => 16, utcoff => -3.0, lat => 54.5, long => 25.5 }, 'Prefix'),
-   188 => bless( { name => 'Peru-OA', dxcc => 127, itu => 12, cq => 10, utcoff => 5.0, lat => -12, long => -77 }, 'Prefix'),
-   189 => bless( { name => 'Lebanon-OD', dxcc => 128, itu => 39, cq => 20, utcoff => -2.0, lat => 33.9, long => 35.5 }, 'Prefix'),
-   190 => bless( { name => 'Austria-OD', dxcc => 129, itu => 28, cq => 15, utcoff => -1.0, lat => 48.2, long => 16.3 }, 'Prefix'),
-   191 => bless( { name => 'Finland-OH', dxcc => 130, itu => 18, cq => 15, utcoff => -2.0, lat => 60.2, long => 25 }, 'Prefix'),
-   192 => bless( { name => 'Aland-Is-OH0', dxcc => 131, itu => 18, cq => 15, utcoff => -2.0, lat => 60.2, long => 20 }, 'Prefix'),
-   193 => bless( { name => 'Market-Reef-OJ0', dxcc => 132, itu => 18, cq => 15, utcoff => -2.0, lat => 60.3, long => 19 }, 'Prefix'),
-   194 => bless( { name => 'Czech-Rep-OK', dxcc => 133, itu => 28, cq => 15, utcoff => -1.0, lat => 50.1333333333333, long => 14.7166666666667 }, 'Prefix'),
-   195 => bless( { name => 'Slovakia-OM', dxcc => 331, itu => 28, cq => 15, utcoff => -1.0, lat => 48.6666666666667, long => 19.3333333333333 }, 'Prefix'),
-   196 => bless( { name => 'Belgium-ON', dxcc => 134, itu => 27, cq => 14, utcoff => -1.0, lat => 50.9, long => 4.4 }, 'Prefix'),
-   197 => bless( { name => 'Greenland-OX', dxcc => 135, itu => 5, cq => 40, utcoff => 3.0, lat => 64.1833333333333, long => -51.7333333333333 }, 'Prefix'),
-   198 => bless( { name => 'Faeroe-Is-OY', dxcc => 136, itu => 18, cq => 14, utcoff => 0.0, lat => 62, long => -7 }, 'Prefix'),
-   199 => bless( { name => 'Denmark-OZ', dxcc => 137, itu => 18, cq => 14, utcoff => -1.0, lat => 55.7, long => 12.6 }, 'Prefix'),
-   200 => bless( { name => 'Papua-Madang-P2', dxcc => 138, itu => 51, cq => 28, utcoff => -10.0, lat => -5.2, long => 145.6 }, 'Prefix'),
-   201 => bless( { name => 'Aruba-P4', dxcc => 326, itu => 11, cq => 9, utcoff => 4.0, lat => 12.5, long => -69.9666666666667 }, 'Prefix'),
-   202 => bless( { name => 'Netherlands-PA', dxcc => 139, itu => 27, cq => 14, utcoff => -1.0, lat => 52.4, long => 4.9 }, 'Prefix'),
-   203 => bless( { name => 'Neth-Antilles-PJ2', dxcc => 140, itu => 11, cq => 9, utcoff => 4.0, lat => 12, long => -69 }, 'Prefix'),
-   204 => bless( { name => 'St-Maarten-PJ7', dxcc => 141, itu => 11, cq => 8, utcoff => 4.0, lat => 18, long => -63 }, 'Prefix'),
-   205 => bless( { name => 'Brazil-Brasilia-PY', dxcc => 142, itu => 13, cq => 11, utcoff => 3.0, lat => -16, long => -48 }, 'Prefix'),
-   206 => bless( { name => 'Fer-De-Noronha-PY0F', dxcc => 144, itu => 13, cq => 11, utcoff => 2.0, lat => -3, long => -32 }, 'Prefix'),
-   207 => bless( { name => 'Peter-Paul-Rks-PY0S', dxcc => 145, itu => 13, cq => 11, utcoff => 2.0, lat => 1.5, long => -30 }, 'Prefix'),
-   208 => bless( { name => 'Trindade-PY0T', dxcc => 146, itu => 15, cq => 11, utcoff => 3.0, lat => 20.5166666666667, long => -29.3166666666667 }, 'Prefix'),
-   209 => bless( { name => 'Surinam-PZ', dxcc => 147, itu => 12, cq => 9, utcoff => 3.30, lat => 5.83333333333333, long => -55.1666666666667 }, 'Prefix'),
-   210 => bless( { name => 'Western-Sahara-S0', dxcc => 325, itu => 21, cq => 37, utcoff => 0.0, lat => 33, long => -8 }, 'Prefix'),
-   211 => bless( { name => 'Bangladesh-S2', dxcc => 148, itu => 41, cq => 22, utcoff => -6.0, lat => 24, long => 90.5 }, 'Prefix'),
-   212 => bless( { name => 'Seychelles-S7', dxcc => 149, itu => 53, cq => 39, utcoff => -4.0, lat => -4, long => 56 }, 'Prefix'),
-   213 => bless( { name => 'Sao-Tome-S9', dxcc => 150, itu => 47, cq => 36, utcoff => 0.0, lat => 0.3, long => 6 }, 'Prefix'),
-   214 => bless( { name => 'Sweden-SM', dxcc => 151, itu => 18, cq => 14, utcoff => -1.0, lat => 59.3, long => 18.1 }, 'Prefix'),
-   215 => bless( { name => 'Poland-SP', dxcc => 152, itu => 28, cq => 15, utcoff => -1.0, lat => 50, long => 20 }, 'Prefix'),
-   216 => bless( { name => 'Sudan-ST', dxcc => 153, itu => 48, cq => 34, utcoff => -2.0, lat => 15.5, long => 32.5 }, 'Prefix'),
-   217 => bless( { name => 'Southern-Sudan-ST0', dxcc => 154, itu => 48, cq => 34, utcoff => -2.0, lat => 5, long => 31.6 }, 'Prefix'),
-   218 => bless( { name => 'Egypt-SU', dxcc => 155, itu => 38, cq => 34, utcoff => -2.0, lat => 30, long => 31.4 }, 'Prefix'),
-   219 => bless( { name => 'Greece-SV', dxcc => 156, itu => 28, cq => 20, utcoff => -2.0, lat => 38, long => 23.7 }, 'Prefix'),
-   220 => bless( { name => 'Dodecanese-SV5', dxcc => 157, itu => 28, cq => 20, utcoff => -2.0, lat => 36.5, long => 27.5 }, 'Prefix'),
-   221 => bless( { name => 'Crete-SV9', dxcc => 158, itu => 28, cq => 20, utcoff => -2.0, lat => 35.4, long => 25.2 }, 'Prefix'),
-   222 => bless( { name => 'Mount-Athos-SV/A', dxcc => 159, itu => 28, cq => 20, utcoff => -2.0, lat => 40.2, long => 24.3 }, 'Prefix'),
-   223 => bless( { name => 'Tuvalu-T2', dxcc => 160, itu => 65, cq => 31, utcoff => -12.0, lat => -8.7, long => 178.6 }, 'Prefix'),
-   224 => bless( { name => 'West-Kiribati-T30', dxcc => 143, itu => 65, cq => 31, utcoff => 11.0, lat => 1.63333333333333, long => 173.25 }, 'Prefix'),
-   225 => bless( { name => 'Central-Kiribati-T31', dxcc => 161, itu => 62, cq => 31, utcoff => 11.0, lat => 3.38333333333333, long => -172.133333333333 }, 'Prefix'),
-   226 => bless( { name => 'East-Kiribati-T32', dxcc => 162, itu => 61, cq => 31, utcoff => 10.0, lat => 2.43333333333333, long => -157.55 }, 'Prefix'),
-   227 => bless( { name => 'Banaba-Is-T33', dxcc => 323, itu => 62, cq => 31, utcoff => 11.0, lat => 1.43333333333333, long => 169.966666666667 }, 'Prefix'),
-   228 => bless( { name => 'Somali-T5', dxcc => 163, itu => 48, cq => 37, utcoff => -3.0, lat => 2, long => 46 }, 'Prefix'),
-   229 => bless( { name => 'San-Marino-T7', dxcc => 164, itu => 28, cq => 15, utcoff => -1.0, lat => 44, long => 13 }, 'Prefix'),
-   230 => bless( { name => 'Turkey-TA', dxcc => 165, itu => 39, cq => 20, utcoff => -2.0, lat => 39.9, long => 32.9 }, 'Prefix'),
-   231 => bless( { name => 'Iceland-TF', dxcc => 166, itu => 17, cq => 40, utcoff => 0.0, lat => 64.1, long => -22 }, 'Prefix'),
-   232 => bless( { name => 'Guatemala-TG', dxcc => 167, itu => 11, cq => 7, utcoff => 6.0, lat => 14.6, long => -90.5 }, 'Prefix'),
-   233 => bless( { name => 'Costa-Rica-TI', dxcc => 168, itu => 11, cq => 7, utcoff => 6.0, lat => 10, long => -84 }, 'Prefix'),
-   234 => bless( { name => 'Cocos-Is-TI9', dxcc => 169, itu => 11, cq => 7, utcoff => 6.0, lat => 5, long => -87 }, 'Prefix'),
-   235 => bless( { name => 'Cameroon-TJ', dxcc => 170, itu => 47, cq => 36, utcoff => -1.0, lat => 4, long => 12 }, 'Prefix'),
-   236 => bless( { name => 'Corsica-TK', dxcc => 171, itu => 28, cq => 15, utcoff => -1.0, lat => 42, long => 9 }, 'Prefix'),
-   237 => bless( { name => 'Central-Af.-Rep-TL', dxcc => 172, itu => 47, cq => 36, utcoff => -1.0, lat => 4.5, long => 18 }, 'Prefix'),
-   238 => bless( { name => 'Congo-TN', dxcc => 173, itu => 52, cq => 36, utcoff => -1.0, lat => -4, long => 15 }, 'Prefix'),
-   239 => bless( { name => 'Gabon-TR', dxcc => 174, itu => 52, cq => 36, utcoff => -1.0, lat => 0.5, long => 9 }, 'Prefix'),
-   240 => bless( { name => 'Chad-TT', dxcc => 175, itu => 47, cq => 36, utcoff => -1.0, lat => 12, long => 15 }, 'Prefix'),
-   241 => bless( { name => 'Ivory-Coast-TU', dxcc => 176, itu => 46, cq => 35, utcoff => 0.0, lat => 5.5, long => -4 }, 'Prefix'),
-   242 => bless( { name => 'Benin-TY', dxcc => 177, itu => 46, cq => 35, utcoff => -1.0, lat => 6.3, long => 2.3 }, 'Prefix'),
-   243 => bless( { name => 'Mali-TZ', dxcc => 178, itu => 46, cq => 35, utcoff => 0.0, lat => 13, long => -8 }, 'Prefix'),
-   244 => bless( { name => 'Eur-Russia-UA1-UA', dxcc => 179, itu => 29, cq => 16, utcoff => -3.0, lat => 60, long => 30 }, 'Prefix'),
-   245 => bless( { name => 'Kaliningrad-UA2', dxcc => 181, itu => 29, cq => 15, utcoff => -3.0, lat => 55, long => 20.5 }, 'Prefix'),
-   246 => bless( { name => 'Asia-Novosibirsk-UA9', dxcc => 182, itu => 32, cq => 18, utcoff => -7.0, lat => 55, long => 83 }, 'Prefix'),
-   247 => bless( { name => 'Ukraine-UR(OLD_UB)', dxcc => 183, itu => 29, cq => 16, utcoff => -3.0, lat => 50.5, long => 31 }, 'Prefix'),
-   248 => bless( { name => 'Belarus-EU(OLD_UC)', dxcc => 184, itu => 29, cq => 16, utcoff => -3.0, lat => 54, long => 27.5 }, 'Prefix'),
-   249 => bless( { name => 'Azerbaijan-4J(OLD_UD)', dxcc => 185, itu => 29, cq => 21, utcoff => -4.0, lat => 40.5, long => 50 }, 'Prefix'),
-   250 => bless( { name => 'Georgia-4L(OLD_UF)', dxcc => 186, itu => 29, cq => 21, utcoff => -4.0, lat => 41.5, long => 45 }, 'Prefix'),
-   251 => bless( { name => 'Armenia-EK(OLD_UG)', dxcc => 187, itu => 29, cq => 21, utcoff => -4.0, lat => 50.5, long => 44.5 }, 'Prefix'),
-   252 => bless( { name => 'Turkmenistan-EZ(OLD_UH)', dxcc => 188, itu => 30, cq => 17, utcoff => -5.0, lat => 38, long => 58 }, 'Prefix'),
-   253 => bless( { name => 'Uzbekistan-UJ(OLD_UI)', dxcc => 189, itu => 30, cq => 17, utcoff => -5.0, lat => 40, long => 64 }, 'Prefix'),
-   254 => bless( { name => 'Tajikistan-EY(OLD_UJ)', dxcc => 190, itu => 30, cq => 17, utcoff => -6.0, lat => 39.5, long => 67 }, 'Prefix'),
-   255 => bless( { name => 'Kazakhstan-UN(OLD_UL)', dxcc => 191, itu => 30, cq => 17, utcoff => -6.0, lat => 53, long => 76 }, 'Prefix'),
-   256 => bless( { name => 'Kyrgyzstan-EX(OLD_UM)', dxcc => 192, itu => 31, cq => 17, utcoff => -6.0, lat => 42, long => 75 }, 'Prefix'),
-   257 => bless( { name => 'Moldova-ER(OLD_UO)', dxcc => 193, itu => 29, cq => 16, utcoff => -3.0, lat => 47, long => 29 }, 'Prefix'),
-   258 => bless( { name => 'New-Brunsick-VE', dxcc => 197, itu => 9, cq => 5, utcoff => 4.0, lat => 45.3, long => -66.1 }, 'Prefix'),
-   259 => bless( { name => 'Australia-VK1-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
-   260 => bless( { name => 'Lord-Howe-Is-VK9/L', dxcc => 199, itu => 60, cq => 30, utcoff => -10.0, lat => -31.6, long => 159.1 }, 'Prefix'),
-   261 => bless( { name => 'Christmas-Is-VK9/X', dxcc => 200, itu => 54, cq => 29, utcoff => -6.30, lat => -10.5, long => 105.7 }, 'Prefix'),
-   262 => bless( { name => 'Cocos-Keeling-VK9Y', dxcc => 201, itu => 54, cq => 29, utcoff => -6.30, lat => -12.2, long => 96.8 }, 'Prefix'),
-   263 => bless( { name => 'Mellish-Reef-VK9/Z', dxcc => 202, itu => 56, cq => 30, utcoff => -10.0, lat => -17.6, long => 155.8 }, 'Prefix'),
-   264 => bless( { name => 'Norfolk-Is-VK9/N', dxcc => 203, itu => 60, cq => 32, utcoff => -11.30, lat => -29, long => 168 }, 'Prefix'),
-   265 => bless( { name => 'Willis-Is-VK9/W', dxcc => 204, itu => 60, cq => 30, utcoff => -10.0, lat => -16, long => 149.5 }, 'Prefix'),
-   266 => bless( { name => 'Heard-Is-VK0/H', dxcc => 205, itu => 68, cq => 39, utcoff => -5.0, lat => -53, long => 73.4 }, 'Prefix'),
-   267 => bless( { name => 'Macquarie-Is-VK0/M', dxcc => 206, itu => 60, cq => 30, utcoff => -11.0, lat => -54.7, long => 158.8 }, 'Prefix'),
-   268 => bless( { name => 'Anguilla-VP2E', dxcc => 207, itu => 11, cq => 8, utcoff => 4.0, lat => 18.3, long => -63 }, 'Prefix'),
-   269 => bless( { name => 'Montserrat-VP2M', dxcc => 208, itu => 11, cq => 8, utcoff => 4.0, lat => 16.8, long => -62.2 }, 'Prefix'),
-   270 => bless( { name => 'Tortola-BVI-VP2V', dxcc => 209, itu => 11, cq => 8, utcoff => 4.0, lat => 18.4, long => -64.6 }, 'Prefix'),
-   271 => bless( { name => 'Turks-Caicos-VP5', dxcc => 210, itu => 11, cq => 8, utcoff => 4.0, lat => 22, long => -72 }, 'Prefix'),
-   272 => bless( { name => 'Falkland-Is-VP8/F', dxcc => 234, itu => 16, cq => 13, utcoff => 3.0, lat => -51.75, long => -59 }, 'Prefix'),
-   273 => bless( { name => 'So-Georgia-VP8/G', dxcc => 211, itu => 73, cq => 13, utcoff => 2.0, lat => -54, long => -37 }, 'Prefix'),
-   274 => bless( { name => 'So-Orkney-VP8/O', dxcc => 212, itu => 73, cq => 13, utcoff => 2.0, lat => -60, long => -46 }, 'Prefix'),
-   275 => bless( { name => 'So-Sandwich-VP8/S', dxcc => 213, itu => 73, cq => 13, utcoff => 2.0, lat => -57, long => -28 }, 'Prefix'),
-   276 => bless( { name => 'So-Shetland-VP8/H', dxcc => 214, itu => 73, cq => 13, utcoff => 2.0, lat => -62, long => -58.5 }, 'Prefix'),
-   277 => bless( { name => 'Pitcairn-Is-VP6', dxcc => 217, itu => 63, cq => 32, utcoff => 8.30, lat => -25.1, long => -130.1 }, 'Prefix'),
-   278 => bless( { name => 'Bermuda-VP9', dxcc => 215, itu => 11, cq => 5, utcoff => 4.0, lat => 32.3, long => -64.7 }, 'Prefix'),
-   279 => bless( { name => 'Chagos-VQ9', dxcc => 216, itu => 41, cq => 31, utcoff => -5.0, lat => -7.3, long => 72.4 }, 'Prefix'),
-   280 => bless( { name => 'Hong-Kong-VS', dxcc => 218, itu => 44, cq => 24, utcoff => -8.0, lat => 22.5, long => 114 }, 'Prefix'),
-   281 => bless( { name => 'India-Bombay-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 19, long => 72.8 }, 'Prefix'),
-   282 => bless( { name => 'Andaman-Is-VU7/A', dxcc => 220, itu => 49, cq => 26, utcoff => -5.30, lat => 10, long => 94 }, 'Prefix'),
-   283 => bless( { name => 'Laccadive-Is-VU7/L', dxcc => 221, itu => 41, cq => 22, utcoff => -5.30, lat => 10, long => 70 }, 'Prefix'),
-   284 => bless( { name => 'Antigua-V2', dxcc => 222, itu => 11, cq => 8, utcoff => 4.0, lat => 17, long => -59.8 }, 'Prefix'),
-   285 => bless( { name => 'Belize-V3', dxcc => 223, itu => 11, cq => 7, utcoff => 6.0, lat => 17.5, long => -88.3 }, 'Prefix'),
-   286 => bless( { name => 'St-Kitts-V4', dxcc => 224, itu => 11, cq => 8, utcoff => 4.0, lat => 17.3, long => -62.6 }, 'Prefix'),
-   287 => bless( { name => 'Namibia-V5', dxcc => 267, itu => 57, cq => 38, utcoff => -2.0, lat => -22.6, long => 17.1 }, 'Prefix'),
-   288 => bless( { name => 'Brunei-V8', dxcc => 225, itu => 54, cq => 28, utcoff => -8.0, lat => 5, long => 115 }, 'Prefix'),
-   289 => bless( { name => 'Fed-Micronesia-V6', dxcc => 104, itu => 64, cq => 27, utcoff => -10.0, lat => 6.66666666666667, long => 143 }, 'Prefix'),
-   290 => bless( { name => 'Marshall-Is-V7', dxcc => 122, itu => 65, cq => 31, utcoff => -12.0, lat => 9.08333333333333, long => 167.333333333333 }, 'Prefix'),
-   291 => bless( { name => 'United-States-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
-   292 => bless( { name => 'Mexico-XE1-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 19.4, long => -99.1 }, 'Prefix'),
-   293 => bless( { name => 'Revilla-Gigedo-XF4', dxcc => 228, itu => 10, cq => 6, utcoff => 7.0, lat => 18, long => -112 }, 'Prefix'),
-   294 => bless( { name => 'Bukina-Faso-XT', dxcc => 229, itu => 46, cq => 35, utcoff => 0.0, lat => 12.3, long => -1.7 }, 'Prefix'),
-   295 => bless( { name => 'Kampuchea-XU', dxcc => 230, itu => 49, cq => 26, utcoff => -7.0, lat => 11.5, long => 105 }, 'Prefix'),
-   296 => bless( { name => 'Laos-XW', dxcc => 232, itu => 49, cq => 26, utcoff => -7.0, lat => 18, long => 102.5 }, 'Prefix'),
-   297 => bless( { name => 'Macao-XX', dxcc => 233, itu => 44, cq => 24, utcoff => -8.0, lat => 22, long => 114 }, 'Prefix'),
-   298 => bless( { name => 'Burma-XZ', dxcc => 235, itu => 49, cq => 26, utcoff => -6.30, lat => 16.8, long => 96 }, 'Prefix'),
-   299 => bless( { name => 'Afghanistan-YA', dxcc => 237, itu => 40, cq => 21, utcoff => -4.30, lat => 32, long => 65 }, 'Prefix'),
-   300 => bless( { name => 'Indonesia-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => -6, long => 107 }, 'Prefix'),
-   301 => bless( { name => 'Iraq-YI', dxcc => 239, itu => 39, cq => 21, utcoff => -3.0, lat => 33, long => 44.5 }, 'Prefix'),
-   302 => bless( { name => 'Vanuatu-YJ', dxcc => 240, itu => 56, cq => 32, utcoff => -11.0, lat => -18, long => 168 }, 'Prefix'),
-   303 => bless( { name => 'Syria-YK', dxcc => 241, itu => 39, cq => 20, utcoff => -2.0, lat => 34, long => 36.5 }, 'Prefix'),
-   304 => bless( { name => 'Latvia-YL', dxcc => 195, itu => 29, cq => 15, utcoff => -3.0, lat => 54.5, long => 25.5 }, 'Prefix'),
-   305 => bless( { name => 'Nicaragua-YN', dxcc => 242, itu => 11, cq => 7, utcoff => 7.0, lat => 12, long => -86 }, 'Prefix'),
-   306 => bless( { name => 'Romania-YO', dxcc => 243, itu => 28, cq => 20, utcoff => -2.0, lat => 44.4, long => 26.1 }, 'Prefix'),
-   307 => bless( { name => 'El-Salvador-YS', dxcc => 244, itu => 11, cq => 7, utcoff => 7.0, lat => 14, long => -89 }, 'Prefix'),
-   308 => bless( { name => 'Rest-Yugoslavia-YU', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.8333333333333, long => 20.5166666666667 }, 'Prefix'),
-   309 => bless( { name => 'Bosnia-hercegovina-T9', dxcc => 336, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
-   310 => bless( { name => 'Macedonia-Z3', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
-   311 => bless( { name => 'Croatia-9A', dxcc => 334, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
-   312 => bless( { name => 'Slovenia-S5', dxcc => 335, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
-   313 => bless( { name => 'Venezuela-YV', dxcc => 246, itu => 12, cq => 9, utcoff => 4.0, lat => 10.5, long => -67 }, 'Prefix'),
-   314 => bless( { name => 'Aves-Is-YV0', dxcc => 247, itu => 11, cq => 8, utcoff => 4.0, lat => 15.7, long => -63.6333333333333 }, 'Prefix'),
-   315 => bless( { name => 'Albania-ZA', dxcc => 248, itu => 28, cq => 15, utcoff => -1.0, lat => 41.5, long => 19.5 }, 'Prefix'),
-   316 => bless( { name => 'Gibraltar-ZB', dxcc => 249, itu => 37, cq => 14, utcoff => -1.0, lat => 36, long => -5.5 }, 'Prefix'),
-   317 => bless( { name => 'UK-Soverign-Base-ZC4', dxcc => 250, itu => 39, cq => 20, utcoff => -2.0, lat => 35, long => 33 }, 'Prefix'),
-   318 => bless( { name => 'St-Helena-ZD7', dxcc => 251, itu => 66, cq => 36, utcoff => 0.0, lat => -16, long => -6 }, 'Prefix'),
-   319 => bless( { name => 'Ascension-Is-ZD8', dxcc => 252, itu => 66, cq => 36, utcoff => 0.0, lat => -8, long => -14 }, 'Prefix'),
-   320 => bless( { name => 'Tristan-Da-Cunha-ZD8', dxcc => 253, itu => 66, cq => 38, utcoff => 0.0, lat => -37.1, long => -12.3 }, 'Prefix'),
-   321 => bless( { name => 'Zimbabwe-Z2', dxcc => 254, itu => 53, cq => 38, utcoff => -2.0, lat => -18, long => 31 }, 'Prefix'),
-   322 => bless( { name => 'Cayman-Is-ZF', dxcc => 255, itu => 11, cq => 8, utcoff => 5.0, lat => 19.5, long => -81.2 }, 'Prefix'),
-   323 => bless( { name => 'No-Cook-Is-ZK1/N', dxcc => 256, itu => 62, cq => 32, utcoff => 10.30, lat => -10.5, long => -161 }, 'Prefix'),
-   324 => bless( { name => 'So-Cook-Is-ZK1/S', dxcc => 257, itu => 62, cq => 32, utcoff => 10.30, lat => -21, long => -159.5 }, 'Prefix'),
-   325 => bless( { name => 'Niue-Is-ZK2', dxcc => 258, itu => 62, cq => 32, utcoff => 11.0, lat => -19, long => -170 }, 'Prefix'),
-   326 => bless( { name => 'Tokelaus-ZK3', dxcc => 259, itu => 62, cq => 31, utcoff => 11.0, lat => -8.4, long => -172.7 }, 'Prefix'),
-   327 => bless( { name => 'New-Zealand-ZL1-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -36.9, long => 174.8 }, 'Prefix'),
-   328 => bless( { name => 'Chatham-Is-ZL7', dxcc => 261, itu => 60, cq => 32, utcoff => -12.45, lat => -44, long => -176 }, 'Prefix'),
-   329 => bless( { name => 'Kermadec-Is-ZL8', dxcc => 262, itu => 60, cq => 32, utcoff => -12.0, lat => -30, long => -178 }, 'Prefix'),
-   330 => bless( { name => 'Auckland-Campbell-ZL9', dxcc => 263, itu => 60, cq => 32, utcoff => -12.0, lat => -52.5, long => 169 }, 'Prefix'),
-   331 => bless( { name => 'Paraguay-ZP', dxcc => 333, itu => 14, cq => 11, utcoff => 4.0, lat => -25.3, long => -57.7 }, 'Prefix'),
-   332 => bless( { name => 'So-Africa-ZS1-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -33.9, long => 18.4 }, 'Prefix'),
-   333 => bless( { name => 'Marion-Is-ZS8', dxcc => 266, itu => 57, cq => 38, utcoff => -2.0, lat => -46.8, long => 37.8 }, 'Prefix'),
-   334 => bless( { name => 'Pirat_Country', dxcc => 666, itu => 17, cq => 14, utcoff => -0.0, lat => 0, long => 0 }, 'Prefix'),
-   335 => bless( { name => 'Agalega-3B6', dxcc => 272, itu => 53, cq => 39, utcoff => -4.0, lat => -10.4, long => 56.6 }, 'Prefix'),
-   336 => bless( { name => 'Fiji-Is-3D2/F', dxcc => 277, itu => 56, cq => 32, utcoff => -12.0, lat => -17, long => 178 }, 'Prefix'),
-   337 => bless( { name => 'Russia-Antarcti-CE9(OLD_4K1)', dxcc => 102, itu => 67, cq => 12, utcoff => -4.0, lat => -65, long => -64 }, 'Prefix'),
-   338 => bless( { name => 'U.N.-NY-4U/U', dxcc => 284, itu => 8, cq => 5, utcoff => 5.0, lat => 40.8, long => -74 }, 'Prefix'),
-   339 => bless( { name => 'Yemen-7O', dxcc => 285, itu => 39, cq => 21, utcoff => -3.0, lat => 15, long => 44 }, 'Prefix'),
-   340 => bless( { name => 'Yemen-People\'s-7O', dxcc => 300, itu => 39, cq => 21, utcoff => -3.0, lat => 13, long => 45 }, 'Prefix'),
-   341 => bless( { name => 'Yemen-People\'s-7O', dxcc => 300, itu => 39, cq => 21, utcoff => -3.0, lat => 13, long => 45 }, 'Prefix'),
-   342 => bless( { name => 'East-Malaysia-9M6', dxcc => 313, itu => 54, cq => 28, utcoff => -7.30, lat => 2, long => 113 }, 'Prefix'),
-   343 => bless( { name => 'Zaire-Kisangani-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => 1, long => 25 }, 'Prefix'),
-   344 => bless( { name => 'Zaire-Lubumbashi-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => -12, long => 27.5 }, 'Prefix'),
-   345 => bless( { name => 'Zaire-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => -4.3, long => 15.3 }, 'Prefix'),
-   346 => bless( { name => 'China-Peking-BY', dxcc => 10, itu => 33, cq => 23, utcoff => -8.0, lat => 40, long => 116.416666666667 }, 'Prefix'),
-   347 => bless( { name => 'China-Shanghai-BY', dxcc => 10, itu => 33, cq => 23, utcoff => -8.0, lat => 21.2, long => 121.5 }, 'Prefix'),
-   348 => bless( { name => 'China-BY', dxcc => 10, itu => 33, cq => 23, utcoff => -8.0, lat => 29.8, long => 106.5 }, 'Prefix'),
-   349 => bless( { name => 'Mozambique-Mozamb-C9', dxcc => 15, itu => 53, cq => 37, utcoff => -2.0, lat => -15, long => 41 }, 'Prefix'),
-   350 => bless( { name => 'Mozambique-C9', dxcc => 15, itu => 53, cq => 37, utcoff => -2.0, lat => -15, long => 41 }, 'Prefix'),
-   351 => bless( { name => 'Chile-N.-CE', dxcc => 16, itu => 14, cq => 12, utcoff => 4.0, lat => -20, long => -70.8 }, 'Prefix'),
-   352 => bless( { name => 'Chile-S.-CE', dxcc => 16, itu => 14, cq => 12, utcoff => 4.0, lat => -55, long => -70.8 }, 'Prefix'),
-   353 => bless( { name => 'Antarctica_Casey', dxcc => 102, itu => 67, cq => 29, utcoff => -8.0, lat => -66.2833333333333, long => 110.533333333333 }, 'Prefix'),
-   354 => bless( { name => 'Antarctica_Rockford', dxcc => 102, itu => 67, cq => 32, utcoff => 10.0, lat => -79, long => -150 }, 'Prefix'),
-   355 => bless( { name => 'Antarctica_Breadmore', dxcc => 102, itu => 67, cq => 32, utcoff => -12.0, lat => -83, long => 178 }, 'Prefix'),
-   356 => bless( { name => 'Antarctica_Davis', dxcc => 102, itu => 67, cq => 39, utcoff => -5.0, lat => -68.5833333333333, long => 77.9666666666667 }, 'Prefix'),
-   357 => bless( { name => 'Antarctica_Mawson', dxcc => 102, itu => 67, cq => 39, utcoff => -4.0, lat => -67.5833333333333, long => 62.8833333333333 }, 'Prefix'),
-   358 => bless( { name => 'Antarctica_Palmer', dxcc => 102, itu => 67, cq => 13, utcoff => 4.0, lat => -64.7666666666667, long => -64.0833333333333 }, 'Prefix'),
-   359 => bless( { name => 'Antarctica_Sanae', dxcc => 102, itu => 67, cq => 13, utcoff => 0.0, lat => -70.5, long => -2.5 }, 'Prefix'),
-   360 => bless( { name => 'Antarctica_McMurdo', dxcc => 102, itu => 67, cq => 30, utcoff => -11.0, lat => -77.8333333333333, long => 166.416666666667 }, 'Prefix'),
-   361 => bless( { name => 'Antarctica_Baudouin', dxcc => 102, itu => 67, cq => 38, utcoff => 0.0, lat => -70.4166666666667, long => 11.8333333333333 }, 'Prefix'),
-   362 => bless( { name => 'Antarctica_Novolaz', dxcc => 102, itu => 67, cq => 38, utcoff => 0.0, lat => -70.8333333333333, long => 11.8333333333333 }, 'Prefix'),
-   363 => bless( { name => 'Antarctica_Molodezanaja', dxcc => 102, itu => 67, cq => 13, utcoff => 3.0, lat => -67.5833333333333, long => -46.5833333333333 }, 'Prefix'),
-   364 => bless( { name => 'Antarctica_Mirnyy', dxcc => 102, itu => 67, cq => 29, utcoff => -6.0, lat => -66.5333333333333, long => 93 }, 'Prefix'),
-   365 => bless( { name => 'Antarctica_Scott', dxcc => 102, itu => 67, cq => 30, utcoff => -11.0, lat => -77.8333333333333, long => 166.416666666667 }, 'Prefix'),
-   366 => bless( { name => 'Antarctica_Dumont', dxcc => 102, itu => 67, cq => 30, utcoff => -9.0, lat => -66.6666666666667, long => 140 }, 'Prefix'),
-   367 => bless( { name => 'Antarctica_Gen.Belgrado', dxcc => 102, itu => 67, cq => 13, utcoff => 2.0, lat => -77.5, long => -36 }, 'Prefix'),
-   368 => bless( { name => 'Antarctica_Showa', dxcc => 102, itu => 67, cq => 13, utcoff => 2.0, lat => -69, long => -39.5833333333333 }, 'Prefix'),
-   369 => bless( { name => 'Antarctica', dxcc => 102, itu => 67, cq => 12, utcoff => 8.0, lat => -80, long => -120 }, 'Prefix'),
-   370 => bless( { name => 'Palestine-W-Bank', dxcc => 337, itu => 39, cq => 20, utcoff => -2.0, lat => 31.5333333333333, long => 35.1 }, 'Prefix'),
-   371 => bless( { name => 'Melilla-EA9', dxcc => 37, itu => 37, cq => 33, utcoff => -1.0, lat => 35.3, long => -3 }, 'Prefix'),
-   372 => bless( { name => 'Fr.-Pol.-Marquesas.-FO', dxcc => 47, itu => 63, cq => 31, utcoff => 10.0, lat => -8.88333333333333, long => -140.116666666667 }, 'Prefix'),
-   373 => bless( { name => 'Fr.-Pol.-Mururoa-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -21, long => -140 }, 'Prefix'),
-   374 => bless( { name => 'Fr.-Pol.-Bora-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -16, long => -152 }, 'Prefix'),
-   375 => bless( { name => 'Fr.-Pol.-Austral-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -22.45, long => -151.35 }, 'Prefix'),
+   110 => bless( { name => 'Austral-FO/A', dxcc => 338, itu => 63, cq => 32, utcoff => 10.0, lat => -22.45, long => -151.35 }, 'Prefix'),
+   111 => bless( { name => 'Clipperton-FO/C', dxcc => 48, itu => 10, cq => 7, utcoff => 7.0, lat => 11, long => -110 }, 'Prefix'),
+   112 => bless( { name => 'Marquesas-FO/M', dxcc => 339, itu => 63, cq => 31, utcoff => 10.0, lat => -8.88333333333333, long => -140.116666666667 }, 'Prefix'),
+   113 => bless( { name => 'S-Pierre-Miquelon-FP', dxcc => 49, itu => 9, cq => 5, utcoff => 5.0, lat => 47, long => -56.5 }, 'Prefix'),
+   114 => bless( { name => 'Reunion-FR', dxcc => 50, itu => 53, cq => 39, utcoff => -4.0, lat => -21, long => 55.5 }, 'Prefix'),
+   115 => bless( { name => 'Glorioso-FR/G', dxcc => 51, itu => 53, cq => 39, utcoff => -4.0, lat => -10.6, long => 47.3 }, 'Prefix'),
+   116 => bless( { name => 'Juan-De-Nova-FR/J', dxcc => 52, itu => 53, cq => 39, utcoff => -4.0, lat => -21.5, long => 40 }, 'Prefix'),
+   117 => bless( { name => 'Tromelin-FR/T', dxcc => 53, itu => 53, cq => 39, utcoff => -4.0, lat => -15.5, long => 54.5 }, 'Prefix'),
+   118 => bless( { name => 'St-Martin-FS', dxcc => 54, itu => 11, cq => 8, utcoff => 4.0, lat => 18, long => -63 }, 'Prefix'),
+   119 => bless( { name => 'Crozet-FT8W', dxcc => 55, itu => 68, cq => 39, utcoff => -4.0, lat => -46.5, long => 52 }, 'Prefix'),
+   120 => bless( { name => 'Kerguelen-Is-FT8X', dxcc => 56, itu => 68, cq => 39, utcoff => -5.0, lat => -50, long => 70 }, 'Prefix'),
+   121 => bless( { name => 'Amsterdam-Paul-FT8Z', dxcc => 58, itu => 68, cq => 39, utcoff => -5.0, lat => -37, long => 77.6 }, 'Prefix'),
+   122 => bless( { name => 'Wallis-Is-FW', dxcc => 59, itu => 62, cq => 32, utcoff => -12.0, lat => -14, long => -176 }, 'Prefix'),
+   123 => bless( { name => 'French-Guiana-FY', dxcc => 60, itu => 12, cq => 9, utcoff => 3.0, lat => 5, long => -52 }, 'Prefix'),
+   124 => bless( { name => 'England-G', dxcc => 61, itu => 27, cq => 14, utcoff => 0.0, lat => 51.5, long => -0.1 }, 'Prefix'),
+   125 => bless( { name => 'Isle-of-Man-GD', dxcc => 62, itu => 27, cq => 14, utcoff => 0.0, lat => 54, long => -4.5 }, 'Prefix'),
+   126 => bless( { name => 'Northern-Ireland-GI', dxcc => 63, itu => 27, cq => 14, utcoff => 0.0, lat => 54.6, long => -5.9 }, 'Prefix'),
+   127 => bless( { name => 'Jersey-GJ', dxcc => 64, itu => 27, cq => 14, utcoff => 0.0, lat => 49.3, long => -2.2 }, 'Prefix'),
+   128 => bless( { name => 'Scotland-GM', dxcc => 65, itu => 27, cq => 14, utcoff => 0.0, lat => 55.8, long => -4.3 }, 'Prefix'),
+   129 => bless( { name => 'Guernsey-GU', dxcc => 66, itu => 27, cq => 14, utcoff => 0.0, lat => 49.5, long => -2.7 }, 'Prefix'),
+   130 => bless( { name => 'Wales-GW', dxcc => 67, itu => 27, cq => 14, utcoff => 0.0, lat => 52.5, long => -3.5 }, 'Prefix'),
+   131 => bless( { name => 'Solomon-Island-H4', dxcc => 68, itu => 51, cq => 28, utcoff => 11.0, lat => -9.4, long => 160 }, 'Prefix'),
+   132 => bless( { name => 'TEMUTO-H40', dxcc => 332, itu => 51, cq => 28, utcoff => 11.0, lat => -10.7166666666667, long => 165.866666666667 }, 'Prefix'),
+   133 => bless( { name => 'Hungary-HA', dxcc => 69, itu => 28, cq => 15, utcoff => -1.0, lat => 47.5, long => 19.1 }, 'Prefix'),
+   134 => bless( { name => 'Switzerland-HB', dxcc => 70, itu => 28, cq => 14, utcoff => -1.0, lat => 47, long => 7 }, 'Prefix'),
+   135 => bless( { name => 'Lichtenstein-HB0', dxcc => 71, itu => 28, cq => 14, utcoff => -1.0, lat => 47, long => 9.5 }, 'Prefix'),
+   136 => bless( { name => 'Ecuador-HC', dxcc => 72, itu => 12, cq => 10, utcoff => 5.0, lat => -0.2, long => -78 }, 'Prefix'),
+   137 => bless( { name => 'Galapagos-HC8', dxcc => 73, itu => 12, cq => 10, utcoff => 5.0, lat => -2, long => -92 }, 'Prefix'),
+   138 => bless( { name => 'Haiti-HH', dxcc => 74, itu => 11, cq => 8, utcoff => 4.0, lat => 19, long => -72 }, 'Prefix'),
+   139 => bless( { name => 'Dominican-Rep-HI', dxcc => 75, itu => 11, cq => 8, utcoff => 5.0, lat => 18.5, long => -70 }, 'Prefix'),
+   140 => bless( { name => 'Colombia-HK', dxcc => 76, itu => 12, cq => 9, utcoff => 5.0, lat => 5, long => -74 }, 'Prefix'),
+   141 => bless( { name => 'Malpelo-Is-HK0/M', dxcc => 77, itu => 12, cq => 9, utcoff => 5.0, lat => 4, long => -81.1 }, 'Prefix'),
+   142 => bless( { name => 'San-Andres-Is-HK0A', dxcc => 78, itu => 11, cq => 7, utcoff => 5.0, lat => 12.5, long => -81.7 }, 'Prefix'),
+   143 => bless( { name => 'South-Korea-HL', dxcc => 79, itu => 44, cq => 25, utcoff => -9.0, lat => 37.5, long => 127 }, 'Prefix'),
+   144 => bless( { name => 'North-Korea-P5', dxcc => 327, itu => 44, cq => 25, utcoff => -9.0, lat => 37.5, long => 127 }, 'Prefix'),
+   145 => bless( { name => 'Panama-HP', dxcc => 80, itu => 11, cq => 7, utcoff => 5.0, lat => 9, long => -79.5 }, 'Prefix'),
+   146 => bless( { name => 'Honduras-HR', dxcc => 81, itu => 11, cq => 7, utcoff => 6.0, lat => 14, long => -87 }, 'Prefix'),
+   147 => bless( { name => 'Thailand-HS', dxcc => 82, itu => 49, cq => 26, utcoff => -7.0, lat => 13.8, long => 100.5 }, 'Prefix'),
+   148 => bless( { name => 'Vatican-City-HV', dxcc => 83, itu => 28, cq => 15, utcoff => -1.0, lat => 41.9, long => 12.5 }, 'Prefix'),
+   149 => bless( { name => 'Saudi-Arabia-Dhar-HZ', dxcc => 84, itu => 39, cq => 21, utcoff => -3.0, lat => 26.3, long => 50 }, 'Prefix'),
+   150 => bless( { name => 'Italy-Rome-I', dxcc => 85, itu => 28, cq => 15, utcoff => -1.0, lat => 41.9, long => 12.5 }, 'Prefix'),
+   151 => bless( { name => 'Sardinia-IS', dxcc => 86, itu => 28, cq => 15, utcoff => -1.0, lat => 40, long => 9 }, 'Prefix'),
+   152 => bless( { name => 'Sicily-IT', dxcc => 87, itu => 28, cq => 15, utcoff => -1.0, lat => 37.5, long => 14 }, 'Prefix'),
+   153 => bless( { name => 'Djibouti-J2', dxcc => 88, itu => 48, cq => 37, utcoff => -3.0, lat => 12, long => 43 }, 'Prefix'),
+   154 => bless( { name => 'Grenada-J3', dxcc => 90, itu => 11, cq => 8, utcoff => 4.0, lat => 12, long => -61.8 }, 'Prefix'),
+   155 => bless( { name => 'Guinea-Bissau-J5', dxcc => 91, itu => 46, cq => 35, utcoff => 0.0, lat => 12, long => -15 }, 'Prefix'),
+   156 => bless( { name => 'St-Lucia-J6', dxcc => 92, itu => 11, cq => 8, utcoff => 4.0, lat => 14, long => -61 }, 'Prefix'),
+   157 => bless( { name => 'Dominica-J7', dxcc => 93, itu => 11, cq => 8, utcoff => 4.0, lat => 15.4, long => -61.3 }, 'Prefix'),
+   158 => bless( { name => 'St-Vincent-J8', dxcc => 94, itu => 11, cq => 8, utcoff => 4.0, lat => 13.3, long => -61.3 }, 'Prefix'),
+   159 => bless( { name => 'Japan-JA', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 35.7, long => 139.8 }, 'Prefix'),
+   160 => bless( { name => 'Japan-JA6', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 32.7, long => 131 }, 'Prefix'),
+   161 => bless( { name => 'Minami-Torishima-JD/M', dxcc => 96, itu => 45, cq => 27, utcoff => -11.0, lat => 25, long => 154 }, 'Prefix'),
+   162 => bless( { name => 'Ogasawara-JD/O', dxcc => 97, itu => 45, cq => 27, utcoff => -9.0, lat => 27.5, long => 141 }, 'Prefix'),
+   163 => bless( { name => 'Mongolia-JT', dxcc => 98, itu => 32, cq => 23, utcoff => -8.0, lat => 48, long => 107 }, 'Prefix'),
+   164 => bless( { name => 'Svalbard-Is-JW', dxcc => 99, itu => 18, cq => 40, utcoff => -1.0, lat => 78, long => 16 }, 'Prefix'),
+   165 => bless( { name => 'Jan-Mayen-JX', dxcc => 100, itu => 18, cq => 40, utcoff => -1.0, lat => 71, long => -8 }, 'Prefix'),
+   166 => bless( { name => 'Jordan-JY', dxcc => 101, itu => 39, cq => 20, utcoff => -2.0, lat => 32, long => 36 }, 'Prefix'),
+   167 => bless( { name => 'West-Carolines-T88', dxcc => 104, itu => 64, cq => 27, utcoff => -9.0, lat => 9.5, long => 138.1 }, 'Prefix'),
+   168 => bless( { name => 'Guantanamo-Bay-KG4', dxcc => 105, itu => 11, cq => 8, utcoff => 5.0, lat => 20, long => -75 }, 'Prefix'),
+   169 => bless( { name => 'Amer-Phoenix-KH1', dxcc => 106, itu => 62, cq => 31, utcoff => 11.0, lat => 0.5, long => -176 }, 'Prefix'),
+   170 => bless( { name => 'Guam-KH2', dxcc => 107, itu => 64, cq => 27, utcoff => -10.0, lat => 14, long => 145 }, 'Prefix'),
+   171 => bless( { name => 'Johnston-Is-KH3', dxcc => 108, itu => 61, cq => 31, utcoff => 10.0, lat => 17, long => -170 }, 'Prefix'),
+   172 => bless( { name => 'Midway-Is-KH4', dxcc => 109, itu => 61, cq => 31, utcoff => 11.0, lat => 28, long => -177.5 }, 'Prefix'),
+   173 => bless( { name => 'Palmyra-Is-KH5', dxcc => 110, itu => 61, cq => 31, utcoff => 10.0, lat => 6, long => -162 }, 'Prefix'),
+   174 => bless( { name => 'Kingman-Reef-KH5K', dxcc => 111, itu => 61, cq => 31, utcoff => 10.0, lat => 7.5, long => -162.8 }, 'Prefix'),
+   175 => bless( { name => 'Hawaii-Hilo-KH6', dxcc => 112, itu => 61, cq => 31, utcoff => 10.0, lat => 19.7, long => -155.1 }, 'Prefix'),
+   176 => bless( { name => 'Kure-Is-KH7K', dxcc => 113, itu => 61, cq => 31, utcoff => 11.0, lat => 28.5, long => -178.5 }, 'Prefix'),
+   177 => bless( { name => 'Amer-Samoa-KH8', dxcc => 114, itu => 62, cq => 32, utcoff => 11.0, lat => -14, long => -171 }, 'Prefix'),
+   178 => bless( { name => 'Wake-Is-KH9', dxcc => 115, itu => 65, cq => 31, utcoff => 11.0, lat => 19.5, long => 167.033333333333 }, 'Prefix'),
+   179 => bless( { name => 'Mariana-Is-KH0', dxcc => 116, itu => 64, cq => 27, utcoff => 10.0, lat => 16, long => 146 }, 'Prefix'),
+   180 => bless( { name => 'Alaska-Anchorage-KL7', dxcc => 117, itu => 1, cq => 1, utcoff => 10.0, lat => 61.2, long => -150 }, 'Prefix'),
+   181 => bless( { name => 'Navassa-Is-KP1', dxcc => 118, itu => 11, cq => 8, utcoff => 5.0, lat => 18, long => -75 }, 'Prefix'),
+   182 => bless( { name => 'Virgin-Is-KP2', dxcc => 119, itu => 11, cq => 8, utcoff => 5.0, lat => 18, long => -64.5 }, 'Prefix'),
+   183 => bless( { name => 'Puerto-Rico-KP4', dxcc => 120, itu => 11, cq => 8, utcoff => 5.0, lat => 18.5, long => -66.2 }, 'Prefix'),
+   184 => bless( { name => 'Desecheo-Is-KP5', dxcc => 121, itu => 11, cq => 8, utcoff => 5.0, lat => 18.3, long => -67.5 }, 'Prefix'),
+   185 => bless( { name => 'Norway-LA', dxcc => 123, itu => 18, cq => 14, utcoff => -1.0, lat => 60, long => 10.7 }, 'Prefix'),
+   186 => bless( { name => 'Argentina-LU', dxcc => 124, itu => 14, cq => 13, utcoff => 3.0, lat => -34.6, long => -58.4 }, 'Prefix'),
+   187 => bless( { name => 'Luxembourg-LX', dxcc => 125, itu => 27, cq => 14, utcoff => -1.0, lat => 49, long => 6.5 }, 'Prefix'),
+   188 => bless( { name => 'Bulgaria-LZ', dxcc => 126, itu => 28, cq => 20, utcoff => -2.0, lat => 42.7, long => 23.3 }, 'Prefix'),
+   189 => bless( { name => 'Lithuania-LY', dxcc => 194, itu => 29, cq => 16, utcoff => -3.0, lat => 54.5, long => 25.5 }, 'Prefix'),
+   190 => bless( { name => 'Peru-OA', dxcc => 127, itu => 12, cq => 10, utcoff => 5.0, lat => -12, long => -77 }, 'Prefix'),
+   191 => bless( { name => 'Lebanon-OD', dxcc => 128, itu => 39, cq => 20, utcoff => -2.0, lat => 33.9, long => 35.5 }, 'Prefix'),
+   192 => bless( { name => 'Austria-OE', dxcc => 129, itu => 28, cq => 15, utcoff => -1.0, lat => 48.2, long => 16.3 }, 'Prefix'),
+   193 => bless( { name => 'Finland-OH', dxcc => 130, itu => 18, cq => 15, utcoff => -2.0, lat => 60.2, long => 25 }, 'Prefix'),
+   194 => bless( { name => 'Aland-Is-OH0', dxcc => 131, itu => 18, cq => 15, utcoff => -2.0, lat => 60.2, long => 20 }, 'Prefix'),
+   195 => bless( { name => 'Market-Reef-OJ0', dxcc => 132, itu => 18, cq => 15, utcoff => -2.0, lat => 60.3, long => 19 }, 'Prefix'),
+   196 => bless( { name => 'Czech-Rep-OK', dxcc => 133, itu => 28, cq => 15, utcoff => -1.0, lat => 50.1333333333333, long => 14.7166666666667 }, 'Prefix'),
+   197 => bless( { name => 'Slovakia-OM', dxcc => 331, itu => 28, cq => 15, utcoff => -1.0, lat => 48.6666666666667, long => 19.3333333333333 }, 'Prefix'),
+   198 => bless( { name => 'Belgium-ON', dxcc => 134, itu => 27, cq => 14, utcoff => -1.0, lat => 50.9, long => 4.4 }, 'Prefix'),
+   199 => bless( { name => 'Greenland-OX', dxcc => 135, itu => 5, cq => 40, utcoff => 3.0, lat => 64.1833333333333, long => -51.7333333333333 }, 'Prefix'),
+   200 => bless( { name => 'Faeroe-Is-OY', dxcc => 136, itu => 18, cq => 14, utcoff => 0.0, lat => 62, long => -7 }, 'Prefix'),
+   201 => bless( { name => 'Denmark-OZ', dxcc => 137, itu => 18, cq => 14, utcoff => -1.0, lat => 55.7, long => 12.6 }, 'Prefix'),
+   202 => bless( { name => 'Papua-Madang-P2', dxcc => 138, itu => 51, cq => 28, utcoff => -10.0, lat => -5.2, long => 145.6 }, 'Prefix'),
+   203 => bless( { name => 'Aruba-P4', dxcc => 326, itu => 11, cq => 9, utcoff => 4.0, lat => 12.5, long => -69.9666666666667 }, 'Prefix'),
+   204 => bless( { name => 'Netherlands-PA', dxcc => 139, itu => 27, cq => 14, utcoff => -1.0, lat => 52.4, long => 4.9 }, 'Prefix'),
+   205 => bless( { name => 'Neth-Antilles-PJ2', dxcc => 140, itu => 11, cq => 9, utcoff => 4.0, lat => 12, long => -69 }, 'Prefix'),
+   206 => bless( { name => 'St-Maarten-PJ7', dxcc => 141, itu => 11, cq => 8, utcoff => 4.0, lat => 18, long => -63 }, 'Prefix'),
+   207 => bless( { name => 'Brazil-Brasilia-PY', dxcc => 142, itu => 13, cq => 11, utcoff => 3.0, lat => -16, long => -48 }, 'Prefix'),
+   208 => bless( { name => 'Fer-De-Noronha-PY0F', dxcc => 144, itu => 13, cq => 11, utcoff => 2.0, lat => -3, long => -32 }, 'Prefix'),
+   209 => bless( { name => 'Peter-Paul-Rks-PY0S', dxcc => 145, itu => 13, cq => 11, utcoff => 2.0, lat => 1.5, long => -30 }, 'Prefix'),
+   210 => bless( { name => 'Trindade-PY0T', dxcc => 146, itu => 15, cq => 11, utcoff => 3.0, lat => 20.5166666666667, long => -29.3166666666667 }, 'Prefix'),
+   211 => bless( { name => 'Surinam-PZ', dxcc => 147, itu => 12, cq => 9, utcoff => 3.30, lat => 5.83333333333333, long => -55.1666666666667 }, 'Prefix'),
+   212 => bless( { name => 'Western-Sahara-S0', dxcc => 325, itu => 21, cq => 37, utcoff => 0.0, lat => 33, long => -8 }, 'Prefix'),
+   213 => bless( { name => 'Bangladesh-S2', dxcc => 148, itu => 41, cq => 22, utcoff => -6.0, lat => 24, long => 90.5 }, 'Prefix'),
+   214 => bless( { name => 'Seychelles-S7', dxcc => 149, itu => 53, cq => 39, utcoff => -4.0, lat => -4, long => 56 }, 'Prefix'),
+   215 => bless( { name => 'Sao-Tome-S9', dxcc => 150, itu => 47, cq => 36, utcoff => 0.0, lat => 0.3, long => 6 }, 'Prefix'),
+   216 => bless( { name => 'Sweden-SM', dxcc => 151, itu => 18, cq => 14, utcoff => -1.0, lat => 59.3, long => 18.1 }, 'Prefix'),
+   217 => bless( { name => 'Poland-SP', dxcc => 152, itu => 28, cq => 15, utcoff => -1.0, lat => 50, long => 20 }, 'Prefix'),
+   218 => bless( { name => 'Sudan-ST', dxcc => 153, itu => 48, cq => 34, utcoff => -2.0, lat => 15.5, long => 32.5 }, 'Prefix'),
+   219 => bless( { name => 'Southern-Sudan-ST0', dxcc => 154, itu => 48, cq => 34, utcoff => -2.0, lat => 5, long => 31.6 }, 'Prefix'),
+   220 => bless( { name => 'Egypt-SU', dxcc => 155, itu => 38, cq => 34, utcoff => -2.0, lat => 30, long => 31.4 }, 'Prefix'),
+   221 => bless( { name => 'Greece-SV', dxcc => 156, itu => 28, cq => 20, utcoff => -2.0, lat => 38, long => 23.7 }, 'Prefix'),
+   222 => bless( { name => 'Dodecanese-SV5', dxcc => 157, itu => 28, cq => 20, utcoff => -2.0, lat => 36.5, long => 27.5 }, 'Prefix'),
+   223 => bless( { name => 'Crete-SV9', dxcc => 158, itu => 28, cq => 20, utcoff => -2.0, lat => 35.4, long => 25.2 }, 'Prefix'),
+   224 => bless( { name => 'Mount-Athos-SV/A', dxcc => 159, itu => 28, cq => 20, utcoff => -2.0, lat => 40.2, long => 24.3 }, 'Prefix'),
+   225 => bless( { name => 'Tuvalu-T2', dxcc => 160, itu => 65, cq => 31, utcoff => -12.0, lat => -8.7, long => 178.6 }, 'Prefix'),
+   226 => bless( { name => 'West-Kiribati-T30', dxcc => 143, itu => 65, cq => 31, utcoff => 11.0, lat => 1.63333333333333, long => 173.25 }, 'Prefix'),
+   227 => bless( { name => 'Central-Kiribati-T31', dxcc => 161, itu => 62, cq => 31, utcoff => 11.0, lat => 3.38333333333333, long => -172.133333333333 }, 'Prefix'),
+   228 => bless( { name => 'East-Kiribati-T32', dxcc => 162, itu => 61, cq => 31, utcoff => 10.0, lat => 2.43333333333333, long => -157.55 }, 'Prefix'),
+   229 => bless( { name => 'Banaba-Is-T33', dxcc => 323, itu => 62, cq => 31, utcoff => 11.0, lat => 1.43333333333333, long => 169.966666666667 }, 'Prefix'),
+   230 => bless( { name => 'Somali-T5', dxcc => 163, itu => 48, cq => 37, utcoff => -3.0, lat => 2, long => 46 }, 'Prefix'),
+   231 => bless( { name => 'San-Marino-T7', dxcc => 164, itu => 28, cq => 15, utcoff => -1.0, lat => 44, long => 13 }, 'Prefix'),
+   232 => bless( { name => 'Turkey-TA', dxcc => 165, itu => 39, cq => 20, utcoff => -2.0, lat => 39.9, long => 32.9 }, 'Prefix'),
+   233 => bless( { name => 'Iceland-TF', dxcc => 166, itu => 17, cq => 40, utcoff => 0.0, lat => 64.1, long => -22 }, 'Prefix'),
+   234 => bless( { name => 'Guatemala-TG', dxcc => 167, itu => 11, cq => 7, utcoff => 6.0, lat => 14.6, long => -90.5 }, 'Prefix'),
+   235 => bless( { name => 'Costa-Rica-TI', dxcc => 168, itu => 11, cq => 7, utcoff => 6.0, lat => 10, long => -84 }, 'Prefix'),
+   236 => bless( { name => 'Cocos-Is-TI9', dxcc => 169, itu => 11, cq => 7, utcoff => 6.0, lat => 5, long => -87 }, 'Prefix'),
+   237 => bless( { name => 'Cameroon-TJ', dxcc => 170, itu => 47, cq => 36, utcoff => -1.0, lat => 4, long => 12 }, 'Prefix'),
+   238 => bless( { name => 'Corsica-TK', dxcc => 171, itu => 28, cq => 15, utcoff => -1.0, lat => 42, long => 9 }, 'Prefix'),
+   239 => bless( { name => 'Central-Af.-Rep-TL', dxcc => 172, itu => 47, cq => 36, utcoff => -1.0, lat => 4.5, long => 18 }, 'Prefix'),
+   240 => bless( { name => 'Congo-TN', dxcc => 173, itu => 52, cq => 36, utcoff => -1.0, lat => -4, long => 15 }, 'Prefix'),
+   241 => bless( { name => 'Gabon-TR', dxcc => 174, itu => 52, cq => 36, utcoff => -1.0, lat => 0.5, long => 9 }, 'Prefix'),
+   242 => bless( { name => 'Chad-TT', dxcc => 175, itu => 47, cq => 36, utcoff => -1.0, lat => 12, long => 15 }, 'Prefix'),
+   243 => bless( { name => 'Ivory-Coast-TU', dxcc => 176, itu => 46, cq => 35, utcoff => 0.0, lat => 5.5, long => -4 }, 'Prefix'),
+   244 => bless( { name => 'Benin-TY', dxcc => 177, itu => 46, cq => 35, utcoff => -1.0, lat => 6.3, long => 2.3 }, 'Prefix'),
+   245 => bless( { name => 'Mali-TZ', dxcc => 178, itu => 46, cq => 35, utcoff => 0.0, lat => 13, long => -8 }, 'Prefix'),
+   246 => bless( { name => 'Eur-Russia-UA1-UA', dxcc => 179, itu => 29, cq => 16, utcoff => -3.0, lat => 60, long => 30 }, 'Prefix'),
+   247 => bless( { name => 'Kaliningrad-UA2', dxcc => 181, itu => 29, cq => 15, utcoff => -3.0, lat => 55, long => 20.5 }, 'Prefix'),
+   248 => bless( { name => 'Asia-Novosibirsk-UA9', dxcc => 182, itu => 32, cq => 18, utcoff => -7.0, lat => 55, long => 83 }, 'Prefix'),
+   249 => bless( { name => 'Ukraine-UR(OLD_UB)', dxcc => 183, itu => 29, cq => 16, utcoff => -3.0, lat => 50.5, long => 31 }, 'Prefix'),
+   250 => bless( { name => 'Belarus-EU(OLD_UC)', dxcc => 184, itu => 29, cq => 16, utcoff => -3.0, lat => 54, long => 27.5 }, 'Prefix'),
+   251 => bless( { name => 'Azerbaijan-4J(OLD_UD)', dxcc => 185, itu => 29, cq => 21, utcoff => -4.0, lat => 40.5, long => 50 }, 'Prefix'),
+   252 => bless( { name => 'Georgia-4L(OLD_UF)', dxcc => 186, itu => 29, cq => 21, utcoff => -4.0, lat => 41.5, long => 45 }, 'Prefix'),
+   253 => bless( { name => 'Armenia-EK(OLD_UG)', dxcc => 187, itu => 29, cq => 21, utcoff => -4.0, lat => 50.5, long => 44.5 }, 'Prefix'),
+   254 => bless( { name => 'Turkmenistan-EZ(OLD_UH)', dxcc => 188, itu => 30, cq => 17, utcoff => -5.0, lat => 38, long => 58 }, 'Prefix'),
+   255 => bless( { name => 'Uzbekistan-UJ(OLD_UI)', dxcc => 189, itu => 30, cq => 17, utcoff => -5.0, lat => 40, long => 64 }, 'Prefix'),
+   256 => bless( { name => 'Tajikistan-EY(OLD_UJ)', dxcc => 190, itu => 30, cq => 17, utcoff => -6.0, lat => 39.5, long => 67 }, 'Prefix'),
+   257 => bless( { name => 'Kazakhstan-UN(OLD_UL)', dxcc => 191, itu => 30, cq => 17, utcoff => -6.0, lat => 53, long => 76 }, 'Prefix'),
+   258 => bless( { name => 'Kyrgyzstan-EX(OLD_UM)', dxcc => 192, itu => 31, cq => 17, utcoff => -6.0, lat => 42, long => 75 }, 'Prefix'),
+   259 => bless( { name => 'Moldova-ER(OLD_UO)', dxcc => 193, itu => 29, cq => 16, utcoff => -3.0, lat => 47, long => 29 }, 'Prefix'),
+   260 => bless( { name => 'New-Brunsick-VE', dxcc => 197, itu => 9, cq => 5, utcoff => 4.0, lat => 45.3, long => -66.1 }, 'Prefix'),
+   261 => bless( { name => 'Australia-VK1-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
+   262 => bless( { name => 'Lord-Howe-Is-VK9/L', dxcc => 199, itu => 60, cq => 30, utcoff => -10.0, lat => -31.6, long => 159.1 }, 'Prefix'),
+   263 => bless( { name => 'Christmas-Is-VK9/X', dxcc => 200, itu => 54, cq => 29, utcoff => -6.30, lat => -10.5, long => 105.7 }, 'Prefix'),
+   264 => bless( { name => 'Cocos-Keeling-VK9Y', dxcc => 201, itu => 54, cq => 29, utcoff => -6.30, lat => -12.2, long => 96.8 }, 'Prefix'),
+   265 => bless( { name => 'Mellish-Reef-VK9/Z', dxcc => 202, itu => 56, cq => 30, utcoff => -10.0, lat => -17.6, long => 155.8 }, 'Prefix'),
+   266 => bless( { name => 'Norfolk-Is-VK9/N', dxcc => 203, itu => 60, cq => 32, utcoff => -11.30, lat => -29, long => 168 }, 'Prefix'),
+   267 => bless( { name => 'Willis-Is-VK9/W', dxcc => 204, itu => 60, cq => 30, utcoff => -10.0, lat => -16, long => 149.5 }, 'Prefix'),
+   268 => bless( { name => 'Heard-Is-VK0/H', dxcc => 205, itu => 68, cq => 39, utcoff => -5.0, lat => -53, long => 73.4 }, 'Prefix'),
+   269 => bless( { name => 'Macquarie-Is-VK0/M', dxcc => 206, itu => 60, cq => 30, utcoff => -11.0, lat => -54.7, long => 158.8 }, 'Prefix'),
+   270 => bless( { name => 'Anguilla-VP2E', dxcc => 207, itu => 11, cq => 8, utcoff => 4.0, lat => 18.3, long => -63 }, 'Prefix'),
+   271 => bless( { name => 'Montserrat-VP2M', dxcc => 208, itu => 11, cq => 8, utcoff => 4.0, lat => 16.8, long => -62.2 }, 'Prefix'),
+   272 => bless( { name => 'Tortola-BVI-VP2V', dxcc => 209, itu => 11, cq => 8, utcoff => 4.0, lat => 18.4, long => -64.6 }, 'Prefix'),
+   273 => bless( { name => 'Turks-Caicos-VP5', dxcc => 210, itu => 11, cq => 8, utcoff => 4.0, lat => 22, long => -72 }, 'Prefix'),
+   274 => bless( { name => 'Falkland-Is-VP8/F', dxcc => 234, itu => 16, cq => 13, utcoff => 3.0, lat => -51.75, long => -59 }, 'Prefix'),
+   275 => bless( { name => 'So-Georgia-VP8/G', dxcc => 211, itu => 73, cq => 13, utcoff => 2.0, lat => -54, long => -37 }, 'Prefix'),
+   276 => bless( { name => 'So-Orkney-VP8/O', dxcc => 212, itu => 73, cq => 13, utcoff => 2.0, lat => -60, long => -46 }, 'Prefix'),
+   277 => bless( { name => 'So-Sandwich-VP8/S', dxcc => 213, itu => 73, cq => 13, utcoff => 2.0, lat => -57, long => -28 }, 'Prefix'),
+   278 => bless( { name => 'So-Shetland-VP8/H', dxcc => 214, itu => 73, cq => 13, utcoff => 2.0, lat => -62, long => -58.5 }, 'Prefix'),
+   279 => bless( { name => 'Pitcairn-Is-VP6', dxcc => 217, itu => 63, cq => 32, utcoff => 8.30, lat => -25.1, long => -130.1 }, 'Prefix'),
+   280 => bless( { name => 'Bermuda-VP9', dxcc => 215, itu => 11, cq => 5, utcoff => 4.0, lat => 32.3, long => -64.7 }, 'Prefix'),
+   281 => bless( { name => 'Chagos-VQ9', dxcc => 216, itu => 41, cq => 39, utcoff => -5.0, lat => -7.3, long => 72.4 }, 'Prefix'),
+   282 => bless( { name => 'Hong-Kong-VS', dxcc => 218, itu => 44, cq => 24, utcoff => -8.0, lat => 22.5, long => 114 }, 'Prefix'),
+   283 => bless( { name => 'India-Bombay-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 19, long => 72.8 }, 'Prefix'),
+   284 => bless( { name => 'Andaman-Is-VU7/A', dxcc => 220, itu => 49, cq => 26, utcoff => -5.30, lat => 10, long => 94 }, 'Prefix'),
+   285 => bless( { name => 'Laccadive-Is-VU7/L', dxcc => 221, itu => 41, cq => 22, utcoff => -5.30, lat => 10, long => 70 }, 'Prefix'),
+   286 => bless( { name => 'Antigua-V2', dxcc => 222, itu => 11, cq => 8, utcoff => 4.0, lat => 17, long => -59.8 }, 'Prefix'),
+   287 => bless( { name => 'Belize-V3', dxcc => 223, itu => 11, cq => 7, utcoff => 6.0, lat => 17.5, long => -88.3 }, 'Prefix'),
+   288 => bless( { name => 'St-Kitts-V4', dxcc => 224, itu => 11, cq => 8, utcoff => 4.0, lat => 17.3, long => -62.6 }, 'Prefix'),
+   289 => bless( { name => 'Namibia-V5', dxcc => 267, itu => 57, cq => 38, utcoff => -2.0, lat => -22.6, long => 17.1 }, 'Prefix'),
+   290 => bless( { name => 'Brunei-V8', dxcc => 225, itu => 54, cq => 28, utcoff => -8.0, lat => 5, long => 115 }, 'Prefix'),
+   291 => bless( { name => 'Fed-Micronesia-V6', dxcc => 104, itu => 64, cq => 27, utcoff => -10.0, lat => 6.66666666666667, long => 143 }, 'Prefix'),
+   292 => bless( { name => 'Marshall-Is-V7', dxcc => 122, itu => 65, cq => 31, utcoff => -12.0, lat => 9.08333333333333, long => 167.333333333333 }, 'Prefix'),
+   293 => bless( { name => 'United-States-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
+   294 => bless( { name => 'Mexico-XE1-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 19.4, long => -99.1 }, 'Prefix'),
+   295 => bless( { name => 'Revilla-Gigedo-XF4', dxcc => 228, itu => 10, cq => 6, utcoff => 7.0, lat => 18, long => -112 }, 'Prefix'),
+   296 => bless( { name => 'Bukina-Faso-XT', dxcc => 229, itu => 46, cq => 35, utcoff => 0.0, lat => 12.3, long => -1.7 }, 'Prefix'),
+   297 => bless( { name => 'Kampuchea-XU', dxcc => 230, itu => 49, cq => 26, utcoff => -7.0, lat => 11.5, long => 105 }, 'Prefix'),
+   298 => bless( { name => 'Laos-XW', dxcc => 232, itu => 49, cq => 26, utcoff => -7.0, lat => 18, long => 102.5 }, 'Prefix'),
+   299 => bless( { name => 'Macao-XX', dxcc => 233, itu => 44, cq => 24, utcoff => -8.0, lat => 22, long => 114 }, 'Prefix'),
+   300 => bless( { name => 'Burma-XZ', dxcc => 235, itu => 49, cq => 26, utcoff => -6.30, lat => 16.8, long => 96 }, 'Prefix'),
+   301 => bless( { name => 'Afghanistan-YA', dxcc => 237, itu => 40, cq => 21, utcoff => -4.30, lat => 32, long => 65 }, 'Prefix'),
+   302 => bless( { name => 'Indonesia-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => -6, long => 107 }, 'Prefix'),
+   303 => bless( { name => 'Iraq-YI', dxcc => 239, itu => 39, cq => 21, utcoff => -3.0, lat => 33, long => 44.5 }, 'Prefix'),
+   304 => bless( { name => 'Vanuatu-YJ', dxcc => 240, itu => 56, cq => 32, utcoff => -11.0, lat => -18, long => 168 }, 'Prefix'),
+   305 => bless( { name => 'Syria-YK', dxcc => 241, itu => 39, cq => 20, utcoff => -2.0, lat => 34, long => 36.5 }, 'Prefix'),
+   306 => bless( { name => 'Latvia-YL', dxcc => 195, itu => 29, cq => 15, utcoff => -3.0, lat => 54.5, long => 25.5 }, 'Prefix'),
+   307 => bless( { name => 'Nicaragua-YN', dxcc => 242, itu => 11, cq => 7, utcoff => 7.0, lat => 12, long => -86 }, 'Prefix'),
+   308 => bless( { name => 'Romania-YO', dxcc => 243, itu => 28, cq => 20, utcoff => -2.0, lat => 44.4, long => 26.1 }, 'Prefix'),
+   309 => bless( { name => 'El-Salvador-YS', dxcc => 244, itu => 11, cq => 7, utcoff => 7.0, lat => 14, long => -89 }, 'Prefix'),
+   310 => bless( { name => 'Rest-Yugoslavia-YU', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.8333333333333, long => 20.5166666666667 }, 'Prefix'),
+   311 => bless( { name => 'Bosnia-hercegovina-T9', dxcc => 336, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
+   312 => bless( { name => 'Macedonia-Z3', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
+   313 => bless( { name => 'Croatia-9A', dxcc => 334, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
+   314 => bless( { name => 'Slovenia-S5', dxcc => 335, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
+   315 => bless( { name => 'Venezuela-YV', dxcc => 246, itu => 12, cq => 9, utcoff => 4.0, lat => 10.5, long => -67 }, 'Prefix'),
+   316 => bless( { name => 'Aves-Is-YV0', dxcc => 247, itu => 11, cq => 8, utcoff => 4.0, lat => 15.7, long => -63.6333333333333 }, 'Prefix'),
+   317 => bless( { name => 'Albania-ZA', dxcc => 248, itu => 28, cq => 15, utcoff => -1.0, lat => 41.5, long => 19.5 }, 'Prefix'),
+   318 => bless( { name => 'Gibraltar-ZB', dxcc => 249, itu => 37, cq => 14, utcoff => -1.0, lat => 36, long => -5.5 }, 'Prefix'),
+   319 => bless( { name => 'UK-Soverign-Base-ZC4', dxcc => 250, itu => 39, cq => 20, utcoff => -2.0, lat => 35, long => 33 }, 'Prefix'),
+   320 => bless( { name => 'St-Helena-ZD7', dxcc => 251, itu => 66, cq => 36, utcoff => 0.0, lat => -16, long => -6 }, 'Prefix'),
+   321 => bless( { name => 'Ascension-Is-ZD8', dxcc => 252, itu => 66, cq => 36, utcoff => 0.0, lat => -8, long => -14 }, 'Prefix'),
+   322 => bless( { name => 'Tristan-Da-Cunha-ZD9', dxcc => 253, itu => 66, cq => 38, utcoff => 0.0, lat => -37.1, long => -12.3 }, 'Prefix'),
+   323 => bless( { name => 'Zimbabwe-Z2', dxcc => 254, itu => 53, cq => 38, utcoff => -2.0, lat => -18, long => 31 }, 'Prefix'),
+   324 => bless( { name => 'Cayman-Is-ZF', dxcc => 255, itu => 11, cq => 8, utcoff => 5.0, lat => 19.5, long => -81.2 }, 'Prefix'),
+   325 => bless( { name => 'No-Cook-Is-ZK1/N', dxcc => 256, itu => 62, cq => 32, utcoff => 10.30, lat => -10.5, long => -161 }, 'Prefix'),
+   326 => bless( { name => 'So-Cook-Is-ZK1/S', dxcc => 257, itu => 62, cq => 32, utcoff => 10.30, lat => -21, long => -159.5 }, 'Prefix'),
+   327 => bless( { name => 'Niue-Is-ZK2', dxcc => 258, itu => 62, cq => 32, utcoff => 11.0, lat => -19, long => -170 }, 'Prefix'),
+   328 => bless( { name => 'Tokelaus-ZK3', dxcc => 259, itu => 62, cq => 31, utcoff => 11.0, lat => -8.4, long => -172.7 }, 'Prefix'),
+   329 => bless( { name => 'New-Zealand-ZL1-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -36.9, long => 174.8 }, 'Prefix'),
+   330 => bless( { name => 'Chatham-Is-ZL7', dxcc => 261, itu => 60, cq => 32, utcoff => -12.45, lat => -44, long => -176 }, 'Prefix'),
+   331 => bless( { name => 'Kermadec-Is-ZL8', dxcc => 262, itu => 60, cq => 32, utcoff => -12.0, lat => -30, long => -178 }, 'Prefix'),
+   332 => bless( { name => 'Auckland-Campbell-ZL9', dxcc => 263, itu => 60, cq => 32, utcoff => -12.0, lat => -52.5, long => 169 }, 'Prefix'),
+   333 => bless( { name => 'Paraguay-ZP', dxcc => 333, itu => 14, cq => 11, utcoff => 4.0, lat => -25.3, long => -57.7 }, 'Prefix'),
+   334 => bless( { name => 'So-Africa-ZS1-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -33.9, long => 18.4 }, 'Prefix'),
+   335 => bless( { name => 'Marion-Is-ZS8', dxcc => 266, itu => 57, cq => 38, utcoff => -2.0, lat => -46.8, long => 37.8 }, 'Prefix'),
+   336 => bless( { name => 'Pirat_Country', dxcc => 666, itu => 17, cq => 14, utcoff => -0.0, lat => 0, long => 0 }, 'Prefix'),
+   337 => bless( { name => 'Agalega-3B6', dxcc => 272, itu => 53, cq => 39, utcoff => -4.0, lat => -10.4, long => 56.6 }, 'Prefix'),
+   338 => bless( { name => 'Fiji-Is-3D2/F', dxcc => 277, itu => 56, cq => 32, utcoff => -12.0, lat => -17, long => 178 }, 'Prefix'),
+   339 => bless( { name => 'Russia-Antarcti-CE9(OLD_4K1)', dxcc => 102, itu => 67, cq => 12, utcoff => -4.0, lat => -65, long => -64 }, 'Prefix'),
+   340 => bless( { name => 'U.N.-NY-4U/U', dxcc => 284, itu => 8, cq => 5, utcoff => 5.0, lat => 40.8, long => -74 }, 'Prefix'),
+   341 => bless( { name => 'Yemen-7O', dxcc => 285, itu => 39, cq => 21, utcoff => -3.0, lat => 15, long => 44 }, 'Prefix'),
+   342 => bless( { name => 'Yemen-People\'s-7O', dxcc => 300, itu => 39, cq => 21, utcoff => -3.0, lat => 13, long => 45 }, 'Prefix'),
+   343 => bless( { name => 'Yemen-People\'s-7O', dxcc => 300, itu => 39, cq => 21, utcoff => -3.0, lat => 13, long => 45 }, 'Prefix'),
+   344 => bless( { name => 'East-Malaysia-9M6', dxcc => 313, itu => 54, cq => 28, utcoff => -7.30, lat => 2, long => 113 }, 'Prefix'),
+   345 => bless( { name => 'Zaire-Kisangani-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => 1, long => 25 }, 'Prefix'),
+   346 => bless( { name => 'Zaire-Lubumbashi-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => -12, long => 27.5 }, 'Prefix'),
+   347 => bless( { name => 'Zaire-9Q', dxcc => 315, itu => 52, cq => 36, utcoff => -1.0, lat => -4.3, long => 15.3 }, 'Prefix'),
+   348 => bless( { name => 'China-Peking-BY', dxcc => 10, itu => 33, cq => 24, utcoff => -8.0, lat => 40, long => 116.416666666667 }, 'Prefix'),
+   349 => bless( { name => 'China-Shanghai-BY', dxcc => 10, itu => 33, cq => 24, utcoff => -8.0, lat => 21.2, long => 121.5 }, 'Prefix'),
+   350 => bless( { name => 'China-BY', dxcc => 10, itu => 33, cq => 24, utcoff => -8.0, lat => 29.8, long => 106.5 }, 'Prefix'),
+   351 => bless( { name => 'Mozambique-Mozamb-C9', dxcc => 15, itu => 53, cq => 37, utcoff => -2.0, lat => -15, long => 41 }, 'Prefix'),
+   352 => bless( { name => 'Mozambique-C9', dxcc => 15, itu => 53, cq => 37, utcoff => -2.0, lat => -15, long => 41 }, 'Prefix'),
+   353 => bless( { name => 'Chile-N.-CE', dxcc => 16, itu => 14, cq => 12, utcoff => 4.0, lat => -20, long => -70.8 }, 'Prefix'),
+   354 => bless( { name => 'Chile-S.-CE', dxcc => 16, itu => 14, cq => 12, utcoff => 4.0, lat => -55, long => -70.8 }, 'Prefix'),
+   355 => bless( { name => 'Antarctica_Casey', dxcc => 102, itu => 67, cq => 29, utcoff => -8.0, lat => -66.2833333333333, long => 110.533333333333 }, 'Prefix'),
+   356 => bless( { name => 'Antarctica_Rockford', dxcc => 102, itu => 67, cq => 32, utcoff => 10.0, lat => -79, long => -150 }, 'Prefix'),
+   357 => bless( { name => 'Antarctica_Breadmore', dxcc => 102, itu => 67, cq => 32, utcoff => -12.0, lat => -83, long => 178 }, 'Prefix'),
+   358 => bless( { name => 'Antarctica_Davis', dxcc => 102, itu => 67, cq => 39, utcoff => -5.0, lat => -68.5833333333333, long => 77.9666666666667 }, 'Prefix'),
+   359 => bless( { name => 'Antarctica_Mawson', dxcc => 102, itu => 67, cq => 39, utcoff => -4.0, lat => -67.5833333333333, long => 62.8833333333333 }, 'Prefix'),
+   360 => bless( { name => 'Antarctica_Palmer', dxcc => 102, itu => 67, cq => 13, utcoff => 4.0, lat => -64.7666666666667, long => -64.0833333333333 }, 'Prefix'),
+   361 => bless( { name => 'Antarctica_Sanae', dxcc => 102, itu => 67, cq => 13, utcoff => 0.0, lat => -70.5, long => -2.5 }, 'Prefix'),
+   362 => bless( { name => 'Antarctica_McMurdo', dxcc => 102, itu => 67, cq => 30, utcoff => -11.0, lat => -77.8333333333333, long => 166.416666666667 }, 'Prefix'),
+   363 => bless( { name => 'Antarctica_Baudouin', dxcc => 102, itu => 67, cq => 38, utcoff => 0.0, lat => -70.4166666666667, long => 11.8333333333333 }, 'Prefix'),
+   364 => bless( { name => 'Antarctica_Novolaz', dxcc => 102, itu => 67, cq => 38, utcoff => 0.0, lat => -70.8333333333333, long => 11.8333333333333 }, 'Prefix'),
+   365 => bless( { name => 'Antarctica_Molodezanaja', dxcc => 102, itu => 67, cq => 13, utcoff => 3.0, lat => -67.5833333333333, long => -46.5833333333333 }, 'Prefix'),
+   366 => bless( { name => 'Antarctica_Mirnyy', dxcc => 102, itu => 67, cq => 29, utcoff => -6.0, lat => -66.5333333333333, long => 93 }, 'Prefix'),
+   367 => bless( { name => 'Antarctica_Scott', dxcc => 102, itu => 67, cq => 30, utcoff => -11.0, lat => -77.8333333333333, long => 166.416666666667 }, 'Prefix'),
+   368 => bless( { name => 'Antarctica_Dumont', dxcc => 102, itu => 67, cq => 30, utcoff => -9.0, lat => -66.6666666666667, long => 140 }, 'Prefix'),
+   369 => bless( { name => 'Antarctica_Gen.Belgrado', dxcc => 102, itu => 67, cq => 13, utcoff => 2.0, lat => -77.5, long => -36 }, 'Prefix'),
+   370 => bless( { name => 'Antarctica_Showa', dxcc => 102, itu => 67, cq => 13, utcoff => 2.0, lat => -69, long => -39.5833333333333 }, 'Prefix'),
+   371 => bless( { name => 'Antarctica', dxcc => 102, itu => 67, cq => 12, utcoff => 8.0, lat => -80, long => -120 }, 'Prefix'),
+   372 => bless( { name => 'Palestine-W-Bank', dxcc => 337, itu => 39, cq => 20, utcoff => -2.0, lat => 31.5333333333333, long => 35.1 }, 'Prefix'),
+   373 => bless( { name => 'Melilla-EA9', dxcc => 37, itu => 37, cq => 33, utcoff => -1.0, lat => 35.3, long => -3 }, 'Prefix'),
+   374 => bless( { name => 'Fr.-Pol.-Mururoa-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -21, long => -140 }, 'Prefix'),
+   375 => bless( { name => 'Fr.-Pol.-Bora-FO', dxcc => 47, itu => 63, cq => 32, utcoff => 10.0, lat => -16, long => -152 }, 'Prefix'),
    376 => bless( { name => 'Antarctica-Dumo-CE9', dxcc => 57, itu => 67, cq => 12, utcoff => -9.0, lat => -67, long => 140 }, 'Prefix'),
    377 => bless( { name => 'Columbia-HK', dxcc => 76, itu => 12, cq => 9, utcoff => 5.0, lat => 5, long => -74 }, 'Prefix'),
    378 => bless( { name => 'San-Andres-Is-HK0/A', dxcc => 78, itu => 11, cq => 7, utcoff => 5.0, lat => 12.5, long => -81.7 }, 'Prefix'),
    382 => bless( { name => 'Japan-JA7', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 38, long => 140.8 }, 'Prefix'),
    383 => bless( { name => 'Japan-JA8', dxcc => 95, itu => 45, cq => 25, utcoff => -9.0, lat => 43.8333333333333, long => 142 }, 'Prefix'),
    384 => bless( { name => 'Mongolia-West-JT', dxcc => 98, itu => 32, cq => 23, utcoff => -8.0, lat => 49, long => 90 }, 'Prefix'),
-   385 => bless( { name => 'Antarctica-Bryd-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => 8.0, lat => -80, long => -120 }, 'Prefix'),
-   386 => bless( { name => 'Antarctica-McMurdo-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => -11.0, lat => -77.5, long => 167 }, 'Prefix'),
+   385 => bless( { name => 'Antarctica-McMurdo-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => -11.0, lat => -77.5, long => 167 }, 'Prefix'),
+   386 => bless( { name => 'Antarctica-Bryd-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => 8.0, lat => -80, long => -120 }, 'Prefix'),
    387 => bless( { name => 'Antarctica-Palmer-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => 4.0, lat => -65, long => -64 }, 'Prefix'),
    388 => bless( { name => 'Antarctica-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => 4.0, lat => -65, long => -64 }, 'Prefix'),
    389 => bless( { name => 'Hawaii-Honolulu-KH6', dxcc => 112, itu => 61, cq => 31, utcoff => 10.0, lat => 21.3, long => -157.9 }, 'Prefix'),
    437 => bless( { name => 'Newfoundland-VE', dxcc => 197, itu => 9, cq => 5, utcoff => 3.0, lat => 48.5, long => -56 }, 'Prefix'),
    438 => bless( { name => 'Nova-Scotia-VE', dxcc => 197, itu => 9, cq => 5, utcoff => 4.0, lat => 44.6, long => -63.6 }, 'Prefix'),
    439 => bless( { name => 'Quebec-VE', dxcc => 197, itu => 4, cq => 5, utcoff => 5.0, lat => 45.5, long => -73.6 }, 'Prefix'),
-   440 => bless( { name => 'Ontario-VE', dxcc => 197, itu => 4, cq => 5, utcoff => 5.0, lat => 43.7, long => -79.4 }, 'Prefix'),
+   440 => bless( { name => 'Ontario-VE', dxcc => 197, itu => 4, cq => 4, utcoff => 5.0, lat => 43.7, long => -79.4 }, 'Prefix'),
    441 => bless( { name => 'Manitoba-VE', dxcc => 197, itu => 3, cq => 4, utcoff => 6.0, lat => 49.9, long => -97.1 }, 'Prefix'),
    442 => bless( { name => 'Saskatchewan-VE', dxcc => 197, itu => 3, cq => 4, utcoff => 7.0, lat => 50.5, long => -104.6 }, 'Prefix'),
    443 => bless( { name => 'Alberta-VE', dxcc => 197, itu => 2, cq => 3, utcoff => 7.0, lat => 51, long => -114.1 }, 'Prefix'),
    444 => bless( { name => 'British-Columbia-VE', dxcc => 197, itu => 2, cq => 3, utcoff => 8.0, lat => 49.3, long => -123.1 }, 'Prefix'),
    445 => bless( { name => 'Yukon-VE', dxcc => 197, itu => 75, cq => 1, utcoff => 8.0, lat => 60.7, long => -135.1 }, 'Prefix'),
-   446 => bless( { name => 'Canada-VE', dxcc => 197, itu => 4, cq => 5, utcoff => 5.0, lat => 43.7, long => -79.4 }, 'Prefix'),
-   447 => bless( { name => 'Australia-VK2-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -34, long => 151 }, 'Prefix'),
-   448 => bless( { name => 'Australia-VK3-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -38, long => 145 }, 'Prefix'),
-   449 => bless( { name => 'Australia-VK4-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -27.5, long => 153 }, 'Prefix'),
-   450 => bless( { name => 'Australia-VK5-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -34.9, long => 138.6 }, 'Prefix'),
-   451 => bless( { name => 'Australia-VK6-VK', dxcc => 198, itu => 58, cq => 29, utcoff => -8.0, lat => -32, long => 115.9 }, 'Prefix'),
-   452 => bless( { name => 'Australia-VK7-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -42.9, long => 147.3 }, 'Prefix'),
-   453 => bless( { name => 'Australia-VK8-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -12.5, long => 130.9 }, 'Prefix'),
-   454 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
-   455 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
-   456 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -34, long => 151 }, 'Prefix'),
-   457 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -38, long => 145 }, 'Prefix'),
-   458 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -27.5, long => 153 }, 'Prefix'),
-   459 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -34.9, long => 138.6 }, 'Prefix'),
-   460 => bless( { name => 'Australia-VK', dxcc => 198, itu => 58, cq => 29, utcoff => -8.0, lat => -32, long => 115.9 }, 'Prefix'),
-   461 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -42.9, long => 147.3 }, 'Prefix'),
-   462 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -12.5, long => 130.9 }, 'Prefix'),
-   463 => bless( { name => 'Cocos-Keeling-VK9/Y', dxcc => 201, itu => 54, cq => 29, utcoff => -6.30, lat => -12.2, long => 96.8 }, 'Prefix'),
-   464 => bless( { name => 'Hong-Kong-VS', dxcc => 218, itu => 44, cq => 24, utcoff => -8.0, lat => 22.2333333333333, long => 114.233333333333 }, 'Prefix'),
-   465 => bless( { name => 'India-Calcutta-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 22.6, long => 88.4 }, 'Prefix'),
-   466 => bless( { name => 'India-New-Delhi-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 77 }, 'Prefix'),
-   467 => bless( { name => 'India-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 77 }, 'Prefix'),
-   468 => bless( { name => 'India-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 0 }, 'Prefix'),
-   469 => bless( { name => 'Fed-Mic-V6-East', dxcc => 104, itu => 64, cq => 27, utcoff => -10.0, lat => 6.66666666666667, long => 160 }, 'Prefix'),
-   470 => bless( { name => 'Unites-States-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
-   471 => bless( { name => 'Connecticut-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 41.8, long => -72.7 }, 'Prefix'),
-   472 => bless( { name => 'Maine-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 44.8, long => -68.8 }, 'Prefix'),
-   473 => bless( { name => 'Massachusetts-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 42.4, long => -71.1 }, 'Prefix'),
-   474 => bless( { name => 'New-Hampshire-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 43.2, long => -71.5 }, 'Prefix'),
-   475 => bless( { name => 'Rhode-Island-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 41.8, long => -71.4 }, 'Prefix'),
-   476 => bless( { name => 'Vermont-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 44.3, long => -72.6 }, 'Prefix'),
-   477 => bless( { name => 'New-Jersey-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.4, long => -74.4 }, 'Prefix'),
-   478 => bless( { name => 'New-York-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 43.1, long => -73.8 }, 'Prefix'),
-   479 => bless( { name => 'Delaware-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.7, long => -75.5 }, 'Prefix'),
-   480 => bless( { name => 'D.C.-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 38.9, long => -77 }, 'Prefix'),
-   481 => bless( { name => 'Maryland-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.3, long => -76.6 }, 'Prefix'),
-   482 => bless( { name => 'Pennsylvania-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 40.3, long => -76.9 }, 'Prefix'),
-   483 => bless( { name => 'Alabama-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 32.4, long => -86.3 }, 'Prefix'),
-   484 => bless( { name => 'Florida-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 30.3, long => -81.7 }, 'Prefix'),
-   485 => bless( { name => 'Georgia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 33.8, long => -84.4 }, 'Prefix'),
-   486 => bless( { name => 'Kentucky-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 38.2, long => -85.8 }, 'Prefix'),
-   487 => bless( { name => 'North-Carolina-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 35.2, long => -80.8 }, 'Prefix'),
-   488 => bless( { name => 'South-Carolina-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 34, long => -81 }, 'Prefix'),
-   489 => bless( { name => 'Tennessee-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 36, long => -83.9 }, 'Prefix'),
-   490 => bless( { name => 'Virginia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 37.5, long => -77.4 }, 'Prefix'),
-   491 => bless( { name => 'Arkansas-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 34.7, long => -92.3 }, 'Prefix'),
-   492 => bless( { name => 'Louisiana-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 29.9, long => -90.1 }, 'Prefix'),
-   493 => bless( { name => 'Mississippi-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 32.3, long => -90.2 }, 'Prefix'),
-   494 => bless( { name => 'New-Mexico-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 35.1, long => -106.7 }, 'Prefix'),
-   495 => bless( { name => 'Oklahoma-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 35.5, long => -97.5 }, 'Prefix'),
-   496 => bless( { name => 'Texas-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 32.8, long => -96.8 }, 'Prefix'),
-   497 => bless( { name => 'California-LA-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 34.1, long => -118.2 }, 'Prefix'),
-   498 => bless( { name => 'California-SF-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 37.5833333333333, long => -122.5 }, 'Prefix'),
-   499 => bless( { name => 'California-MV-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 37.4166666666667, long => -122.066666666667 }, 'Prefix'),
-   500 => bless( { name => 'California-SACTO-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 38.7, long => -121.466666666667 }, 'Prefix'),
-   501 => bless( { name => 'Arizona-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 33.5, long => -112.1 }, 'Prefix'),
-   502 => bless( { name => 'Idaho-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 43.6, long => -116.2 }, 'Prefix'),
-   503 => bless( { name => 'Montana-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 45.8, long => -108.5 }, 'Prefix'),
-   504 => bless( { name => 'Nevada-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 36.2, long => -115.1 }, 'Prefix'),
-   505 => bless( { name => 'Oregon-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 45.5, long => -122.7 }, 'Prefix'),
-   506 => bless( { name => 'Utah-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 40.8, long => -111.9 }, 'Prefix'),
-   507 => bless( { name => 'Washington-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 47.6, long => -122.3 }, 'Prefix'),
-   508 => bless( { name => 'Wyoming-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 41.1, long => -104.8 }, 'Prefix'),
-   509 => bless( { name => 'Michigan-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 42.3, long => -83 }, 'Prefix'),
-   510 => bless( { name => 'Ohio-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 41.5, long => -81.7 }, 'Prefix'),
-   511 => bless( { name => 'West-Virginia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 38.4, long => -81.6 }, 'Prefix'),
-   512 => bless( { name => 'Illinois-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 41.9, long => -87.6 }, 'Prefix'),
-   513 => bless( { name => 'Indiana-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 39.8, long => -86.2 }, 'Prefix'),
-   514 => bless( { name => 'Wisconsin-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
-   515 => bless( { name => 'Colorado-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 39.7, long => -105 }, 'Prefix'),
-   516 => bless( { name => 'Iowa-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 41.6, long => -93.6 }, 'Prefix'),
-   517 => bless( { name => 'Kansas-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 37.7, long => -97.3 }, 'Prefix'),
-   518 => bless( { name => 'Minnesota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 45, long => -93.3 }, 'Prefix'),
-   519 => bless( { name => 'Missouri-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 39.1, long => -94.6 }, 'Prefix'),
-   520 => bless( { name => 'Nebraska-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 41.3, long => -95.9 }, 'Prefix'),
-   521 => bless( { name => 'North-Dakota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 46.9, long => -96.8 }, 'Prefix'),
-   522 => bless( { name => 'South-Dakota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 44.1, long => -103.2 }, 'Prefix'),
-   523 => bless( { name => 'Mexico-XE2-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 28.7, long => -106 }, 'Prefix'),
-   524 => bless( { name => 'Mexico-XE3-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 21, long => -89.7 }, 'Prefix'),
-   525 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 21, long => -89.7 }, 'Prefix'),
-   526 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 19.4, long => -99.1 }, 'Prefix'),
-   527 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 28.7, long => -106 }, 'Prefix'),
-   528 => bless( { name => 'Indonesia-EAST-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => -6, long => 135 }, 'Prefix'),
-   529 => bless( { name => 'Indonesia-WEST-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => 6, long => 95 }, 'Prefix'),
-   530 => bless( { name => 'Yugoslavia-YU', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
-   531 => bless( { name => 'New-Zealand-ZL2-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -41.3, long => 174.8 }, 'Prefix'),
-   532 => bless( { name => 'New-Zealand-ZL3-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -43, long => 172.5 }, 'Prefix'),
-   533 => bless( { name => 'New-Zealand-ZL4-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -46, long => 170 }, 'Prefix'),
-   534 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -46, long => 170 }, 'Prefix'),
-   535 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -36.9, long => 174.8 }, 'Prefix'),
-   536 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -41.3, long => 174.8 }, 'Prefix'),
-   537 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -43, long => 172.5 }, 'Prefix'),
-   538 => bless( { name => 'Antarctica-Scott-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => -11.0, lat => -78, long => 165 }, 'Prefix'),
-   539 => bless( { name => 'So-Africa-ZS5-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -29.9, long => 30.9 }, 'Prefix'),
-   540 => bless( { name => 'So-Africa-ZS6-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -26.2, long => 28.1 }, 'Prefix'),
-   541 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -26.2, long => 28.1 }, 'Prefix'),
-   542 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -33.9, long => 18.4 }, 'Prefix'),
-   543 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -28.5, long => 27 }, 'Prefix'),
-   544 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -29.9, long => 30.9 }, 'Prefix'),
+   446 => bless( { name => 'Labrador-VE', dxcc => 197, itu => 9, cq => 2, utcoff => 3.0, lat => 48.5, long => -56 }, 'Prefix'),
+   447 => bless( { name => 'Canada-VE', dxcc => 197, itu => 4, cq => 5, utcoff => 5.0, lat => 43.7, long => -79.4 }, 'Prefix'),
+   448 => bless( { name => 'Australia-VK2-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -34, long => 151 }, 'Prefix'),
+   449 => bless( { name => 'Australia-VK3-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -38, long => 145 }, 'Prefix'),
+   450 => bless( { name => 'Australia-VK4-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -27.5, long => 153 }, 'Prefix'),
+   451 => bless( { name => 'Australia-VK5-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -34.9, long => 138.6 }, 'Prefix'),
+   452 => bless( { name => 'Australia-VK6-VK', dxcc => 198, itu => 58, cq => 29, utcoff => -8.0, lat => -32, long => 115.9 }, 'Prefix'),
+   453 => bless( { name => 'Australia-VK7-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -42.9, long => 147.3 }, 'Prefix'),
+   454 => bless( { name => 'Australia-VK8-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -12.5, long => 130.9 }, 'Prefix'),
+   455 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
+   456 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -35.5, long => 149 }, 'Prefix'),
+   457 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -34, long => 151 }, 'Prefix'),
+   458 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -38, long => 145 }, 'Prefix'),
+   459 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -10.0, lat => -27.5, long => 153 }, 'Prefix'),
+   460 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -34.9, long => 138.6 }, 'Prefix'),
+   461 => bless( { name => 'Australia-VK', dxcc => 198, itu => 58, cq => 29, utcoff => -8.0, lat => -32, long => 115.9 }, 'Prefix'),
+   462 => bless( { name => 'Australia-VK', dxcc => 198, itu => 59, cq => 30, utcoff => -10.0, lat => -42.9, long => 147.3 }, 'Prefix'),
+   463 => bless( { name => 'Australia-VK', dxcc => 198, itu => 55, cq => 30, utcoff => -9.0, lat => -12.5, long => 130.9 }, 'Prefix'),
+   464 => bless( { name => 'Cocos-Keeling-VK9/Y', dxcc => 201, itu => 54, cq => 29, utcoff => -6.30, lat => -12.2, long => 96.8 }, 'Prefix'),
+   465 => bless( { name => 'Hong-Kong-VS', dxcc => 218, itu => 44, cq => 24, utcoff => -8.0, lat => 22.2333333333333, long => 114.233333333333 }, 'Prefix'),
+   466 => bless( { name => 'India-Calcutta-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 22.6, long => 88.4 }, 'Prefix'),
+   467 => bless( { name => 'India-New-Delhi-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 77 }, 'Prefix'),
+   468 => bless( { name => 'India-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 77 }, 'Prefix'),
+   469 => bless( { name => 'India-VU', dxcc => 219, itu => 41, cq => 22, utcoff => -5.30, lat => 28, long => 0 }, 'Prefix'),
+   470 => bless( { name => 'Fed-Mic-V6-East', dxcc => 104, itu => 64, cq => 27, utcoff => -10.0, lat => 6.66666666666667, long => 160 }, 'Prefix'),
+   471 => bless( { name => 'Unites-States-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
+   472 => bless( { name => 'Connecticut-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 41.8, long => -72.7 }, 'Prefix'),
+   473 => bless( { name => 'Maine-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 44.8, long => -68.8 }, 'Prefix'),
+   474 => bless( { name => 'Massachusetts-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 42.4, long => -71.1 }, 'Prefix'),
+   475 => bless( { name => 'New-Hampshire-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 43.2, long => -71.5 }, 'Prefix'),
+   476 => bless( { name => 'Rhode-Island-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 41.8, long => -71.4 }, 'Prefix'),
+   477 => bless( { name => 'Vermont-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 44.3, long => -72.6 }, 'Prefix'),
+   478 => bless( { name => 'New-Jersey-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.4, long => -74.4 }, 'Prefix'),
+   479 => bless( { name => 'New-York-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 43.1, long => -73.8 }, 'Prefix'),
+   480 => bless( { name => 'Delaware-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.7, long => -75.5 }, 'Prefix'),
+   481 => bless( { name => 'D.C.-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 38.9, long => -77 }, 'Prefix'),
+   482 => bless( { name => 'Maryland-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 39.3, long => -76.6 }, 'Prefix'),
+   483 => bless( { name => 'Pennsylvania-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 40.3, long => -76.9 }, 'Prefix'),
+   484 => bless( { name => 'Alabama-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 32.4, long => -86.3 }, 'Prefix'),
+   485 => bless( { name => 'Florida-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 30.3, long => -81.7 }, 'Prefix'),
+   486 => bless( { name => 'Georgia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 33.8, long => -84.4 }, 'Prefix'),
+   487 => bless( { name => 'Kentucky-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 38.2, long => -85.8 }, 'Prefix'),
+   488 => bless( { name => 'North-Carolina-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 35.2, long => -80.8 }, 'Prefix'),
+   489 => bless( { name => 'South-Carolina-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 34, long => -81 }, 'Prefix'),
+   490 => bless( { name => 'Tennessee-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 36, long => -83.9 }, 'Prefix'),
+   491 => bless( { name => 'Virginia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 37.5, long => -77.4 }, 'Prefix'),
+   492 => bless( { name => 'Arkansas-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 34.7, long => -92.3 }, 'Prefix'),
+   493 => bless( { name => 'Louisiana-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 29.9, long => -90.1 }, 'Prefix'),
+   494 => bless( { name => 'Mississippi-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 32.3, long => -90.2 }, 'Prefix'),
+   495 => bless( { name => 'New-Mexico-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 35.1, long => -106.7 }, 'Prefix'),
+   496 => bless( { name => 'Oklahoma-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 35.5, long => -97.5 }, 'Prefix'),
+   497 => bless( { name => 'Texas-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 32.8, long => -96.8 }, 'Prefix'),
+   498 => bless( { name => 'California-LA-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 34.1, long => -118.2 }, 'Prefix'),
+   499 => bless( { name => 'California-SF-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 37.5833333333333, long => -122.5 }, 'Prefix'),
+   500 => bless( { name => 'California-MV-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 37.4166666666667, long => -122.066666666667 }, 'Prefix'),
+   501 => bless( { name => 'California-SACTO-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 38.7, long => -121.466666666667 }, 'Prefix'),
+   502 => bless( { name => 'Arizona-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 33.5, long => -112.1 }, 'Prefix'),
+   503 => bless( { name => 'Idaho-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 43.6, long => -116.2 }, 'Prefix'),
+   504 => bless( { name => 'Montana-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 45.8, long => -108.5 }, 'Prefix'),
+   505 => bless( { name => 'Nevada-W', dxcc => 226, itu => 6, cq => 3, utcoff => 7.0, lat => 36.2, long => -115.1 }, 'Prefix'),
+   506 => bless( { name => 'Oregon-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 45.5, long => -122.7 }, 'Prefix'),
+   507 => bless( { name => 'Utah-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 40.8, long => -111.9 }, 'Prefix'),
+   508 => bless( { name => 'Washington-W', dxcc => 226, itu => 6, cq => 3, utcoff => 8.0, lat => 47.6, long => -122.3 }, 'Prefix'),
+   509 => bless( { name => 'Wyoming-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 41.1, long => -104.8 }, 'Prefix'),
+   510 => bless( { name => 'Michigan-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 42.3, long => -83 }, 'Prefix'),
+   511 => bless( { name => 'Ohio-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 41.5, long => -81.7 }, 'Prefix'),
+   512 => bless( { name => 'West-Virginia-W', dxcc => 226, itu => 8, cq => 5, utcoff => 5.0, lat => 38.4, long => -81.6 }, 'Prefix'),
+   513 => bless( { name => 'Illinois-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 41.9, long => -87.6 }, 'Prefix'),
+   514 => bless( { name => 'Indiana-W', dxcc => 226, itu => 8, cq => 4, utcoff => 5.0, lat => 39.8, long => -86.2 }, 'Prefix'),
+   515 => bless( { name => 'Wisconsin-W', dxcc => 226, itu => 8, cq => 4, utcoff => 6.0, lat => 43, long => -87.9 }, 'Prefix'),
+   516 => bless( { name => 'Colorado-W', dxcc => 226, itu => 7, cq => 4, utcoff => 7.0, lat => 39.7, long => -105 }, 'Prefix'),
+   517 => bless( { name => 'Iowa-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 41.6, long => -93.6 }, 'Prefix'),
+   518 => bless( { name => 'Kansas-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 37.7, long => -97.3 }, 'Prefix'),
+   519 => bless( { name => 'Minnesota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 45, long => -93.3 }, 'Prefix'),
+   520 => bless( { name => 'Missouri-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 39.1, long => -94.6 }, 'Prefix'),
+   521 => bless( { name => 'Nebraska-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 41.3, long => -95.9 }, 'Prefix'),
+   522 => bless( { name => 'North-Dakota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 46.9, long => -96.8 }, 'Prefix'),
+   523 => bless( { name => 'South-Dakota-W', dxcc => 226, itu => 7, cq => 4, utcoff => 6.0, lat => 44.1, long => -103.2 }, 'Prefix'),
+   524 => bless( { name => 'Mexico-XE2-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 28.7, long => -106 }, 'Prefix'),
+   525 => bless( { name => 'Mexico-XE3-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 21, long => -89.7 }, 'Prefix'),
+   526 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 21, long => -89.7 }, 'Prefix'),
+   527 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 19.4, long => -99.1 }, 'Prefix'),
+   528 => bless( { name => 'Mexico-XE', dxcc => 227, itu => 10, cq => 6, utcoff => 6.0, lat => 28.7, long => -106 }, 'Prefix'),
+   529 => bless( { name => 'Indonesia-EAST-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => -6, long => 135 }, 'Prefix'),
+   530 => bless( { name => 'Indonesia-WEST-YB', dxcc => 238, itu => 51, cq => 28, utcoff => -8.0, lat => 6, long => 95 }, 'Prefix'),
+   531 => bless( { name => 'Yugoslavia-YU', dxcc => 245, itu => 28, cq => 15, utcoff => -1.0, lat => 44.9, long => 20.5 }, 'Prefix'),
+   532 => bless( { name => 'New-Zealand-ZL2-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -41.3, long => 174.8 }, 'Prefix'),
+   533 => bless( { name => 'New-Zealand-ZL3-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -43, long => 172.5 }, 'Prefix'),
+   534 => bless( { name => 'New-Zealand-ZL4-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -46, long => 170 }, 'Prefix'),
+   535 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -46, long => 170 }, 'Prefix'),
+   536 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -36.9, long => 174.8 }, 'Prefix'),
+   537 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -41.3, long => 174.8 }, 'Prefix'),
+   538 => bless( { name => 'New-Zealand-ZL', dxcc => 260, itu => 60, cq => 32, utcoff => -12.0, lat => -43, long => 172.5 }, 'Prefix'),
+   539 => bless( { name => 'Antarctica-Scott-CE9', dxcc => 102, itu => 67, cq => 12, utcoff => -11.0, lat => -78, long => 165 }, 'Prefix'),
+   540 => bless( { name => 'So-Africa-ZS5-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -29.9, long => 30.9 }, 'Prefix'),
+   541 => bless( { name => 'So-Africa-ZS6-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -26.2, long => 28.1 }, 'Prefix'),
+   542 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -26.2, long => 28.1 }, 'Prefix'),
+   543 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -33.9, long => 18.4 }, 'Prefix'),
+   544 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -28.5, long => 27 }, 'Prefix'),
+   545 => bless( { name => 'So-Africa-ZS', dxcc => 265, itu => 57, cq => 38, utcoff => -2.0, lat => -29.9, long => 30.9 }, 'Prefix'),
 );
 
index e3acc1d0005f004a17318a05cca90156d0048384..cf90ff135df1bb1a2d68787c914025340f25c96c 100644 (file)
@@ -1,4 +1,18 @@
-! highest number now 337
+! highest DXCC number is now 339
+!
+! changed FO/M (Marquesas) to 339             991111
+! changed FO/A (Austral) to 338               991111
+! changed 3C0 to S latitude                   991111
+! changed R1MV to zone 29/16                  991111
+! changed BS7 to zone 50/27                   991111
+! changed BY's to zone 33/24                  991111
+! corrected Austria prefix to OE              991111
+! changed VE3 Ontario to zone 4/4             991111
+! corrected VO1 Newfoundland                  991111
+! changed VO2 Labrador to zone 9/2            991111
+! changed VQ9 zone to 41/39                   991111
+! corrected Tristan-Da-Cunha prefix to ZD9    991111
+!
 ! added E4 (Palestine) to 337
 ! made T9, 9A, S5 separate countries
 ! VR6 > VP6                                   980504
 !VK9 changes from QRZ DX, Issue 92-01
 ! changed dxcc cty paraguay from 164 to 333 (T7 = 164)
 ! changed pirate to 666
-!TO INSTALL THIS FILE:
-!Assuming this file is in the A: Drive, from PacketCluster, type:
-!    DOS/NOWAIT COPY A:WPXLOC.RAW C:\PACKCLUS\WPXLOC.RAW <ENTER>
-!When complete, the PacketCluster screen will return. At that point, type:
-!    DOS/NOWAIT POPULATE <ENTER>
-!When finished the PacketCluster screen will return.That's it!
 !
 1A S.M.O.M.-1A                        268 28 15 -1.0 41 54 0 N 12 24 0 E @
 1S Spratly-Is-1S                      269 50 26 -8.0 8 48 0 N 111 54 0 E @
@@ -43,7 +51,7 @@
 3B8 Mauritius-3B8                     273 53 39 -4.0 20 18 0 S 57 30 0 E @
 3B9 Rodriguez-Is-3B9                  274 53 39 -4.0 19 42 0 S 63 24 0 E @
 3C Equatorial-Guinea-3C               275 47 36 -1.0 1 48 0 N 10 0 0 E @
-3C0 Annobon-3C0                       276 52 36  0.0 1 30 0 N 5 36 0 E @
+3C0 Annobon-3C0                       276 52 36 0.0 1 30 0 S 5 36 0 E @
 3D2 Conway-Reef-3D2/C                 321 56 32 -13.0 21 44 0 S 174 38 0 E *
 3D2 Fiji-Is-3D2/F                     277 56 32 -12.0 17 0 0 S 178 0 0 E *
 3D2 Rotuma-3D2/R                      324 56 32 -12.0 12 30 0 S 177 0 0 E
 3D6 Swaziland-3DA                     278 57 38 -2.0 27 0 0 S 31 30 0 E
 3V Tunisia-3V                         279 37 33 -1.0 36 48 0 N 10 12 0 E @
 TS Tunisia-3V                         279 37 33 -1.0 36 48 0 N 10 12 0 E
-3W Vietnam-3W                         231 49 26 -8.0 21 03 0 N 105 50 0 E @
+3W Vietnam-3W                         231 49 26 -8.0 21 3 0 N 105 50 0 E @
 3X Guinea-3X                          280 46 35  0.0 10 0 0 N 13 0 0 W @
 3Y Bouvet-Is-3Y/B                     281 67 38  0.0 54 30 0 S 3 0 0 E
 3Y Peter-Is-3Y/P                      320 72 12  6.0 68 49 0 S 90 44 0 W
 3Y/B Bouvet-Is-3Y/B                   281 67 38  0.0 54 30 0 S 3 0 0 E @
 3Y/P Peter-Is-3Y/P                    320 72 12  6.0 68 49 0 S 90 44 0 W @
-R1MV Malyj-Vystoskij-R1MV(OLD_4J1)    322 18 15 -3.0 60 0 0 N 28 0 0 E @
+R1MV Malyj-Vystoskij-R1MV(OLD_4J1)    322 29 16 -3.0 60 0 0 N 28 0 0 E @
 R1AN Russia-Antarcti-CE9(OLD_4K1)     102 67 12 -4.0 65 0 0 S 64 0 0 W
 R1FJ Franz-Jo-Land-R1FJ(OLD_4K2)      180 75 40 -5.0 80 0 0 N 50 0 0 E @
 4S Sri-Lanka-4S                       282 41 22 -5.30 7 0 0 N 79 54 0 E @
@@ -132,19 +140,19 @@ A7 Qatar-A7                             6 39 21 -3.0 25 18 0 N 51 30 0 E @
 A9 Bahrein-A9                           7 39 21 -3.0 26 0 0 N 48 30 0 E @
 AP Pakistan-AP                          8 41 21 -5.0 25 0 0 N 67 0 0 E @
 AQ,AR,AS,6P,6Q,6R,6S Pakistan-AP        8 41 21 -5.0 25 0 0 N 67 0 0 E
-BS7 Scarborough-Reef-BS7              329 44 24 -8.0 15 7 0 N 117 51 0 E @
+BS7 Scarborough-Reef-BS7              329 50 27 -8.0 15 7 0 N 117 51 0 E @
 BV9P Pratas-Island-BV9P                 330 44 24 -8.0 21 0 0 N 117 0 0 E @
 BV Taiwan-BV                            9 44 24 -8.0 25 0 0 N 122 0 0 E @
 BO Taiwan-BV                            9 44 24 -8.0 25 0 0 N 122 0 0 E
-BY China-Bejing-BY                     10 33 23 -8.0 29 48 0 N 106 30 0 E * @
-BY China-Peking-BY                     10 33 23 -8.0 40 0 0 N 116 25 0 E *
-BY China-Shanghai-BY                   10 33 23 -8.0 21 12 0 N 121 30 0 E 
-BT China-Bejing-BY                     10 33 23 -8.0 29 48 0 N 106 30 0 E 
-BT China-Peking-BY                     10 33 23 -8.0 40 0 0 N 116 25 0 E 
-BT China-Shanghai-BY                   10 33 23 -8.0 21 12 0 N 121 30 0 E
-BA,BB,BC,BD,BE,BF,BG,BH,BI,BJ,BK,BL China-BY       10 33 23 -8.0 29 48 0 N 106 30 0 E
-BM,BN,BP,BQ,BR,BS,BU,BV,BW,BX,BZ,XS China-BY       10 33 23 -8.0 29 48 0 N 106 30 0 E
-3H,3I,3J,3K,3L,3M,3N,3O,3P,3Q,3R,3S,3T,3U China-BY 10 33 23 -8.0 29 48 0 N 106 30 0 E
+BY China-Bejing-BY                    10 33 24 -8.0 29 48 0 N 106 30 0 E * @
+BY China-Peking-BY                    10 33 24 -8.0 40 0 0 N 116 25 0 E *
+BY China-Shanghai-BY                  10 33 24 -8.0 21 12 0 N 121 30 0 E 
+BT China-Bejing-BY                    10 33 24 -8.0 29 48 0 N 106 30 0 E 
+BT China-Peking-BY                    10 33 24 -8.0 40 0 0 N 116 25 0 E 
+BT China-Shanghai-BY                  10 33 24 -8.0 21 12 0 N 121 30 0 E
+BA,BB,BC,BD,BE,BF,BG,BH,BI,BJ,BK,BL China-BY 10 33 24 -8.0 29 48 0 N 106 30 0 E
+BM,BN,BP,BQ,BR,BS,BU,BV,BW,BX,BZ,XS China-BY 10 33 24 -8.0 29 48 0 N 106 30 0 E
+3H,3I,3J,3K,3L,3M,3N,3O,3P,3Q,3R,3S,3T,3U China-BY 10 33 24 -8.0 29 48 0 N 106 30 0 E
 C2 Nauru-C2                            11 65 31 -11.30 0 30 0 S 166 54 0 E @
 C3 Andorra-C3                          12 27 14 -1.0 42 30 0 N 1 30 0 E @
 C5 Gambia-C5                           13 46 35  0.0 13 0 0 N 17 0 0 W @
@@ -236,12 +244,14 @@ FH Mayotte-FH                          44 53 39 -3.0 13 0 0 S 45 18 0 E @
 FK New-Caledonia-FK                    45 56 32 -11.0 22 0 0 S 167 0 0 E @
 FM Martinique-FM                       46 11  8  4.0 15 0 0 N 61 0 0 W @
 FO Fr.-Polynesia-FO                    47 63 32 10.0 17 53 0 S 149 56 0 W * @
-FO Fr.-Pol.-Marquesas.-FO              47 63 31 10.0 8 53 0 S 140 7 0 W *
 FO Fr.-Pol.-Mururoa-FO                 47 63 32 10.0 21 0 0 S 140 0 0 W *
 FO Fr.-Pol.-Bora-FO                    47 63 32 10.0 16 0 0 S 152 0 0 W *
-FO Fr.-Pol.-Austral-FO                 47 63 32 10.0 22 27 0 S 151 21 0 W
-FO Clipperton-FO/C                     48 10  7  7.0 11 0 0 N 110 0 0 W
+FO Austral-FO/A                       338 63 32 10.0 22 27 0 S 151 21 0 W *
+FO Clipperton-FO/C                    48 10 7 7.0 11 0 0 N 110 0 0 W *
+FO Marquesas-FO/M                     339 63 31 10.0 8 53 0 S 140 7 0 W
+FO/A Austral-FO/A                     338 63 32 10.0 22 27 0 S 151 21 0 W @
 FO/C Clipperton-FO/C                   48 10  7  7.0 11 0 0 N 110 0 0 W @
+FO/M Marquesas-FO/M                   339 63 31 10.0 8 53 0 S 140 7 0 W @
 FP S-Pierre-Miquelon-FP                49  9  5  5.0 47 0 0 N 56 30 0 W @
 FR Reunion-FR                          50 53 39 -4.0 21 0 0 S 55 30 0 E @
 FR Glorioso-FR/G                       51 53 39 -4.0 10 36 0 S 47 18 0 E
@@ -373,8 +383,8 @@ JU,JV Mongolia-JT                      98 32 23 -8.0 48 0 0 N 107 0 0 E
 JW Svalbard-Is-JW                      99 18 40 -1.0 78 0 0 N 16 0 0 E @
 JX Jan-Mayen-JX                       100 18 40 -1.0 71 0 0 N 8 0 0 W @
 JY Jordan-JY                          101 39 20 -2.0 32 0 0 N 36 0 0 E @
-KC4 Antarctica-Bryd-CE9               102 67 12  8.0 80 0 0 S 120 0 0 W *
 KC4 Antarctica-McMurdo-CE9            102 67 12 -11.0 77 30 0 S 167 0 0 E *
+KC4 Antarctica-Bryd-CE9               102 67 12 8.0 80 0 0 S 120 0 0 W *
 KC4 Antarctica-Palmer-CE9             102 67 12  4.0 65 0 0 S 64 0 0 W 
 Y90 Antarctica-CE9                    102 67 12  4.0 65 0 0 S 64 0 0 W
 T88 West-Carolines-T88                104 64 27 -9.0 9 30 0 N 138 6 0 E @
@@ -431,8 +441,8 @@ LY Lithuania-LY                       194 29 16 -3.0 54 30 0 N 25 30 0 E @
 OA Peru-OA                            127 12 10  5.0 12 0 0 S 77 0 0 W @
 4T,OB,OC Peru-OA                      127 12 10  5.0 12 0 0 S 77 0 0 W
 OD Lebanon-OD                         128 39 20 -2.0 33 54 0 N 35 30 0 E @
-OE Austria-OD                         129 28 15 -1.0 48 12 0 N 16 18 0 E @
-OEM Austria-OD                        129 28 15 -1.0 48 12 0 N 16 18 0 E
+OE Austria-OE                         129 28 15 -1.0 48 12 0 N 16 18 0 E @
+OEM Austria-OE                        129 28 15 -1.0 48 12 0 N 16 18 0 E
 OH Finland-OH                         130 18 15 -2.0 60 12 0 N 25 0 0 E * @
 OH Oulu-OH                            130 18 15 -2.0 65 0 0 N 25 25 0 E
 OF,OG,OI,OJ Finland-OH                130 18 15 -2.0 60 12 0 N 25 0 0 E
@@ -440,11 +450,11 @@ OH0 Aland-Is-OH0                      131 18 15 -2.0 60 12 0 N 20 0 0 E @
 OF0 Aland-Is-OH0                      131 18 15 -2.0 60 12 0 N 20 0 0 E
 OJ0 Market-Reef-OJ0                   132 18 15 -2.0 60 18 0 N 19 0 0 E @
 OH0M Market-Reef-OH0                  132 18 15 -2.0 60 18 0 N 19 0 0 E
-OK Czech-Rep-OK                       133 28 15 -1.0 50 08 0 N 14 43 0 E @
+OK Czech-Rep-OK                       133 28 15 -1.0 50 8 0 N 14 43 0 E @
 OK1 Czech-Rep-Bohemia-OK              133 28 15 -1.0 49 50 0 N 14 30 0 E
 OK2 Czech-Rep-Moravia-OK              133 28 15 -1.0 49 20 0 N 17 10 0 E
 OL Czech-Rep-OK                       133 28 15 -1.0 49 40 0 N 15 40 0 E
-OL Czech-Rep-OK                       133 28 15 -1.0 50 08 0 N 14 43 0 E
+OL Czech-Rep-OK                       133 28 15 -1.0 50 8 0 N 14 43 0 E
 OM Slovakia-OM                        331 28 15 -1.0 48 40 0 N 19 20 0 E @
 ON Belgium-ON                         134 27 14 -1.0 50 54 0 N 4 24 0 E @
 OO,OP,OQ,OR,OS,OT Belgium-ON          134 27 14 -1.0 50 54 0 N 4 24 0 E
@@ -622,19 +632,18 @@ VE New-Brunsick-VE                    197  9  5  4.0 45 18 0 N 66 6 0 W * @
 VE Newfoundland-VE                    197  9  5  3.0 48 30 0 N 56 0 0 W *
 VE Nova-Scotia-VE                     197  9  5  4.0 44 36 0 N 63 36 0 W *
 VE Quebec-VE                          197  4  5  5.0 45 30 0 N 73 36 0 W *
-VE Ontario-VE                         197  4  5  5.0 43 42 0 N 79 24 0 W *
+VE Ontario-VE                         197 4 4 5.0 43 42 0 N 79 24 0 W *
 VE Manitoba-VE                        197  3  4  6.0 49 54 0 N 97 6 0 W *
 VE Saskatchewan-VE                    197  3  4  7.0 50 30 0 N 104 36 0 W *
 VE Alberta-VE                         197  2  3  7.0 51 0 0 N 114 6 0 W *
 VE British-Columbia-VE                197  2  3  8.0 49 18 0 N 123 6 0 W *
 VE Yukon-VE                           197 75  1  8.0 60 42 0 N 135 6 0 W *
 VE1,VE9 New-Brunsick-VE                   197  9  5  4.0 45 18 0 N 66 6 0 W
-VE1 Newfoundland-VE                   197  9  5  3.0 48 30 0 N 56 0 0 W *
 VE1 Nova-Scotia-VE                    197  9  5  4.0 44 36 0 N 63 36 0 W
-VO1 New-Brunsick-VE                   197  9  5  4.0 45 18 0 N 66 6 0 W
-VO2 Newfoundland-VE                    197  9  5  3.0 48 30 0 N 56 0 0 W
+VO1 Newfoundland-VE                   197 9 5 3.0 48 30 0 N 56 0 0 W
+VO2 Labrador-VE                       197 9 2 3.0 48 30 0 N 56 0 0 W
 VE2 Quebec-VE                         197  4  5  5.0 45 30 0 N 73 36 0 W
-VE3 Ontario-VE                        197  4  5  5.0 43 42 0 N 79 24 0 W
+VE3 Ontario-VE                        197 4 4 5.0 43 42 0 N 79 24 0 W
 VE4 Manitoba-VE                       197  3  4  6.0 49 54 0 N 97 6 0 W
 VE5 Saskatchewan-VE                   197  3  4  7.0 50 30 0 N 104 36 0 W
 VE6 Alberta-VE                        197  2  3  7.0 51 0 0 N 114 6 0 W
@@ -700,7 +709,7 @@ HF0 So-Shetland-VP8/H                214 73 13  2.0 62 0 0 S 58 30 0 W
 VP6 Pitcairn-Is-VP6                   217 63 32  8.30 25 6 0 S 130 6 0 W @
 VR6 Pitcairn-Is-VP6                   217 63 32  8.30 25 6 0 S 130 6 0 W 
 VP9 Bermuda-VP9                       215 11  5  4.0 32 18 0 N 64 42 0 W @
-VQ9 Chagos-VQ9                        216 41 31 -5.0 7 18 0 S 72 24 0 E @
+VQ9 Chagos-VQ9                        216 41 39 -5.0 7 18 0 S 72 24 0 E @
 VS Hong-Kong-VS                       218 44 24 -8.0 22 30 0 N 114 0 0 E @
 VR2,VS6 Hong-Kong-VS                      218 44 24 -8.0 22 14 0 N 114 14 0 E
 VU India-Bombay-VU                    219 41 22 -5.30 19 0 0 N 72 48 0 E * @
@@ -758,7 +767,7 @@ W5 Oklahoma-W                   226  7  4  6.0 35 30 0 N 97 30 0 W *
 W5 Texas-W                      226  7  4  6.0 32 48 0 N 96 48 0 W
 W6 California-LA-W              226  6  3  8.0 34 6 0 N 118 12 0 W *
 W6 California-SF-W              226  6  3  8.0 37 35 0 N 122 30 0 W *
-W6 California-MV-W              226  6  3  8.0 37 25 0 N 122 04 0 W *
+W6 California-MV-W                    226 6 3 8.0 37 25 0 N 122 4 0 W *
 W6 California-SACTO-W           226  6  3  8.0 38 42 0 N 121 28 0 W
 W7 Arizona-W                    226  6  3  7.0 33 30 0 N 112 6 0 W *
 W7 Idaho-W                      226  6  3  7.0 43 36 0 N 116 12 0 W *
@@ -793,7 +802,7 @@ XE3 Mexico-XE                   227 10  6  6.0 21 0 0 N 89 42 0 W
 XF4 Revilla-Gigedo-XF4          228 10  6  7.0 18 0 0 N 112 0 0 W @
 XT Bukina-Faso-XT               229 46 35  0.0 12 18 0 N 1 42 0 W @
 XU Kampuchea-XU                 230 49 26 -7.0 11 30 0 N 105 0 0 E @
-XV Vietnam-3W                   231 49 26 -8.0 21 03 0 N 105 50 0 E
+XV Vietnam-3W                         231 49 26 -8.0 21 3 0 N 105 50 0 E
 XW Laos-XW                      232 49 26 -7.0 18 0 0 N 102 30 0 E @
 XX Macao-XX                     233 44 24 -8.0 22 0 0 N 114 0 0 E @
 XX9 Macao-XX                     233 44 24 -8.0 22 0 0 N 114 0 0 E 
@@ -835,7 +844,7 @@ ZG2 Gibraltar-ZB                249 37 14 -1.0 36 0 0 N 5 30 0 W
 ZC4 UK-Soverign-Base-ZC4        250 39 20 -2.0 35 0 0 N 33 0 0 E @
 ZD7 St-Helena-ZD7               251 66 36  0.0 16 0 0 S 6 0 0 W @
 ZD8 Ascension-Is-ZD8            252 66 36  0.0 8 0 0 S 14 0 0 W @
-ZD9 Tristan-Da-Cunha-ZD8        253 66 38  0.0 37 6 0 S 12 18 0 W @
+ZD9 Tristan-Da-Cunha-ZD9              253 66 38 0.0 37 6 0 S 12 18 0 W @
 Z2 Zimbabwe-Z2                  254 53 38 -2.0 18 0 0 S 31 0 0 E @
 ZE Zimbabwe-Z2                  254 53 38 -2.0 18 0 0 S 31 0 0 E
 ZF Cayman-Is-ZF                 255 11  8  5.0 19 30 0 N 81 12 0 W @
@@ -875,3 +884,4 @@ ZS2 Marion-Is-ZS8               266 57 38 -2.0 46 48 0 S 37 48 0 E
 ZS8 Marion-Is-ZS8               266 57 38 -2.0 46 48 0 S 37 48 0 E @
 V50,V51 Namibia-V5              267 57 38 -2.0 22 36 0 S 17 6 0 E
 T0,SSB,1B,X5,X8,ZC6,10G,50V,Q,0,MAJ Pirat_Country 666 17 14 -0.0 0 0 0 S 0 0 0 E @
+
diff --git a/html/sysop_en.html b/html/sysop_en.html
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/html/sysop_en_t.html b/html/sysop_en_t.html
new file mode 100644 (file)
index 0000000..6d2d272
--- /dev/null
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+  <head>
+    <title>User Command Reference</title>
+       <meta name="Keywords" content="DX Cluster, DXSpider, Spider, Packet Cluster, DXCluster, Pavillion Software, AK1A, AX25, AX.25, WWV, Packet Radio, Amateur Radio, Propagation, DX, DXing, G1TLH, GB7TLH, Dirk Koopman, Mailing list, Linux, RedHat, PERL">
+       <meta name="Description" content="Software and systems for realtime digital communications between amateur radio stations for the provision of information on propagation conditions and stations operating">
+       <meta name="Author" content="Dirk Koopman G1TLH">
+  </head>
+  <body TEXT="#000000" LINK="#0000ff" VLINK="#800080" BGCOLOR="#FFFFFF">
+       <FONT COLOR="#606060"> 
+         <hr>
+         <h2>Local extensions</h2>
+         <hr>
+       </font>
+       
+       
+       <address><a href="mailto:djk@tobit.co.uk">Dirk Koopman G1TLH</a></address>
+       <p>
+         <!-- Created: Sun Dec 13 20:25:14 GMT 1998 -->
+         <!-- hhmts start -->
+Last modified: Wed Nov 17 16:26:04 GMT 1999
+<!-- hhmts end -->
+       <h4>Introduction</h4>
+
+       <p>This is the list of user commands currently available within the DX Spider DX Cluster system.</p>
+       <p>It is automatically generated from the system help files.</p>
+
+    <h4>The Commands</h4>
+
+       <data>
+
+<!-- Standard Footer!! -->
+       <p>&nbsp;</p>
+       <p>
+         <FONT COLOR="#606060"><hr></font>
+       <font color="#FF0000" size=-2>
+         Copyright &copy; 1998 by Dirk Koopman G1TLH. All Rights Reserved<br>
+       </font>
+       <font color="#000000" size=-2>$Id$</font>
+  </body>
+</html>
diff --git a/html/user_en.html b/html/user_en.html
new file mode 100644 (file)
index 0000000..a012747
--- /dev/null
@@ -0,0 +1,1149 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+  <head>
+    <title>User Command Reference</title>
+       <meta name="Keywords" content="DX Cluster, DXSpider, Spider, Packet Cluster, DXCluster, Pavillion Software, AK1A, AX25, AX.25, WWV, Packet Radio, Amateur Radio, Propagation, DX, DXing, G1TLH, GB7TLH, Dirk Koopman, Mailing list, Linux, RedHat, PERL">
+       <meta name="Description" content="Software and systems for realtime digital communications between amateur radio stations for the provision of information on propagation conditions and stations operating">
+       <meta name="Author" content="Dirk Koopman G1TLH">
+  </head>
+  <body TEXT="#000000" LINK="#0000ff" VLINK="#800080" BGCOLOR="#FFFFFF">
+       <FONT COLOR="#606060"> 
+         <hr>
+         <h2>User Command Reference</h2>
+         <hr>
+       </font>
+       
+       
+       <address><a href="mailto:djk@tobit.co.uk">Dirk Koopman G1TLH</a></address>
+       <p>
+         <!-- Created: Sun Dec 13 20:25:14 GMT 1998 -->
+         <!-- hhmts start -->
+Last modified: Wed Nov 17 21:03:25 GMT 1999
+<!-- hhmts end -->
+       <h4>Introduction</h4>
+
+       <p>This is the list of user commands currently available within the DX Spider DX Cluster system.</p>
+       <p>It is automatically generated from the system help files.</p>
+
+    <h4>The Commands</h4>
+
+       <ul>
+<li><a name="L1"><b>ANNOUNCE &lt;text&gt;</b></a> Send an announcement to LOCAL users only
+<br><br>
+&lt;text&gt; is the text of the announcement you wish to broadcast 
+ <br><br>
+<li><a name="L2"><b>ANNOUNCE FULL &lt;text&gt;</b></a> Send an announcement cluster wide
+<br><br>
+This will send your announcement cluster wide
+ <br><br>
+<li><a name="L3"><b>APROPOS &lt;string&gt;</b></a> Search help database for &lt;string&gt;
+<br><br>
+Search the help database for &lt;string&gt; (it isn't case sensitive), and print
+ the names of all the commands that may be relevant.
+ <br><br>
+<li><a name="L4"><b>BYE</b></a> Exit from the cluster
+<br><br>
+This will disconnect you from the cluster
+ <br><br>
+<li><a name="L5"><b>DBAVAIL</b></a> Show a list of all the Databases in the system
+<br><br>
+Title says it all really, this command lists all the databases defined
+ in the system. It is also aliased to SHOW/COMMAND.
+ <br><br>
+<li><a name="L6"><b>DBSHOW &lt;dbname&gt; &lt;key&gt;</b></a> Display an entry, if it exists, in a database
+<br><br>
+This is the generic user interface to the database to the database system.
+ It is expected that the sysop will add an entry to the local Aliases file
+ so that users can use the more familiar AK1A style of enquiry such as:
+ <br><br>
+<pre>
+  SH/BUCK G1TLH
+ </pre>
+
+ <br><br>
+but if he hasn't and the database really does exist (use DBAVAIL or
+ SHOW/COMMAND to find out) you can do the same thing with:
+ <br><br>
+<pre>
+  DBSHOW buck G1TLH
+ </pre>
+
+ <br><br>
+<li><a name="L7"><b>DIRECTORY</b></a> List messages 
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L8"><b>DIRECTORY &lt;from&gt;-&lt;to&gt;</b></a> List messages &lt;from&gt; message &lt;to&gt; message 
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L9"><b>DIRECTORY &lt;nn&gt;</b></a> List last &lt;nn&gt; messages
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L10"><b>DIRECTORY ALL</b></a> List all messages
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L11"><b>DIRECTORY FROM &lt;call&gt;</b></a> List all messages from &lt;call&gt;
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L12"><b>DIRECTORY NEW</b></a> List all new messages
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L13"><b>DIRECTORY OWN</b></a> List your own messages
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L14"><b>DIRECTORY SUBJECT &lt;string&gt;</b></a> List all messages with &lt;string&gt; in subject
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L15"><b>DIRECTORY TO &lt;call&gt;</b></a> List all messages to &lt;call&gt;
+<br><br>
+List the messages in the messages directory.
+ <br><br>
+If there is a 'p' one space after the message number then it is a 
+ personal message. If there is a '-' between the message number and the
+ 'p' then this indicates that the message has been read.
+ <br><br>
+You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
+ fields.
+ <br><br>
+You can combine some of the various directory commands together eg:-
+ <br><br>
+<pre>
+   DIR TO G1TLH 5
+ </pre>
+or 
+ <pre>
+   DIR SUBJECT IOTA 200-250
+ </pre>
+
+ <br><br>
+You can abbreviate all the commands to one letter and use ak1a syntax:-
+ <br><br>
+<pre>
+   DIR/T G1* 10
+    DIR/S QSL 10-100 5
+ </pre>
+
+ <br><br>
+<li><a name="L16"><b>DX [BY &lt;call&gt;] &lt;freq&gt; &lt;call&gt; &lt;remarks&gt;</b></a> Send a DX spot
+<br><br>
+This is how you send a DX Spot to other users. You can, in fact, now
+ enter the &lt;freq&gt; and the &lt;call&gt; either way round. 
+ <br><br>
+<pre>
+   DX FR0G 144.600
+    DX 144.600 FR0G
+    DX 144600 FR0G 
+ </pre>
+
+ <br><br>
+will all give the same result. You can add some remarks to the end
+ of the command and they will be added to the spot.
+ <br><br>
+<pre>
+   DX FR0G 144600 this is a test
+ </pre>
+
+ <br><br>
+You can credit someone else by saying:-
+ <br><br>
+<pre>
+   DX by G1TLH FR0G 144.600 he isn't on the cluster
+ </pre>
+
+ <br><br>
+The &lt;freq&gt; is compared against the available bands set up in the 
+ cluster.  See SHOW/BANDS for more information.
+ <br><br>
+<li><a name="L17"><b>HELP</b></a> The HELP Command
+<br><br>
+HELP is available for a number of commands. The syntax is:-
+ <br><br>
+<pre>
+  HELP &lt;cmd&gt;
+ </pre>
+  
+ <br><br>
+Where &lt;cmd&gt; is the name of the command you want help on.
+ <br><br>
+All commands can be abbreviated, so SHOW/DX can be abbreviated
+ to SH/DX, ANNOUNCE can be shortened to AN and so on.
+ <br><br>
+Look at the APROPOS &lt;string&gt; command which will search the help database
+ for the &lt;string&gt; you specify and give you a list of likely commands
+ to look at with HELP.
+ <br><br>
+<li><a name="L18"><b>KILL &lt;msgno&gt; [&lt;msgno&gt; ...]</b></a> Remove or erase a message from the system
+<br><br>
+You can get rid of any message to or originating from your callsign using 
+ this command. You can remove more than one message at a time.
+ <br><br>
+<li><a name="L19"><b>KILL &lt;msgno&gt; [&lt;msgno..]</b></a> Delete a message from the local system
+<br><br>
+Delete a message from the local system. You will only be able to delete messages
+ that you have originated or been sent (unless you are the sysop).
+ <br><br>
+<li><a name="L20"><b>READ</b></a> Read the next unread personal message addressed to you
+<br><br>
+You can read any messages that are sent as 'non-personal' and also any
+ message either sent by or sent to your callsign.
+ <br><br>
+<li><a name="L21"><b>READ &lt;msgno&gt;</b></a> Read the specified message
+<br><br>
+You can read any messages that are sent as 'non-personal' and also any
+ message either sent by or sent to your callsign.
+ <br><br>
+<li><a name="L22"><b>REPLY</b></a> Reply (privately) to the last message that you have read
+<br><br>
+You can reply to a message and the subject will automatically have
+ "Re:" inserted in front of it, if it isn't already present.
+ <br><br>
+You can also use all the extra qualifiers such as RR, PRIVATE, 
+ NOPRIVATE, B that you can use with the SEND command (see SEND
+ for further details)
+ <br><br>
+<li><a name="L23"><b>REPLY &lt;msgno&gt;</b></a> Reply (privately) to the specified message
+<br><br>
+You can reply to a message and the subject will automatically have
+ "Re:" inserted in front of it, if it isn't already present.
+ <br><br>
+You can also use all the extra qualifiers such as RR, PRIVATE, 
+ NOPRIVATE, B that you can use with the SEND command (see SEND
+ for further details)
+ <br><br>
+<li><a name="L24"><b>REPLY B &lt;msgno&gt;</b></a> Reply as a Bulletin to the specified message
+<br><br>
+You can reply to a message and the subject will automatically have
+ "Re:" inserted in front of it, if it isn't already present.
+ <br><br>
+You can also use all the extra qualifiers such as RR, PRIVATE, 
+ NOPRIVATE, B that you can use with the SEND command (see SEND
+ for further details)
+ <br><br>
+<li><a name="L25"><b>REPLY NOPrivate &lt;msgno&gt;</b></a> Reply as a Bulletin to the specified message
+<br><br>
+You can reply to a message and the subject will automatically have
+ "Re:" inserted in front of it, if it isn't already present.
+ <br><br>
+You can also use all the extra qualifiers such as RR, PRIVATE, 
+ NOPRIVATE, B that you can use with the SEND command (see SEND
+ for further details)
+ <br><br>
+<li><a name="L26"><b>REPLY RR &lt;msgno&gt;</b></a> Reply to the specified message with read receipt
+<br><br>
+You can reply to a message and the subject will automatically have
+ "Re:" inserted in front of it, if it isn't already present.
+ <br><br>
+You can also use all the extra qualifiers such as RR, PRIVATE, 
+ NOPRIVATE, B that you can use with the SEND command (see SEND
+ for further details)
+ <br><br>
+<li><a name="L27"><b>SEND &lt;call&gt; [&lt;call&gt; ...]</b></a> Send a message to one or more callsigns
+<br><br>
+All the SEND commands will create a message which will be sent either to
+ an individual callsign or to one of the 'bulletin' addresses. 
+ <br><br>
+SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
+ it will mark the message as personal and send it to the cluster node that
+ that callsign is connected to.
+ <br><br>
+You can have more than one callsign in all of the SEND commands.
+ <br><br>
+You can have multiple qualifiers so that you can have for example:-
+ <br><br>
+<pre>
+  SEND RR COPY 123 PRIVATE G1TLH G0RDI
+ </pre>
+
+ <br><br>
+which should send a copy of message 123 to G1TLH and G0RDI and you will
+ receive a read receipt when they have read the message.
+ <br><br>
+SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
+ SP is an alias for SEND PRIVATE
+ <br><br>
+<li><a name="L28"><b>SEND COPY &lt;msgno&gt; &lt;call&gt;</b></a> Send a copy of a  message to someone
+<br><br>
+All the SEND commands will create a message which will be sent either to
+ an individual callsign or to one of the 'bulletin' addresses. 
+ <br><br>
+SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
+ it will mark the message as personal and send it to the cluster node that
+ that callsign is connected to.
+ <br><br>
+You can have more than one callsign in all of the SEND commands.
+ <br><br>
+You can have multiple qualifiers so that you can have for example:-
+ <br><br>
+<pre>
+  SEND RR COPY 123 PRIVATE G1TLH G0RDI
+ </pre>
+
+ <br><br>
+which should send a copy of message 123 to G1TLH and G0RDI and you will
+ receive a read receipt when they have read the message.
+ <br><br>
+SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
+ SP is an alias for SEND PRIVATE
+ <br><br>
+<li><a name="L29"><b>SEND NOPRIVATE &lt;call&gt;</b></a> Send a message to all stations
+<br><br>
+All the SEND commands will create a message which will be sent either to
+ an individual callsign or to one of the 'bulletin' addresses. 
+ <br><br>
+SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
+ it will mark the message as personal and send it to the cluster node that
+ that callsign is connected to.
+ <br><br>
+You can have more than one callsign in all of the SEND commands.
+ <br><br>
+You can have multiple qualifiers so that you can have for example:-
+ <br><br>
+<pre>
+  SEND RR COPY 123 PRIVATE G1TLH G0RDI
+ </pre>
+
+ <br><br>
+which should send a copy of message 123 to G1TLH and G0RDI and you will
+ receive a read receipt when they have read the message.
+ <br><br>
+SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
+ SP is an alias for SEND PRIVATE
+ <br><br>
+<li><a name="L30"><b>SEND PRIVATE &lt;call&gt;</b></a> Send a personal message
+<br><br>
+All the SEND commands will create a message which will be sent either to
+ an individual callsign or to one of the 'bulletin' addresses. 
+ <br><br>
+SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
+ it will mark the message as personal and send it to the cluster node that
+ that callsign is connected to.
+ <br><br>
+You can have more than one callsign in all of the SEND commands.
+ <br><br>
+You can have multiple qualifiers so that you can have for example:-
+ <br><br>
+<pre>
+  SEND RR COPY 123 PRIVATE G1TLH G0RDI
+ </pre>
+
+ <br><br>
+which should send a copy of message 123 to G1TLH and G0RDI and you will
+ receive a read receipt when they have read the message.
+ <br><br>
+SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
+ SP is an alias for SEND PRIVATE
+ <br><br>
+<li><a name="L31"><b>SEND RR &lt;call&gt;</b></a> Send a message and ask for a read receipt
+<br><br>
+All the SEND commands will create a message which will be sent either to
+ an individual callsign or to one of the 'bulletin' addresses. 
+ <br><br>
+SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
+ it will mark the message as personal and send it to the cluster node that
+ that callsign is connected to.
+ <br><br>
+You can have more than one callsign in all of the SEND commands.
+ <br><br>
+You can have multiple qualifiers so that you can have for example:-
+ <br><br>
+<pre>
+  SEND RR COPY 123 PRIVATE G1TLH G0RDI
+ </pre>
+
+ <br><br>
+which should send a copy of message 123 to G1TLH and G0RDI and you will
+ receive a read receipt when they have read the message.
+ <br><br>
+SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
+ SP is an alias for SEND PRIVATE
+ <br><br>
+<li><a name="L32"><b>SET/ADDRESS &lt;your address&gt;</b></a> Record your postal address
+<br><br>
+
+ <br>
+<li><a name="L33"><b>SET/ANNOUNCE</b></a> Allow announce messages to come out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L34"><b>SET/BEEP</b></a> Add a beep to DX and other messages on your terminal
+<br><br>
+
+ <br>
+<li><a name="L35"><b>SET/DX</b></a> Allow DX messages to come out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L36"><b>SET/HERE</b></a> Tell the system you are present at your terminal
+<br><br>
+
+ <br>
+<li><a name="L37"><b>SET/HOMENODE &lt;node&gt; </b></a> Set your normal cluster callsign
+<br><br>
+Tell the cluster system where you normally connect to. Any Messages sent
+ to you will normally find their way there should you not be connected.
+ eg:-
+ <pre>
+  SET/HOMENODE gb7djk
+ </pre>
+
+ <br><br>
+<li><a name="L38"><b>SET/LANGUAGE &lt;lang&gt;</b></a> Set the language you want to use
+<br><br>
+You can select the language that you want the cluster to use. Currently
+ the languages available are en (english) and nl (dutch).
+ <br><br>
+<li><a name="L39"><b>SET/LOCATION &lt;lat & long&gt;</b></a> Set your latitude and longitude
+<br><br>
+In order to get accurate headings and such like you must tell the system
+ what your latitude and longitude is. If you have not yet done a SET/QRA
+ then this command will set your QRA locator for you. For example:-
+ <pre>
+  SET/LOCATION 52 22 N 0 57 E
+ </pre>
+
+ <br><br>
+<li><a name="L40"><b>SET/NAME &lt;your name&gt;</b></a> Set your name
+<br><br>
+Tell the system what your name is eg:-
+ <pre>
+  SET/NAME Dirk
+ </pre>
+
+ <br><br>
+<li><a name="L41"><b>SET/PAGE &lt;lines per page&gt;</b></a> Set the lines per page
+<br><br>
+Tell the system how many lines you wish on a page when the number of line
+ of output from a command is more than this. The default is 20. Setting it
+ explicitly to 0 will disable paging. 
+ <pre>
+  SET/PAGE 30
+   SET/PAGE 0
+ </pre>
+ <br><br>
+<li><a name="L42"><b>SET/QRA &lt;locator&gt;</b></a> Set your QRA locator
+<br><br>
+Tell the system what your QRA (or Maidenhead) locator is. If you have not
+ done a SET/LOCATION then your latitude and longitude will be set roughly
+ correctly (assuming your locator is correct ;-). For example:-
+ <pre>
+  SET/QRA JO02LQ
+ </pre>
+
+ <br><br>
+<li><a name="L43"><b>SET/QTH &lt;your qth&gt;</b></a> Set your QTH
+<br><br>
+Tell the system where you are. For example:-
+ <pre>
+  SET/QTH East Dereham, Norfolk
+ </pre>
+
+ <br><br>
+<li><a name="L44"><b>SET/TALK</b></a> Allow TALK messages to come out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L45"><b>SET/WWV</b></a> Allow WWV messages to come out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L46"><b>SET/WX</b></a> Allow WX messages to come out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L47"><b>SHOW/DX</b></a> Interrogate the spot database
+<br><br>
+If you just type SHOW/DX you will get the last so many spots
+ (sysop configurable, but usually 10).
+    
+ <br><br>
+In addition you can add any number of these commands in very nearly
+ any order to the basic SHOW/DX command, they are:-
+    
+ <br><br>
+on &lt;band&gt;       - eg 160m 20m 2m 23cm 6mm
+ on &lt;region&gt;     - eg hf vhf uhf shf      (see SHOW/BANDS)
+    
+ <br><br>
+&lt;number&gt;        - the number of spots you want
+ &lt;from&gt;-&lt;to&gt;     - &lt;from&gt; spot no &lt;to&gt; spot no in the selected list
+    
+ <br><br>
+&lt;prefix&gt;        - for a spotted callsign beginning with &lt;prefix&gt;
+ *&lt;suffix&gt;       - for a spotted callsign ending in &lt;suffix&gt;
+ *&lt;string&gt;*      - for a spotted callsign containing &lt;string&gt;
+    
+ <br><br>
+day &lt;number&gt;    - starting &lt;number&gt; days ago
+ day &lt;from&gt;-&lt;to&gt; - &lt;from&gt; days &lt;to&gt; days ago
+    
+ <br><br>
+info &lt;text&gt;     - any spots containing &lt;text&gt; in the info or remarks
+    
+ <br><br>
+by &lt;call&gt;       - any spots spotted by &lt;call&gt; (spotter &lt;call&gt; is the 
+ <pre>
+                  same).
+ </pre>
+
+ <br><br>
+qsl             - this automatically looks for any qsl info on the call
+ <pre>
+                  held in the spot database.
+ </pre>
+
+ <br><br>
+iota [&lt;iota&gt;]   - If the iota island number is missing it will look for
+ <pre>
+                  the string iota and anything which looks like an iota
+                   island number. If you specify then it will look for  
+                   that island.
+ </pre>
+
+ <br><br>
+qra [&lt;locator&gt;] - this will look for the specific locator if you specify
+ <pre>
+                  one or else anything that looks like a locator.
+ </pre>
+   
+ <br><br>
+e.g. 
+    
+ <br><br>
+<pre>
+   SH/DX 9m0
+    SH/DX on 20m info iota
+    SH/DX 9a on vhf day 30
+    SH/DX rf1p qsl
+    SH/DX iota 
+    SH/DX iota eu-064
+    SH/DX qra jn86
+ </pre>
+  
+ <br><br>
+<li><a name="L48"><b>SHOW/DXCC &lt;prefix&gt;</b></a> Interrogate the spot database by country
+<br><br>
+This command takes the &lt;prefix&gt; (which can be a full or partial 
+ callsign if desired), looks up which internal country number it is
+ and then displays all the spots as per SH/DX for that country.
+    
+ <br><br>
+The options for SHOW/DX also apply to this command.   
+ e.g. 
+    
+ <br><br>
+<pre>
+   SH/DXCC G
+    SH/DXCC W on 20m info iota
+ </pre>
+
+ <br><br>
+<li><a name="L49"><b>SHOW/FILES [&lt;filearea&gt; [&lt;string&gt;]]</b></a> List the contents of a filearea
+<br><br>
+SHOW/FILES on its own will show you a list of the various fileareas
+ available on the system. To see the contents of a particular file
+ area type:-
+ <pre>
+   SH/FILES &lt;filearea&gt;
+ </pre>
+where &lt;filearea&gt; is the name of the filearea you want to see the 
+ contents of.
+ <br><br>
+You can also use shell globbing characters like '*' and '?' in a
+ string to see a selection of files in a filearea eg:-
+ <pre>
+   SH/FILES bulletins arld*
+ </pre>
+
+ <br><br>
+See also TYPE - to see the contents of a file.
+ <br><br>
+<li><a name="L50"><b>SHOW/MUF &lt;prefix&gt; [&lt;hours&gt;][long]</b></a> Show the likely propagation to a prefix
+<br><br>
+This command allow you to estimate the likelihood of you contacting
+ a station with the prefix you have specified. The output assumes a modest
+ power of 20dBW and receiver sensitivity of -123dBm (about 0.15muV/10dB SINAD)
+ <br><br>
+The result predicts the most likely operating frequencies and signal
+ levels for high frequency (shortwave) radio propagation paths on
+ specified days of the year and hours of the day. It is most useful for
+ paths between 250 km and 6000 km, but can be used with reduced accuracy
+ for paths shorter or longer than this.
+ <br><br>
+The command uses a routine MINIMUF 3.5 developed by the U.S. Navy and
+ used to predict the MUF given the predicted flux, day of the year,
+ hour of the day and geographic coordinates of the transmitter and
+ receiver. This routine is reasonably accurate for the purposes here,
+ with a claimed RMS error of 3.8 MHz, but much smaller and less complex
+ than the programs used by major shortwave broadcasting organizations,
+ such as the Voice of America.
+ <br><br>
+The command will display some header information detailing its
+ assumptions, together with the locations, latitude and longitudes and
+ bearings. It will then show UTC (UT), local time at the other end
+ (LT), calculate the MUFs, Sun zenith angle at the midpoint of the path
+ (Zen) and the likely signal strengths. Then for each frequency for which
+ the system thinks there is a likelihood of a circuit it prints a value.
+ <br><br>
+The value is currently a likely S meter reading based on the conventional
+ 6dB / S point scale. If the value has a '+' appended it means that it is
+ 1/2 an S point stronger. If the value is preceeded by an 'm' it means that
+ there is likely to be much fading and by an 's' that the signal is likely
+ to be noisy.  
+ <br><br>
+By default SHOW/MUF will show the next two hours worth of data. You
+ can specify anything up to 24 hours worth of data by appending the no of
+ hours required after the prefix. For example:-
+ <br><br>
+<pre>
+  SH/MUF W
+ </pre>
+
+ <br><br>
+produces:
+ <br><br>
+<pre>
+  RxSens: -123 dBM SFI: 159   R: 193   Month: 10   Day: 21
+   Power :   20 dBW    Distance:  6283 km    Delay: 22.4 ms
+   Location                       Lat / Long           Azim
+   East Dereham, Norfolk          52 41 N 0 57 E         47
+   United-States-W                43 0 N 87 54 W        299
+   UT LT  MUF Zen  1.8  3.5  7.0 10.1 14.0 18.1 21.0 24.9 28.0 50.0
+   18 23 11.5 -35  mS0+ mS2   S3
+   19  0 11.2 -41  mS0+ mS2   S3
+ </pre>
+
+ <br><br>
+indicating that you will have weak, fading circuits on top band and 
+ 80m but usable signals on 40m (about S3).
+ <br><br>
+inputing:-
+ <br><br>
+<pre>
+  SH/MUF W 24
+ </pre>
+
+ <br><br>
+will get you the above display, but with the next 24 hours worth of
+ propagation data.
+ <br><br>
+<pre>
+  SH/MUF W L 24
+   SH/MUF W 24 Long
+ </pre>
+
+ <br><br>
+Gives you an estimate of the long path propagation characterics. It
+ should be noted that the figures will probably not be very useful, nor
+ terrible accurate, but it is included for completeness.
+ <br><br>
+<li><a name="L51"><b>SHOW/PREFIX &lt;callsign&gt;</b></a> Interrogate the prefix database 
+<br><br>
+This command takes the &lt;callsign&gt; (which can be a full or partial 
+ callsign or a prefix), looks up which internal country number 
+ it is and then displays all the relevant prefixes for that country
+ together with the internal country no, the CQ and ITU regions. 
+ <br><br>
+See also SHOW/DXCC
+ <br><br>
+<li><a name="L52"><b>SHOW/SUN [&lt;callsign&gt;|&lt;prefix&gt;]</b></a> Display sunrise and sunset times
+<br><br>
+Show the sunrise and sunset times for a callsign (if it is known to the
+ cluster), a prefix or, if nothing is specified, at your QTH (if you have
+ remembered to set your location using SET/LOCATION or SET/QRA). If all else
+ fails it will show the sunrise and set times for the node that you are 
+ connected to.
+ <br><br>
+You can enter more than one prefix or callsign:-
+ <br><br>
+<pre>
+  SH/SUN G1TLH G8TIC W9
+ </pre>
+
+ <br><br>
+<li><a name="L53"><b>SHOW/WWV</b></a> Show last 10 WWV broadcasts
+<br><br>
+Display the most recent WWV information that has been received by the system
+ <br><br>
+<li><a name="L54"><b>SHOW/WWV &lt;n&gt;</b></a> Show last &lt;n&gt; WWV broadcasts
+<br><br>
+Display the most recent WWV information that has been received by the system
+ <br><br>
+<li><a name="L55"><b>SYSOP</b></a> Regain your privileges if you login remotely
+<br><br>
+The system automatically reduces your privilege level to that of a
+ normal user if you login in remotely. This command allows you to
+ regain your normal privilege level. It uses the normal system: five
+ numbers are returned that are indexes into the character array that is
+ your assigned password (see SET/PASSWORD). The indexes start from
+ zero.
+ <br><br>
+You are expected to return a string which contains the characters
+ required in the correct order. You may intersperse those characters
+ with others to obscure your reply for any watchers. For example (and
+ these values are for explanation :-):
+ <br><br>
+<pre>
+  password = 012345678901234567890123456789
+   &gt; sysop
+   22 10 15 17 3
+ </pre>
+you type:-
+ <pre>
+ aa2bbbb0ccc5ddd7xxx3n
+  or 2 0 5 7 3
+  or 20573
+ </pre>
+
+ <br><br>
+They will all match. If there is no password you will still be offered
+ numbers but nothing will happen when you input a string. Any match is
+ case sensitive.
+ <br><br>
+<li><a name="L56"><b>TALK &lt;call&gt; &gt; &lt;node&gt; &lt;text&gt;</b></a> Send a text message to another station via a node
+<br><br>
+Send a short message to any other station that is visible on the cluster
+ system. You can send it to anyone you can see with a SHOW/CONFIGURATION 
+ command, they don't have to be connected locally.
+ <br><br>
+The second form of TALK is used when other cluster nodes are connected
+ with restricted information. This usually means that they don't send 
+ the user information usually associated with logging on and off the cluster.
+ <br><br>
+If you know that G3JNB is likely to be present on GB7TLH, but you can only
+ see GB7TLH in the SH/C list but with no users, then you would use the
+ second form of the talk message.
+ <br><br>
+<li><a name="L57"><b>TALK &lt;call&gt; &lt;text&gt;</b></a> Send a text message to another station
+<br><br>
+Send a short message to any other station that is visible on the cluster
+ system. You can send it to anyone you can see with a SHOW/CONFIGURATION 
+ command, they don't have to be connected locally.
+ <br><br>
+The second form of TALK is used when other cluster nodes are connected
+ with restricted information. This usually means that they don't send 
+ the user information usually associated with logging on and off the cluster.
+ <br><br>
+If you know that G3JNB is likely to be present on GB7TLH, but you can only
+ see GB7TLH in the SH/C list but with no users, then you would use the
+ second form of the talk message.
+ <br><br>
+<li><a name="L58"><b>TYPE &lt;filearea&gt;/&lt;name&gt;</b></a> Look at the contents of a file in one of the fileareas
+<br><br>
+Type out the contents of a file in a filearea. So, for example, in 
+ filearea 'bulletins' you want to look at file 'arld051' you would 
+ enter:-
+ <pre>
+   TYPE bulletins/arld051
+ </pre>
+
+ <br><br>
+See also SHOW/FILES to see what fileareas are available and a 
+ list of content.
+ <br><br>
+<li><a name="L59"><b>UNSET/ANNOUNCE</b></a> Stop announce messages coming out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L60"><b>UNSET/BEEP</b></a> Stop beeps for DX and other messages on your terminal
+<br><br>
+
+ <br>
+<li><a name="L61"><b>UNSET/DX</b></a> Stop DX messages coming out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L62"><b>UNSET/HERE</b></a> Tell the system you are absent from your terminal
+<br><br>
+
+ <br>
+<li><a name="L63"><b>UNSET/TALK</b></a> Stop TALK messages coming out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L64"><b>UNSET/WWV</b></a> Stop WWV messages coming out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L65"><b>UNSET/WX</b></a> Stop WX messages coming out on your terminal
+<br><br>
+
+ <br>
+<li><a name="L66"><b>WHO</b></a> Show who is physically connected
+<br><br>
+This is a quick listing that shows which callsigns are connected and
+ what sort of connection they have
+ <br><br>
+<li><a name="L67"><b>WX &lt;text&gt;</b></a> Send a weather message to local users
+<br><br>
+Weather messages can sometimes be useful if you are experiencing an extreme
+ that may indicate enhanced conditions
+ <br><br>
+<li><a name="L68"><b>WX FULL &lt;text&gt;</b></a> Send a weather message to all cluster users
+<br><br>
+Weather messages can sometimes be useful if you are experiencing an extreme
+ that may indicate enhanced conditions
+ <br><br>
+    </ul>
+<!-- Standard Footer!! -->
+       <p>&nbsp;</p>
+       <p>
+         <FONT COLOR="#606060"><hr></font>
+       <font color="#FF0000" size=-2>
+         Copyright &copy; 1998 by Dirk Koopman G1TLH. All Rights Reserved<br>
+       </font>
+       <font color="#000000" size=-2>$Id$</font>
+  </body>
+</html>
diff --git a/html/user_en_t.html b/html/user_en_t.html
new file mode 100644 (file)
index 0000000..c90aff2
--- /dev/null
@@ -0,0 +1,42 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+  <head>
+    <title>User Command Reference</title>
+       <meta name="Keywords" content="DX Cluster, DXSpider, Spider, Packet Cluster, DXCluster, Pavillion Software, AK1A, AX25, AX.25, WWV, Packet Radio, Amateur Radio, Propagation, DX, DXing, G1TLH, GB7TLH, Dirk Koopman, Mailing list, Linux, RedHat, PERL">
+       <meta name="Description" content="Software and systems for realtime digital communications between amateur radio stations for the provision of information on propagation conditions and stations operating">
+       <meta name="Author" content="Dirk Koopman G1TLH">
+  </head>
+  <body TEXT="#000000" LINK="#0000ff" VLINK="#800080" BGCOLOR="#FFFFFF">
+       <FONT COLOR="#606060"> 
+         <hr>
+         <h2>User Command Reference</h2>
+         <hr>
+       </font>
+       
+       
+       <address><a href="mailto:djk@tobit.co.uk">Dirk Koopman G1TLH</a></address>
+       <p>
+         <!-- Created: Sun Dec 13 20:25:14 GMT 1998 -->
+         <!-- hhmts start -->
+Last modified: Wed Nov 17 21:03:25 GMT 1999
+<!-- hhmts end -->
+       <h4>Introduction</h4>
+
+       <p>This is the list of user commands currently available within the DX Spider DX Cluster system.</p>
+       <p>It is automatically generated from the system help files.</p>
+
+    <h4>The Commands</h4>
+
+       <ul>
+       <data>
+    </ul>
+<!-- Standard Footer!! -->
+       <p>&nbsp;</p>
+       <p>
+         <FONT COLOR="#606060"><hr></font>
+       <font color="#FF0000" size=-2>
+         Copyright &copy; 1998 by Dirk Koopman G1TLH. All Rights Reserved<br>
+       </font>
+       <font color="#000000" size=-2>$Id$</font>
+  </body>
+</html>
index eafa76ad527083212ee0d8a31c12485e23f01dc4..33d353dbb84e2bb748c52d080b50b7e46c5c4f47 100644 (file)
@@ -78,6 +78,12 @@ use vars qw(%channels %valid);
                  inwwvfilter => '5,Input WWV Filter',
                  inspotfilter => '5,Input Spot Filter',
                  passwd => '9,Passwd List,parray',
+                 pingint => '9,Ping Interval ',
+                 nopings => '9,Ping Obs Count',
+                 lastping => '9,Ping last sent,atime',
+          pingrec => '9,Pings no rec',
+                 pingtime => '9,Ping totaltime',
+                 pingave => '0,Ping ave time',
                 );
 
 # object destruction
@@ -199,13 +205,17 @@ sub send_now
 {
        my $self = shift;
        my $conn = $self->{conn};
+       return unless $conn;
        my $sort = shift;
        my $call = $self->{call};
        
        for (@_) {
                chomp;
-               $conn->send_now("$sort$call|$_") if $conn;
-               dbg('chan', "-> $sort $call $_") if $conn;
+        my @lines = split /\n/;
+               for (@lines) {
+                       $conn->send_now("$sort$call|$_");
+                       dbg('chan', "-> $sort $call $_");
+               }
        }
        $self->{t} = time;
 }
@@ -217,12 +227,16 @@ sub send                                          # this is always later and always data
 {
        my $self = shift;
        my $conn = $self->{conn};
+       return unless $conn;
        my $call = $self->{call};
 
        for (@_) {
                chomp;
-               $conn->send_later("D$call|$_") if $conn;
-               dbg('chan', "-> D $call $_") if $conn;
+        my @lines = split /\n/;
+               for (@lines) {
+                       $conn->send_later("D$call|$_");
+                       dbg('chan', "-> D $call $_");
+               }
        }
        $self->{t} = time;
 }
index 234c7bcae3c58cedeaaf2b31549d30f786b1d546..c14c9bbefdc64879402412bac78f826e2a6ff374 100644 (file)
@@ -25,6 +25,7 @@ use DXDebug;
 use Filter;
 use Local;
 use DXDb;
+use Time::HiRes qw(gettimeofday tv_interval);
 
 use Carp;
 
@@ -38,9 +39,9 @@ $me = undef;                                  # the channel id for this cluster
 $decode_dk0wcy = undef;                        # if set use this callsign to decode announces from the EU WWV data beacon
 $pc11_max_age = 1*3600;                        # the maximum age for an incoming 'real-time' pc11
 $pc23_max_age = 1*3600;                        # the maximum age for an incoming 'real-time' pc23
-$pc11_dup_age = 24*3600;               # the maximum time to keep the spot dup list for
-$pc23_dup_age = 24*3600;               # the maximum time to keep the wwv dup list for
-$pc12_dup_age = 12*3600;               # the maximum time to keep the ann dup list for
+$pc11_dup_age = 3*3600;                        # the maximum time to keep the spot dup list for
+$pc23_dup_age = 3*3600;                        # the maximum time to keep the wwv dup list for
+$pc12_dup_age = 24*3600;               # the maximum time to keep the ann dup list for
 $pc12_dup_lth = 60;                            # the length of ANN text to save for deduping 
 %spotdup = ();                             # the pc11 and 26 dup hash 
 %wwvdup = ();                              # the pc23 and 27 dup hash
@@ -51,6 +52,7 @@ $last_hour = time;                            # last time I did an hourly periodic update
 %nodehops = ();                 # node specific hop control
 @baddx = ();                    # list of illegal spotted callsigns
 
+
 $baddxfn = "$main::data/baddx.pl";
 
 sub init
@@ -131,6 +133,11 @@ sub start
        }
        $self->state('init');
        $self->pc50_t(time);
+       $self->pingint($user->pingint || 3*60);
+       $self->nopings(3);
+       $self->lastping($main::systime);
+       $self->pingtime(0);
+       $self->pingrec(0);
 
        Log('DXProt', "$call connected");
 }
@@ -699,11 +706,23 @@ sub normal
                                                while (@$ref) {
                                                        my $r = shift @$ref;
                                                        my $dxchan = DXChannel->get($r->{call});
-                                                       $dxchan->send($dxchan->msg('pingi', $field[2], atime($main::systime), $main::systime - $r->{t})) if $dxchan;
+                                                       next unless $dxchan;
+                                                       my $t = tv_interval($r->{t}, [ gettimeofday ]);
+                                                       if ($dxchan->is_user) {
+                                                               my $s = sprintf "%.2f", $t; 
+                                                               $dxchan->send($dxchan->msg('pingi', $field[2], $s))
+                                                       } elsif ($dxchan->is_ak1a) {
+                                                               my $tochan =  DXChannel->get($field[2]);
+                                                               if ($tochan) {
+                                                                       $tochan->nopings(3); # pump up the timer
+                                                                       $tochan->{pingtime} += $t;
+                                                                       $tochan->{pingrec} += 1;
+                                                                       $tochan->{pingave} = $tochan->{pingtime} / $tochan->{pingrec};
+                                                               }
+                                                       } 
                                                }
                                        }
                                }
-                               
                        } else {
                                # route down an appropriate thingy
                                $self->route($field[1], $line);
@@ -744,6 +763,17 @@ sub process
                        $dxchan->send(pc50());
                        $dxchan->pc50_t($t);
                } 
+
+               # send a ping out on this channel
+               if ($t >= $dxchan->pingint + $dxchan->lastping) {
+                       if ($dxchan->nopings <= 0) {
+                               $dxchan->disconnect;
+                       } else {
+                               addping($main::mycall, $dxchan->call);
+                               $dxchan->nopings($dxchan->nopings - 1);
+                               $dxchan->lastping($t);
+                       }
+               }
        }
        
        my $key;
@@ -1210,13 +1240,13 @@ sub unpad
 sub addping
 {
        my ($from, $to) = @_;
-       my $ref = $pings{$to};
-       $ref = $pings{$to} = [] if !$ref;
+       my $ref = $pings{$to} || [];
        my $r = {};
        $r->{call} = $from;
-       $r->{t} = $main::systime;
+       $r->{t} = [ gettimeofday ];
        route(undef, $to, pc51($to, $main::mycall, 1));
        push @$ref, $r;
+       $pings{$to} = $ref;
 }
 
 # add a rcmd request to the rcmd queues
index fc2dab5c7a64106a7a30e1262fbcb7466b2b58bc..50cb4796d1e732df106071de8179947201c6c5b4 100644 (file)
@@ -13,6 +13,7 @@ require Exporter;
 
 use DXLog;
 use DB_File;
+use Data::Dumper;
 use Fcntl;
 use Carp;
 
@@ -56,6 +57,7 @@ $filename = undef;
                  wanttalk => '0,Rec Talk,yesno',
                  wantwx => '0,Rec WX,yesno',
                  wantdx => '0,Rec DX Spots,yesno',
+                 pingint => '9,Node Ping interval',
                 );
 
 no strict;
@@ -122,7 +124,7 @@ sub new
        $self->{dxok} = 1;
        $self->{annok} = 1;
        $self->{lang} = $main::lang;
-       $u{call} = $self->encode();
+       $self->put;
        return $self;
 }
 
@@ -176,6 +178,7 @@ sub get_current
 sub put
 {
        my $self = shift;
+       confess "Trying to put nothing!" unless $self && ref $self;
        my $call = $self->{call};
        $u{$call} = $self->encode();
 }
@@ -186,27 +189,11 @@ sub put
 sub encode
 {
        my $self = shift;
-       my $out;
-       my $f;
-
-       $out = "bless( { ";
-       for $f (sort keys %$self) {
-               my $val = $$self{$f};
-           if (ref $val) {          # it's an array (we think)
-                       $out .= "'$f'=>[ ";
-                       foreach (@$val) {
-                               my $s = $_;
-                               $out .= "'$s',";
-                       }
-                       $out .= " ],";
-           } else {
-                       $val =~ s/'/\\'/og;
-                       $val =~ s/\@/\\@/og;
-                       $out .= "'$f'=>q{$val},";
-               }
-       }
-       $out .= " }, 'DXUser')";
-       return $out;
+       my $dd = new Data::Dumper([$self]);
+       $dd->Indent(0);
+       $dd->Terse(1);
+    $dd->Quotekeys(0);
+       return $dd->Dumpxs;
 }
 
 #
index 0fa9f109c28608908bed33f500794f2d8d680d4b..5a4995e39353c0b3e7611073af57c1dbcc08b17c 100644 (file)
@@ -116,7 +116,7 @@ package DXM;
                                passerr => 'Please use: SET/PASS <password> <callsign>',
                                password => 'Password set or changed for $_[0]',
                                pingo => 'Ping Started to $_[0]',
-                               pingi => 'Ping Returned from $_[0] ($_[2] secs)',
+                               pingi => 'Ping Returned from $_[0] ($_[1] secs)',
                                pr => '$_[0] de $main::mycall $main::cldate $main::ztime >',
                                pr2 => '($_[0]) de $main::mycall $main::cldate $main::ztime >',
                                priv => 'Privilege level changed on $_[0]',
@@ -220,7 +220,7 @@ package DXM;
                 passerr => 'Gebruik: SET/PASS <wachtwoord> <call>',
                 password => 'Wachtwoord gezet of gewijzigd voor $_[0]',
                 pingo => 'Ping gestart naar $_[0]',
-                pingi => 'Ping ontvangen van $_[0] ($_[2] secs)',
+                pingi => 'Ping ontvangen van $_[0] ($_[1] secs)',
                 pr => '$_[0] de $main::mycall $main::cldate $main::ztime >',
                 pr2 => '($_[0]) de $main::mycall $main::cldate $main::ztime >',
                 priv => 'Privilege level gewijzigd op $_[0]',
index ceac24e278890d1275fa6f904761d1993355061e..887600e31ee6438ca9f96188b13fd5c2e60b5d93 100755 (executable)
@@ -188,9 +188,11 @@ sub show_screen
 # add a line to the end of the top screen
 sub addtotop
 {
-       my $inbuf = shift;
-       push @shistory, $inbuf;
-       shift @shistory if @shistory > $maxshist;
+       while (@_) {
+               my $inbuf = shift;
+               push @shistory, $inbuf;
+               shift @shistory if @shistory > $maxshist;
+       }
        show_screen();
 }
 
diff --git a/perl/hlptohtml.pl b/perl/hlptohtml.pl
new file mode 100755 (executable)
index 0000000..e0f6d0c
--- /dev/null
@@ -0,0 +1,137 @@
+#!/usr/bin/perl
+# 
+# A program to split out the Command_en.hlp file into two
+# html documents, one for sysops, one for users
+#
+# Copyright (c) - 1999 Dirk Koopman G1TLH
+#
+# $Id$
+#
+require 5.004;
+
+# search local then perl directories
+BEGIN {
+       # root of directory tree for this system
+       $root = "/spider"; 
+       $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
+       
+       unshift @INC, "$root/perl";     # this IS the right way round!
+       unshift @INC, "$root/local";
+}
+
+use strict;
+use IO::File;
+use DXVars;
+use Carp;
+
+my $lang = 'en';
+$lang = shift @ARGV if @ARGV;
+
+
+# read in the help file and key it all up and store it
+my $h = new IO::File;
+
+if (!open($h, "$main::localcmd/Commands_$lang.hlp")) {
+       if (!open($h, "$main::cmd/Commands_$lang.hlp")) {
+               die "cannot open $main::cmd/Commands_$lang.hlp $!";
+       }
+}
+my $in;
+my $state = 0;
+my $ref;
+my $text;
+my %c;
+
+foreach $in (<$h>) {
+       chomp;
+       next if $in =~ /^\#/;
+       $in =~ s/</\&lt;/g;
+       $in =~ s/>/\&gt;/g;
+       if ($in =~ /^===/) {
+               $text = [ ] if $state != 1;   # new text reference if not in a list
+               $in =~ s/=== //;
+               my ($priv, $cmd, $desc) = split /\^/, $in;
+               $c{$cmd} = { cmd=>$cmd, priv=>$priv, desc=>$desc, text=> $text };
+               $state = 1;
+               next;
+       }
+       if ($state > 0) {
+               confess "no text!" unless $text;
+           push @$text, $in;
+               $state = 2;
+       }
+}
+
+close($h);
+
+# At this point we should have a hash containing all the useful info on each command
+
+# Starting with the user file, open it and copy across the top and tail with the 
+# <data> tag replaced by this system.
+#
+
+my $html = "$main::root/html";
+my $in = new IO::File "$html/user_$lang\_t.html" or die "can't open $html/user_$lang\_t.html $!";
+my $out = new IO::File ">$html/user_$lang.html" or die "can't open $html/user_$lang.html $!";
+chmod 0664, "$html/user_$lang.html";
+
+# copy until <data> is nigh
+while (<$in>) {
+       last if /<data>/i;
+       print $out $_;
+}
+
+my $c;
+my $count;
+my %done;
+
+foreach $c (sort {$a->{cmd} cmp $b->{cmd}} values %c) {
+       next if $c->{priv};
+       $count++;
+    my $label = "L$count";
+       print $out "<li><a name=\"$label\"><b>$c->{cmd}</b></a> $c->{desc}<br><br>\n";
+       printlines($out, $c->{text});
+}
+
+# now copy the rest out
+while (<$in>) {
+       print $out $_;
+}
+
+$in->close;
+$out->close;
+
+exit(0);
+
+sub printlines
+{
+       my $fh = shift;
+       my $ref = shift;
+
+       my $last;
+       my $state = 0;
+       for (@$ref) {
+               if ($state == 0) {
+                       if (/^\s+\S+/) {
+                               print $fh "<pre>\n";
+                               $state = 1;
+                       }
+               } else {
+                       unless (/^\s+\S+/) {
+                               print $fh "</pre>\n";
+                               $state = 0;
+                       }
+               }
+               print $fh $_, " ";
+    
+               if (/^\s*$/) {
+            if ($last =~ /^\s*$/) {
+                               print $fh "<br>\n";
+                       } else {
+                               print $fh "<br><br>\n";
+                       }
+               }
+               $last = $_;
+       }
+#    print $fh "<br>\n";
+}