From f000bba2266c5900b954ec6080524135c15e5fbc Mon Sep 17 00:00:00 2001 From: coulisse Date: Sat, 18 Feb 2023 08:41:19 +0100 Subject: [PATCH 1/3] some fixes --- CITATION.cff | 2 +- cfg/webapp_log_config.ini | 2 +- docs/CHANGELOG.md | 6 ++++++ requirements.txt | 2 +- static/html/offline.html | 10 +++++----- static/js/dev/plot.js | 6 ++++-- static/js/rel/plot.min.js | 2 +- static/pwa/service-worker.js | 8 ++++---- templates/_base.html | 12 ++++++------ templates/callsign.html | 2 +- templates/index.html | 6 +++--- templates/plots.html | 4 ++-- 12 files changed, 35 insertions(+), 27 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 0108580..bc69d71 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -25,4 +25,4 @@ keywords: - spiderweb license: GPL-3.0 version: v2.4.2 -date-released: 2023-02-11 +date-released: 2023-02-18 diff --git a/cfg/webapp_log_config.ini b/cfg/webapp_log_config.ini index 9584aad..843a930 100644 --- a/cfg/webapp_log_config.ini +++ b/cfg/webapp_log_config.ini @@ -12,7 +12,7 @@ level=INFO handlers=stream_handler,file_handler [logger_webapp] -level=INFO +level=DEBUG handlers=stream_handler,file_handler qualname=webapp propagate=0 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ecc4eba..e120e9d 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,4 +1,10 @@ ### Change log +Date: 18/02/2023 +Release: v2.4.2 +- replaced multipart form post with url encoded for security reasons +- fixed bands and continents in band activity chart +- upgraded Werkzeug to 2.2.3 + Date: 11/02/2023 Release: v2.4.2 - changed cache-control header diff --git a/requirements.txt b/requirements.txt index 9f0bd8c..9db2716 100644 --- a/requirements.txt +++ b/requirements.txt @@ -32,7 +32,7 @@ six==1.16.0 tomlkit==0.11.6 urllib3==1.26.13 watchdog==2.2.0 -Werkzeug==2.2.2 +Werkzeug==2.2.3 wrapt==1.14.1 WTForms==3.0.1 xxhash==3.1.0 diff --git a/static/html/offline.html b/static/html/offline.html index 03ba372..7bbaeb2 100644 --- a/static/html/offline.html +++ b/static/html/offline.html @@ -16,7 +16,7 @@ - + @@ -50,7 +50,7 @@
 (UTC)  
-
+
- + - + - + diff --git a/static/js/dev/plot.js b/static/js/dev/plot.js index b3a0d45..9e90795 100644 --- a/static/js/dev/plot.js +++ b/static/js/dev/plot.js @@ -164,16 +164,18 @@ class band_activity extends plot_base { super(chart_id,end_point); //populate continents array - var continents=[]; + let continents=[]; cont_cq.forEach(function myFunction(item, index) { continents[index]=item['id']; }); + this.continents=continents; //populate bands array - var bands=[]; + let bands=[]; band_freq.forEach(function myFunction(item, index) { bands[index]=item['id']; }); + this.bands=bands; //managing region var selectedContinent=getCookie('user_region'); diff --git a/static/js/rel/plot.min.js b/static/js/rel/plot.min.js index 4836d1e..b783cc5 100644 --- a/static/js/rel/plot.min.js +++ b/static/js/rel/plot.min.js @@ -1 +1 @@ -class plot_base{refresh(){}constructor(t,e){var o=document.getElementById(t);this.end_point=e,this.myChart=echarts.init(o);let s=echarts.init(document.querySelector("#"+t),null);window.addEventListener("resize",function(){s.resize()})}}class band_activity extends plot_base{refresh(t){super.refresh(),console.log("refresh band_activity"),void 0!==t&&(this.selectedContinent=t),fetch(this.end_point+"?continent="+this.selectedContinent).then(t=>t.json()).then(t=>{var e=get_last_refresh(t),t=Array.from(t["band activity"]).map(function(t){return[t[1],t[0],t[2]||"-"]});this.myChart.setOption({tooltip:{position:"top",formatter:function(t){return t.seriesName+" on "+t.name+" band: "+t.data[2]+""}},title:{text:"Band activity",subtext:e,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",right:"right",top:"bottom",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!0},restore:{show:!0},saveAsImage:{show:!0}}},grid:{height:"80%",left:25,top:50,right:60,bottom:0,show:!0,backgroundColor:"rgb(255, 255, 255)"},xAxis:{type:"category",data:this.bands,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},yAxis:{type:"category",data:this.continents,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},visualMap:{calculable:!0,orient:"vertical",right:"right",top:"center",min:0,max:30,inRange:{color:["#ffffe6","yellow","red"]}},series:[{name:"Spots",type:"heatmap",data:t,label:{show:!1},emphasis:{itemStyle:{shadowBlur:10,shadowColor:"rgba(100, 0, 0, 0.5)"}}}]})})}constructor(t,e,o,s){super(t,e);o.forEach(function(t,e){e,t.id});s.forEach(function(t,e){e,t.id});var r=getCookie("user_region"),a=getCookie("user_region_desc");r||(r="EU",a="Europe",setCookie("user_region",r,60),setCookie("user_region_desc",a,60)),selectElement("continentInput",r),addEventHandler(document.getElementById("continentInput"),"change",function(){r=this.value,a=this.options[this.selectedIndex].text,setCookie("user_region",r,60),setCookie("user_region_desc",a,60),plot_ba.refresh(r),setText("txt_continent","  Based on DX SPOTS from stations in "+a+" during the last 15 minutes, displayed by Continent and Band")}),setText("txt_continent","  Based on DX SPOTS from stations in "+a+" during the last 15 minutes, displayed by Continent and Band"),this.refresh(r)}}class world_dx_spots_live extends plot_base{refresh(){super.refresh(),console.log("refresh world_dx_spots_live"),fetch(this.end_point).then(t=>t.json()).then(s=>{fetch("world.json").then(t=>t.text()).then(t=>{var e=get_last_refresh(s),o=[];s.world_dx_spots_live.forEach(function(t,e){o.push({value:[t.lat,t.lon,t.count]})}),this.myChart.hideLoading(),echarts.registerMap("WR",t),this.myChart.setOption({visualMap:{show:!1,min:0,max:30,inRange:{symbolSize:[5,20]}},geo:{type:"map",map:"WR",roam:!0,zoom:1.2,aspectScale:1,layoutCenter:["50%","54%"],layoutSize:"100%",itemStyle:{normal:{areaColor:"#91cc75",borderColor:"#111"},emphasis:{areaColor:"#3ba272"}},label:{emphasis:{show:!1}}},tooltip:{trigger:"item",formatter:function(t){return"Spots: "+t.value[2]+""}},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},restore:{show:!0},saveAsImage:{show:!0}}},legend:{show:!1},title:{text:"World DX SPOTS in last hour",subtext:e,top:"top",right:"right"},series:[{type:"scatter",coordinateSystem:"geo",data:o,label:{emphasis:{position:"right",show:!1}},itemStyle:{normal:{color:"#fc8452",borderColor:"#fa0a0a"}}}]})})})}constructor(t,e){super(t,e),this.refresh()}}class hour_band extends plot_base{refresh(){super.refresh(),console.log("refresh hour_band"),fetch(this.end_point).then(t=>t.json()).then(r=>{var t=get_last_refresh(r),e=[];for(let t=23;-1{var o=[];for(let t=23;-1"Band: "+t.name},emphasis:{lineStyle:{width:4}}}]})})}constructor(t,e,o){super(t,e);let s=[];o.forEach(function(t,e){s[e]=t.id}),this.bands=s,this.refresh()}}class dx_spots_per_month extends plot_base{refresh(){console.log("refresh dx_spots_per_month"),fetch(this.end_point).then(t=>t.json()).then(e=>{var t=get_last_refresh(e),o=(new Date).getFullYear(),s=(+o).toString(),r=(o-1).toString(),o=(o-2).toString(),a=get_months_names(),n=[],i=[],h=[];for(let t=1;t<13;t++)n.push(e.spots_per_month[t].year_0),i.push(e.spots_per_month[t].year_1),h.push(e.spots_per_month[t].year_2);this.myChart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},title:{text:"DX SPOTS per month",subtext:t,top:"top",left:"left"},legend:{data:[o,r,s],bottom:"bottom"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},magicType:{show:!0,type:["line","bar","stack"]},restore:{show:!0},saveAsImage:{show:!0}}},xAxis:[{type:"category",axisTick:{show:!1},data:a}],yAxis:[{type:"value",axisLabel:{formatter:function(t){return format_u_k_m(t)}}}],series:[{name:o,type:"bar",barGap:0,emphasis:{focus:"series"},data:h},{name:r,type:"bar",emphasis:{focus:"series"},data:i},{name:s,type:"bar",emphasis:{focus:"series"},data:n}]})})}constructor(t,e){super(t,e),this.refresh()}}class dx_spots_trend extends plot_base{refresh(){console.log("refresh dx_spots_trend"),fetch(this.end_point).then(t=>t.json()).then(t=>{var e,o,s=get_last_refresh(t),r=[];for([e,o]of Object.entries(t.spots_trend)){var a=[];a.push(e),a.push(o),r.push(a)}this.myChart.setOption({tooltip:{trigger:"axis",position:function(t){return[t[0],"10%"]}},title:{text:"DX SPOTS trend",subtext:s,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{dataView:{show:!0,readOnly:!1},dataZoom:{yAxisIndex:"none"},restore:{},magicType:{show:!0,type:["line","bar"]},saveAsImage:{}}},xAxis:{type:"time",boundaryGap:!1},yAxis:{type:"value",boundaryGap:[0,"10%"],axisLabel:{formatter:function(t){return format_u_k_m(t)}}},dataZoom:[{type:"inside",start:65,end:100},{start:0,end:20}],series:[{name:"Spots",type:"line",smooth:!0,symbol:"none",itemStyle:{color:"#078513"},areaStyle:{color:new echarts.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"#57fa75"},{offset:1,color:"#118226"}])},data:r}]})})}constructor(t,e){super(t,e),this.refresh()}}var plot_ba=new band_activity("chart-band_activity","/plot_get_heatmap_data",continents_cq,band_frequencies),plot_wdsl=(setInterval(function(){plot_ba.refresh()},3e5),new world_dx_spots_live("chart-world_dx_spots_live","/plot_get_world_dx_spots_live")),plot_hb=(setInterval(function(){plot_wdsl.refresh()},3e5),new hour_band("chart-hour_band","/plot_get_hour_band",band_frequencies)),plot_dspm=(setInterval(function(){plot_hb.refresh()},36e5),new dx_spots_per_month("chart-dx_spots_x_month","/plot_get_dx_spots_per_month")),plot_dst=(setInterval(function(){plot_dspm.refresh()},432e5),new dx_spots_trend("chart-dx_spots_trend","/plot_get_dx_spots_trend"));setInterval(function(){plot_dst.refresh()},432e5); +class plot_base{refresh(){}constructor(t,e){var o=document.getElementById(t);this.end_point=e,this.myChart=echarts.init(o);let s=echarts.init(document.querySelector("#"+t),null);window.addEventListener("resize",function(){s.resize()})}}class band_activity extends plot_base{refresh(t){super.refresh(),console.log("refresh band_activity"),void 0!==t&&(this.selectedContinent=t),fetch(this.end_point+"?continent="+this.selectedContinent).then(t=>t.json()).then(t=>{var e=get_last_refresh(t),t=Array.from(t["band activity"]).map(function(t){return[t[1],t[0],t[2]||"-"]});this.myChart.setOption({tooltip:{position:"top",formatter:function(t){return t.seriesName+" on "+t.name+" band: "+t.data[2]+""}},title:{text:"Band activity",subtext:e,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",right:"right",top:"bottom",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!0},restore:{show:!0},saveAsImage:{show:!0}}},grid:{height:"80%",left:25,top:50,right:60,bottom:0,show:!0,backgroundColor:"rgb(255, 255, 255)"},xAxis:{type:"category",data:this.bands,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},yAxis:{type:"category",data:this.continents,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},visualMap:{calculable:!0,orient:"vertical",right:"right",top:"center",min:0,max:30,inRange:{color:["#ffffe6","yellow","red"]}},series:[{name:"Spots",type:"heatmap",data:t,label:{show:!1},emphasis:{itemStyle:{shadowBlur:10,shadowColor:"rgba(100, 0, 0, 0.5)"}}}]})})}constructor(t,e,o,s){super(t,e);let r=[],a=(o.forEach(function(t,e){r[e]=t.id}),this.continents=r,[]);s.forEach(function(t,e){a[e]=t.id}),this.bands=a;var n=getCookie("user_region"),i=getCookie("user_region_desc");n||(n="EU",i="Europe",setCookie("user_region",n,60),setCookie("user_region_desc",i,60)),selectElement("continentInput",n),addEventHandler(document.getElementById("continentInput"),"change",function(){n=this.value,i=this.options[this.selectedIndex].text,setCookie("user_region",n,60),setCookie("user_region_desc",i,60),plot_ba.refresh(n),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band")}),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band"),this.refresh(n)}}class world_dx_spots_live extends plot_base{refresh(){super.refresh(),console.log("refresh world_dx_spots_live"),fetch(this.end_point).then(t=>t.json()).then(s=>{fetch("world.json").then(t=>t.text()).then(t=>{var e=get_last_refresh(s),o=[];s.world_dx_spots_live.forEach(function(t,e){o.push({value:[t.lat,t.lon,t.count]})}),this.myChart.hideLoading(),echarts.registerMap("WR",t),this.myChart.setOption({visualMap:{show:!1,min:0,max:30,inRange:{symbolSize:[5,20]}},geo:{type:"map",map:"WR",roam:!0,zoom:1.2,aspectScale:1,layoutCenter:["50%","54%"],layoutSize:"100%",itemStyle:{normal:{areaColor:"#91cc75",borderColor:"#111"},emphasis:{areaColor:"#3ba272"}},label:{emphasis:{show:!1}}},tooltip:{trigger:"item",formatter:function(t){return"Spots: "+t.value[2]+""}},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},restore:{show:!0},saveAsImage:{show:!0}}},legend:{show:!1},title:{text:"World DX SPOTS in last hour",subtext:e,top:"top",right:"right"},series:[{type:"scatter",coordinateSystem:"geo",data:o,label:{emphasis:{position:"right",show:!1}},itemStyle:{normal:{color:"#fc8452",borderColor:"#fa0a0a"}}}]})})})}constructor(t,e){super(t,e),this.refresh()}}class hour_band extends plot_base{refresh(){super.refresh(),console.log("refresh hour_band"),fetch(this.end_point).then(t=>t.json()).then(r=>{var t=get_last_refresh(r),e=[];for(let t=23;-1{var o=[];for(let t=23;-1"Band: "+t.name},emphasis:{lineStyle:{width:4}}}]})})}constructor(t,e,o){super(t,e);let s=[];o.forEach(function(t,e){s[e]=t.id}),this.bands=s,this.refresh()}}class dx_spots_per_month extends plot_base{refresh(){console.log("refresh dx_spots_per_month"),fetch(this.end_point).then(t=>t.json()).then(e=>{var t=get_last_refresh(e),o=(new Date).getFullYear(),s=(+o).toString(),r=(o-1).toString(),o=(o-2).toString(),a=get_months_names(),n=[],i=[],h=[];for(let t=1;t<13;t++)n.push(e.spots_per_month[t].year_0),i.push(e.spots_per_month[t].year_1),h.push(e.spots_per_month[t].year_2);this.myChart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},title:{text:"DX SPOTS per month",subtext:t,top:"top",left:"left"},legend:{data:[o,r,s],bottom:"bottom"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},magicType:{show:!0,type:["line","bar","stack"]},restore:{show:!0},saveAsImage:{show:!0}}},xAxis:[{type:"category",axisTick:{show:!1},data:a}],yAxis:[{type:"value",axisLabel:{formatter:function(t){return format_u_k_m(t)}}}],series:[{name:o,type:"bar",barGap:0,emphasis:{focus:"series"},data:h},{name:r,type:"bar",emphasis:{focus:"series"},data:i},{name:s,type:"bar",emphasis:{focus:"series"},data:n}]})})}constructor(t,e){super(t,e),this.refresh()}}class dx_spots_trend extends plot_base{refresh(){console.log("refresh dx_spots_trend"),fetch(this.end_point).then(t=>t.json()).then(t=>{var e,o,s=get_last_refresh(t),r=[];for([e,o]of Object.entries(t.spots_trend)){var a=[];a.push(e),a.push(o),r.push(a)}this.myChart.setOption({tooltip:{trigger:"axis",position:function(t){return[t[0],"10%"]}},title:{text:"DX SPOTS trend",subtext:s,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{dataView:{show:!0,readOnly:!1},dataZoom:{yAxisIndex:"none"},restore:{},magicType:{show:!0,type:["line","bar"]},saveAsImage:{}}},xAxis:{type:"time",boundaryGap:!1},yAxis:{type:"value",boundaryGap:[0,"10%"],axisLabel:{formatter:function(t){return format_u_k_m(t)}}},dataZoom:[{type:"inside",start:65,end:100},{start:0,end:20}],series:[{name:"Spots",type:"line",smooth:!0,symbol:"none",itemStyle:{color:"#078513"},areaStyle:{color:new echarts.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"#57fa75"},{offset:1,color:"#118226"}])},data:r}]})})}constructor(t,e){super(t,e),this.refresh()}}var plot_ba=new band_activity("chart-band_activity","/plot_get_heatmap_data",continents_cq,band_frequencies),plot_wdsl=(setInterval(function(){plot_ba.refresh()},3e5),new world_dx_spots_live("chart-world_dx_spots_live","/plot_get_world_dx_spots_live")),plot_hb=(setInterval(function(){plot_wdsl.refresh()},3e5),new hour_band("chart-hour_band","/plot_get_hour_band",band_frequencies)),plot_dspm=(setInterval(function(){plot_hb.refresh()},36e5),new dx_spots_per_month("chart-dx_spots_x_month","/plot_get_dx_spots_per_month")),plot_dst=(setInterval(function(){plot_dspm.refresh()},432e5),new dx_spots_trend("chart-dx_spots_trend","/plot_get_dx_spots_trend"));setInterval(function(){plot_dst.refresh()},432e5); diff --git a/static/pwa/service-worker.js b/static/pwa/service-worker.js index 9837700..1dc0959 100644 --- a/static/pwa/service-worker.js +++ b/static/pwa/service-worker.js @@ -4,7 +4,7 @@ const CACHE_NAME = 'pwa-spiderweb_v2.4.2' // Dichiarazione della costante per gli URL da mettere in cache const URLS_TO_CACHE = [ '/static/images/background.webp', - '/static/css/rel/style.min.css', + '/static/css/dev/style.css', '/static/images/icons/favicon.ico', '/static/images/icons/icon-144x144.png', '/static/images/icons/icon-152x152.png', @@ -18,9 +18,9 @@ const URLS_TO_CACHE = [ '/static/images/icons/icon-96x96.png', '/static/images/icons/icon-apple.png', '/static/images/icons/spider_ico_master.svg', - '/static/js/rel/callsign_inline.min.js', - '/static/js/rel/callsign_search.min.js', - '/static/js/rel/common.min.js', + '/static/js/dev/callsign_inline.js', + '/static/js/dev/callsign_search.js', + '/static/js/dev/common.js', '/privacy.html', '/cookies.html', '/offline.html', diff --git a/templates/_base.html b/templates/_base.html index 417a6cf..8cc740a 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -14,7 +14,7 @@ - + @@ -55,7 +55,7 @@
 (UTC)  
{% block callsign %} - +
- + - + {% block app_scripts %} - + {% endblock app_scripts %} {% block inline_scripts %} {% endblock inline_scripts %} @@ -140,7 +140,7 @@ - + {% endif %} {% endblock cookie %} diff --git a/templates/callsign.html b/templates/callsign.html index f0741eb..b9a800b 100644 --- a/templates/callsign.html +++ b/templates/callsign.html @@ -16,5 +16,5 @@ var callsign = '{{callsign}}'; {% endblock app_data %} {% block inline_scripts %} - + {% endblock %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index a3016fe..083bd60 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,7 +24,7 @@
- + Band
Your continent is: @@ -89,5 +89,5 @@ var band_frequencies={{bands["bands"]|tojson|safe}}; - + {% endblock app_scripts %} \ No newline at end of file From ab50f3841ea3b88868519ecf1df4539b77f1fc13 Mon Sep 17 00:00:00 2001 From: coulisse Date: Sun, 19 Feb 2023 22:47:28 +0100 Subject: [PATCH 2/3] changed api method from get to post --- CITATION.cff | 4 +- README.md | 2 +- cfg/webapp_log_config.ini | 2 +- docs/CHANGELOG.md | 5 +- static/html/offline.html | 10 +- static/js/dev/callsign_inline.js | 19 +- static/js/dev/callsign_search.js | 1 - static/js/dev/plot.js | 456 +++++++++++++++------------ static/js/dev/table.js | 86 ++--- static/js/rel/callsign_inline.min.js | 2 +- static/js/rel/callsign_search.min.js | 2 +- static/js/rel/plot.min.js | 2 +- static/js/rel/table.min.js | 2 +- static/pwa/manifest.webmanifest | 2 +- static/pwa/service-worker.js | 10 +- templates/_base.html | 12 +- templates/callsign.html | 2 +- templates/index.html | 4 +- templates/plots.html | 2 +- webapp.py | 74 +++-- 20 files changed, 388 insertions(+), 311 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index bc69d71..ee32b6f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,5 +24,5 @@ keywords: - dxcluster - spiderweb license: GPL-3.0 -version: v2.4.2 -date-released: 2023-02-18 +version: v2.4.4 +date-released: 2023-02-19 diff --git a/README.md b/README.md index 11dd827..333b7d1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![CodeFactor](https://www.codefactor.io/repository/github/coulisse/spiderweb/badge)](https://www.codefactor.io/repository/github/coulisse/spiderweb) -- **Release:** v2.4.2 +- **Release:** v2.4.4 - **Author:** Corrado Gerbaldo - [IU1BOW](https://www.qrz.com/db/IU1BOW) - **Mail:** - **Licensing:** Gpl V3.0 see [LICENSE](LICENSE) file. diff --git a/cfg/webapp_log_config.ini b/cfg/webapp_log_config.ini index 843a930..9584aad 100644 --- a/cfg/webapp_log_config.ini +++ b/cfg/webapp_log_config.ini @@ -12,7 +12,7 @@ level=INFO handlers=stream_handler,file_handler [logger_webapp] -level=DEBUG +level=INFO handlers=stream_handler,file_handler qualname=webapp propagate=0 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e120e9d..f714c37 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,9 +1,10 @@ ### Change log -Date: 18/02/2023 -Release: v2.4.2 +Date: 19/02/2023 +Release: v2.4.4 - replaced multipart form post with url encoded for security reasons - fixed bands and continents in band activity chart - upgraded Werkzeug to 2.2.3 +- changed some api call from get to post method in order to not caching it Date: 11/02/2023 Release: v2.4.2 diff --git a/static/html/offline.html b/static/html/offline.html index 7bbaeb2..a5877a6 100644 --- a/static/html/offline.html +++ b/static/html/offline.html @@ -16,7 +16,7 @@ - + @@ -96,23 +96,23 @@ © Copyleft: IU1BOW - Spiderweb - v2.4.2 + v2.4.4
- + - + - + diff --git a/static/js/dev/callsign_inline.js b/static/js/dev/callsign_inline.js index f590563..7004f08 100644 --- a/static/js/dev/callsign_inline.js +++ b/static/js/dev/callsign_inline.js @@ -5,9 +5,22 @@ //var my_adxo_events=jQuery.parseJSON(my_adxo_events_json.replaceAll("\t","")); var my_adxo_events = JSON.parse(my_adxo_events_json.replaceAll('\t', '')); -//var qryString = 'spotlist?c=' + my_callsign; -var qryString = 'spotlist?c=' + callsign; -fetch(qryString) + +//var qryString = 'spotlist?c=' + callsign; +let params = {}; +params['callsign']=callsign; + +//let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content"); + +fetch('spotlist', { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify( params ) +}) .then((response) => response.json()) .then((data) => { try { diff --git a/static/js/dev/callsign_search.js b/static/js/dev/callsign_search.js index c3f18e7..028244b 100644 --- a/static/js/dev/callsign_search.js +++ b/static/js/dev/callsign_search.js @@ -9,7 +9,6 @@ function myCallsignSearch(event) { //construct query parameters if (callsign.replace(/\s/g, '').length > 0) { location.href = ('/callsign.html?c=').concat((callsign.trim()).toUpperCase()); - console.log(location.href); //form.action="index.html"; } diff --git a/static/js/dev/plot.js b/static/js/dev/plot.js index 9e90795..a06529c 100644 --- a/static/js/dev/plot.js +++ b/static/js/dev/plot.js @@ -1,25 +1,25 @@ class plot_base { //refresh = function(){ - refresh() { + refresh() { } /** - * Chart creator - * - * @constructor - * @param {String} chart_id The HTML id where place chart - * @param {string} end_point This is backend end-point for chart datas - */ - constructor(chart_id,end_point) { + * Chart creator + * + * @constructor + * @param {String} chart_id The HTML id where place chart + * @param {string} end_point This is backend end-point for chart datas + */ + constructor(chart_id, end_point) { // Initialize the echarts instance based on the prepared dom let chartDom = document.getElementById(chart_id); - this.end_point=end_point; + this.end_point = end_point; this.myChart = echarts.init(chartDom); //resize - let chart = echarts.init(document.querySelector('#'+chart_id), null); - window.addEventListener('resize',function(){ + let chart = echarts.init(document.querySelector('#' + chart_id), null); + window.addEventListener('resize', function () { chart.resize(); }); } @@ -33,13 +33,13 @@ class plot_base { class band_activity extends plot_base { /** - * refresh and populate chart - * - * @param {string} region This is the continent name (EU,AF,NA...) of the selected - */ + * refresh and populate chart + * + * @param {string} region This is the continent name (EU,AF,NA...) of the selected + */ //refresh = function(this.myChart, end_point, region, bands, continents){ //refresh = function(region){ - refresh (region) { + refresh(region) { super.refresh(); console.log('refresh band_activity'); if (typeof region !== 'undefined') { @@ -47,12 +47,25 @@ class band_activity extends plot_base { } // Asynchronous Data Loading - fetch(this.end_point+'?continent='+this.selectedContinent) - .then((response) => response.json()) + //fetch(this.end_point + '?continent=' + this.selectedContinent) + const params = { + continent: this.selectedContinent + }; + + fetch(this.end_point, { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify( params ) + }) + .then((response) => response.json()) .then((data) => { // Fill in the data - var last_refresh=get_last_refresh(data); - var dataMap=Array.from(data['band activity']).map(function (item) { + var last_refresh = get_last_refresh(data); + var dataMap = Array.from(data['band activity']).map(function (item) { return [item[1], item[0], item[2] || '-']; }); //options @@ -60,29 +73,29 @@ class band_activity extends plot_base { tooltip: { position: 'top', formatter: function (p) { - var format = p.seriesName +' on ' + p.name +' band: '+''+p.data[2]+''; + var format = p.seriesName + ' on ' + p.name + ' band: ' + '' + p.data[2] + ''; return format; - } + } }, title: { - text:'Band activity', + text: 'Band activity', subtext: last_refresh, top: 'top', - left:'left' - }, + left: 'left' + }, toolbox: { show: true, showTitle: false, orient: 'vertical', right: 'right', - top : 'bottom', + top: 'bottom', feature: { mark: { show: true }, dataView: { show: true, readOnly: true }, restore: { show: true }, saveAsImage: { show: true } } - }, + }, grid: { height: '80%', left: 25, @@ -90,12 +103,12 @@ class band_activity extends plot_base { right: 60, bottom: 0, show: true, - backgroundColor: 'rgb(255, 255, 255)', + backgroundColor: 'rgb(255, 255, 255)', }, xAxis: { type: 'category', data: this.bands, - axisTick: { + axisTick: { show: true, }, axisLine: { @@ -108,12 +121,12 @@ class band_activity extends plot_base { yAxis: { type: 'category', data: this.continents, - axisTick: { + axisTick: { show: true, }, axisLine: { show: false, - }, + }, splitArea: { show: true } @@ -125,10 +138,10 @@ class band_activity extends plot_base { top: 'center', min: 0, max: 30, - inRange : { - color: ['#ffffe6','yellow','red'] - - } + inRange: { + color: ['#ffffe6', 'yellow', 'red'] + + } }, series: [ { @@ -147,58 +160,58 @@ class band_activity extends plot_base { } ] }); - }); + }); } /** - * Chart creator - * - * @constructor - * @param {String} chart_id The HTML id where place chart - * @param {string} end_point This is backend end-point for chart datas - * @param {integer} refresh_time Time to refesh chart - * @param {Json} cont_cq The continent list( EU, SA, ...) - * @param {Json} band_freq The frequency band list (160, 80, 60... UHF, SHF) - */ - constructor(chart_id, end_point, cont_cq, band_freq) { - super(chart_id,end_point); + * Chart creator + * + * @constructor + * @param {String} chart_id The HTML id where place chart + * @param {string} end_point This is backend end-point for chart datas + * @param {integer} refresh_time Time to refesh chart + * @param {Json} cont_cq The continent list( EU, SA, ...) + * @param {Json} band_freq The frequency band list (160, 80, 60... UHF, SHF) + */ + constructor(chart_id, end_point, cont_cq, band_freq) { + super(chart_id, end_point); //populate continents array - let continents=[]; + let continents = []; cont_cq.forEach(function myFunction(item, index) { - continents[index]=item['id']; + continents[index] = item['id']; }); - this.continents=continents; + this.continents = continents; //populate bands array - let bands=[]; + let bands = []; band_freq.forEach(function myFunction(item, index) { - bands[index]=item['id']; + bands[index] = item['id']; }); - this.bands=bands; + this.bands = bands; //managing region - var selectedContinent=getCookie('user_region'); - var selectedContinent_desc=getCookie('user_region_desc'); + var selectedContinent = getCookie('user_region'); + var selectedContinent_desc = getCookie('user_region_desc'); if (!selectedContinent) { - selectedContinent='EU'; - selectedContinent_desc='Europe'; - setCookie('user_region',selectedContinent,60); - setCookie('user_region_desc',selectedContinent_desc,60); + selectedContinent = 'EU'; + selectedContinent_desc = 'Europe'; + setCookie('user_region', selectedContinent, 60); + setCookie('user_region_desc', selectedContinent_desc, 60); } selectElement('continentInput', selectedContinent); - - addEventHandler(document.getElementById('continentInput'), 'change', function() { - selectedContinent=this.value; - selectedContinent_desc=this.options[this.selectedIndex].text; - setCookie('user_region',selectedContinent,60); - setCookie('user_region_desc',selectedContinent_desc,60); + + addEventHandler(document.getElementById('continentInput'), 'change', function () { + selectedContinent = this.value; + selectedContinent_desc = this.options[this.selectedIndex].text; + setCookie('user_region', selectedContinent, 60); + setCookie('user_region_desc', selectedContinent_desc, 60); plot_ba.refresh(selectedContinent); - setText('txt_continent','\xa0 Based on DX SPOTS from stations in '+ selectedContinent_desc +' during the last 15 minutes, displayed by Continent and Band'); + setText('txt_continent', '\xa0 Based on DX SPOTS from stations in ' + selectedContinent_desc + ' during the last 15 minutes, displayed by Continent and Band'); }); - setText('txt_continent','\xa0 Based on DX SPOTS from stations in '+ selectedContinent_desc +' during the last 15 minutes, displayed by Continent and Band'); + setText('txt_continent', '\xa0 Based on DX SPOTS from stations in ' + selectedContinent_desc + ' during the last 15 minutes, displayed by Continent and Band'); this.refresh(selectedContinent); } @@ -210,7 +223,7 @@ class band_activity extends plot_base { * ******************************************************************************/ class world_dx_spots_live extends plot_base { - + /** * refresh and populate chart * @@ -219,23 +232,32 @@ class world_dx_spots_live extends plot_base { super.refresh(); console.log('refresh world_dx_spots_live'); // Asynchronous Data Loading - fetch(this.end_point) - .then((response) => response.json()) - .then((data) => { + + fetch(this.end_point, { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + } + }) + + .then((response) => response.json()) + .then((data) => { fetch('world.json') .then(response => response.text()) .then(geoJson => { - var last_refresh=get_last_refresh(data); - var dataMap=[]; + var last_refresh = get_last_refresh(data); + var dataMap = []; data['world_dx_spots_live'].forEach(function myFunction(item, index) { //lon, lat, number of qso - dataMap.push({'value':[item['lat'],item['lon'],item['count']]}); + dataMap.push({ 'value': [item['lat'], item['lon'], item['count']] }); }); this.myChart.hideLoading(); - echarts.registerMap('WR', geoJson); - - this.myChart.setOption( { + echarts.registerMap('WR', geoJson); + + this.myChart.setOption({ visualMap: { show: false, @@ -243,7 +265,7 @@ class world_dx_spots_live extends plot_base { max: 30, inRange: { symbolSize: [5, 20] - } + } }, geo: { @@ -261,36 +283,36 @@ class world_dx_spots_live extends plot_base { }, emphasis: { areaColor: '#3ba272' //3ba272 91cc75 - } + } }, label: { emphasis: { show: false } - }, + }, }, tooltip: { trigger: 'item', - formatter: function(val) { - var out='Spots: '+ val.value[2] +''; + formatter: function (val) { + var out = 'Spots: ' + val.value[2] + ''; return out; } - + }, - + toolbox: { show: true, showTitle: false, orient: 'vertical', left: 'right', - top: 'center', + top: 'center', feature: { mark: { show: true }, dataView: { show: true, readOnly: false }, restore: { show: true }, saveAsImage: { show: true } } - }, + }, legend: { show: false }, @@ -298,13 +320,13 @@ class world_dx_spots_live extends plot_base { text: 'World DX SPOTS in last hour', subtext: last_refresh, top: 'top', - right:'right', - }, - series: [ + right: 'right', + }, + series: [ { - type: 'scatter', - coordinateSystem: 'geo', - data:dataMap, + type: 'scatter', + coordinateSystem: 'geo', + data: dataMap, label: { emphasis: { position: 'right', @@ -316,20 +338,20 @@ class world_dx_spots_live extends plot_base { color: '#fc8452', borderColor: '#fa0a0a', } - }, + }, /* - symbolSize: function (val) { - return val[2] / 4; - }, - */ + symbolSize: function (val) { + return val[2] / 4; + }, + */ } - ] - + ] + }); //end options - } - ); - }); + } + ); + }); } /** * Chart creator @@ -337,9 +359,9 @@ class world_dx_spots_live extends plot_base { * @constructor * @param {String} chart_id The HTML id where place chart * @param {string} end_point This is backend end-point for chart datas - */ - constructor(chart_id, end_point) { - super(chart_id,end_point); + */ + constructor(chart_id, end_point) { + super(chart_id, end_point); this.refresh(); } @@ -350,7 +372,7 @@ class world_dx_spots_live extends plot_base { * ******************************************************************************/ class hour_band extends plot_base { - + /** * refresh and populate chart * @@ -360,39 +382,47 @@ class hour_band extends plot_base { // Asynchronous Data Loading super.refresh(); - console.log ('refresh hour_band'); - fetch(this.end_point) - .then((response) => response.json()) - .then((data) => { + console.log('refresh hour_band'); + + fetch(this.end_point, { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + } + }) + .then((response) => response.json()) + .then((data) => { // Fill in the dat - var last_refresh=get_last_refresh(data); + var last_refresh = get_last_refresh(data); //set hour indicator names - var hour_indicators=[]; + var hour_indicators = []; for (let i = 23; i > -1; i--) { - var hour_name={}; - var s=i.toString(); - hour_name['name']=s; + var hour_name = {}; + var s = i.toString(); + hour_name['name'] = s; hour_indicators.push(hour_name); } //cycling whithin each bands and hours - var dataMap=[]; + var dataMap = []; this.bands.forEach(band_item => { - var qso=[]; - - for (let i = 23; i > -1; i--) { + var qso = []; + + for (let i = 23; i > -1; i--) { try { - var value=data['hour_band'][band_item][i]; + var value = data['hour_band'][band_item][i]; if (typeof value == 'undefined') { value = 0; - } + } qso.push(value); } catch (TypeError) { //TODO } - } - var tot={'value':qso,'name':band_item}; + } + var tot = { 'value': qso, 'name': band_item }; dataMap.push(tot); }); @@ -400,17 +430,17 @@ class hour_band extends plot_base { //options this.myChart.setOption({ legend: { - + orient: 'horizontal', left: 'left', - bottom: 'bottom' + bottom: 'bottom' }, title: { text: 'DX SPOTS per hour in last month', subtext: last_refresh, top: 'top', right: 'right', - }, + }, tooltip: { trigger: 'axis', }, @@ -419,23 +449,23 @@ class hour_band extends plot_base { showTitle: false, orient: 'vertical', left: 'right', - top: 'center', + top: 'center', feature: { mark: { show: true }, dataView: { show: true, readOnly: true }, restore: { show: true }, saveAsImage: { show: true } } - }, + }, radar: { - shape: 'circle', + shape: 'circle', //startAngle: 285, //0 on left side startAngle: 105, //0 on top indicator: hour_indicators, center: ['47%', '46%'], axisName: { color: 'rgb(80,80,80)', - }, + }, }, series: [ { @@ -443,25 +473,25 @@ class hour_band extends plot_base { width: 2 }, type: 'radar', - symbol: 'none', + symbol: 'none', data: dataMap, tooltip: { trigger: 'item', formatter: (params) => { - return 'Band: '+params.name; - }, - }, + return 'Band: ' + params.name; + }, + }, emphasis: { lineStyle: { width: 4 } - }, + }, } ] }); }); } - + /** * Chart creator @@ -470,15 +500,15 @@ class hour_band extends plot_base { * @param {String} chart_id The HTML id where place chart * @param {string} end_point This is backend end-point for chart datas * @param {Json} band_freq The frequency band list (160, 80, 60... UHF, SHF) - */ - constructor(chart_id,end_point,band_freq) { + */ + constructor(chart_id, end_point, band_freq) { // Initialize the echarts instance based on the prepared dom - super(chart_id,end_point); + super(chart_id, end_point); //populate bands array - let lcl_bands=[]; + let lcl_bands = []; band_freq.forEach(function myFunction(item, index) { - lcl_bands[index]=item['id']; + lcl_bands[index] = item['id']; }); this.bands = lcl_bands; this.refresh(); @@ -491,22 +521,30 @@ class hour_band extends plot_base { * javascript used to build dx spots per month chart * ******************************************************************************/ -class dx_spots_per_month extends plot_base { - +class dx_spots_per_month extends plot_base { + /** - * refresh and populate chart - */ + * refresh and populate chart + */ refresh() { console.log('refresh dx_spots_per_month'); // Asynchronous Data Loading //$.getJSON(end_point).done(function(data) { - fetch(this.end_point) - .then((response) => response.json()) - .then((data) => { + + fetch(this.end_point, { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + } + }) + .then((response) => response.json()) + .then((data) => { // Fill in the data - var last_refresh=get_last_refresh(data); + var last_refresh = get_last_refresh(data); var year_now = new Date().getFullYear(); var year_0 = (year_now - 0).toString(); var year_1 = (year_now - 1).toString(); @@ -514,14 +552,14 @@ class dx_spots_per_month extends plot_base { var months_name = get_months_names(); - var dataMap_year_0=[]; - var dataMap_year_1=[]; - var dataMap_year_2=[]; + var dataMap_year_0 = []; + var dataMap_year_1 = []; + var dataMap_year_2 = []; for (let i = 1; i < 13; i++) { dataMap_year_0.push(data.spots_per_month[i].year_0); dataMap_year_1.push(data.spots_per_month[i].year_1); dataMap_year_2.push(data.spots_per_month[i].year_2); - } + } //options this.myChart.setOption({ @@ -535,11 +573,11 @@ class dx_spots_per_month extends plot_base { text: 'DX SPOTS per month', subtext: last_refresh, top: 'top', - left:'left' - }, + left: 'left' + }, legend: { data: [year_2, year_1, year_0], - bottom: 'bottom' + bottom: 'bottom' }, toolbox: { show: true, @@ -566,7 +604,7 @@ class dx_spots_per_month extends plot_base { { type: 'value', axisLabel: { - formatter: (function (value){ + formatter: (function (value) { return format_u_k_m(value); }) } @@ -589,7 +627,7 @@ class dx_spots_per_month extends plot_base { focus: 'series' }, data: dataMap_year_1 - + }, { name: year_0, @@ -597,9 +635,9 @@ class dx_spots_per_month extends plot_base { emphasis: { focus: 'series' }, - data: dataMap_year_0 + data: dataMap_year_0 }, - ] + ] }); }); } @@ -610,9 +648,9 @@ class dx_spots_per_month extends plot_base { * @constructor * @param {String} chart_id The HTML id where place chart * @param {string} end_point This is backend end-point for chart datas - */ - constructor(chart_id, end_point) { - super(chart_id,end_point); + */ + constructor(chart_id, end_point) { + super(chart_id, end_point); this.refresh(); } } @@ -622,27 +660,34 @@ class dx_spots_per_month extends plot_base { * ******************************************************************************/ class dx_spots_trend extends plot_base { - + /** - * refresh and populate chart - */ + * refresh and populate chart + */ refresh() { - console.log('refresh dx_spots_trend'); + console.log('refresh dx_spots_trend'); // Asynchronous Data Loading - fetch(this.end_point) - .then((response) => response.json()) - .then((data) => { + fetch(this.end_point, { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + } + }) + .then((response) => response.json()) + .then((data) => { // Fill in the data - var last_refresh=get_last_refresh(data); - var dataMap=[]; + var last_refresh = get_last_refresh(data); + var dataMap = []; for (const [key, value] of Object.entries(data['spots_trend'])) { - var tuple=[]; + var tuple = []; tuple.push(key); tuple.push(value); dataMap.push(tuple); - } + } //options this.myChart.setOption({ tooltip: { @@ -655,22 +700,22 @@ class dx_spots_trend extends plot_base { text: 'DX SPOTS trend', subtext: last_refresh, top: 'top', - left:'left' + left: 'left' }, toolbox: { show: true, showTitle: false, orient: 'vertical', left: 'right', - top: 'center', + top: 'center', feature: { dataView: { show: true, readOnly: false }, dataZoom: { yAxisIndex: 'none' - }, + }, restore: {}, - magicType: { show: true, type: ['line', 'bar'] }, - saveAsImage: {}, + magicType: { show: true, type: ['line', 'bar'] }, + saveAsImage: {}, } }, xAxis: { @@ -681,10 +726,10 @@ class dx_spots_trend extends plot_base { type: 'value', boundaryGap: [0, '10%'], axisLabel: { - formatter: (function (value){ + formatter: (function (value) { return format_u_k_m(value); }) - } + } }, dataZoom: [ { @@ -706,53 +751,54 @@ class dx_spots_trend extends plot_base { symbol: 'none', itemStyle: { color: '#078513' - }, + }, areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, - color: '#57fa75' + color: '#57fa75' }, { offset: 1, - color: '#118226' + color: '#118226' } ]) }, data: dataMap } - ] - + ] + }); }); } - + /** - * Chart creator - * - * @constructor - * @param {String} chart_id The HTML id where place chart - * @param {string} end_point This is backend end-point for chart datas - */ - constructor(chart_id,end_point) { + * Chart creator + * + * @constructor + * @param {String} chart_id The HTML id where place chart + * @param {string} end_point This is backend end-point for chart datas + */ + constructor(chart_id, end_point) { // Initialize the echarts instance based on the prepared dom - super(chart_id,end_point); + super(chart_id, end_point); this.refresh(); } } //create objects and timing -var plot_ba = new band_activity ('chart-band_activity','/plot_get_heatmap_data', continents_cq,band_frequencies); -setInterval(function(){plot_ba.refresh();},5*60*1000); -var plot_wdsl = new world_dx_spots_live ('chart-world_dx_spots_live','/plot_get_world_dx_spots_live'); -setInterval(function(){plot_wdsl.refresh();},5*60*1000); +var plot_ba = new band_activity('chart-band_activity', '/plot_get_heatmap_data', continents_cq, band_frequencies); +setInterval(function () { plot_ba.refresh(); }, 5 * 60 * 1000); -var plot_hb = new hour_band('chart-hour_band','/plot_get_hour_band',band_frequencies); -setInterval(function(){plot_hb.refresh();},1*60*60*1000); +var plot_wdsl = new world_dx_spots_live('chart-world_dx_spots_live', '/plot_get_world_dx_spots_live'); +setInterval(function () { plot_wdsl.refresh(); }, 5 * 60 * 1000); -var plot_dspm = new dx_spots_per_month ('chart-dx_spots_x_month','/plot_get_dx_spots_per_month'); -setInterval(function(){plot_dspm.refresh();},12*60*60*1000); +var plot_hb = new hour_band('chart-hour_band', '/plot_get_hour_band', band_frequencies); +setInterval(function () { plot_hb.refresh(); }, 1 * 60 * 60 * 1000); -var plot_dst = new dx_spots_trend ('chart-dx_spots_trend','/plot_get_dx_spots_trend'); -setInterval(function(){plot_dst.refresh();},12*60*60*1000); \ No newline at end of file +var plot_dspm = new dx_spots_per_month('chart-dx_spots_x_month', '/plot_get_dx_spots_per_month'); +setInterval(function () { plot_dspm.refresh(); }, 12 * 60 * 60 * 1000); + +var plot_dst = new dx_spots_trend('chart-dx_spots_trend', '/plot_get_dx_spots_trend'); +setInterval(function () { plot_dst.refresh(); }, 12 * 60 * 60 * 1000); \ No newline at end of file diff --git a/static/js/dev/table.js b/static/js/dev/table.js index 38aae64..26cf264 100644 --- a/static/js/dev/table.js +++ b/static/js/dev/table.js @@ -164,7 +164,7 @@ class table_builder { const td_comm = document.createElement('td'); td_comm.className = 'd-none d-lg-table-cell d-xl-table-cell'; try { - td_comm.textContent = line.comm.substring(0,100); + td_comm.textContent = line.comm.substring(0, 100); } catch (err) { td_comm.textContent = ''; } @@ -245,7 +245,7 @@ class table_builder { return new bootstrap.Popover(popoverTriggerEl); }); - this.first_time=false; + this.first_time = false; } } } //end class @@ -257,7 +257,7 @@ class table_builder { const adxo_url = 'https://www.ng3k.com/misc/adxo.html'; const qrz_url = 'https://www.qrz.com/db/'; const tb = new table_builder('bodyspot'); -var qryAll_sv = ''; +var params_sv = {}; /** * Decode Announced Dx Operation (ng3k) @@ -287,38 +287,42 @@ function mySearch(event) { * Function for construct query string for single value selection * * @param id {string} The html identifier used for filter - * @param param {string}the parameter for the query * @param len {number} The maximum number of element that could be selected; use -1 if the filter permits a single selection - * @param qrystr {string} Th initial query string to be completed with the new filter + * @param qry_json {object} The input json */ -function getFilter(id, param, len, qrystr) { +function compose_filter(id, len, qry_json) { try { let selectedFilter = [].map.call(document.getElementById(id).selectedOptions, option => option.value); - let qryFilter = ''; - if (selectedFilter.length < len || len == -1) { - qryFilter = selectedFilter.map(function (el) { + if (selectedFilter.length < len) { + qry_json[id] = []; + selectedFilter.map(function (el) { if (el) { - return param + '=' + el; + qry_json[id].push(el); } else { return ''; } - }).join('&'); - qrystr = qrystr.concat('&'.concat(qryFilter)); - if (qrystr.substring(0, 1) == '&') { - qrystr = qrystr.substring(1); - } - } + }); + } else if (len == -1) { + selectedFilter.map(function (el) { + if (el) { + qry_json[id]=el; + } else { + return ''; + } + }); + } } catch (err) { - if (err.name == 'TypeError') { - /* error managed: it is ok: probabilly ther is no filter on cq region */ + if (err.name == 'TypeError') { + console.error(err.name); + /* error managed: it is ok: probabilly ther is no filter on cq region */ } else { throw err; } - } + } - return qrystr; + return qry_json; } /** @@ -328,34 +332,36 @@ function getFilter(id, param, len, qrystr) { */ function refresh_timer() { - let qryAll = ''; + let params = {}; //get other filters - qryAll = getFilter('band', 'b', 14, qryAll); - qryAll = getFilter('de_re', 'e', 7, qryAll); - qryAll = getFilter('dx_re', 'x', 7, qryAll); - qryAll = getFilter('mode', 'm', 3, qryAll); - qryAll = getFilter('cqdeInput', 'qe', -1, qryAll); - qryAll = getFilter('cqdxInput', 'qx', -1, qryAll); + params = compose_filter('band', 14, params); + params = compose_filter('de_re', 7, params); + params = compose_filter('dx_re', 7, params); + params = compose_filter('mode', 3, params); + params = compose_filter('cqdeInput', -1, params); + params = compose_filter('cqdxInput', -1, params); - //Composing query string - let qryString; + delete params_sv['lr']; //remove line row number, for future param comparison //If the filter is changed we need to reset the data table and restart from rowid=0 - if (qryAll != qryAll_sv) { + if (JSON.stringify(params) !== JSON.stringify(params_sv)) { tb.resetData(); - qryAll_sv = qryAll; + params_sv = params; } - - qryString = ('spotlist?lr=').concat(tb.getLastRowId()); - - if (qryAll) { - qryString = qryString.concat('&'.concat(qryAll)); - } - - + params['lr']=tb.getLastRowId(); + //Open a new connection, using the GET request on the URL endpoint - fetch(qryString) + //let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content"); + fetch('spotlist', { + method: 'POST', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify( params ) + }) .then((response) => response.json()) .then((data_new) => { try { diff --git a/static/js/rel/callsign_inline.min.js b/static/js/rel/callsign_inline.min.js index c77e22c..1a78c28 100644 --- a/static/js/rel/callsign_inline.min.js +++ b/static/js/rel/callsign_inline.min.js @@ -1 +1 @@ -var my_adxo_events=JSON.parse(my_adxo_events_json.replaceAll("\t","")),qryString="spotlist?c="+callsign;fetch(qryString).then(l=>l.json()).then(o=>{try{tb.build(o,callsign)}catch(l){console.log(l),console.log(l.stack),console.log(o)}}); +var my_adxo_events=JSON.parse(my_adxo_events_json.replaceAll("\t",""));let params={};params.callsign=callsign,fetch("spotlist",{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"},body:JSON.stringify(params)}).then(e=>e.json()).then(a=>{try{tb.build(a,callsign)}catch(e){console.log(e),console.log(e.stack),console.log(a)}}); diff --git a/static/js/rel/callsign_search.min.js b/static/js/rel/callsign_search.min.js index ac7e94f..cab9a5b 100644 --- a/static/js/rel/callsign_search.min.js +++ b/static/js/rel/callsign_search.min.js @@ -1 +1 @@ -function myCallsignSearch(e){e.preventDefault(),0<(callsign=document.getElementById("callsignInput").value).replace(/\s/g,"").length&&(location.href="/callsign.html?c=".concat(callsign.trim().toUpperCase()),console.log(location.href))}document.getElementById("form-callsign").addEventListener("submit",myCallsignSearch); +function myCallsignSearch(e){e.preventDefault(),0<(callsign=document.getElementById("callsignInput").value).replace(/\s/g,"").length&&(location.href="/callsign.html?c=".concat(callsign.trim().toUpperCase()))}document.getElementById("form-callsign").addEventListener("submit",myCallsignSearch); diff --git a/static/js/rel/plot.min.js b/static/js/rel/plot.min.js index b783cc5..565a948 100644 --- a/static/js/rel/plot.min.js +++ b/static/js/rel/plot.min.js @@ -1 +1 @@ -class plot_base{refresh(){}constructor(t,e){var o=document.getElementById(t);this.end_point=e,this.myChart=echarts.init(o);let s=echarts.init(document.querySelector("#"+t),null);window.addEventListener("resize",function(){s.resize()})}}class band_activity extends plot_base{refresh(t){super.refresh(),console.log("refresh band_activity"),void 0!==t&&(this.selectedContinent=t),fetch(this.end_point+"?continent="+this.selectedContinent).then(t=>t.json()).then(t=>{var e=get_last_refresh(t),t=Array.from(t["band activity"]).map(function(t){return[t[1],t[0],t[2]||"-"]});this.myChart.setOption({tooltip:{position:"top",formatter:function(t){return t.seriesName+" on "+t.name+" band: "+t.data[2]+""}},title:{text:"Band activity",subtext:e,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",right:"right",top:"bottom",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!0},restore:{show:!0},saveAsImage:{show:!0}}},grid:{height:"80%",left:25,top:50,right:60,bottom:0,show:!0,backgroundColor:"rgb(255, 255, 255)"},xAxis:{type:"category",data:this.bands,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},yAxis:{type:"category",data:this.continents,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},visualMap:{calculable:!0,orient:"vertical",right:"right",top:"center",min:0,max:30,inRange:{color:["#ffffe6","yellow","red"]}},series:[{name:"Spots",type:"heatmap",data:t,label:{show:!1},emphasis:{itemStyle:{shadowBlur:10,shadowColor:"rgba(100, 0, 0, 0.5)"}}}]})})}constructor(t,e,o,s){super(t,e);let r=[],a=(o.forEach(function(t,e){r[e]=t.id}),this.continents=r,[]);s.forEach(function(t,e){a[e]=t.id}),this.bands=a;var n=getCookie("user_region"),i=getCookie("user_region_desc");n||(n="EU",i="Europe",setCookie("user_region",n,60),setCookie("user_region_desc",i,60)),selectElement("continentInput",n),addEventHandler(document.getElementById("continentInput"),"change",function(){n=this.value,i=this.options[this.selectedIndex].text,setCookie("user_region",n,60),setCookie("user_region_desc",i,60),plot_ba.refresh(n),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band")}),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band"),this.refresh(n)}}class world_dx_spots_live extends plot_base{refresh(){super.refresh(),console.log("refresh world_dx_spots_live"),fetch(this.end_point).then(t=>t.json()).then(s=>{fetch("world.json").then(t=>t.text()).then(t=>{var e=get_last_refresh(s),o=[];s.world_dx_spots_live.forEach(function(t,e){o.push({value:[t.lat,t.lon,t.count]})}),this.myChart.hideLoading(),echarts.registerMap("WR",t),this.myChart.setOption({visualMap:{show:!1,min:0,max:30,inRange:{symbolSize:[5,20]}},geo:{type:"map",map:"WR",roam:!0,zoom:1.2,aspectScale:1,layoutCenter:["50%","54%"],layoutSize:"100%",itemStyle:{normal:{areaColor:"#91cc75",borderColor:"#111"},emphasis:{areaColor:"#3ba272"}},label:{emphasis:{show:!1}}},tooltip:{trigger:"item",formatter:function(t){return"Spots: "+t.value[2]+""}},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},restore:{show:!0},saveAsImage:{show:!0}}},legend:{show:!1},title:{text:"World DX SPOTS in last hour",subtext:e,top:"top",right:"right"},series:[{type:"scatter",coordinateSystem:"geo",data:o,label:{emphasis:{position:"right",show:!1}},itemStyle:{normal:{color:"#fc8452",borderColor:"#fa0a0a"}}}]})})})}constructor(t,e){super(t,e),this.refresh()}}class hour_band extends plot_base{refresh(){super.refresh(),console.log("refresh hour_band"),fetch(this.end_point).then(t=>t.json()).then(r=>{var t=get_last_refresh(r),e=[];for(let t=23;-1{var o=[];for(let t=23;-1"Band: "+t.name},emphasis:{lineStyle:{width:4}}}]})})}constructor(t,e,o){super(t,e);let s=[];o.forEach(function(t,e){s[e]=t.id}),this.bands=s,this.refresh()}}class dx_spots_per_month extends plot_base{refresh(){console.log("refresh dx_spots_per_month"),fetch(this.end_point).then(t=>t.json()).then(e=>{var t=get_last_refresh(e),o=(new Date).getFullYear(),s=(+o).toString(),r=(o-1).toString(),o=(o-2).toString(),a=get_months_names(),n=[],i=[],h=[];for(let t=1;t<13;t++)n.push(e.spots_per_month[t].year_0),i.push(e.spots_per_month[t].year_1),h.push(e.spots_per_month[t].year_2);this.myChart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},title:{text:"DX SPOTS per month",subtext:t,top:"top",left:"left"},legend:{data:[o,r,s],bottom:"bottom"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},magicType:{show:!0,type:["line","bar","stack"]},restore:{show:!0},saveAsImage:{show:!0}}},xAxis:[{type:"category",axisTick:{show:!1},data:a}],yAxis:[{type:"value",axisLabel:{formatter:function(t){return format_u_k_m(t)}}}],series:[{name:o,type:"bar",barGap:0,emphasis:{focus:"series"},data:h},{name:r,type:"bar",emphasis:{focus:"series"},data:i},{name:s,type:"bar",emphasis:{focus:"series"},data:n}]})})}constructor(t,e){super(t,e),this.refresh()}}class dx_spots_trend extends plot_base{refresh(){console.log("refresh dx_spots_trend"),fetch(this.end_point).then(t=>t.json()).then(t=>{var e,o,s=get_last_refresh(t),r=[];for([e,o]of Object.entries(t.spots_trend)){var a=[];a.push(e),a.push(o),r.push(a)}this.myChart.setOption({tooltip:{trigger:"axis",position:function(t){return[t[0],"10%"]}},title:{text:"DX SPOTS trend",subtext:s,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{dataView:{show:!0,readOnly:!1},dataZoom:{yAxisIndex:"none"},restore:{},magicType:{show:!0,type:["line","bar"]},saveAsImage:{}}},xAxis:{type:"time",boundaryGap:!1},yAxis:{type:"value",boundaryGap:[0,"10%"],axisLabel:{formatter:function(t){return format_u_k_m(t)}}},dataZoom:[{type:"inside",start:65,end:100},{start:0,end:20}],series:[{name:"Spots",type:"line",smooth:!0,symbol:"none",itemStyle:{color:"#078513"},areaStyle:{color:new echarts.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"#57fa75"},{offset:1,color:"#118226"}])},data:r}]})})}constructor(t,e){super(t,e),this.refresh()}}var plot_ba=new band_activity("chart-band_activity","/plot_get_heatmap_data",continents_cq,band_frequencies),plot_wdsl=(setInterval(function(){plot_ba.refresh()},3e5),new world_dx_spots_live("chart-world_dx_spots_live","/plot_get_world_dx_spots_live")),plot_hb=(setInterval(function(){plot_wdsl.refresh()},3e5),new hour_band("chart-hour_band","/plot_get_hour_band",band_frequencies)),plot_dspm=(setInterval(function(){plot_hb.refresh()},36e5),new dx_spots_per_month("chart-dx_spots_x_month","/plot_get_dx_spots_per_month")),plot_dst=(setInterval(function(){plot_dspm.refresh()},432e5),new dx_spots_trend("chart-dx_spots_trend","/plot_get_dx_spots_trend"));setInterval(function(){plot_dst.refresh()},432e5); +class plot_base{refresh(){}constructor(e,t){var o=document.getElementById(e);this.end_point=t,this.myChart=echarts.init(o);let s=echarts.init(document.querySelector("#"+e),null);window.addEventListener("resize",function(){s.resize()})}}class band_activity extends plot_base{refresh(e){super.refresh(),console.log("refresh band_activity"),void 0!==e&&(this.selectedContinent=e);e={continent:this.selectedContinent};fetch(this.end_point,{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)}).then(e=>e.json()).then(e=>{var t=get_last_refresh(e),e=Array.from(e["band activity"]).map(function(e){return[e[1],e[0],e[2]||"-"]});this.myChart.setOption({tooltip:{position:"top",formatter:function(e){return e.seriesName+" on "+e.name+" band: "+e.data[2]+""}},title:{text:"Band activity",subtext:t,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",right:"right",top:"bottom",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!0},restore:{show:!0},saveAsImage:{show:!0}}},grid:{height:"80%",left:25,top:50,right:60,bottom:0,show:!0,backgroundColor:"rgb(255, 255, 255)"},xAxis:{type:"category",data:this.bands,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},yAxis:{type:"category",data:this.continents,axisTick:{show:!0},axisLine:{show:!1},splitArea:{show:!0}},visualMap:{calculable:!0,orient:"vertical",right:"right",top:"center",min:0,max:30,inRange:{color:["#ffffe6","yellow","red"]}},series:[{name:"Spots",type:"heatmap",data:e,label:{show:!1},emphasis:{itemStyle:{shadowBlur:10,shadowColor:"rgba(100, 0, 0, 0.5)"}}}]})})}constructor(e,t,o,s){super(e,t);let r=[],a=(o.forEach(function(e,t){r[t]=e.id}),this.continents=r,[]);s.forEach(function(e,t){a[t]=e.id}),this.bands=a;var n=getCookie("user_region"),i=getCookie("user_region_desc");n||(n="EU",i="Europe",setCookie("user_region",n,60),setCookie("user_region_desc",i,60)),selectElement("continentInput",n),addEventHandler(document.getElementById("continentInput"),"change",function(){n=this.value,i=this.options[this.selectedIndex].text,setCookie("user_region",n,60),setCookie("user_region_desc",i,60),plot_ba.refresh(n),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band")}),setText("txt_continent","  Based on DX SPOTS from stations in "+i+" during the last 15 minutes, displayed by Continent and Band"),this.refresh(n)}}class world_dx_spots_live extends plot_base{refresh(){super.refresh(),console.log("refresh world_dx_spots_live"),fetch(this.end_point,{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"}}).then(e=>e.json()).then(s=>{fetch("world.json").then(e=>e.text()).then(e=>{var t=get_last_refresh(s),o=[];s.world_dx_spots_live.forEach(function(e,t){o.push({value:[e.lat,e.lon,e.count]})}),this.myChart.hideLoading(),echarts.registerMap("WR",e),this.myChart.setOption({visualMap:{show:!1,min:0,max:30,inRange:{symbolSize:[5,20]}},geo:{type:"map",map:"WR",roam:!0,zoom:1.2,aspectScale:1,layoutCenter:["50%","54%"],layoutSize:"100%",itemStyle:{normal:{areaColor:"#91cc75",borderColor:"#111"},emphasis:{areaColor:"#3ba272"}},label:{emphasis:{show:!1}}},tooltip:{trigger:"item",formatter:function(e){return"Spots: "+e.value[2]+""}},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},restore:{show:!0},saveAsImage:{show:!0}}},legend:{show:!1},title:{text:"World DX SPOTS in last hour",subtext:t,top:"top",right:"right"},series:[{type:"scatter",coordinateSystem:"geo",data:o,label:{emphasis:{position:"right",show:!1}},itemStyle:{normal:{color:"#fc8452",borderColor:"#fa0a0a"}}}]})})})}constructor(e,t){super(e,t),this.refresh()}}class hour_band extends plot_base{refresh(){super.refresh(),console.log("refresh hour_band"),fetch(this.end_point,{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"}}).then(e=>e.json()).then(r=>{var e=get_last_refresh(r),t=[];for(let e=23;-1{var o=[];for(let e=23;-1"Band: "+e.name},emphasis:{lineStyle:{width:4}}}]})})}constructor(e,t,o){super(e,t);let s=[];o.forEach(function(e,t){s[t]=e.id}),this.bands=s,this.refresh()}}class dx_spots_per_month extends plot_base{refresh(){console.log("refresh dx_spots_per_month"),fetch(this.end_point,{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"}}).then(e=>e.json()).then(t=>{var e=get_last_refresh(t),o=(new Date).getFullYear(),s=(+o).toString(),r=(o-1).toString(),o=(o-2).toString(),a=get_months_names(),n=[],i=[],h=[];for(let e=1;e<13;e++)n.push(t.spots_per_month[e].year_0),i.push(t.spots_per_month[e].year_1),h.push(t.spots_per_month[e].year_2);this.myChart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},title:{text:"DX SPOTS per month",subtext:e,top:"top",left:"left"},legend:{data:[o,r,s],bottom:"bottom"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{mark:{show:!0},dataView:{show:!0,readOnly:!1},magicType:{show:!0,type:["line","bar","stack"]},restore:{show:!0},saveAsImage:{show:!0}}},xAxis:[{type:"category",axisTick:{show:!1},data:a}],yAxis:[{type:"value",axisLabel:{formatter:function(e){return format_u_k_m(e)}}}],series:[{name:o,type:"bar",barGap:0,emphasis:{focus:"series"},data:h},{name:r,type:"bar",emphasis:{focus:"series"},data:i},{name:s,type:"bar",emphasis:{focus:"series"},data:n}]})})}constructor(e,t){super(e,t),this.refresh()}}class dx_spots_trend extends plot_base{refresh(){console.log("refresh dx_spots_trend"),fetch(this.end_point,{method:"POST",cache:"no-cache",credentials:"same-origin",headers:{"Content-Type":"application/json"}}).then(e=>e.json()).then(e=>{var t,o,s=get_last_refresh(e),r=[];for([t,o]of Object.entries(e.spots_trend)){var a=[];a.push(t),a.push(o),r.push(a)}this.myChart.setOption({tooltip:{trigger:"axis",position:function(e){return[e[0],"10%"]}},title:{text:"DX SPOTS trend",subtext:s,top:"top",left:"left"},toolbox:{show:!0,showTitle:!1,orient:"vertical",left:"right",top:"center",feature:{dataView:{show:!0,readOnly:!1},dataZoom:{yAxisIndex:"none"},restore:{},magicType:{show:!0,type:["line","bar"]},saveAsImage:{}}},xAxis:{type:"time",boundaryGap:!1},yAxis:{type:"value",boundaryGap:[0,"10%"],axisLabel:{formatter:function(e){return format_u_k_m(e)}}},dataZoom:[{type:"inside",start:65,end:100},{start:0,end:20}],series:[{name:"Spots",type:"line",smooth:!0,symbol:"none",itemStyle:{color:"#078513"},areaStyle:{color:new echarts.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"#57fa75"},{offset:1,color:"#118226"}])},data:r}]})})}constructor(e,t){super(e,t),this.refresh()}}var plot_ba=new band_activity("chart-band_activity","/plot_get_heatmap_data",continents_cq,band_frequencies),plot_wdsl=(setInterval(function(){plot_ba.refresh()},3e5),new world_dx_spots_live("chart-world_dx_spots_live","/plot_get_world_dx_spots_live")),plot_hb=(setInterval(function(){plot_wdsl.refresh()},3e5),new hour_band("chart-hour_band","/plot_get_hour_band",band_frequencies)),plot_dspm=(setInterval(function(){plot_hb.refresh()},36e5),new dx_spots_per_month("chart-dx_spots_x_month","/plot_get_dx_spots_per_month")),plot_dst=(setInterval(function(){plot_dspm.refresh()},432e5),new dx_spots_trend("chart-dx_spots_trend","/plot_get_dx_spots_trend"));setInterval(function(){plot_dst.refresh()},432e5); diff --git a/static/js/rel/table.min.js b/static/js/rel/table.min.js index e1a1e69..86ee8a4 100644 --- a/static/js/rel/table.min.js +++ b/static/js/rel/table.min.js @@ -1 +1 @@ -class table_builder{constructor(e){this.selector=e,this.current_data=[],this.first_time=!0}getLastRowId(){let e;return e=null==this.current_data||this.current_data.length<1?0:this.current_data[0].rowid}resetData(){this.current_data=[]}#buildRow(e,t,n,a=""){var r=document.createElement("tr"),t=(0NG3K Website",l=document.createElement("i"),d=(l.className="bi-search",l.role="button",l.ariaLabel=e.dx,document.createElement("a")),c=(d.href=qrz_url+e.dx,d.target="_blank",d.rel="noopener",document.createElement("span")),s=document.createElement("mark"),s=(s.textContent=e.dx,e.dx==a?c.appendChild(s):c.textContent=" "+e.dx,null!=o&&((a=document.createElement("i")).tabIndex=0,a.className="bi-megaphone-fill",a.style="color: cornflowerblue;",a.role="button",a.ariaLabel="dx_operations",a.setAttribute("data-bs-container","body"),a.setAttribute("data-bs-toggle","popover"),a.setAttribute("data-bs-trigger","focus"),a.setAttribute("data-bs-sanitizer","true"),a.setAttribute("data-bs-placement","auto"),a.setAttribute("data-bs-html","true"),a.setAttribute("data-bs-title","Announced DX Op.: "+o.summary),a.setAttribute("data-bs-content",o.description+"data from "+t),c.appendChild(a)),document.createElement("td"));d.appendChild(l),s.appendChild(d),s.append(c),r.appendChild(s);try{var i=document.createElement("span"),u=(i.className="img-flag fi fi-"+e.iso,i.setAttribute("data-bs-container","body"),i.setAttribute("data-bs-toggle","popover"),i.setAttribute("data-bs-trigger","hover"),i.setAttribute("data-bs-placement","left"),i.setAttribute("data-bs-content",e.country),document.createElement("td"));u.appendChild(i),r.appendChild(u)}catch(e){console.log(e),console.log("error creating flag");o=document.createElement("td");r.appendChild(o)}t=document.createElement("td"),t.className="d-none d-lg-table-cell d-xl-table-cell",t.textContent=e.country,r.appendChild(t),a=document.createElement("td");a.className="d-none d-lg-table-cell d-xl-table-cell";try{a.textContent=e.comm.substring(0,100)}catch(e){a.textContent=""}r.appendChild(a);let m=new Date(1e3*e.time),h="00"+m.getUTCHours(),p=(h=h.substring(h.length-2,h.length),"00"+m.getMinutes()),b=(p=p.substring(p.length-2,p.length),"00"+m.getUTCDate()),g=(b=b.substring(b.length-2,b.length),"00"+(Number(m.getUTCMonth())+1));g=g.substring(g.length-2,g.length);l=m.getUTCFullYear(),d=h+":"+p,m=b+"/"+g+"/"+l,c=document.createElement("div"),c.className="d-flex flex-column",s=document.createElement("div");return s.textContent=d,c.appendChild(s),m!=n&&((i=document.createElement("div")).textContent=m,c.appendChild(i)),r.appendChild(c),r}build(n,a){if(null!=n){var r=new Date;let e="00"+r.getUTCDate(),t=(e=e.substring(e.length-2,e.length),"00"+(Number(r.getUTCMonth())+1));t=t.substring(t.length-2,t.length);var r=r.getUTCFullYear(),l=e+"/"+t+"/"+r,d=(document.getElementById(this.selector).replaceChildren(),[]);for(let e=0;ee.value);(l.lengthe.json()).then(t=>{try{tb.build(t)}catch(e){console.log(e),console.log(e.stack),console.log(t)}})} +class table_builder{constructor(e){this.selector=e,this.current_data=[],this.first_time=!0}getLastRowId(){let e;return e=null==this.current_data||this.current_data.length<1?0:this.current_data[0].rowid}resetData(){this.current_data=[]}#buildRow(e,t,n,a=""){var r=document.createElement("tr"),t=(0NG3K Website",l=document.createElement("i"),o=(l.className="bi-search",l.role="button",l.ariaLabel=e.dx,document.createElement("a")),s=(o.href=qrz_url+e.dx,o.target="_blank",o.rel="noopener",document.createElement("span")),i=document.createElement("mark"),i=(i.textContent=e.dx,e.dx==a?s.appendChild(i):s.textContent=" "+e.dx,null!=d&&((a=document.createElement("i")).tabIndex=0,a.className="bi-megaphone-fill",a.style="color: cornflowerblue;",a.role="button",a.ariaLabel="dx_operations",a.setAttribute("data-bs-container","body"),a.setAttribute("data-bs-toggle","popover"),a.setAttribute("data-bs-trigger","focus"),a.setAttribute("data-bs-sanitizer","true"),a.setAttribute("data-bs-placement","auto"),a.setAttribute("data-bs-html","true"),a.setAttribute("data-bs-title","Announced DX Op.: "+d.summary),a.setAttribute("data-bs-content",d.description+"data from "+t),s.appendChild(a)),document.createElement("td"));o.appendChild(l),i.appendChild(o),i.append(s),r.appendChild(i);try{var c=document.createElement("span"),u=(c.className="img-flag fi fi-"+e.iso,c.setAttribute("data-bs-container","body"),c.setAttribute("data-bs-toggle","popover"),c.setAttribute("data-bs-trigger","hover"),c.setAttribute("data-bs-placement","left"),c.setAttribute("data-bs-content",e.country),document.createElement("td"));u.appendChild(c),r.appendChild(u)}catch(e){console.log(e),console.log("error creating flag");d=document.createElement("td");r.appendChild(d)}t=document.createElement("td"),t.className="d-none d-lg-table-cell d-xl-table-cell",t.textContent=e.country,r.appendChild(t),a=document.createElement("td");a.className="d-none d-lg-table-cell d-xl-table-cell";try{a.textContent=e.comm.substring(0,100)}catch(e){a.textContent=""}r.appendChild(a);let m=new Date(1e3*e.time),p="00"+m.getUTCHours(),h=(p=p.substring(p.length-2,p.length),"00"+m.getMinutes()),b=(h=h.substring(h.length-2,h.length),"00"+m.getUTCDate()),g=(b=b.substring(b.length-2,b.length),"00"+(Number(m.getUTCMonth())+1));g=g.substring(g.length-2,g.length);l=m.getUTCFullYear(),o=p+":"+h,m=b+"/"+g+"/"+l,s=document.createElement("div"),s.className="d-flex flex-column",i=document.createElement("div");return i.textContent=o,s.appendChild(i),m!=n&&((c=document.createElement("div")).textContent=m,s.appendChild(c)),r.appendChild(s),r}build(n,a){if(null!=n){var r=new Date;let e="00"+r.getUTCDate(),t=(e=e.substring(e.length-2,e.length),"00"+(Number(r.getUTCMonth())+1));t=t.substring(t.length-2,t.length);var r=r.getUTCFullYear(),l=e+"/"+t+"/"+r,o=(document.getElementById(this.selector).replaceChildren(),[]);for(let e=0;ee.value);a.lengthe.json()).then(t=>{try{tb.build(t)}catch(e){console.log(e),console.log(e.stack),console.log(t)}})} diff --git a/static/pwa/manifest.webmanifest b/static/pwa/manifest.webmanifest index 763ba3f..5bd0e89 100644 --- a/static/pwa/manifest.webmanifest +++ b/static/pwa/manifest.webmanifest @@ -1,5 +1,5 @@ { - "name": "IU1BOW Spiderweb v2.4.2", + "name": "IU1BOW Spiderweb v2.4.4", "description": "DXCluser for ham radio by IU1BOW", "short_name": "Spiderweb", "theme_color": "#f3b221", diff --git a/static/pwa/service-worker.js b/static/pwa/service-worker.js index 1dc0959..1393493 100644 --- a/static/pwa/service-worker.js +++ b/static/pwa/service-worker.js @@ -1,10 +1,10 @@ // Dichiarazione della costante per il nome della cache -const CACHE_NAME = 'pwa-spiderweb_v2.4.2' +const CACHE_NAME = 'pwa-spiderweb_v2.4.4' // Dichiarazione della costante per gli URL da mettere in cache const URLS_TO_CACHE = [ '/static/images/background.webp', - '/static/css/dev/style.css', + '/static/css/rel/style.min.css', '/static/images/icons/favicon.ico', '/static/images/icons/icon-144x144.png', '/static/images/icons/icon-152x152.png', @@ -18,9 +18,9 @@ const URLS_TO_CACHE = [ '/static/images/icons/icon-96x96.png', '/static/images/icons/icon-apple.png', '/static/images/icons/spider_ico_master.svg', - '/static/js/dev/callsign_inline.js', - '/static/js/dev/callsign_search.js', - '/static/js/dev/common.js', + '/static/js/rel/callsign_inline.min.js', + '/static/js/rel/callsign_search.min.js', + '/static/js/rel/common.min.js', '/privacy.html', '/cookies.html', '/offline.html', diff --git a/templates/_base.html b/templates/_base.html index 8cc740a..4e27df9 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -14,7 +14,7 @@ - + @@ -92,24 +92,24 @@ © Copyleft: IU1BOW - Spiderweb - v2.4.2 + v2.4.4
- + - + {% block app_scripts %} - + {% endblock app_scripts %} {% block inline_scripts %} {% endblock inline_scripts %} @@ -140,7 +140,7 @@
- + {% endif %} {% endblock cookie %} diff --git a/templates/callsign.html b/templates/callsign.html index b9a800b..f0741eb 100644 --- a/templates/callsign.html +++ b/templates/callsign.html @@ -16,5 +16,5 @@ var callsign = '{{callsign}}'; {% endblock app_data %} {% block inline_scripts %} - + {% endblock %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 083bd60..9090135 100644 --- a/templates/index.html +++ b/templates/index.html @@ -305,8 +305,8 @@ var band_frequencies={{bands["bands"]|tojson|safe}}; {% endblock app_data %} {% block app_scripts %} {{ super() }} - + {% endblock %} {% block inline_scripts %} - + {% endblock %} \ No newline at end of file diff --git a/templates/plots.html b/templates/plots.html index 3b06e3b..b626e06 100644 --- a/templates/plots.html +++ b/templates/plots.html @@ -89,5 +89,5 @@ var band_frequencies={{bands["bands"]|tojson|safe}}; - + {% endblock app_scripts %} \ No newline at end of file diff --git a/webapp.py b/webapp.py index 515e361..ea39598 100644 --- a/webapp.py +++ b/webapp.py @@ -30,6 +30,7 @@ app.config.update( inline_script_nonce = "" csrf = CSRFProtect(app) + logger.debug(app.config) if app.config["DEBUG"]: @@ -94,17 +95,24 @@ def query_build_callsign(callsign): return query_string -def query_build(): +def query_build(parameters): try: - # get url parameters - last_rowid = request.args.get("lr") # Last rowid fetched by front end - band = request.args.getlist("b") # band filter - dere = request.args.getlist("e") # DE continent filter - dxre = request.args.getlist("x") # Dx continent filter - mode = request.args.getlist("m") # mode filter - decq = request.args.getlist("qe") # DE cq zone filter - dxcq = request.args.getlist("qx") # DX cq zone filter + last_rowid = str(parameters["lr"]) # Last rowid fetched by front end + + get_param = lambda parameters, parm_name: parameters[parm_name] if (parm_name in parameters) else [] + band=get_param(parameters, "band") + dere=get_param(parameters, "de_re") + dxre=get_param(parameters, "dx_re") + mode=get_param(parameters, "mode") + + decq = [] + if "cqdeInput" in parameters: + decq[0] = parameters["cqdeInput"] + + dxcq = [] + if "cqdxInput" in parameters: + dxcq[0] = parameters["cqdxInput"] query_string = "" @@ -120,7 +128,6 @@ def query_build(): ) band_qry_string += "))" - # construct mode query mode_qry_string = " AND ((" for i, item_mode in enumerate(mode): @@ -138,7 +145,6 @@ def query_build(): ) mode_qry_string += "))" - # construct DE continent region query dere_qry_string = " AND spottercq IN (" for i, item_dere in enumerate(dere): @@ -179,6 +185,7 @@ def query_build(): + last_rowid ) + if len(band) > 0: query_string += band_qry_string @@ -210,15 +217,15 @@ def query_build(): # the main query to show spots # it gets url parameter in order to apply the build the right query # and apply the filter required. It returns a json with the spots -def spotquery(): +def spotquery(parameters): try: - callsign = request.args.get("c") # search specific callsign - - if callsign: - query_string = query_build_callsign(callsign) + if 'callsign' in parameters: + logging.debug('search callsign') + query_string = query_build_callsign( parameters['callsign'] ) else: - query_string = query_build() + logging.debug('search eith other filters') + query_string = query_build(parameters) qm.qry(query_string) data = qm.get_data() @@ -246,11 +253,9 @@ def spotquery(): except Exception as e: logger.error(e) - # find adxo events adxo_events = None - def get_adxo(): global adxo_events adxo_events = get_adxo_events() @@ -267,15 +272,19 @@ bubble_graph_hb = HourBand(logger, qm, band_frequencies) geo_graph_wdsl = WorldDxSpotsLive(logger, qm, pfxt) # ROUTINGS -@app.route("/spotlist", methods=["GET"]) +@app.route("/spotlist", methods=["POST"]) +@csrf.exempt def spotlist(): - response = flask.Response(json.dumps(spotquery())) + logger.debug(request.json) + response = flask.Response(json.dumps(spotquery(request.json))) return response def who_is_connected(): host_port = cfg["telnet"].split(":") response = who(host_port[0], host_port[1], cfg["mycallsign"]) + logger.debug("list of connected clusters:") + logger.debug(response) return response #Calculate nonce token used in inline script and in csp "script-src" header @@ -313,7 +322,6 @@ def sw(): def root(): return app.send_static_file("html/offline.html") - @app.route("/world.json") def world_data(): return app.send_static_file("data/world.json") @@ -336,7 +344,6 @@ def plots(): ) return response - @app.route("/cookies.html", methods=["GET"]) def cookies(): response = flask.Response( @@ -351,7 +358,6 @@ def cookies(): ) return response - @app.route("/privacy.html", methods=["GET"]) def privacy(): response = flask.Response( @@ -366,7 +372,6 @@ def privacy(): ) return response - @app.route("/sitemap.xml") def sitemap(): return app.send_static_file("sitemap.xml") @@ -404,9 +409,12 @@ def find_callsign(): return response -@app.route("/plot_get_heatmap_data", methods=["GET"]) +@app.route("/plot_get_heatmap_data", methods=["POST"]) +@csrf.exempt def get_heatmap_data(): - continent = request.args.get("continent") + #continent = request.args.get("continent") + continent = request.json['continent'] + logger.debug(request.get_json()); response = flask.Response(json.dumps(heatmap_cbp.get_data(continent))) logger.debug(response) if response is None: @@ -414,7 +422,8 @@ def get_heatmap_data(): return response -@app.route("/plot_get_dx_spots_per_month", methods=["GET"]) +@app.route("/plot_get_dx_spots_per_month", methods=["POST"]) +@csrf.exempt def get_dx_spots_per_month(): response = flask.Response(json.dumps(bar_graph_spm.get_data())) logger.debug(response) @@ -423,7 +432,8 @@ def get_dx_spots_per_month(): return response -@app.route("/plot_get_dx_spots_trend", methods=["GET"]) +@app.route("/plot_get_dx_spots_trend", methods=["POST"]) +@csrf.exempt def get_dx_spots_trend(): response = flask.Response(json.dumps(line_graph_st.get_data())) logger.debug(response) @@ -432,7 +442,8 @@ def get_dx_spots_trend(): return response -@app.route("/plot_get_hour_band", methods=["GET"]) +@app.route("/plot_get_hour_band", methods=["POST"]) +@csrf.exempt def get_dx_hour_band(): response = flask.Response(json.dumps(bubble_graph_hb.get_data())) logger.debug(response) @@ -441,7 +452,8 @@ def get_dx_hour_band(): return response -@app.route("/plot_get_world_dx_spots_live", methods=["GET"]) +@app.route("/plot_get_world_dx_spots_live", methods=["POST"]) +@csrf.exempt def get_world_dx_spots_live(): response = flask.Response(json.dumps(geo_graph_wdsl.get_data())) logger.debug(response) From 70816cd54abee9cd52c86959deef96d99788c692 Mon Sep 17 00:00:00 2001 From: coulisse Date: Sat, 11 Nov 2023 14:20:58 +0100 Subject: [PATCH 3/3] many changes --- CITATION.cff | 4 +- README.md | 3 +- cfg/country.json | 4 +- cfg/modes.json | 244 +++-- docs/CHANGELOG.md | 15 +- lib/static_build.py | 23 - requirements.txt | 16 +- scripts/build.sh | 53 +- static/css/dev/style.css | 10 +- static/css/rel/style.min.css | 2 +- static/data/cty_wt_mod.dat | 1825 +++++++++++++++++-------------- static/html/offline.html | 124 --- static/js/dev/common.js | 53 +- static/js/dev/index_inline.js | 1 + static/js/dev/table.js | 2 + static/js/rel/common.min.js | 2 +- static/pwa/manifest.webmanifest | 2 +- static/pwa/service-worker.js | 11 +- templates/_base.html | 29 +- templates/index.html | 8 +- templates/plots.html | 4 +- 21 files changed, 1259 insertions(+), 1176 deletions(-) delete mode 100644 lib/static_build.py delete mode 100644 static/html/offline.html diff --git a/CITATION.cff b/CITATION.cff index ee32b6f..e070e98 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,5 +24,5 @@ keywords: - dxcluster - spiderweb license: GPL-3.0 -version: v2.4.4 -date-released: 2023-02-19 +version: v2.4.5 +date-released: 2023-11-11 diff --git a/README.md b/README.md index 333b7d1..007528d 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,13 @@ ### Ham radio cluster web viewer for DxSpider [![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.crans.org/besson/LICENSE.html) -[![Linux](https://svgshare.com/i/Zhy.svg)](https://svgshare.com/i/Zhy.svg) [![made-with-python](https://img.shields.io/badge/B.e.-Python-1f425f.svg)](https://www.python.org/) [![made-with-javascript](https://img.shields.io/badge/F.e.-JavaScript-yellow)](https://www.javascript.com) [![bootstrap](https://img.shields.io/badge/CSS%20Fwk-Bootstrap-purple)](https://getbootstrap.com/) [![CodeFactor](https://www.codefactor.io/repository/github/coulisse/spiderweb/badge)](https://www.codefactor.io/repository/github/coulisse/spiderweb) -- **Release:** v2.4.4 +- **Release:** v2.4.5 - **Author:** Corrado Gerbaldo - [IU1BOW](https://www.qrz.com/db/IU1BOW) - **Mail:** - **Licensing:** Gpl V3.0 see [LICENSE](LICENSE) file. diff --git a/cfg/country.json b/cfg/country.json index 35265d6..4d7e65b 100644 --- a/cfg/country.json +++ b/cfg/country.json @@ -71,9 +71,9 @@ { "WPX": "60", "ISO": "fr", "desc": "French Guiana" }, { "WPX": "61", "ISO": "gb", "desc": "England" }, { "WPX": "62", "ISO": "im", "desc": "Isle of Man" }, - { "WPX": "63", "ISO": "ie", "desc": "Northern Ireland" }, + { "WPX": "63", "ISO": "gb-nir", "desc": "Northern Ireland" }, { "WPX": "64", "ISO": "je", "desc": "Jersey" }, - { "WPX": "65", "ISO": "gb", "desc": "Scotland" }, + { "WPX": "65", "ISO": "gb-sct", "desc": "Scotland" }, { "WPX": "66", "ISO": "gg", "desc": "Guernsey" }, { "WPX": "67", "ISO": "gb", "desc": "Wales" }, { "WPX": "68", "ISO": "sb", "desc": "Solomon Islands" }, diff --git a/cfg/modes.json b/cfg/modes.json index c430991..ad27776 100644 --- a/cfg/modes.json +++ b/cfg/modes.json @@ -11,100 +11,103 @@ "min": 3500.0, "max": 3569.9 }, - { + { "min": 7000.0, "max": 7039.9 }, - { + { "min": 10100.0, "max": 10129.9 }, - { + { "min": 14000.0, "max": 14069.9 }, - { + { "min": 18068.0, "max": 18099.9 }, - { + { "min": 21000.0, "max": 21069.9 }, - { + { "min": 24890.0, "max": 24914.9 }, - { + { "min": 28000.0, "max": 28069.9 }, - { + { "min": 50000.0, + "max": 50312.9 + }, + { + "min": 50314.0, "max": 50499.9 }, - { + { "min": 51000.0, "max": 52000.0 }, - { - "min": 70030, - "max": 70250 - }, - { - "min": 144000, - "max": 144150 - }, - { - "min": 432000, - "max": 432150 - }, - { - "min": 1296000, - "max": 1296150 - }, - { - "min": 2320100, - "max": 2320150 - }, - { - "min": 3400000, - "max": 3402000 - }, - { - "min": 5668000, - "max": 5670000 - }, - { - "min": 5760000, - "max": 5762000 - }, - { - "min": 10368000, - "max": 10370000 - }, - { - "min": 10450000, - "max": 10452000 - }, - { - "min": 24048000, - "max": 24050000 - }, - { - "min": 47087000, - "max": 47089000 - } - + { + "min": 70030, + "max": 70250 + }, + { + "min": 144000, + "max": 144150 + }, + { + "min": 432000, + "max": 432150 + }, + { + "min": 1296000, + "max": 1296150 + }, + { + "min": 2320100, + "max": 2320150 + }, + { + "min": 3400000, + "max": 3402000 + }, + { + "min": 5668000, + "max": 5670000 + }, + { + "min": 5760000, + "max": 5762000 + }, + { + "min": 10368000, + "max": 10370000 + }, + { + "min": 10450000, + "max": 10452000 + }, + { + "min": 24048000, + "max": 24050000 + }, + { + "min": 47087000, + "max": 47089000 + } ] }, -{ + { "id": "digi", "freq": [ { "min": 1840.0, "max": 1841.0 - }, + }, { "min": 3570.0, "max": 3600.0 @@ -129,7 +132,7 @@ "min": 21070.0, "max": 21100.0 }, - { + { "min": 21140.0, "max": 21141.0 }, @@ -144,13 +147,17 @@ { "min": 28180.0, "max": 28180.0 - }, + }, + { + "min": 50313.0, + "max": 50313.9 + }, { "min": 50500.0, "max": 51000.0 } ] - }, + }, { "id": "phone", "freq": [ @@ -177,7 +184,7 @@ { "min": 21100.0, "max": 21139.0 - }, + }, { "min": 21141.0, "max": 21450.0 @@ -190,60 +197,59 @@ "min": 28120.0, "max": 29700.0 }, - { - "min": 50100, - "max": 50500 - }, - { - "min": 70030, - "max": 70250 - }, - { - "min": 144150, - "max": 144500 - }, - { - "min": 432150, - "max": 432500 - }, - { - "min": 1296150, - "max": 1296800 - }, - { - "min": 2320150, - "max": 2320800 - }, - { - "min": 3400000, - "max": 3402000 - }, - { - "min": 5668000, - "max": 5670000 - }, - { - "min": 5760000, - "max": 5762000 - }, - { - "min": 10368000, - "max": 10370000 - }, - { - "min": 10450000, - "max": 10452000 - }, - { - "min": 24048000, - "max": 24050000 - }, - { - "min": 47087000, - "max": 47089000 - } + { + "min": 50100, + "max": 50500 + }, + { + "min": 70030, + "max": 70250 + }, + { + "min": 144150, + "max": 144500 + }, + { + "min": 432150, + "max": 432500 + }, + { + "min": 1296150, + "max": 1296800 + }, + { + "min": 2320150, + "max": 2320800 + }, + { + "min": 3400000, + "max": 3402000 + }, + { + "min": 5668000, + "max": 5670000 + }, + { + "min": 5760000, + "max": 5762000 + }, + { + "min": 10368000, + "max": 10370000 + }, + { + "min": 10450000, + "max": 10452000 + }, + { + "min": 24048000, + "max": 24050000 + }, + { + "min": 47087000, + "max": 47089000 + } ] - } + } ] -} - +} \ No newline at end of file diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f714c37..1f584f2 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,11 +1,24 @@ ### Change log -Date: 19/02/2023 +Date: 11/11/2023 +Release: v2.4.5 +- added "back to top" button +- enancement request #44 : added reset filter +- fixed dependencie #32 : mysql connector +- fixed FT8 frequency on CW 6 meter band #40 +- upgraded echarts library from 5.4.1 to 5.4.3 +- upgraded flag icons library from 6.6.0 to 6.15 +- upgraded bootstrap to 5.2.3 + +___ +Date: 26/02/2023 Release: v2.4.4 - replaced multipart form post with url encoded for security reasons - fixed bands and continents in band activity chart - upgraded Werkzeug to 2.2.3 - changed some api call from get to post method in order to not caching it +- fixed flags of Scothland and Northern Ireland +___ Date: 11/02/2023 Release: v2.4.2 - changed cache-control header diff --git a/lib/static_build.py b/lib/static_build.py deleted file mode 100644 index 31c13f6..0000000 --- a/lib/static_build.py +++ /dev/null @@ -1,23 +0,0 @@ -# -# little script used to build static pages -# -__author__ = "IU1BOW - Corrado" -import sys -from staticjinja import Site - -def csrf_token(): - return "none" - -if __name__ == "__main__": - print (sys.argv) - site = Site.make_site( - searchpath=sys.argv[1], - outpath=sys.argv[2], - env_globals={ - "cookies_check": False, - "csrf_token": csrf_token, - "telnet": "none", - "mail": "none" - }, - ) - site.render(use_reloader=False) diff --git a/requirements.txt b/requirements.txt index 9db2716..014cf55 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,13 +1,14 @@ astroid==2.12.14 +blinker==1.6.2 charset-normalizer==2.1.1 click==8.1.3 dill==0.3.6 docopt-ng==0.8.1 easywatch==0.0.5 -Flask==2.2.2 +Flask==2.2.5 Flask-Consent==0.0.3 Flask-Minify==0.41 -Flask-WTF==1.0.1 +Flask-WTF==1.1.1 htmlmin==0.1.12 idna==3.4 isort==5.11.4 @@ -16,9 +17,10 @@ Jinja2==3.1.2 jsmin==3.0.1 lazy-object-proxy==1.9.0 lesscpy==0.15.1 +markup==0.2 MarkupSafe==2.1.1 mccabe==0.7.0 -mysql-connector-python==8.0.31 +mysql-connector-python>=8.0.31 numpy==1.24.1 pandas==1.5.2 platformdirs==2.6.2 @@ -27,12 +29,12 @@ protobuf==4.21.12 python-dateutil==2.8.2 pytz==2022.7 rcssmin==1.1.1 -requests==2.28.1 +requests==2.31.0 six==1.16.0 tomlkit==0.11.6 -urllib3==1.26.13 -watchdog==2.2.0 -Werkzeug==2.2.3 +urllib3==2.0.7 +watchdog==3.0.0 +Werkzeug==2.2.2 wrapt==1.14.1 WTForms==3.0.1 xxhash==3.1.0 diff --git a/scripts/build.sh b/scripts/build.sh index 7d7012d..73a4d24 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -129,6 +129,9 @@ if [ "$1" == "-r" ]; then sed -i '/staticjinja==/d' ../requirements.txt sed -i '/lighthouse==/d' ../requirements.txt + echo 'force some requirements...' + sed -i 's/mysql-connector-python==8.0.31/mysql-connector-python>=8.0.31/' ../requirements.txt + if ! sed -i '13,20s/level=DEBUG/level=INFO/g' ${app_ini}; then echo 'ERROR settimg loglevel=INFO ' exit 12 @@ -260,31 +263,31 @@ elif [ "${1}" == "-d" ]; then fi -static_build_path_i=$(mktemp -d /tmp/spiderweb_static_build_i-XXXXXXXXX) -static_build_path_o=$(mktemp -d /tmp/spiderweb_static_build_o-XXXXXXXXX) - -cp ${path_templates}/_base.html ${static_build_path_i} -cp ${path_templates}/offline.html ${static_build_path_i} - -echo 'generating static pages...' -if ! python ../lib/static_build.py ${static_build_path_i} ${static_build_path_o} -then - echo 'ERROR generating static pages' - rm -rf ${static_build_path_i} - rm -rf ${static_build_path_o} - exit 50 -fi - -if ! cp ${static_build_path_o}/offline.html ${path_static_html} -then - echo 'ERROR copying static pages' - rm -rf ${static_build_path_i} - rm -rf ${static_build_path_o} - exit 51 -fi - -rm -rf ${static_build_path_i} -rm -rf ${static_build_path_o} +#static_build_path_i=$(mktemp -d /tmp/spiderweb_static_build_i-XXXXXXXXX) +#static_build_path_o=$(mktemp -d /tmp/spiderweb_static_build_o-XXXXXXXXX) +# +#cp ${path_templates}/_base.html ${static_build_path_i} +#cp ${path_templates}/offline.html ${static_build_path_i} +# +#echo 'generating static pages...' +#if ! python ../lib/static_build.py ${static_build_path_i} ${static_build_path_o} +#then +# echo 'ERROR generating static pages' +# rm -rf ${static_build_path_i} +# rm -rf ${static_build_path_o} +# exit 50 +#fi +# +#if ! cp ${static_build_path_o}/offline.html ${path_static_html} +#then +# echo 'ERROR copying static pages' +# rm -rf ${static_build_path_i} +# rm -rf ${static_build_path_o} +# exit 51 +#fi +# +#rm -rf ${static_build_path_i} +#rm -rf ${static_build_path_o} echo diff --git a/static/css/dev/style.css b/static/css/dev/style.css index c5fc215..a04e300 100644 --- a/static/css/dev/style.css +++ b/static/css/dev/style.css @@ -115,4 +115,12 @@ span.search-callsign { #silo-propagation-img { width: 95%; height: auto; -} \ No newline at end of file +} + +#btn-back-to-top { + position: fixed; + bottom: 20px; + right: 20px; + display: none; + opacity: 0.7; + } \ No newline at end of file diff --git a/static/css/rel/style.min.css b/static/css/rel/style.min.css index 9c40933..1ebd891 100644 --- a/static/css/rel/style.min.css +++ b/static/css/rel/style.min.css @@ -1 +1 @@ -@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");@font-face{font-display:swap;font-family:bootstrap-icons}.badge-responsive{width:70px}@media screen and (max-width:768px){.text-responsive{font-size:12px}.badge-responsive{width:40px}#collapseFilters.collapsing{position:absolute!important;z-index:20}#collapseFilters.collapse.show{display:block;position:absolute;z-index:20}.navbar-collapse{max-height:none!important}}.img-flag{background-color:#fff;background-size:cover!important;border:1px solid #ddd;border-radius:2px;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);-moz-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);-o-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);height:19px!important;max-height:auto;max-width:auto;padding:3px;width:32px!important}.ipcs{background-image:url(/static/images/background.webp);background-repeat:no-repeat;background-size:cover}.copyleft{display:inline-block;transform:rotate(180deg)}span.search-callsign{background:url(/static/images/search-callsign.svg) no-repeat 0 0;background-size:contain;cursor:pointer;display:inline-block;height:16px;width:20px}#input-group-callsign{margin-bottom:.5rem;margin-right:1rem}#collapseFilters{background-color:#dde2e6;margin-top:10px}#spotsTable{margin-top:10px}#band{margin-top:5px}#dashboard{gap:10px;padding:10px}#telnet-thead{position:sticky;top:0}#chart-band_activity{height:400px;width:100%}.spider_chart{height:480px;width:600px}#silo-propagation-img{height:auto;width:95%} \ No newline at end of file +@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");@font-face{font-display:swap;font-family:bootstrap-icons}.badge-responsive{width:70px}@media screen and (max-width:768px){.text-responsive{font-size:12px}.badge-responsive{width:40px}#collapseFilters.collapsing{position:absolute!important;z-index:20}#collapseFilters.collapse.show{display:block;position:absolute;z-index:20}.navbar-collapse{max-height:none!important}}.img-flag{background-color:#fff;background-size:cover!important;border:1px solid #ddd;border-radius:2px;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);-moz-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);-o-box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);box-shadow:0 2px 10px rgba(0,0,0,.5),0 2px 3px rgba(0,0,0,.5);height:19px!important;max-height:auto;max-width:auto;padding:3px;width:32px!important}.ipcs{background-image:url(/static/images/background.webp);background-repeat:no-repeat;background-size:cover}.copyleft{display:inline-block;transform:rotate(180deg)}span.search-callsign{background:url(/static/images/search-callsign.svg) no-repeat 0 0;background-size:contain;cursor:pointer;display:inline-block;height:16px;width:20px}#input-group-callsign{margin-bottom:.5rem;margin-right:1rem}#collapseFilters{background-color:#dde2e6;margin-top:10px}#spotsTable{margin-top:10px}#band{margin-top:5px}#dashboard{gap:10px;padding:10px}#telnet-thead{position:sticky;top:0}#chart-band_activity{height:400px;width:100%}.spider_chart{height:480px;width:600px}#silo-propagation-img{height:auto;width:95%}#btn-back-to-top{bottom:20px;display:none;opacity:.7;position:fixed;right:20px} \ No newline at end of file diff --git a/static/data/cty_wt_mod.dat b/static/data/cty_wt_mod.dat index e33a41d..b9dd538 100644 --- a/static/data/cty_wt_mod.dat +++ b/static/data/cty_wt_mod.dat @@ -1,13 +1,13 @@ # -# RELEASE 2023.02.04.00 -# based on CTY-3306 +# RELEASE 2023.11.03.00 +# based on CTY-3337 # # ADIF 246 Sov Mil Order of Malta: 15: 28: EU: 41.90: -12.43: -1.0: 1A: 1A; # ADIF 247 Spratly Islands: 26: 50: AS: 9.88: -114.23: -8.0: 1S: - 9M0,BM9S,BN9S,BO9S,BP9S,BQ9S,BU9S,BV9S,BW9S,BX9S,=DX0NE; + 9M0,BM9S,BN9S,BO9S,BP9S,BQ9S,BU9S,BV9S,BW9S,BX9S; # ADIF 260 Monaco: 14: 27: EU: 43.73: -7.40: -1.0: 3A: 3A; @@ -37,13 +37,13 @@ Conway Reef: 32: 56: OC: -22.00: -175.00: -12.0: 3D2/c: =3D2CR; # ADIF 460 Rotuma Island: 32: 56: OC: -12.48: -177.08: -12.0: 3D2/r: - =3D2RI; + =3D2RAT,=3D2RI; # ADIF 468 Kingdom of Eswatini: 38: 57: AF: -26.65: -31.48: -2.0: 3DA: 3DA; # ADIF 474 Tunisia: 33: 37: AF: 35.40: -9.32: -1.0: 3V: - 3V,TS,=3V8CB/YOTA; + 3V,TS; # ADIF 293 Vietnam: 26: 49: AS: 15.80: -107.90: -7.0: 3W: 3W,XV; @@ -52,7 +52,7 @@ Guinea: 35: 46: AF: 11.00: 10.68: 0.0: 3X: 3X; # ADIF 24 Bouvet: 38: 67: AF: -54.42: -3.38: -1.0: 3Y/b: - =3Y/LB1QI,=3Y/LB5GI,=3Y0J,=3Y7GIA,=3Y7THA; + =3Y0J; # ADIF 199 Peter 1 Island: 12: 72: SA: -68.77: 90.58: 4.0: 3Y/p: =3Y0X; @@ -70,13 +70,13 @@ Sri Lanka: 22: 41: AS: 7.60: -80.70: -5.5: 4S: 4P,4Q,4R,4S; # ADIF 117 ITU HQ: 14: 28: EU: 46.17: -6.05: -1.0: 4U1I: - =4U1ITU,=4U1WRC,=4U2WRC; + =4U1ITU,=4U1WRC; # ADIF 289 United Nations HQ: 05: 08: NA: 40.75: 73.97: 5.0: 4U1U: =4U1UN; # ADIF 206 Vienna Intl Ctr: 15: 28: EU: 48.20: -16.30: -1.0: *4U1V: - =4U0R,=4U1A,=4U1VIC,=4U2U,=4UNR,=4Y1A,=C7A; + =4U0R,=4U100QO,=4U1A,=4U1VIC,=4U2U,=4Y1A,=C7A; # ADIF 511 Timor - Leste: 28: 54: OC: -8.80: -126.05: -9.0: 4W: 4W; @@ -143,10 +143,12 @@ Senegal: 35: 46: AF: 15.20: 14.63: 0.0: 6W: 6V9<14.37/16.13>,6W9<14.37/16.13>; # ADIF 82 Jamaica: 08: 11: NA: 18.20: 77.47: 5.0: 6Y: - 6Y; + 6Y,=CO7WT/6Y; # ADIF 492 Yemen: 21: 39: AS: 15.65: -48.12: -3.0: 7O: - 7O; + 7O, +# Socotra + =7O8AD(37)[48]<12.50/-53.92>,=7O8AE(37)[48]<12.50/-53.92>; # ADIF 432 Lesotho: 38: 57: AF: -29.22: -27.88: -2.0: 7P: 7P; @@ -188,10 +190,9 @@ West Malaysia: 28: 54: AS: 3.95: -102.23: -8.0: 9M2: 9M,9W; # ADIF 46 East Malaysia: 28: 54: OC: 2.68: -113.32: -8.0: 9M6: - =9M4CKR, # Sabah 9M6<5.25/-117.00>,9W6<5.25/-117.00>,=9M4CBP<5.25/-117.00>,=9M4CKT<5.25/-117.00>, - =9M4CRB<5.25/-117.00>,=9M4CRP<5.25/-117.00>, + =9M4CRP<5.25/-117.00>, # Sarawak 9M8<2.80/-113.88>,9W8<2.80/-113.88>; # ADIF 369 @@ -350,6 +351,7 @@ China: 24: 44: AS: 36.00: -102.00: -8.0: BY: BZ0D(23)[42]<43.75/-87.75>,BZ0E(23)[42]<43.75/-87.75>,BZ0F(23)[42]<43.75/-87.75>, XS0A(23)[42]<43.75/-87.75>,XS0B(23)[42]<43.75/-87.75>,XS0C(23)[42]<43.75/-87.75>, XS0D(23)[42]<43.75/-87.75>,XS0E(23)[42]<43.75/-87.75>,XS0F(23)[42]<43.75/-87.75>, + =BD6KF/0(23)[42]<43.75/-87.75>, # Xi Zang (Tibet) 3H0G(23)[42]<29.42/-90.97>,3H0H(23)[42]<29.42/-90.97>,3H0I(23)[42]<29.42/-90.97>, 3H0J(23)[42]<29.42/-90.97>,3H0K(23)[42]<29.42/-90.97>,3H0L(23)[42]<29.42/-90.97>, @@ -409,7 +411,7 @@ China: 24: 44: AS: 36.00: -102.00: -8.0: BY: 3R1<39.93/-116.40>,3S1<39.93/-116.40>,3T1<39.93/-116.40>,3U1<39.93/-116.40>,B1<39.93/-116.40>, BA1<39.93/-116.40>,BD1<39.93/-116.40>,BG1<39.93/-116.40>,BH1<39.93/-116.40>,BI1<39.93/-116.40>, BJ1<39.93/-116.40>,BL1<39.93/-116.40>,BT1<39.93/-116.40>,BY1<39.93/-116.40>,BZ1<39.93/-116.40>, - XS1<39.93/-116.40>,=BY1CRA/WRTC<39.93/-116.40>, + XS1<39.93/-116.40>, # Hei Long Jiang 3H2A[33]<45.80/-126.67>,3H2B[33]<45.80/-126.67>,3H2C[33]<45.80/-126.67>,3H2D[33]<45.80/-126.67>, 3H2E[33]<45.80/-126.67>,3H2F[33]<45.80/-126.67>,3H2G[33]<45.80/-126.67>,3H2H[33]<45.80/-126.67>, @@ -794,7 +796,7 @@ China: 24: 44: AS: 36.00: -102.00: -8.0: BY: BZ4C<31.25/-121.43>,BZ4D<31.25/-121.43>,BZ4E<31.25/-121.43>,BZ4F<31.25/-121.43>, BZ4G<31.25/-121.43>,BZ4H<31.25/-121.43>,XS4A<31.25/-121.43>,XS4B<31.25/-121.43>, XS4C<31.25/-121.43>,XS4D<31.25/-121.43>,XS4E<31.25/-121.43>,XS4F<31.25/-121.43>, - XS4G<31.25/-121.43>,XS4H<31.25/-121.43>, + XS4G<31.25/-121.43>,XS4H<31.25/-121.43>,=BA3GG/4<31.25/-121.43>, # Shan Dong 3H4I<36.63/-117.02>,3H4J<36.63/-117.02>,3H4K<36.63/-117.02>,3H4L<36.63/-117.02>, 3H4M<36.63/-117.02>,3H4N<36.63/-117.02>,3H4O<36.63/-117.02>,3H4P<36.63/-117.02>, @@ -1426,7 +1428,6 @@ China: 24: 44: AS: 36.00: -102.00: -8.0: BY: BZ8A[43]<30.63/-104.03>,BZ8B[43]<30.63/-104.03>,BZ8C[43]<30.63/-104.03>,BZ8D[43]<30.63/-104.03>, BZ8E[43]<30.63/-104.03>,BZ8F[43]<30.63/-104.03>,XS8A[43]<30.63/-104.03>,XS8B[43]<30.63/-104.03>, XS8C[43]<30.63/-104.03>,XS8D[43]<30.63/-104.03>,XS8E[43]<30.63/-104.03>,XS8F[43]<30.63/-104.03>, - =BG0DKM/8[43]<30.63/-104.03>, # Chong Qing 3H8G[43]<29.58/-106.42>,3H8H[43]<29.58/-106.42>,3H8I[43]<29.58/-106.42>,3H8J[43]<29.58/-106.42>, 3H8K[43]<29.58/-106.42>,3H8L[43]<29.58/-106.42>,3I8G[43]<29.58/-106.42>,3I8H[43]<29.58/-106.42>, @@ -1805,6 +1806,10 @@ Antarctica: 13: 74: SA: -90.00: 0.00: 0.0: CE9: AY9Z[73]<-64.97/60.07>,LU1Z[73]<-64.97/60.07>,LU2Z[73]<-64.97/60.07>,LU3Z[73]<-64.97/60.07>, LU4Z[73]<-64.97/60.07>,LU5Z[73]<-64.97/60.07>,LU6Z[73]<-64.97/60.07>,LU7Z[73]<-64.97/60.07>, LU8Z[73]<-64.97/60.07>,LU9Z[73]<-64.97/60.07>, +# Esperanza Base + =L36Z[73]<-63.38/56.98>,=LU8DBS/Z[73]<-63.38/56.98>, +# Vicecomodoro Gustavo Marambio Base + =LU1HCQ/Z[73]<-64.23/56.65>, # Douglas Mawson Station AX0(39)[69]<-67.60/-62.87>,VI0(39)[69]<-67.60/-62.87>,VK0(39)[69]<-67.60/-62.87>, # Dumont D'Urville Base @@ -1812,7 +1817,7 @@ Antarctica: 13: 74: SA: -90.00: 0.00: 0.0: CE9: FT3Y(30)[70]<-66.65/-140.00>,FT4Y(30)[70]<-66.65/-140.00>,FT5Y(30)[70]<-66.65/-140.00>, FT6Y(30)[70]<-66.65/-140.00>,FT7Y(30)[70]<-66.65/-140.00>,FT8Y(30)[70]<-66.65/-140.00>, # Station "T" Adelaide - =VP8ADE[73]<-67.77/68.92>,=VP8ADE/B[73]<-67.77/68.92>, + =VP8ADE/B[73]<-67.77/68.92>, # Maitri Station =AT42I(38)[67]<-70.75/-11.73>,=AT42IND(38)[67]<-70.75/-11.73>, # Syowa Station @@ -1824,9 +1829,11 @@ Antarctica: 13: 74: SA: -90.00: 0.00: 0.0: CE9: # Mirny Station RI1AN(29)[69]<-66.55/-93.00>, # Novolazarevskaya Station - =RI1ANU(38)[67]<-70.77/-11.85>, + =RI1AND(38)[67]<-70.77/-11.85>, # Vostok Station - =RI1ANC(29)[70]<-78.47/-106.80>,=RI30ANT(29)[70]<-78.47/-106.80>, + =RI1ANC(29)[70]<-78.47/-106.80>, +# Akademik Vernadsky Station + =EM1/UW5EHR[73]<-65.23/64.25>,=EM1U[73]<-65.23/64.25>,=VP8/UW5EHR[73]<-65.23/64.25>, # Byrd Station =KC4USB(12)<-80.02/119.53>, # Amundsen-Scott South Pole Station @@ -1837,12 +1844,8 @@ Antarctica: 13: 74: SA: -90.00: 0.00: 0.0: CE9: =KC4AAC[73]<-64.77/64.05>, # Sanae IV Base ZS7(38)[67]<-71.67/2.82>, -# Dome C - Concordia Station - =FT4YM/P(29)[70]<-75.10/-123.38>, # Neumayer III Station - =DP0GVN(38)[67]<-70.67/8.27>,=DP1POL(38)[67]<-70.67/8.27>, -# Halley VI Station - =VP8/SQ1SGB[73]<-75.62/26.13>; + =DP0GVN(38)[67]<-70.67/8.27>,=DP1POL(38)[67]<-70.67/8.27>; # ADIF 70 Cuba: 08: 11: NA: 21.50: 80.00: 5.0: CM: CL,CM,CO,T4, @@ -1864,7 +1867,7 @@ Cuba: 08: 11: NA: 21.50: 80.00: 5.0: CM: CL8<20.48/76.18>,CM8<20.48/76.18>,CO8<20.48/76.18>,T48<20.48/76.18>; # ADIF 446 Morocco: 33: 37: AF: 32.00: 5.00: 0.0: CN: - 5C,5D,5E,5F,5G,CN,=9K2DB/CN8SG; + 5C,5D,5E,5F,5G,CN; # ADIF 104 Bolivia: 10: 12: SA: -17.00: 65.00: 4.0: CP: CP, @@ -2066,7 +2069,7 @@ Comoros: 39: 53: AF: -11.63: -43.30: -3.0: D6: D6; # ADIF 230 Fed. Rep. of Germany: 14: 28: EU: 51.00: -10.00: -1.0: DL: - DA,DB,DC,DD,DE,DF,DG,DH,DI,DJ,DK,DL,DM,DN,DO,DP,DQ,DR,Y2,Y3,Y4,Y5,Y6,Y7,Y8,Y9; + DA,DB,DC,DD,DE,DF,DG,DH,DI,DJ,DK,DL,DM,DN,DO,DP,DQ,DR,Y2,Y3,Y4,Y5,Y6,Y7,Y8,Y9,=DL0NOT/EMCOM; # ADIF 375 Philippines: 27: 50: OC: 13.00: -122.00: -8.0: DU: 4D,4E,4F,4G,4H,4I,DU,DV,DW,DX,DY,DZ, @@ -2115,7 +2118,7 @@ Palestine: 20: 39: AS: 31.28: -34.27: -2.0: E4: # ADIF 191 North Cook Islands: 32: 62: OC: -10.02: 161.08: 10.0: E5/n: # Manihiki - =E51PT<-10.40/161.00>, + =E51JAN<-10.40/161.00>,=E51PT<-10.40/161.00>, # Penrhyn =E51WL[63]<-9.00/157.97>; # ADIF 234 @@ -2133,35 +2136,39 @@ Spain: 14: 37: EU: 40.32: 3.43: -1.0: EA: # AV-BU-C-LE-LO-LU-O-OU-P-PO-S-SA-SG-SO-VA-ZA AM1<42.57/6.17>,AN1<42.57/6.17>,AO1<42.57/6.17>,EA1<42.57/6.17>,EB1<42.57/6.17>,EC1<42.57/6.17>, ED1<42.57/6.17>,EE1<42.57/6.17>,EF1<42.57/6.17>,EG1<42.57/6.17>,EH1<42.57/6.17>, - =EG80NT<42.57/6.17>, # BI-HU-NA-SS-TE-VI-Z AM2<42.60/1.93>,AN2<42.60/1.93>,AO2<42.60/1.93>,EA2<42.60/1.93>,EB2<42.60/1.93>,EC2<42.60/1.93>, ED2<42.60/1.93>,EE2<42.60/1.93>,EF2<42.60/1.93>,EG2<42.60/1.93>,EH2<42.60/1.93>, =EA2EZ/P<42.60/1.93>, -# B-GI-L-T +# Catalonia AM3<41.68/-1.90>,AN3<41.68/-1.90>,AO3<41.68/-1.90>,EA3<41.68/-1.90>,EB3<41.68/-1.90>, EC3<41.68/-1.90>,ED3<41.68/-1.90>,EE3<41.68/-1.90>,EF3<41.68/-1.90>,EG3<41.68/-1.90>, - EH3<41.68/-1.90>,=EA3HSD/P<41.68/-1.90>, + EH3<41.68/-1.90>, # BA-CC-CR-CU-GU-M-TO AM4<40.18/3.93>,AN4<40.18/3.93>,AO4<40.18/3.93>,EA4<40.18/3.93>,EB4<40.18/3.93>,EC4<40.18/3.93>, ED4<40.18/3.93>,EE4<40.18/3.93>,EF4<40.18/3.93>,EG4<40.18/3.93>,EH4<40.18/3.93>, + =EA6XQ/P<40.18/3.93>, # A-AB-CS-MU-V AM5<38.87/0.97>,AN5<38.87/0.97>,AO5<38.87/0.97>,EA5<38.87/0.97>,EB5<38.87/0.97>,EC5<38.87/0.97>, ED5<38.87/0.97>,EE5<38.87/0.97>,EF5<38.87/0.97>,EG5<38.87/0.97>,EH5<38.87/0.97>, - =EA5CC/P<38.87/0.97>,=EA5IKT/P<38.87/0.97>,=EA9AZ/5<38.87/0.97>,=EC5AHA/P<38.87/0.97>, -# AL-CA-CO-GR-H-J-MA-SE + =EA5CC/P<38.87/0.97>,=EA5IKT/P<38.87/0.97>,=EA8AAH/5<38.87/0.97>,=EC5AHA/P<38.87/0.97>, +# Andalusia AM7<37.25/4.68>,AN7<37.25/4.68>,AO7<37.25/4.68>,EA7<37.25/4.68>,EB7<37.25/4.68>,EC7<37.25/4.68>, ED7<37.25/4.68>,EE7<37.25/4.68>,EF7<37.25/4.68>,EG7<37.25/4.68>,EH7<37.25/4.68>, - =EA8CHC/7<37.25/4.68>,=EA9HU<37.25/4.68>; + =EA9HU<37.25/4.68>,=EA9LZ/P<37.25/4.68>; # ADIF 21 Balearic Islands: 14: 37: EU: 39.60: -2.95: -1.0: EA6: - AM6,AN6,AO6,EA6,EB6,EC6,ED6,EE6,EF6,EG6,EH6,=EA6XQ/P; + AM6,AN6,AO6,EA6,EB6,EC6,ED6,EE6,EF6,EG6,EH6,=AO30MRB; # ADIF 29 Canary Islands: 33: 36: AF: 28.32: 15.85: 0.0: EA8: - AM8,AN8,AO8,EA8,EB8,EC8,ED8,EE8,EF8,EG8,EH8; + AM8,AN8,AO8,EA8,EB8,EC8,ED8,EE8,EF8,EG8,EH8, +# Las Palmas de Gran Canaria + =EA1AP/8<28.15/15.42>; # ADIF 32 Ceuta & Melilla: 33: 37: AF: 35.90: 5.27: -1.0: EA9: - AM9,AN9,AO9,EA9,EB9,EC9,ED9,EE9,EF9,EG9,EH9; + AM9,AN9,AO9,EA9,EB9,EC9,ED9,EE9,EF9,EG9,EH9, +# Ceuta + =EA9PD/P<35.88/5.30>; # ADIF 245 Ireland: 14: 27: EU: 53.13: 8.02: 0.0: EI: EI,EJ; @@ -2261,10 +2268,10 @@ Guadeloupe: 08: 11: NA: 16.13: 61.67: 4.0: FG: FG; # ADIF 169 Mayotte: 39: 53: AF: -12.88: -45.15: -3.0: FH: - FH; + FH,=TO8FH; # ADIF 516 St. Barthelemy: 08: 11: NA: 17.90: 62.83: 4.0: FJ: - FJ; + FJ,=TO0T; # ADIF 162 New Caledonia: 32: 56: OC: -21.50: -165.50: -11.0: FK: FK; @@ -2273,10 +2280,12 @@ Chesterfield Islands: 30: 56: OC: -19.87: -158.32: -11.0: FK/c: =TX3X; # ADIF 84 Martinique: 08: 11: NA: 14.70: 61.03: 4.0: FM: - FM,=TO4A,=TO5A,=TO7A; + FM,=TO5A,=TO7A; # ADIF 175 French Polynesia: 32: 63: OC: -17.65: 149.40: 10.0: FO: - FO; + FO, +# Tahiti/Moorea + =TX6D<-17.53/149.83>; # ADIF 508 Austral Islands: 32: 63: OC: -23.37: 149.48: 10.0: FO/a: =TX5N; @@ -2285,16 +2294,16 @@ Clipperton Island: 07: 10: NA: 10.28: 109.22: 8.0: FO/c: =TX5P; # ADIF 509 Marquesas Islands: 31: 63: OC: -8.92: 140.07: 9.5: FO/m: - =FO5QS; + =FO5QS,=TX7L; # ADIF 277 St. Pierre & Miquelon: 05: 09: NA: 46.77: 56.20: 3.0: FP: FP; # ADIF 453 Reunion Island: 39: 53: AF: -21.12: -55.48: -4.0: FR: - FR,=TO974QO; + FR,=TO0GL,=TO7K; # ADIF 213 St. Martin: 08: 11: NA: 18.08: 63.03: 4.0: FS: - FS,=TO5T; + FS,=TO5T,=TO9W; # ADIF 99 Glorioso Islands: 39: 53: AF: -11.55: -47.28: -4.0: FT/g: FT0G,FT1G,FT2G,FT3G,FT4G,FT5G,FT6G,FT7G,FT8G,FT9G; @@ -2332,28 +2341,29 @@ Isle of Man: 14: 27: EU: 54.20: 4.53: 0.0: GD: 2D,GD,GT,MD,MT; # ADIF 265 Northern Ireland: 14: 27: EU: 54.73: 6.68: 0.0: GI: - 2I,GI,GN,MI,MN,=GB0KC,=GB0QE,=GB8ELF,=GB8PJE; + 2I,GI,GN,MI,MN,=GB2DMR,=GB9AFD; # ADIF 122 Jersey: 14: 27: EU: 49.22: 2.18: 0.0: GJ: 2J,GH,GJ,MH,MJ; # ADIF 279 Scotland: 14: 27: EU: 56.82: 4.18: 0.0: GM: - 2A,2M,GM,GS,MA,MM,MS,=GB0SSB,=GB2ELH,=GB2JCM,=GB2KW,=GB2OWM,=GB3ANG,=GB3LER,=GB3LER/B,=GB3ORK, - =GB3RMK/B,=GB4LER,=GB5SC; + 2A,2M,GM,GS,MA,MM,MS,=GB0FFS,=GB0GDS,=GB0OZE,=GB0SSB,=GB0WRH,=GB2CM,=GB2ELH,=GB2KDR,=GB2LO, + =GB2OWM,=GB3ANG,=GB3LER,=GB3LER/B,=GB3RMK/B,=GB4LER,=GB5KCD,=GB6WLS; # ADIF 279 Shetland Islands: 14: 27: EU: 60.50: 1.50: 0.0: *GM/s: =2M0BDR,=2M0BDT,=2M0CPN,=2M0GFC,=2M0SEG,=2M0SPX,=2M0ZET,=GB2ELH,=GB3LER,=GB3LER/B,=GB4LER,=GM0AVR, =GM0CXQ,=GM0EKM,=GM0GFL,=GM0ILB,=GM0JDB,=GM1FGN,=GM1KKI,=GM1ZNR,=GM3WHT,=GM3ZET,=GM4IPK,=GM4JPI, - =GM4LBE,=GM4LER,=GM4PXG,=GM4SLV,=GM4SSA,=GM4WXQ,=GM4ZHL,=GM6RQW,=GM6YQA,=GM7AFE,=GM7GWW,=GM8LNH, - =GM8MMA,=GM8YEC,=GS3ZET,=MM0LSM,=MM0NQY,=MM0VIK,=MM0XAU,=MM0ZAL,=MM0ZCG,=MM0ZRC,=MM1FEO,=MM1FJM, - =MM3VQO,=MM5PSL,=MM5YLO,=MM6BDU,=MM6BZQ,=MM6IKB,=MM6IMB,=MM6MFA,=MM6PTE,=MM6SJK,=MM6YLO,=MM6ZBG, - =MM6ZDW,=MM7CGR,=MM8A,=MS0ZCG,=MS0ZET; + =GM4LBE,=GM4LER,=GM4PXG,=GM4SLV,=GM4WXQ,=GM4ZHL,=GM6RQW,=GM6YQA,=GM7AFE,=GM7GWW,=GM8LNH,=GM8MMA, + =GM8YEC,=GS3ZET,=MM0LSM,=MM0NQY,=MM0VIK,=MM0XAU,=MM0ZAL,=MM0ZCG,=MM0ZRC,=MM1FEO,=MM1FJM,=MM3VQO, + =MM5PSL,=MM5YLO,=MM6BDU,=MM6BZQ,=MM6IKB,=MM6IMB,=MM6MFA,=MM6PTE,=MM6SJK,=MM6YLO,=MM6ZBG,=MM6ZDW, + =MM7CGR,=MM8A,=MS0ZCG,=MS0ZET; # ADIF 106 Guernsey: 14: 27: EU: 49.45: 2.58: 0.0: GU: 2U,GP,GU,MP,MU; # ADIF 294 Wales: 14: 27: EU: 52.28: 3.73: 0.0: GW: - 2W,GC,GW,MC,MW,=GB0MPA,=GB2IMD,=GB2TD,=GB4MDI; + 2W,GC,GW,MC,MW,=GB0HBR,=GB0MPA,=GB1CR,=GB1GLC,=GB1MUU,=GB1WHR,=GB2GFS,=GB2IMD,=GB2MOP,=GB2TD, + =GB2VK,=GB4MDI,=GB4RRS; # ADIF 185 Solomon Islands: 28: 51: OC: -9.00: -160.00: -11.0: H4: H4; @@ -2519,13 +2529,21 @@ Italy: 15: 28: EU: 42.82: -12.58: -1.0: I: # Lazio/Umbria I0<41.88/-12.53>,II0<41.88/-12.53>,IK0<41.88/-12.53>,IO0<41.88/-12.53>,IQ0<41.88/-12.53>, IR0<41.88/-12.53>,IU0<41.88/-12.53>,IW0<41.88/-12.53>,IZ0<41.88/-12.53>,=IT9ELM/0<41.88/-12.53>, - =IT9HJH/0<41.88/-12.53>,=IT9PQJ/0<41.88/-12.53>, + =IT9PQJ/0<41.88/-12.53>, # Liguria/Piemonte I1<45.07/-7.67>,II1<45.07/-7.67>,IK1<45.07/-7.67>,IO1<45.07/-7.67>,IQ1<45.07/-7.67>, IR1<45.07/-7.67>,IU1<45.07/-7.67>,IW1<45.07/-7.67>,IZ1<45.07/-7.67>, # Lombardia + BG11<45.47/-9.20>,BG12<45.47/-9.20>,BG13<45.47/-9.20>,BG14<45.47/-9.20>,BG15<45.47/-9.20>, + BG16<45.47/-9.20>,BG17<45.47/-9.20>,BG18<45.47/-9.20>,BG21<45.47/-9.20>,BG22<45.47/-9.20>, + BG23<45.47/-9.20>,BG24<45.47/-9.20>,BG25<45.47/-9.20>,BG26<45.47/-9.20>,BG27<45.47/-9.20>, + BG28<45.47/-9.20>,BG31<45.47/-9.20>,BG32<45.47/-9.20>,BG33<45.47/-9.20>,BG34<45.47/-9.20>, + BG35<45.47/-9.20>,BG36<45.47/-9.20>,BG37<45.47/-9.20>,BG38<45.47/-9.20>,BS11<45.47/-9.20>, + BS12<45.47/-9.20>,BS13<45.47/-9.20>,BS14<45.47/-9.20>,BS15<45.47/-9.20>,BS16<45.47/-9.20>, + BS17<45.47/-9.20>,BS18<45.47/-9.20>,BS21<45.47/-9.20>,BS22<45.47/-9.20>,BS23<45.47/-9.20>, + BS24<45.47/-9.20>,BS25<45.47/-9.20>,BS26<45.47/-9.20>,BS27<45.47/-9.20>,BS28<45.47/-9.20>, I2<45.47/-9.20>,II2<45.47/-9.20>,IK2<45.47/-9.20>,IO2<45.47/-9.20>,IQ2<45.47/-9.20>, - IR2<45.47/-9.20>,IU2<45.47/-9.20>,IW2<45.47/-9.20>,IZ2<45.47/-9.20>, + IR2<45.47/-9.20>,IU2<45.47/-9.20>,IW2<45.47/-9.20>,IZ2<45.47/-9.20>,=I2DMK/RM<45.47/-9.20>, # Veneto I3<45.48/-12.33>,II3<45.48/-12.33>,IK3<45.48/-12.33>,IO3<45.48/-12.33>,IQ3<45.48/-12.33>, IR3<45.48/-12.33>,IU3<45.48/-12.33>,IW3<45.48/-12.33>,IZ3<45.48/-12.33>, @@ -2534,10 +2552,10 @@ Italy: 15: 28: EU: 42.82: -12.58: -1.0: I: IR4<44.65/-10.92>,IU4<44.65/-10.92>,IW4<44.65/-10.92>,IZ4<44.65/-10.92>,=IT9RGY/4<44.65/-10.92>, # Toscana I5<43.78/-11.25>,II5<43.78/-11.25>,IK5<43.78/-11.25>,IO5<43.78/-11.25>,IQ5<43.78/-11.25>, - IR5<43.78/-11.25>,IU5<43.78/-11.25>,IW5<43.78/-11.25>,IZ5<43.78/-11.25>, + IR5<43.78/-11.25>,IU5<43.78/-11.25>,IW5<43.78/-11.25>,IZ5<43.78/-11.25>,=IQ5AE/J<43.78/-11.25>, # Abruzzo/Marche I6<43.58/-13.48>,II6<43.58/-13.48>,IK6<43.58/-13.48>,IO6<43.58/-13.48>,IQ6<43.58/-13.48>, - IR6<43.58/-13.48>,IU6<43.58/-13.48>,IW6<43.58/-13.48>,IZ6<43.58/-13.48>, + IR6<43.58/-13.48>,IU6<43.58/-13.48>,IW6<43.58/-13.48>,IZ6<43.58/-13.48>,=IK6FAW/J<43.58/-13.48>, # Puglia I7<41.12/-16.87>,II7<41.12/-16.87>,IK7<41.12/-16.87>,IO7<41.12/-16.87>,IQ7<41.12/-16.87>, IR7<41.12/-16.87>,IU7<41.12/-16.87>,IW7<41.12/-16.87>,IZ7<41.12/-16.87>, @@ -2573,12 +2591,12 @@ African Italy: 33: 37: AF: 35.67: -12.67: -1.0: *IG9: IG9,IH9; # ADIF 225 Sardinia: 15: 28: EU: 40.15: -9.27: -1.0: IS: - IM0,IS0,IW0U,IW0V,IW0W,IW0X,IW0Y,IW0Z,=II0ICH,=II0IDP,=II0M,=IO0WRTC,=IQ0AAI,=IQ0AG,=IQ0AH, - =IQ0AH/P,=IQ0AI,=IQ0AK,=IQ0AL,=IQ0AM,=IQ0EH,=IQ0HO,=IQ0ID,=IQ0NU,=IQ0OG,=IQ0QP,=IQ0SS,=IR0A, - =IY0GA; + IM0,IS0,IW0U,IW0V,IW0W,IW0X,IW0Y,IW0Z,=II0ICH,=II0IDP,=II0M,=IO0C,=IQ0AAI,=IQ0AG,=IQ0AH,=IQ0AI, + =IQ0AK,=IQ0AK/P,=IQ0AL,=IQ0AM,=IQ0EH,=IQ0HO,=IQ0ID,=IQ0JY,=IQ0NU,=IQ0OG,=IQ0QP,=IQ0SS,=IQ0SS/P, + =IR0A,=IY0GA; # ADIF 248 Sicily: 15: 28: EU: 37.50: -14.00: -1.0: *IT9: - IB9,ID9,IE9,IF9,II9,IJ9,IO9,IQ9,IR9,IT9,IU9,IW9,IY9,=II1MM/9,=IQ1QQ/9,=IW0HBY/9; + IB9,ID9,IE9,IF9,II9,IJ9,IO9,IQ9,IR9,IT9,IU9,IW9,IY9,=IQ1QQ/9,=IW0HBY/9; # ADIF 382 Djibouti: 37: 48: AF: 11.75: -42.35: -3.0: J2: J2; @@ -2659,7 +2677,7 @@ Japan: 25: 45: AS: 36.40: -138.38: -9.0: JA: JQ9<36.07/-136.22>,JR9<36.07/-136.22>,JS9<36.07/-136.22>; # ADIF 177 Minami Torishima: 27: 90: OC: 24.28: -153.97: -10.0: JD/m: - =JD1YAA,=JE7IZM/JD1,=JG8NQJ/JD1; + =JE7IZM/JD1,=JG8NQJ/JD1; # ADIF 192 Ogasawara: 27: 45: AS: 27.05: -142.20: -9.0: JD/o: JD1; @@ -2724,38 +2742,51 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WT0(4)[7]<41.12/96.57>~6.0~,WU0(4)[7]<41.12/96.57>~6.0~,WV0(4)[7]<41.12/96.57>~6.0~, WW0(4)[7]<41.12/96.57>~6.0~,WX0(4)[7]<41.12/96.57>~6.0~,WY0(4)[7]<41.12/96.57>~6.0~, WZ0(4)[7]<41.12/96.57>~6.0~,=AB4BA(4)[7]<39.53/105.18>~6.0~,=AD1C(4)[7]<39.53/105.18>~6.0~, - =AI6O(4)[7]<38.43/92.23>~6.0~,=AI7C(4)[7]<39.53/105.18>~6.0~,=AK9D(4)[7]<38.48/96.42>~6.0~, - =AL0G(4)[7]<39.53/105.18>~6.0~,=K1EAR(4)[7]<43.98/98.92>~6.0~,=K1KD(4)[7]<45.18/93.57>~6.0~, - =K1QS(4)[7]<38.43/92.23>~6.0~,=K1WTF(4)[7]<39.53/105.18>~6.0~,=K1XT(4)[7]<38.43/92.23>~6.0~, - =K2BY(4)[7]<41.17/97.22>~6.0~,=K2KR(4)[7]<39.53/105.18>~6.0~,=K2VV(4)[7]<38.43/92.23>~6.0~, - =K3ILC(4)[7]<39.53/105.18>~6.0~,=K3PA(4)[7]<38.48/96.42>~6.0~,=K4EQ(4)[7]<38.43/92.23>~6.0~, - =K4IU(4)[7]<45.18/93.57>~6.0~,=K4RVA(4)[7]<39.53/105.18>~6.0~,=K6DJ(4)[7]<39.53/105.18>~6.0~, + =AH6O(4)[7]<39.53/105.18>~6.0~,=AI6O(4)[7]<38.43/92.23>~6.0~,=AI7C(4)[7]<39.53/105.18>~6.0~, + =AL0G(4)[7]<39.53/105.18>~6.0~,=AL7T(4)[7]<45.18/93.57>~6.0~,=K1BJC(4)[7]<45.18/93.57>~6.0~, + =K1EAR(4)[7]<43.98/98.92>~6.0~,=K1KD(4)[7]<45.18/93.57>~6.0~,=K1QS(4)[7]<38.43/92.23>~6.0~, + =K1WTF(4)[7]<39.53/105.18>~6.0~,=K1XT(4)[7]<38.43/92.23>~6.0~,=K2BY(4)[7]<41.17/97.22>~6.0~, + =K2DP(4)[7]<38.43/92.23>~6.0~,=K2HT(4)[7]<38.43/92.23>~6.0~,=K2KR(4)[7]<39.53/105.18>~6.0~, + =K2VV(4)[7]<38.43/92.23>~6.0~,=K3IFR(4)[7]<39.53/105.18>~6.0~,=K3ILC(4)[7]<39.53/105.18>~6.0~, + =K3PA(4)[7]<38.48/96.42>~6.0~,=K4EQ(4)[7]<38.43/92.23>~6.0~,=K4IU(4)[7]<45.18/93.57>~6.0~, + =K4SSO(4)[7]<38.43/92.23>~6.0~,=K6DJ(4)[7]<39.53/105.18>~6.0~,=K6KII(4)[7]<39.53/105.18>~6.0~, =K7BG(4)[7]<43.98/98.92>~6.0~,=K7SCX(4)[7]<39.53/105.18>~6.0~,=K7TD(4)[7]<39.53/105.18>~6.0~, - =K9DU(4)[7]<45.18/93.57>~6.0~,=K9MWM(4)[7]<39.53/105.18>~6.0~,=K9OR(4)[7]<39.53/105.18>~6.0~, - =K9RK(4)[7]<45.18/93.57>~6.0~,=KA3NAM(4)[7]<38.48/96.42>~6.0~,=KA4GAV(4)[7]<45.18/93.57>~6.0~, - =KA9OZP(4)[7]<41.93/93.03>~6.0~,=KB3HF(4)[7]<38.43/92.23>~6.0~,=KB4IRR(4)[7]<38.43/92.23>~6.0~, + =K8OM(4)[7]<41.93/93.03>~6.0~,=K9AJC(4)[7]<38.43/92.23>~6.0~,=K9DU(4)[7]<45.18/93.57>~6.0~, + =K9KSU(4)[7]<38.48/96.42>~6.0~,=K9MWM(4)[7]<39.53/105.18>~6.0~,=K9OR(4)[7]<39.53/105.18>~6.0~, + =KA3NAM(4)[7]<38.48/96.42>~6.0~,=KA4GAV(4)[7]<45.18/93.57>~6.0~,=KA8HDE(4)[7]<45.18/93.57>~6.0~, + =KA8MMI(4)[7]<38.48/96.42>~6.0~,=KA9OZP(4)[7]<41.93/93.03>~6.0~,=KB2FSK(4)[7]<41.93/93.03>~6.0~, + =KB3HF(4)[7]<38.43/92.23>~6.0~,=KB4IRR(4)[7]<38.43/92.23>~6.0~,=KB6B(4)[7]<39.53/105.18>~6.0~, =KB9LLD(4)[7]<38.43/92.23>~6.0~,=KC6R(4)[7]<39.53/105.18>~6.0~,=KC8NFN(4)[7]<47.33/99.45>~6.0~, - =KF6YU(4)[7]<39.53/105.18>~6.0~,=KF7MD(4)[7]<39.53/105.18>~6.0~,=KF9MT(4)[7]<41.93/93.03>~6.0~, - =KK9N(4)[7]<38.43/92.23>~6.0~,=KL7GLK(4)[7]<39.53/105.18>~6.0~,=KL7NW(4)[7]<41.17/97.22>~6.0~, - =KL7QW(4)[7]<38.43/92.23>~6.0~,=KO1Z(4)[7]<45.18/93.57>~6.0~,=KO9V(4)[7]<39.53/105.18>~6.0~, - =KP2X(4)[7]<38.43/92.23>~6.0~,=KS9W(4)[7]<39.53/105.18>~6.0~,=KT3M(4)[7]<39.53/105.18>~6.0~, - =KT9T(4)[7]<45.18/93.57>~6.0~,=KW7Q(4)[7]<39.53/105.18>~6.0~,=KX2P(4)[7]<39.53/105.18>~6.0~, - =N1CCC(4)[7]<38.43/92.23>~6.0~,=N1SMB(4)[7]<39.53/105.18>~6.0~,=N2DEE(4)[7]<39.53/105.18>~6.0~, - =N4VI(4)[7]<39.53/105.18>~6.0~,=N6RSH(4)[7]<41.17/97.22>~6.0~,=N6WHV(4)[7]<39.53/105.18>~6.0~, + =KD2RPX(4)[7]<39.53/105.18>~6.0~,=KD7TO(4)[7]<45.18/93.57>~6.0~,=KF7MD(4)[7]<39.53/105.18>~6.0~, + =KF9MT(4)[7]<41.93/93.03>~6.0~,=KK9N(4)[7]<38.43/92.23>~6.0~,=KL7GLK(4)[7]<39.53/105.18>~6.0~, + =KL7NW(4)[7]<41.17/97.22>~6.0~,=KL7QW(4)[7]<38.43/92.23>~6.0~,=KN4FRG(4)[7]<38.43/92.23>~6.0~, + =KN4RD(4)[7]<39.53/105.18>~6.0~,=KO1Z(4)[7]<45.18/93.57>~6.0~,=KO4YIN(4)[7]<38.43/92.23>~6.0~, + =KO9V(4)[7]<39.53/105.18>~6.0~,=KP2X(4)[7]<38.43/92.23>~6.0~,=KS9W(4)[7]<39.53/105.18>~6.0~, + =KT3M(4)[7]<39.53/105.18>~6.0~,=KT9T(4)[7]<45.18/93.57>~6.0~,=KW7Q(4)[7]<39.53/105.18>~6.0~, + =KX2P(4)[7]<39.53/105.18>~6.0~,=N1AWT(4)[7]<41.93/93.03>~6.0~,=N1CCC(4)[7]<38.43/92.23>~6.0~, + =N1SMB(4)[7]<39.53/105.18>~6.0~,=N1XK(4)[7]<41.93/93.03>~6.0~,=N2DEE(4)[7]<39.53/105.18>~6.0~, + =N2SRK(4)[7]<39.53/105.18>~6.0~,=N4RS(4)[7]<38.43/92.23>~6.0~,=N4VI(4)[7]<39.53/105.18>~6.0~, + =N6LEE(4)[7]<39.53/105.18>~6.0~,=N6RSH(4)[7]<41.17/97.22>~6.0~,=N6WHV(4)[7]<39.53/105.18>~6.0~, =N7DR(4)[7]<39.53/105.18>~6.0~,=N7IV(4)[7]<47.33/99.45>~6.0~,=N7SE(4)[7]<39.53/105.18>~6.0~, - =N8HOQ(4)[7]<38.43/92.23>~6.0~,=N9ARX(4)[7]<41.17/97.22>~6.0~,=N9BSO(4)[7]<38.43/92.23>~6.0~, - =N9CD(4)[7]<45.18/93.57>~6.0~,=N9GB(4)[7]<38.48/96.42>~6.0~,=N9HDE(4)[7]<41.93/93.03>~6.0~, - =N9SXF(4)[7]<38.43/92.23>~6.0~,=ND9M(4)[7]<43.98/98.92>~6.0~,=NG7A(4)[7]<41.93/93.03>~6.0~, - =NJ8M(4)[7]<38.48/96.42>~6.0~,=NL7CQ(4)[7]<41.17/97.22>~6.0~,=NN7A(4)[7]<39.53/105.18>~6.0~, - =NO2D(4)[7]<39.53/105.18>~6.0~,=W2CO(4)[7]<39.53/105.18>~6.0~,=W2UP(4)[7]<39.53/105.18>~6.0~, - =W3ZF(4)[7]<39.53/105.18>~6.0~,=W4IFI(4)[7]<39.53/105.18>~6.0~,=W6GMT(4)[7]<45.18/93.57>~6.0~, - =W6QUV(4)[7]<39.53/105.18>~6.0~,=W7II(4)[7]<41.93/93.03>~6.0~,=W7RF(4)[7]<39.53/105.18>~6.0~, - =W7RY(4)[7]<38.43/92.23>~6.0~,=W7UM(4)[7]<39.53/105.18>~6.0~,=W7UT(4)[7]<43.98/98.92>~6.0~, - =W8LYJ(4)[7]<39.53/105.18>~6.0~,=W8XAL(4)[7]<39.53/105.18>~6.0~,=W9MAF(4)[7]<38.43/92.23>~6.0~, - =WA1FMM(4)[7]<39.53/105.18>~6.0~,=WA2JQZ(4)[7]<39.53/105.18>~6.0~, - =WA2PCN(4)[7]<39.53/105.18>~6.0~,=WB7BNE(4)[7]<41.93/93.03>~6.0~,=WB9YLZ(4)[7]<45.18/93.57>~6.0~, - =WD1W(4)[7]<39.53/105.18>~6.0~,=WD4IXD(4)[7]<39.53/105.18>~6.0~,=WI4T(4)[7]<38.43/92.23>~6.0~, - =WO7U(4)[7]<38.43/92.23>~6.0~,=WR2JN(4)[7]<39.53/105.18>~6.0~,=WT7TT(4)[7]<39.53/105.18>~6.0~, + =N8HOQ(4)[7]<38.43/92.23>~6.0~,=N8MD(4)[7]<45.18/93.57>~6.0~,=N9ARX(4)[7]<41.17/97.22>~6.0~, + =N9BSO(4)[7]<38.43/92.23>~6.0~,=N9CD(4)[7]<45.18/93.57>~6.0~,=N9GB(4)[7]<38.48/96.42>~6.0~, + =N9HDE(4)[7]<41.93/93.03>~6.0~,=N9SXF(4)[7]<38.43/92.23>~6.0~,=ND9M(4)[7]<43.98/98.92>~6.0~, + =NG7A(4)[7]<41.93/93.03>~6.0~,=NJ8M(4)[7]<38.48/96.42>~6.0~,=NK8O(4)[7]<38.48/96.42>~6.0~, + =NL7CQ(4)[7]<41.17/97.22>~6.0~,=NN7A(4)[7]<39.53/105.18>~6.0~,=NO2D(4)[7]<39.53/105.18>~6.0~, + =NP3XP(4)[7]<39.53/105.18>~6.0~,=W1CAM(4)[7]<41.17/97.22>~6.0~,=W1ND(4)[7]<43.98/98.92>~6.0~, + =W2CO(4)[7]<39.53/105.18>~6.0~,=W2UP(4)[7]<39.53/105.18>~6.0~,=W3ACO(4)[7]<41.93/93.03>~6.0~, + =W3ZF(4)[7]<39.53/105.18>~6.0~,=W4IFI(4)[7]<39.53/105.18>~6.0~,=W6BDD(4)[7]<38.48/96.42>~6.0~, + =W6GMT(4)[7]<45.18/93.57>~6.0~,=W6QUV(4)[7]<39.53/105.18>~6.0~,=W7II(4)[7]<41.93/93.03>~6.0~, + =W7KAM(4)[7]<38.43/92.23>~6.0~,=W7RF(4)[7]<39.53/105.18>~6.0~,=W7RY(4)[7]<38.43/92.23>~6.0~, + =W7UM(4)[7]<39.53/105.18>~6.0~,=W7UT(4)[7]<43.98/98.92>~6.0~,=W8KR(4)[7]<45.18/93.57>~6.0~, + =W8LYJ(4)[7]<39.53/105.18>~6.0~,=W8XAL(4)[7]<39.53/105.18>~6.0~,=W9LG(4)[7]<41.17/97.22>~6.0~, + =W9MAF(4)[7]<38.43/92.23>~6.0~,=W9RM(4)[7]<39.53/105.18>~6.0~,=WA1FMM(4)[7]<39.53/105.18>~6.0~, + =WA2JQZ(4)[7]<39.53/105.18>~6.0~,=WA2PCN(4)[7]<39.53/105.18>~6.0~,=WA7EM(4)[7]<39.53/105.18>~6.0~, + =WA9Z(4)[7]<41.93/93.03>~6.0~,=WB7BNE(4)[7]<41.93/93.03>~6.0~,=WB8EJN(4)[7]<38.43/92.23>~6.0~, + =WB9YLZ(4)[7]<45.18/93.57>~6.0~,=WD1W(4)[7]<39.53/105.18>~6.0~,=WD4IXD(4)[7]<39.53/105.18>~6.0~, + =WI4T(4)[7]<38.43/92.23>~6.0~,=WI6T(4)[7]<39.53/105.18>~6.0~,=WO7U(4)[7]<38.43/92.23>~6.0~, + =WR2JN(4)[7]<39.53/105.18>~6.0~,=WS9K(4)[7]<38.43/92.23>~6.0~,=WT7TT(4)[7]<39.53/105.18>~6.0~, + =WW6W(4)[7]<47.33/99.45>~6.0~, # CT-MA-ME-NH-RI-VT AA1<42.38/71.65>,AB1<42.38/71.65>,AC1<42.38/71.65>,AD1<42.38/71.65>,AE1<42.38/71.65>, AF1<42.38/71.65>,AG1<42.38/71.65>,AI1<42.38/71.65>,AJ1<42.38/71.65>,AK1<42.38/71.65>, @@ -2774,10 +2805,11 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WM1<42.38/71.65>,WN1<42.38/71.65>,WO1<42.38/71.65>,WQ1<42.38/71.65>,WR1<42.38/71.65>, WS1<42.38/71.65>,WT1<42.38/71.65>,WU1<42.38/71.65>,WV1<42.38/71.65>,WW1<42.38/71.65>, WX1<42.38/71.65>,WY1<42.38/71.65>,WZ1<42.38/71.65>,=AE6JV<43.15/71.45>,=K0HNL<42.27/71.35>, - =K5ZD<42.27/71.35>,=K8CN<43.15/71.45>,=K8LT<43.15/71.45>,=K9JY<44.10/72.82>,=KH7Z<42.27/71.35>, - =KL3VA<44.27/69.77>,=KR5X<43.15/71.45>,=N7ECM<43.15/71.45>,=N8RA<41.50/72.88>,=N9NC<43.15/71.45>, - =NL7FJ<42.27/71.35>,=NP2GG<41.50/72.88>,=W0JAY<41.50/72.88>,=W8HAP<44.27/69.77>, - =W8HMK<41.75/71.45>,=WB8IMY<41.50/72.88>,=WB8PKK<42.27/71.35>,=WM0G<43.15/71.45>, + =K5HIP<42.27/71.35>,=K5ZD<42.27/71.35>,=K8CN<43.15/71.45>,=K8LT<43.15/71.45>,=K9JY<44.10/72.82>, + =KH7Z<42.27/71.35>,=KL3UX<44.27/69.77>,=KL3VA<44.27/69.77>,=KR5X<43.15/71.45>,=N7DH<44.27/69.77>, + =N7ECM<43.15/71.45>,=N7YA<44.27/69.77>,=N8RA<41.50/72.88>,=N9NC<43.15/71.45>,=NL7FJ<42.27/71.35>, + =NP2GG<41.50/72.88>,=W0JAY<41.50/72.88>,=W5DX<41.50/72.88>,=W8HAP<44.27/69.77>, + =W8HMK<41.75/71.45>,=WB8IMY<41.50/72.88>,=WB9RRU<41.50/72.88>,=WM0G<43.15/71.45>, =WX7T<41.50/72.88>, # NJ-NY AA2<41.15/74.53>,AB2<41.15/74.53>,AC2<41.15/74.53>,AD2<41.15/74.53>,AE2<41.15/74.53>, @@ -2798,8 +2830,8 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WT2<41.15/74.53>,WU2<41.15/74.53>,WV2<41.15/74.53>,WW2<41.15/74.53>,WX2<41.15/74.53>, WY2<41.15/74.53>,WZ2<41.15/74.53>,=AH2O<41.47/74.58>,=K0SM<41.47/74.58>,=K9CHP<41.47/74.58>, =KE5HDE<41.47/74.58>,=KO8SCA<41.47/74.58>,=KP4AK<41.47/74.58>,=N5DX<41.15/74.53>, - =NX7U<40.43/74.42>,=NY6DX<41.47/74.58>,=W0MHK<40.43/74.42>,=W6JTB<41.47/74.58>, - =W8NUD<41.47/74.58>,=WS9M<41.47/74.58>, + =N5RKN<41.47/74.58>,=N8XX<40.43/74.42>,=NX7U<40.43/74.42>,=NY6DX<41.47/74.58>,=W0MHK<40.43/74.42>, + =W6JTB<41.47/74.58>,=W8NUD<41.47/74.58>,=W9KXI<41.47/74.58>,=WS9M<41.47/74.58>, # DE-MD-PA AA3<39.95/76.85>,AB3<39.95/76.85>,AC3<39.95/76.85>,AD3<39.95/76.85>,AE3<39.95/76.85>, AF3<39.95/76.85>,AG3<39.95/76.85>,AI3<39.95/76.85>,AJ3<39.95/76.85>,AK3<39.95/76.85>, @@ -2817,12 +2849,15 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WI3<39.95/76.85>,WJ3<39.95/76.85>,WK3<39.95/76.85>,WM3<39.95/76.85>,WN3<39.95/76.85>, WO3<39.95/76.85>,WQ3<39.95/76.85>,WR3<39.95/76.85>,WS3<39.95/76.85>,WT3<39.95/76.85>, WU3<39.95/76.85>,WV3<39.95/76.85>,WW3<39.95/76.85>,WX3<39.95/76.85>,WY3<39.95/76.85>, - WZ3<39.95/76.85>,=4U1WB<39.95/76.85>,=AC5XK<38.92/77.02>,=K0BAK<40.45/76.97>,=K9RS<39.33/75.55>, - =KA6Y<40.45/76.97>,=KD9QS<39.13/76.80>,=KG5TA<40.45/76.97>,=KI7WX<40.45/76.97>,=KP3M<40.45/76.97>, - =KP4IP<39.13/76.80>,=N5TB<39.13/76.80>,=N8IVN<39.13/76.80>,=N8NA<39.33/75.55>,=N8URE<39.13/76.80>, - =N8WXQ<40.45/76.97>,=NA7L<40.45/76.97>,=NH7TV<40.45/76.97>,=NJ7T<40.45/76.97>,=NK8Q<40.45/76.97>, - =NL7XM<40.45/76.97>,=NY9H<40.45/76.97>,=W6WU<39.13/76.80>,=W7LG<40.45/76.97>,=W8FJ<40.45/76.97>, - =WB8YYY<39.13/76.80>,=WD8RYV<40.45/76.97>,=WP4PUR<39.13/76.80>,=WZ7I<40.45/76.97>, + WZ3<39.95/76.85>,=4U1WB<39.95/76.85>,=AB5VJ<40.45/76.97>,=AC5XK<38.92/77.02>,=AH6AX<39.13/76.80>, + =K0BAK<40.45/76.97>,=K7JN<40.45/76.97>,=K9IDX<39.13/76.80>,=K9RS<39.33/75.55>,=KA6Y<40.45/76.97>, + =KC9WZ<40.45/76.97>,=KD9QS<39.13/76.80>,=KE5NJ<39.33/75.55>,=KG5TA<40.45/76.97>, + =KI7WX<40.45/76.97>,=KI8EM<40.45/76.97>,=KP3M<40.45/76.97>,=KP4IP<39.13/76.80>,=N0QQ<40.45/76.97>, + =N5TB<39.13/76.80>,=N8HM<38.92/77.02>,=N8IVN<39.13/76.80>,=N8NA<39.33/75.55>,=N8URE<39.13/76.80>, + =N8WXQ<40.45/76.97>,=NA7L<40.45/76.97>,=NH7TV<40.45/76.97>,=NJ7T<40.45/76.97>,=NL7XM<40.45/76.97>, + =NY9H<40.45/76.97>,=W6WU<39.13/76.80>,=W7LG<40.45/76.97>,=W8FJ<40.45/76.97>,=W8UV<39.33/75.55>, + =WA8YIH<40.45/76.97>,=WB8BPU<39.13/76.80>,=WB8YYY<39.13/76.80>,=WD8RYV<40.45/76.97>, + =WP4HSZ<40.45/76.97>,=WP4PUR<39.13/76.80>,=WV8TG<40.45/76.97>,=WZ7I<40.45/76.97>, # AL-FL-GA-KY-NC-SC-TN-VA AA4<33.12/82.20>,AB4<33.12/82.20>,AC4<33.12/82.20>,AD4<33.12/82.20>,AE4<33.12/82.20>, AF4<33.12/82.20>,AG4<33.12/82.20>,AI4<33.12/82.20>,AJ4<33.12/82.20>,AK4<33.12/82.20>, @@ -2840,48 +2875,62 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WG4<33.12/82.20>,WI4<33.12/82.20>,WJ4<33.12/82.20>,WK4<33.12/82.20>,WM4<33.12/82.20>, WN4<33.12/82.20>,WO4<33.12/82.20>,WQ4<33.12/82.20>,WR4<33.12/82.20>,WS4<33.12/82.20>, WT4<33.12/82.20>,WU4<33.12/82.20>,WV4<33.12/82.20>,WW4<33.12/82.20>,WX4<33.12/82.20>, - WY4<33.12/82.20>,WZ4<33.12/82.20>,=AA0O<27.83/81.63>,=AA5JF<33.42/83.88>,=AA5UN<27.83/81.63>, - =AA8R<27.83/81.63>,=AA9HQ<34.02/81.00>,=AC6WI<37.85/77.77>,=AC7GG<34.02/81.00>,=AC8Y<37.85/77.77>, - =AD8J<35.53/79.68>,=AF6G<35.53/79.68>,=AH6R<27.83/81.63>,=AI8F<33.42/83.88>,=AI8O<35.53/79.68>, - =G8ERJ<33.12/82.20>,=K0CIE<27.83/81.63>,=K0DSL<27.83/81.63>,=K0FE<34.02/81.00>,=K0HT<33.42/83.88>, - =K0LUZ<27.83/81.63>,=K0ZR<37.85/77.77>,=K5EK<35.53/79.68>,=K5JR<33.42/83.88>,=K5KG<27.83/81.63>, - =K5OF<35.53/79.68>,=K5TF<33.42/83.88>,=K5VG<37.85/77.77>,=K5VIP<37.85/77.77>,=K6ES<35.53/79.68>, - =K6RM<35.53/79.68>,=K7BV<35.53/79.68>,=K7GM<35.53/79.68>,=K7LU<37.85/77.77>,=K7OM<34.02/81.00>, - =K7SV<37.85/77.77>,=K7UPJ<27.83/81.63>,=K7UWR<33.42/83.88>,=K7WCH<34.02/81.00>,=K8AC<35.53/79.68>, + WY4<33.12/82.20>,WZ4<33.12/82.20>,=AA0O<27.83/81.63>,=AA5JF<33.42/83.88>,=AA5NT<27.83/81.63>, + =AA5UN<27.83/81.63>,=AA7JV<27.83/81.63>,=AA8R<27.83/81.63>,=AA9HQ<34.02/81.00>, + =AC6NN<37.85/77.77>,=AC6WI<37.85/77.77>,=AC7GG<34.02/81.00>,=AC8Y<37.85/77.77>,=AD8J<35.53/79.68>, + =AF6G<35.53/79.68>,=AG7AE<37.85/77.77>,=AG8GT<35.53/79.68>,=AH2EJ<37.85/77.77>, + =AH6FX<37.85/77.77>,=AH6R<27.83/81.63>,=AI8F<33.42/83.88>,=AI8O<35.53/79.68>,=AJ0IM<27.83/81.63>, + =G8ERJ<33.12/82.20>,=K0CIE<27.83/81.63>,=K0DVH<33.42/83.88>,=K0FE<34.02/81.00>,=K0HT<33.42/83.88>, + =K0LUZ<27.83/81.63>,=K0RK<27.83/81.63>,=K0ZR<37.85/77.77>,=K5AUP<27.83/81.63>,=K5EEE<27.83/81.63>, + =K5EK<35.53/79.68>,=K5JR<33.42/83.88>,=K5KG<27.83/81.63>,=K5MO<35.53/79.68>,=K5OF<35.53/79.68>, + =K5TF<33.42/83.88>,=K5VG<37.85/77.77>,=K5VIP<37.85/77.77>,=K6ES<35.53/79.68>,=K6RM<35.53/79.68>, + =K7BV<35.53/79.68>,=K7GM<35.53/79.68>,=K7LU<37.85/77.77>,=K7OM<34.02/81.00>,=K7SV<37.85/77.77>, + =K7UPJ<27.83/81.63>,=K7UWR<33.42/83.88>,=K7WCH<34.02/81.00>,=K8AC<35.53/79.68>, =K8ARY<34.02/81.00>,=K8FC<27.83/81.63>,=K8GP<37.85/77.77>,=K8LBQ<33.42/83.88>,=K8LF<37.85/77.77>, - =K8MV<27.83/81.63>,=K8NS<27.83/81.63>,=K8RAR<27.83/81.63>,=K8SYH<37.85/77.77>,=K8YC<35.53/79.68>, - =K8YFM<37.85/77.77>,=K9AXT<35.53/79.68>,=K9EZ<35.53/79.68>,=K9GS<27.83/81.63>,=K9GWS<34.02/81.00>, - =K9HXO<27.83/81.63>,=K9OM<27.83/81.63>,=K9RQ<27.83/81.63>,=KA8OAT<27.83/81.63>,=KA8P<34.02/81.00>, - =KA8Q<37.85/77.77>,=KC8GCR<35.53/79.68>,=KC8OPV<37.85/77.77>,=KD7ACB<27.83/81.63>, - =KF7RO<34.02/81.00>,=KF8N<37.85/77.77>,=KG9V<34.02/81.00>,=KH2D<27.83/81.63>,=KH2PM<35.53/79.68>, - =KH6CT<27.83/81.63>,=KH6M<27.83/81.63>,=KH7DA/4<33.12/82.20>,=KH7DM<35.53/79.68>, - =KH7FC<37.85/77.77>,=KH7RC<37.85/77.77>,=KK9A<35.53/79.68>,=KK9O<27.83/81.63>,=KL0SS<37.85/77.77>, - =KL4C<33.42/83.88>,=KM5AT<27.83/81.63>,=KN6BU<37.85/77.77>,=KO8V<37.85/77.77>,=KP2L<34.02/81.00>, - =KP3U<34.02/81.00>,=KP4Q<27.83/81.63>,=KS7X<27.83/81.63>,=KT6D<35.53/79.68>,=KU8E<33.42/83.88>, - =KZ5ED<35.53/79.68>,=N0FIR<37.85/77.77>,=N0MU<27.83/81.63>,=N0OJ<27.83/81.63>,=N0SMX<27.83/81.63>, - =N0VFJ<27.83/81.63>,=N5BO<27.83/81.63>,=N5GF<27.83/81.63>,=N5GI<34.02/81.00>,=N5SMQ<37.85/77.77>, + =K8MV<27.83/81.63>,=K8NS<27.83/81.63>,=K8RAR<27.83/81.63>,=K8SYH<37.85/77.77>,=K8UGG<33.42/83.88>, + =K8WWN<35.53/79.68>,=K8YC<35.53/79.68>,=K8YFM<37.85/77.77>,=K8YM<27.83/81.63>,=K9AXT<35.53/79.68>, + =K9EZ<35.53/79.68>,=K9GS<27.83/81.63>,=K9GWS<34.02/81.00>,=K9HXO<27.83/81.63>,=K9MBQ<37.85/77.77>, + =K9OQ<33.42/83.88>,=K9RQ<27.83/81.63>,=KA6U<27.83/81.63>,=KA8JIL<27.83/81.63>, + =KA8OAT<27.83/81.63>,=KA8P<34.02/81.00>,=KA8Q<37.85/77.77>,=KC5RFU<27.83/81.63>, + =KC8GCR<35.53/79.68>,=KC8OPV<37.85/77.77>,=KC8YRK<33.42/83.88>,=KD7ACB<27.83/81.63>, + =KD8TF<27.83/81.63>,=KD9MKR<34.02/81.00>,=KF7RO<34.02/81.00>,=KF8N<37.85/77.77>, + =KG9V<34.02/81.00>,=KH2D<27.83/81.63>,=KH2PM<35.53/79.68>,=KH6CT<27.83/81.63>,=KH6M<27.83/81.63>, + =KH7DA<27.83/81.63>,=KH7DA/4<33.12/82.20>,=KH7DM<35.53/79.68>,=KH7FC<37.85/77.77>, + =KH7RC<37.85/77.77>,=KK7BWQ<27.83/81.63>,=KK9A<35.53/79.68>,=KK9O<27.83/81.63>,=KL4C<33.42/83.88>, + =KL4J<27.83/81.63>,=KL7JR<34.02/81.00>,=KL7NL<35.53/79.68>,=KM5AT<27.83/81.63>, + =KM7AFF<35.53/79.68>,=KN0S<37.85/77.77>,=KN6BU<37.85/77.77>,=KN8F<34.02/81.00>,=KO8V<37.85/77.77>, + =KP2L<34.02/81.00>,=KP3U<34.02/81.00>,=KP4Q<27.83/81.63>,=KQ0J<27.83/81.63>,=KS7X<27.83/81.63>, + =KT6D<35.53/79.68>,=KU8E<33.42/83.88>,=KZ5ED<35.53/79.68>,=N0EUV<37.85/77.77>,=N0FIR<37.85/77.77>, + =N0MU<27.83/81.63>,=N0OJ<27.83/81.63>,=N0SMX<27.83/81.63>,=N0VFJ<27.83/81.63>,=N5BO<27.83/81.63>, + =N5CBP<27.83/81.63>,=N5GF<27.83/81.63>,=N5GI<34.02/81.00>,=N5HC<37.85/77.77>,=N5SMQ<37.85/77.77>, =N5TOO<33.42/83.88>,=N5VX<35.53/79.68>,=N6AQ<37.85/77.77>,=N6AR<27.83/81.63>,=N6DW<37.85/77.77>, - =N6NT<35.53/79.68>,=N6YMM<34.02/81.00>,=N7RCS<27.83/81.63>,=N8AID<37.85/77.77>,=N8CL<27.83/81.63>, - =N8CQD<35.53/79.68>,=N8GU<27.83/81.63>,=N8IK<37.85/77.77>,=N8KH<27.83/81.63>,=N8NN<27.83/81.63>, - =N8RW<27.83/81.63>,=N9EE<27.83/81.63>,=N9NB<37.85/77.77>,=N9PGG<35.53/79.68>,=NA9J<27.83/81.63>, - =ND8L<27.83/81.63>,=NE8P<27.83/81.63>,=NF6P<27.83/81.63>,=NI7R<34.02/81.00>,=NJ8J<33.42/83.88>, - =NK7U<27.83/81.63>,=NL7P<37.85/77.77>,=NL7WA<27.83/81.63>,=NN7CW<27.83/81.63>,=NN9DD<33.42/83.88>, - =NO9E<33.42/83.88>,=NP2D<27.83/81.63>,=NP2JV<27.83/81.63>,=NP3G<27.83/81.63>,=NP3K<27.83/81.63>, - =NP3ST<27.83/81.63>,=NP4CV<27.83/81.63>,=NT0K<35.53/79.68>,=NX9T<35.53/79.68>,=W0LL<27.83/81.63>, - =W0NA<37.85/77.77>,=W0PV<27.83/81.63>,=W5FB<37.85/77.77>,=W5TAF<37.85/77.77>,=W5VS<37.85/77.77>, - =W5XB<33.42/83.88>,=W6DVS<35.53/79.68>,=W6HGF<37.85/77.77>,=W6KW<33.42/83.88>,=W6NWS<35.53/79.68>, - =W7GKF<27.83/81.63>,=W7HJ<37.85/77.77>,=W7IMP<27.83/81.63>,=W7IY<37.85/77.77>,=W8BLA<33.42/83.88>, - =W8BRY<37.85/77.77>,=W8BT<37.85/77.77>,=W8EHH<27.83/81.63>,=W8FN<35.53/79.68>,=W8IX<27.83/81.63>, - =W8KRZ<37.85/77.77>,=W8WZ<35.53/79.68>,=W8XC<33.42/83.88>,=W8ZN<37.85/77.77>,=W9BS<27.83/81.63>, - =W9DC<34.02/81.00>,=W9GOL<27.83/81.63>,=W9MET<27.83/81.63>,=W9TCV<27.83/81.63>, - =WA0LJM<33.42/83.88>,=WA0YPC<27.83/81.63>,=WA8AHZ<37.85/77.77>,=WA8OJR<34.02/81.00>, - =WA8YVF<35.53/79.68>,=WB0POH<37.85/77.77>,=WB5NHL<34.02/81.00>,=WB5RYB<33.42/83.88>, - =WB7PMP<35.53/79.68>,=WB8CZH<27.83/81.63>,=WB8PAF<27.83/81.63>,=WC0W<27.83/81.63>, - =WD0ETG<37.85/77.77>,=WD0FYV<37.85/77.77>,=WD9GKG<27.83/81.63>,=WE8USN<37.85/77.77>, - =WF7I<37.85/77.77>,=WF8E<33.42/83.88>,=WF9A<33.42/83.88>,=WG8Y<35.53/79.68>,=WH6A<27.83/81.63>, - =WH6AQ<37.85/77.77>,=WH6LE<35.53/79.68>,=WN7S<37.85/77.77>,=WO8L<35.53/79.68>,=WP2C<27.83/81.63>, - =WP2J<27.83/81.63>,=WP3K<27.83/81.63>,=WP3ME<27.83/81.63>,=WP4BJS<34.02/81.00>,=WS6X<37.85/77.77>, - =WS7X<27.83/81.63>,=WX7MB<34.02/81.00>, + =N6NT<35.53/79.68>,=N6YMM<34.02/81.00>,=N7GFB<35.53/79.68>,=N7RCS<27.83/81.63>, + =N8AHH<27.83/81.63>,=N8AID<37.85/77.77>,=N8CL<27.83/81.63>,=N8CQD<35.53/79.68>,=N8GU<27.83/81.63>, + =N8IK<37.85/77.77>,=N8JAX<27.83/81.63>,=N8KH<27.83/81.63>,=N8NN<27.83/81.63>,=N8RW<27.83/81.63>, + =N9EE<27.83/81.63>,=N9KIY<34.02/81.00>,=N9MS<35.53/79.68>,=N9MTG<33.42/83.88>,=N9NB<37.85/77.77>, + =N9NFT<27.83/81.63>,=N9PGG<35.53/79.68>,=NA9J<27.83/81.63>,=NB5E<33.42/83.88>,=ND8L<27.83/81.63>, + =NE8P<27.83/81.63>,=NF6P<27.83/81.63>,=NI7R<34.02/81.00>,=NJ8J<33.42/83.88>,=NK7U<27.83/81.63>, + =NL7P<37.85/77.77>,=NL7WA<27.83/81.63>,=NN7CW<27.83/81.63>,=NN9DD<33.42/83.88>,=NO9E<33.42/83.88>, + =NP2D<27.83/81.63>,=NP3G<27.83/81.63>,=NP3K<27.83/81.63>,=NP3ST<27.83/81.63>,=NP4M<27.83/81.63>, + =NP4TR<27.83/81.63>,=NT0K<35.53/79.68>,=NX9T<35.53/79.68>,=NY5E<27.83/81.63>,=NY9G<27.83/81.63>, + =W0LL<27.83/81.63>,=W0NA<37.85/77.77>,=W0PV<27.83/81.63>,=W5FB<37.85/77.77>,=W5RE<27.83/81.63>, + =W5TAF<37.85/77.77>,=W5VS<37.85/77.77>,=W5XB<33.42/83.88>,=W5ZC<27.83/81.63>,=W6DVS<35.53/79.68>, + =W6HGF<37.85/77.77>,=W6KW<33.42/83.88>,=W6NWS<35.53/79.68>,=W6RIF<37.85/77.77>, + =W6SFG<37.85/77.77>,=W6ZD<27.83/81.63>,=W7CSA<35.53/79.68>,=W7GKF<27.83/81.63>,=W7HJ<37.85/77.77>, + =W7IMP<27.83/81.63>,=W7IY<37.85/77.77>,=W7MAE<27.83/81.63>,=W8BLA<33.42/83.88>, + =W8BRY<37.85/77.77>,=W8BT<37.85/77.77>,=W8DDS<37.85/77.77>,=W8FN<35.53/79.68>,=W8IX<27.83/81.63>, + =W8KRZ<37.85/77.77>,=W8MOX<37.85/77.77>,=W8XC<33.42/83.88>,=W8ZN<37.85/77.77>,=W9BS<27.83/81.63>, + =W9DC<34.02/81.00>,=W9GNW<37.85/77.77>,=W9GOL<27.83/81.63>,=W9MET<27.83/81.63>, + =W9TCV<27.83/81.63>,=WA0LJM<33.42/83.88>,=WA0WHT<37.85/77.77>,=WA0YPC<27.83/81.63>, + =WA8AHZ<37.85/77.77>,=WA8NLX<34.02/81.00>,=WA8OJR<34.02/81.00>,=WA8YVF<35.53/79.68>, + =WA9TTC<37.85/77.77>,=WB0POH<37.85/77.77>,=WB5EVF<35.53/79.68>,=WB5NHL<34.02/81.00>, + =WB5RYB<33.42/83.88>,=WB7PMP<35.53/79.68>,=WB8CZH<27.83/81.63>,=WB8PAF<27.83/81.63>, + =WB8PKK<27.83/81.63>,=WC0W<27.83/81.63>,=WD0ETG<37.85/77.77>,=WD0FYV<37.85/77.77>, + =WD9GKG<27.83/81.63>,=WD9GMK<35.53/79.68>,=WE8R<27.83/81.63>,=WE8USN<37.85/77.77>, + =WF7I<37.85/77.77>,=WF8D<27.83/81.63>,=WF8E<33.42/83.88>,=WF9A<33.42/83.88>,=WG8Y<35.53/79.68>, + =WH6A<27.83/81.63>,=WH6AQ<37.85/77.77>,=WH6LE<35.53/79.68>,=WN7S<37.85/77.77>,=WO8L<35.53/79.68>, + =WP2C<27.83/81.63>,=WP2J<27.83/81.63>,=WP3K<27.83/81.63>,=WP3ME<27.83/81.63>,=WP4BJS<34.02/81.00>, + =WQ0RVO<27.83/81.63>,=WS6X<37.85/77.77>,=WS7X<27.83/81.63>,=WU5E<33.42/83.88>,=WX7MB<34.02/81.00>, # AR-LA-MS-NM-OK-TX AA5(4)[7]<31.85/96.30>~6.0~,AB5(4)[7]<31.85/96.30>~6.0~,AC5(4)[7]<31.85/96.30>~6.0~, AD5(4)[7]<31.85/96.30>~6.0~,AE5(4)[7]<31.85/96.30>~6.0~,AF5(4)[7]<31.85/96.30>~6.0~, @@ -2910,50 +2959,68 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WQ5(4)[7]<31.85/96.30>~6.0~,WR5(4)[7]<31.85/96.30>~6.0~,WS5(4)[7]<31.85/96.30>~6.0~, WT5(4)[7]<31.85/96.30>~6.0~,WU5(4)[7]<31.85/96.30>~6.0~,WV5(4)[7]<31.85/96.30>~6.0~, WW5(4)[7]<31.85/96.30>~6.0~,WX5(4)[7]<31.85/96.30>~6.0~,WY5(4)[7]<31.85/96.30>~6.0~, - WZ5(4)[7]<31.85/96.30>~6.0~,=AA3C(4)[7]<30.92/97.33>~6.0~,=AB5OR(4)[8]<32.58/89.57>~6.0~, - =AB8YZ(4)[7]<30.92/97.33>~6.0~,=AC4CA(4)[7]<30.92/97.33>~6.0~,=AC4CH(4)[7]<35.60/96.85>~6.0~, - =AC7P(4)[7]<30.92/97.33>~6.0~,=AE5MI(4)[8]<32.58/89.57>~6.0~,=AG5Z(4)[8]<32.58/89.57>~6.0~, - =AH6SU(4)[8]<32.58/89.57>~6.0~,=AI5HG(4)[8]<32.58/89.57>~6.0~,=AJ4F(4)[7]<30.92/97.33>~6.0~, - =AK5CT(4)[8]<32.58/89.57>~6.0~,=AK9B(4)[7]<30.92/97.33>~6.0~,=AL5M(4)[7]<30.92/97.33>~6.0~, - =AL5P(4)[7]<30.92/97.33>~6.0~,=AL7V(4)[7]<35.60/96.85>~6.0~,=K1DW(4)[7]<30.92/97.33>~6.0~, - =K1IEB(4)[7]<30.92/97.33>~6.0~,=K1JD(4)[7]<34.60/106.33>~6.0~,=K3KEK(4)[7]<30.92/97.33>~6.0~, - =K3NT(4)[7]<30.92/97.33>~6.0~,=K4DG(4)[7]<30.92/97.33>~6.0~,=K5OLV(4)[8]<32.58/89.57>~6.0~, - =K5PN(4)[8]<32.58/89.57>~6.0~,=K5TRP(4)[8]<32.58/89.57>~6.0~,=K5UF(4)[8]<32.58/89.57>~6.0~, - =K5WK(4)[8]<32.58/89.57>~6.0~,=K5YVY(4)[8]<32.58/89.57>~6.0~,=K6FX(4)[7]<30.92/97.33>~6.0~, - =K6RCW(4)[7]<30.92/97.33>~6.0~,=K6ZB(4)[7]<30.92/97.33>~6.0~,=K7DWI(4)[7]<30.92/97.33>~6.0~, - =K7IA(4)[7]<34.60/106.33>~6.0~,=K7RB(4)[7]<30.92/97.33>~6.0~,=K7UD(4)[7]<30.92/97.33>~6.0~, - =K7VF(4)[7]<30.92/97.33>~6.0~,=K7ZYV(4)[8]<32.58/89.57>~6.0~,=K8LS(4)[7]<30.92/97.33>~6.0~, - =K8OZ(4)[7]<34.60/106.33>~6.0~,=K8TE(4)[7]<34.60/106.33>~6.0~,=K9OZ(4)[7]<35.20/92.72>~6.0~, - =KA4OTB(4)[7]<35.20/92.72>~6.0~,=KB1IKC(4)[7]<34.60/106.33>~6.0~,=KC2LM(4)[7]<34.60/106.33>~6.0~, + WZ5(4)[7]<31.85/96.30>~6.0~,=AA3C(4)[7]<30.92/97.33>~6.0~,=AA4TO(4)[7]<30.92/97.33>~6.0~, + =AA5UZ(4)[8]<30.70/91.47>~6.0~,=AB1BN(4)[7]<30.92/97.33>~6.0~,=AB8YZ(4)[7]<30.92/97.33>~6.0~, + =AC4CA(4)[7]<30.92/97.33>~6.0~,=AC4CH(4)[7]<35.60/96.85>~6.0~,=AC7P(4)[7]<30.92/97.33>~6.0~, + =AE5MI(4)[8]<32.58/89.57>~6.0~,=AG5Z(4)[8]<32.58/89.57>~6.0~,=AH6SU(4)[8]<32.58/89.57>~6.0~, + =AI5HG(4)[8]<32.58/89.57>~6.0~,=AJ4F(4)[7]<30.92/97.33>~6.0~,=AK5CT(4)[8]<32.58/89.57>~6.0~, + =AK9B(4)[7]<30.92/97.33>~6.0~,=AL5M(4)[7]<30.92/97.33>~6.0~,=AL5P(4)[7]<30.92/97.33>~6.0~, + =AL7V(4)[7]<35.60/96.85>~6.0~,=K1DW(4)[7]<30.92/97.33>~6.0~,=K1IEB(4)[7]<30.92/97.33>~6.0~, + =K1JD(4)[7]<34.60/106.33>~6.0~,=K1LEC(4)[7]<35.20/92.72>~6.0~,=K2SHN(4)[7]<35.20/92.72>~6.0~, + =K2ZP(4)[7]<30.70/91.47>~6.0~,=K3IGA(4)[7]<30.92/97.33>~6.0~,=K3KEK(4)[7]<30.92/97.33>~6.0~, + =K3NT(4)[7]<30.92/97.33>~6.0~,=K4DG(4)[7]<30.92/97.33>~6.0~,=K4FMH(4)[7]<32.58/89.57>~6.0~, + =K5FZ(4)[8]<32.58/89.57>~6.0~,=K5IJ(4)[8]<32.58/89.57>~6.0~,=K5OLV(4)[8]<32.58/89.57>~6.0~, + =K5PN(4)[8]<32.58/89.57>~6.0~,=K5UF(4)[8]<32.58/89.57>~6.0~,=K5WK(4)[8]<32.58/89.57>~6.0~, + =K5YVY(4)[8]<32.58/89.57>~6.0~,=K6FX(4)[7]<30.92/97.33>~6.0~,=K6RCW(4)[7]<30.92/97.33>~6.0~, + =K6ZB(4)[7]<30.92/97.33>~6.0~,=K7DWI(4)[7]<30.92/97.33>~6.0~,=K7IA(4)[7]<34.60/106.33>~6.0~, + =K7IOL(4)[7]<30.92/97.33>~6.0~,=K7MOA(4)[7]<30.92/97.33>~6.0~,=K7RB(4)[7]<30.92/97.33>~6.0~, + =K7UD(4)[7]<30.92/97.33>~6.0~,=K7VF(4)[7]<30.92/97.33>~6.0~,=K7ZYV(4)[8]<32.58/89.57>~6.0~, + =K8OZ(4)[7]<34.60/106.33>~6.0~,=K8TE(4)[7]<34.60/106.33>~6.0~,=K9ING(4)[7]<30.92/97.33>~6.0~, + =K9MK(4)[7]<30.92/97.33>~6.0~,=K9OZ(4)[7]<35.20/92.72>~6.0~,=KA4OTB(4)[7]<35.20/92.72>~6.0~, + =KB1IKC(4)[7]<34.60/106.33>~6.0~,=KB6OJE(4)[7]<30.92/97.33>~6.0~,=KC2LM(4)[7]<34.60/106.33>~6.0~, =KC6UCN(4)[7]<30.92/97.33>~6.0~,=KC6ZBE(4)[7]<30.92/97.33>~6.0~,=KC7QY(4)[7]<34.60/106.33>~6.0~, - =KD2KW(4)[7]<30.92/97.33>~6.0~,=KD5DD(4)[8]<32.58/89.57>~6.0~,=KE4XT(4)[7]<30.92/97.33>~6.0~, - =KE5MIS(4)[8]<32.58/89.57>~6.0~,=KF6JOQ(4)[7]<35.60/96.85>~6.0~,=KF9LI(4)[7]<30.92/97.33>~6.0~, - =KH9AE(4)[7]<30.92/97.33>~6.0~,=KI5UTQ(4)[8]<32.58/89.57>~6.0~,=KI6HQT(4)[7]<30.92/97.33>~6.0~, - =KI7ID(4)[7]<30.92/97.33>~6.0~,=KJ6DQ(4)[7]<30.92/97.33>~6.0~,=KK6MC(4)[7]<34.60/106.33>~6.0~, - =KM4DR(4)[7]<30.92/97.33>~6.0~,=KV8S(4)[7]<30.70/91.47>~6.0~,=N2GG(4)[7]<34.60/106.33>~6.0~, - =N2IC(4)[7]<34.60/106.33>~6.0~,=N3BB(4)[7]<30.92/97.33>~6.0~,=N3BUO(4)[7]<30.92/97.33>~6.0~, - =N3CI(4)[7]<35.60/96.85>~6.0~,=N3DI(4)[8]<30.70/91.47>~6.0~,=N3MRA(4)[7]<34.60/106.33>~6.0~, - =N4OGW(4)[8]<32.58/89.57>~6.0~,=N4UPX(4)[8]<32.58/89.57>~6.0~,=N5CW(4)[8]<32.58/89.57>~6.0~, - =N5GD(4)[8]<32.58/89.57>~6.0~,=N5YT(4)[8]<32.58/89.57>~6.0~,=N6GR(4)[7]<34.60/106.33>~6.0~, - =N6RH(4)[7]<30.92/97.33>~6.0~,=N6ZZ(4)[7]<34.60/106.33>~6.0~,=N7KA(4)[7]<34.60/106.33>~6.0~, - =N8OO(4)[7]<30.70/91.47>~6.0~,=N9EXU(4)[7]<30.92/97.33>~6.0~,=N9JYJ(4)[7]<35.60/96.85>~6.0~, + =KD2KW(4)[7]<30.92/97.33>~6.0~,=KD5DD(4)[8]<32.58/89.57>~6.0~,=KD5EJG(4)[8]<32.58/89.57>~6.0~, + =KE4XT(4)[7]<30.92/97.33>~6.0~,=KE5MIS(4)[8]<32.58/89.57>~6.0~,=KF6JOQ(4)[7]<35.60/96.85>~6.0~, + =KF9LI(4)[7]<30.92/97.33>~6.0~,=KG5SSB(4)[8]<32.58/89.57>~6.0~,=KG5UN(4)[8]<32.58/89.57>~6.0~, + =KG5XR(4)[8]<32.58/89.57>~6.0~,=KH9AE(4)[7]<30.92/97.33>~6.0~,=KI5UTQ(4)[8]<32.58/89.57>~6.0~, + =KI5UXN(4)[8]<32.58/89.57>~6.0~,=KI6HQT(4)[7]<30.92/97.33>~6.0~,=KI7ID(4)[7]<30.92/97.33>~6.0~, + =KJ6DQ(4)[7]<30.92/97.33>~6.0~,=KK5OQ(4)[8]<32.58/89.57>~6.0~,=KK6MC(4)[7]<34.60/106.33>~6.0~, + =KL4LJ(4)[7]<30.92/97.33>~6.0~,=KL7U(4)[7]<30.92/97.33>~6.0~,=KM0I(4)[8]<32.58/89.57>~6.0~, + =KM4DR(4)[7]<30.92/97.33>~6.0~,=KS4XU(4)[7]<30.92/97.33>~6.0~,=KV8S(4)[7]<30.70/91.47>~6.0~, + =N1IPB(4)[7]<30.92/97.33>~6.0~,=N2GG(4)[7]<34.60/106.33>~6.0~,=N2IC(4)[7]<34.60/106.33>~6.0~, + =N3BB(4)[7]<30.92/97.33>~6.0~,=N3BUO(4)[7]<30.92/97.33>~6.0~,=N3CI(4)[7]<35.60/96.85>~6.0~, + =N3DI(4)[8]<30.70/91.47>~6.0~,=N3MRA(4)[7]<34.60/106.33>~6.0~,=N4LR(4)[8]<32.58/89.57>~6.0~, + =N4OGW(4)[8]<32.58/89.57>~6.0~,=N4UPX(4)[8]<32.58/89.57>~6.0~,=N5BLY(4)[8]<32.58/89.57>~6.0~, + =N5CW(4)[8]<32.58/89.57>~6.0~,=N5FTY(4)[8]<32.58/89.57>~6.0~,=N5GD(4)[8]<32.58/89.57>~6.0~, + =N5KSS(4)[8]<32.58/89.57>~6.0~,=N5MIS(4)[8]<32.58/89.57>~6.0~,=N5PA(4)[8]<32.58/89.57>~6.0~, + =N5PU(4)[8]<32.58/89.57>~6.0~,=N5SA(4)[8]<32.58/89.57>~6.0~,=N5YT(4)[8]<32.58/89.57>~6.0~, + =N6EB(4)[7]<35.60/96.85>~6.0~,=N6EV(4)[7]<30.92/97.33>~6.0~,=N6GR(4)[7]<34.60/106.33>~6.0~, + =N6HEW(4)[7]<34.60/106.33>~6.0~,=N6RH(4)[7]<30.92/97.33>~6.0~,=N6ZZ(4)[7]<34.60/106.33>~6.0~, + =N7KA(4)[7]<34.60/106.33>~6.0~,=N8OO(4)[7]<30.70/91.47>~6.0~,=N9JYJ(4)[7]<35.60/96.85>~6.0~, =N9NM(4)[7]<30.92/97.33>~6.0~,=N9OF(4)[7]<30.92/97.33>~6.0~,=NA5DX(4)[8]<32.58/89.57>~6.0~, - =NA5NN(4)[8]<32.58/89.57>~6.0~,=NH6L(4)[7]<30.92/97.33>~6.0~,=NH6PK(4)[8]<30.70/91.47>~6.0~, + =NA5NN(4)[8]<32.58/89.57>~6.0~,=NF8H(4)[7]<35.20/92.72>~6.0~,=NG5U(4)[8]<32.58/89.57>~6.0~, + =NH6L(4)[7]<30.92/97.33>~6.0~,=NH6PK(4)[8]<30.70/91.47>~6.0~,=NH6SM(4)[7]<35.60/96.85>~6.0~, =NH7TR(4)[7]<30.92/97.33>~6.0~,=NI2M(4)[7]<30.92/97.33>~6.0~,=NL7RQ(4)[7]<35.20/92.72>~6.0~, - =NN5O(4)[8]<32.58/89.57>~6.0~,=NZ7Q(4)[7]<34.60/106.33>~6.0~,=W1JCW(4)[7]<30.92/97.33>~6.0~, - =W2ACY(4)[7]<30.92/97.33>~6.0~,=W2GS(4)[7]<32.58/89.57>~6.0~,=W2IY(4)[7]<34.60/106.33>~6.0~, - =W2KF(4)[7]<30.92/97.33>~6.0~,=W2MN(4)[7]<30.92/97.33>~6.0~,=W2ODH(4)[7]<30.92/97.33>~6.0~, - =W3PWF(4)[7]<30.92/97.33>~6.0~,=W3RZ(4)[7]<30.92/97.33>~6.0~,=W3XO(4)[7]<30.92/97.33>~6.0~, - =W4IPA(4)[7]<30.92/97.33>~6.0~,=W5ORC(4)[8]<32.58/89.57>~6.0~,=W5WGF(4)[8]<32.58/89.57>~6.0~, + =NN5O(4)[8]<32.58/89.57>~6.0~,=NO3OO(4)[7]<30.70/91.47>~6.0~,=NZ7Q(4)[7]<34.60/106.33>~6.0~, + =W1JCW(4)[7]<30.92/97.33>~6.0~,=W2ACY(4)[7]<30.92/97.33>~6.0~,=W2GS(4)[7]<32.58/89.57>~6.0~, + =W2IY(4)[7]<34.60/106.33>~6.0~,=W2KF(4)[7]<30.92/97.33>~6.0~,=W2MN(4)[7]<30.92/97.33>~6.0~, + =W2ODH(4)[7]<30.92/97.33>~6.0~,=W2OZB(4)[7]<30.92/97.33>~6.0~,=W3PWF(4)[7]<30.92/97.33>~6.0~, + =W3RZ(4)[7]<30.92/97.33>~6.0~,=W3XO(4)[7]<30.92/97.33>~6.0~,=W4IPA(4)[7]<30.92/97.33>~6.0~, + =W5BLX(4)[8]<32.58/89.57>~6.0~,=W5EPL(4)[8]<32.58/89.57>~6.0~,=W5GAI(4)[8]<32.58/89.57>~6.0~, + =W5ORC(4)[8]<32.58/89.57>~6.0~,=W5RCG(4)[8]<32.58/89.57>~6.0~,=W5SGL(4)[8]<32.58/89.57>~6.0~, + =W5THT(4)[8]<32.58/89.57>~6.0~,=W5UMS(4)[8]<32.58/89.57>~6.0~,=W5WGF(4)[8]<32.58/89.57>~6.0~, =W5YD(4)[8]<32.58/89.57>~6.0~,=W6FB(4)[7]<30.70/91.47>~6.0~,=W6LFB(4)[7]<30.92/97.33>~6.0~, - =W8OV(4)[7]<30.92/97.33>~6.0~,=W9DCT(4)[7]<35.20/92.72>~6.0~,=W9JEF(4)[7]<35.20/92.72>~6.0~, + =W7JKC(4)[7]<30.92/97.33>~6.0~,=W7NX(4)[7]<30.92/97.33>~6.0~,=W8OV(4)[7]<30.92/97.33>~6.0~, + =W8WZ(4)[7]<30.70/91.47>~6.0~,=W9DCT(4)[7]<35.20/92.72>~6.0~,=W9DXM(4)[7]<30.92/97.33>~6.0~, =W9LCQ(4)[7]<30.92/97.33>~6.0~,=W9MC(4)[7]<30.92/97.33>~6.0~,=WA2TOP(4)[7]<30.92/97.33>~6.0~, - =WA2VYA(4)[7]<30.92/97.33>~6.0~,=WA8ZBT(4)[7]<30.92/97.33>~6.0~,=WA9AFM(4)[7]<35.60/96.85>~6.0~, - =WA9JBR(4)[7]<30.70/91.47>~6.0~,=WD5CCA(4)[8]<32.58/89.57>~6.0~,=WE6EZ(4)[7]<30.92/97.33>~6.0~, - =WF3H(4)[7]<30.92/97.33>~6.0~,=WH7R(4)[7]<30.92/97.33>~6.0~,=WL7OU(4)[7]<30.92/97.33>~6.0~, - =WM5A(4)[8]<32.58/89.57>~6.0~,=WM5DX(4)[8]<32.58/89.57>~6.0~,=WP4ADA(4)[7]<30.92/97.33>~6.0~, - =WQ5L(4)[8]<32.58/89.57>~6.0~,=WT4DX(4)[7]<30.92/97.33>~6.0~,=WX7V(4)[7]<30.92/97.33>~6.0~, - =WY6K(4)[7]<30.92/97.33>~6.0~, + =WA2VYA(4)[7]<30.92/97.33>~6.0~,=WA3NZA(4)[7]<30.92/97.33>~6.0~,=WA8ZBT(4)[7]<30.92/97.33>~6.0~, + =WA9AFM(4)[7]<35.60/96.85>~6.0~,=WA9JBR(4)[7]<30.70/91.47>~6.0~,=WB4KTF(4)[7]<30.92/97.33>~6.0~, + =WB5SKM(4)[8]<32.58/89.57>~6.0~,=WB8QZM(4)[7]<30.92/97.33>~6.0~,=WD5CCA(4)[8]<32.58/89.57>~6.0~, + =WD9FJL(4)[7]<34.60/106.33>~6.0~,=WE6EZ(4)[7]<30.92/97.33>~6.0~,=WF3H(4)[7]<30.92/97.33>~6.0~, + =WH7R(4)[7]<30.92/97.33>~6.0~,=WJ5K(4)[8]<32.58/89.57>~6.0~,=WL7OU(4)[7]<30.92/97.33>~6.0~, + =WM5A(4)[8]<32.58/89.57>~6.0~,=WM5DX(4)[8]<32.58/89.57>~6.0~,=WN2E(4)[8]<32.58/89.57>~6.0~, + =WQ5L(4)[8]<32.58/89.57>~6.0~,=WT4DX(4)[7]<30.92/97.33>~6.0~,=WW2OK(4)[7]<35.60/96.85>~6.0~, + =WX7V(4)[7]<30.92/97.33>~6.0~,=WY6K(4)[7]<30.92/97.33>~6.0~, # California AA6(3)[6]<35.48/119.35>~8.0~,AB6(3)[6]<35.48/119.35>~8.0~,AC6(3)[6]<35.48/119.35>~8.0~, AD6(3)[6]<35.48/119.35>~8.0~,AE6(3)[6]<35.48/119.35>~8.0~,AF6(3)[6]<35.48/119.35>~8.0~, @@ -2983,27 +3050,32 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WT6(3)[6]<35.48/119.35>~8.0~,WU6(3)[6]<35.48/119.35>~8.0~,WV6(3)[6]<35.48/119.35>~8.0~, WW6(3)[6]<35.48/119.35>~8.0~,WX6(3)[6]<35.48/119.35>~8.0~,WY6(3)[6]<35.48/119.35>~8.0~, WZ6(3)[6]<35.48/119.35>~8.0~,=AA2IL(3)[6]<35.48/119.35>~8.0~,=AA5ND(3)[6]<35.48/119.35>~8.0~, - =AB1U(3)[6]<35.48/119.35>~8.0~,=AG1RL(3)[6]<35.48/119.35>~8.0~,=AH0U(3)[6]<35.48/119.35>~8.0~, - =K0AU(3)[6]<35.48/119.35>~8.0~,=K0DTJ(3)[6]<35.48/119.35>~8.0~,=K0NW(3)[6]<35.48/119.35>~8.0~, - =K0XP(3)[6]<35.48/119.35>~8.0~,=K2GMY(3)[6]<35.48/119.35>~8.0~,=K2RP(3)[6]<35.48/119.35>~8.0~, - =K3EST(3)[6]<35.48/119.35>~8.0~,=K3GX(3)[6]<35.48/119.35>~8.0~,=K5KMB(3)[6]<35.48/119.35>~8.0~, - =K5OA(3)[6]<35.48/119.35>~8.0~,=K8TR(3)[6]<35.48/119.35>~8.0~,=K9JM(3)[6]<35.48/119.35>~8.0~, + =AB1U(3)[6]<35.48/119.35>~8.0~,=AD0L(3)[6]<35.48/119.35>~8.0~,=AG1RL(3)[6]<35.48/119.35>~8.0~, + =AH0U(3)[6]<35.48/119.35>~8.0~,=AJ0SE(3)[6]<35.48/119.35>~8.0~,=K0AU(3)[6]<35.48/119.35>~8.0~, + =K0DTJ(3)[6]<35.48/119.35>~8.0~,=K0NW(3)[6]<35.48/119.35>~8.0~,=K0XP(3)[6]<35.48/119.35>~8.0~, + =K2GMY(3)[6]<35.48/119.35>~8.0~,=K2RP(3)[6]<35.48/119.35>~8.0~,=K3EST(3)[6]<35.48/119.35>~8.0~, + =K3GX(3)[6]<35.48/119.35>~8.0~,=K5KMB(3)[6]<35.48/119.35>~8.0~,=K5OA(3)[6]<35.48/119.35>~8.0~, + =K5RR(3)[6]<35.48/119.35>~8.0~,=K8TR(3)[6]<35.48/119.35>~8.0~,=K9JM(3)[6]<35.48/119.35>~8.0~, =K9TAD(3)[6]<35.48/119.35>~8.0~,=K9YC(3)[6]<35.48/119.35>~8.0~,=KA5WSS(3)[6]<35.48/119.35>~8.0~, - =KA9A(3)[6]<35.48/119.35>~8.0~,=KB9ENS(3)[6]<35.48/119.35>~8.0~,=KC8J(3)[6]<35.48/119.35>~8.0~, - =KE1B(3)[6]<35.48/119.35>~8.0~,=KE5AX(3)[6]<35.48/119.35>~8.0~,=KE8FT(3)[6]<35.48/119.35>~8.0~, - =KE8NN(3)[6]<35.48/119.35>~8.0~,=KH2BD(3)[6]<35.48/119.35>~8.0~,=KH2BR(3)[6]<35.48/119.35>~8.0~, - =KH2SR(3)[6]<35.48/119.35>~8.0~,=KH2TJ(3)[6]<35.48/119.35>~8.0~,=KH6GK(3)[6]<35.48/119.35>~8.0~, - =KH6JRC(3)[6]<35.48/119.35>~8.0~,=KL7AN(3)[6]<35.48/119.35>~8.0~,=KL7DJ(3)[6]<35.48/119.35>~8.0~, - =KL7HQR(3)[6]<35.48/119.35>~8.0~,=KT5LA(3)[6]<35.48/119.35>~8.0~,=KY0W(3)[6]<35.48/119.35>~8.0~, + =KA9A(3)[6]<35.48/119.35>~8.0~,=KA9FRH(3)[6]<35.48/119.35>~8.0~,=KB5ZYC(3)[6]<35.48/119.35>~8.0~, + =KB9ENS(3)[6]<35.48/119.35>~8.0~,=KC8J(3)[6]<35.48/119.35>~8.0~,=KE1B(3)[6]<35.48/119.35>~8.0~, + =KE5AX(3)[6]<35.48/119.35>~8.0~,=KE8FT(3)[6]<35.48/119.35>~8.0~,=KE8NN(3)[6]<35.48/119.35>~8.0~, + =KH2BD(3)[6]<35.48/119.35>~8.0~,=KH2BR(3)[6]<35.48/119.35>~8.0~,=KH2SR(3)[6]<35.48/119.35>~8.0~, + =KH2TJ(3)[6]<35.48/119.35>~8.0~,=KH6GK(3)[6]<35.48/119.35>~8.0~,=KH6JRC(3)[6]<35.48/119.35>~8.0~, + =KL7AN(3)[6]<35.48/119.35>~8.0~,=KL7DJ(3)[6]<35.48/119.35>~8.0~,=KL7HQR(3)[6]<35.48/119.35>~8.0~, + =KT5LA(3)[6]<35.48/119.35>~8.0~,=KY0W(3)[6]<35.48/119.35>~8.0~,=KZ2V(3)[6]<35.48/119.35>~8.0~, + =N0RR(3)[6]<35.48/119.35>~8.0~,=N3BEN(3)[6]<35.48/119.35>~8.0~,=N3DEB(3)[6]<35.48/119.35>~8.0~, =N3KA(3)[6]<35.48/119.35>~8.0~,=N3RC(3)[6]<35.48/119.35>~8.0~,=N3ZZ(3)[6]<35.48/119.35>~8.0~, =N4DLA(3)[6]<35.48/119.35>~8.0~,=N5KO(3)[6]<35.48/119.35>~8.0~,=N5ZO(3)[6]<35.48/119.35>~8.0~, - =N9BD(3)[6]<35.48/119.35>~8.0~,=ND2T(3)[6]<35.48/119.35>~8.0~,=NH6G(3)[6]<35.48/119.35>~8.0~, + =N8JOE(3)[6]<35.48/119.35>~8.0~,=N9BD(3)[6]<35.48/119.35>~8.0~,=ND2T(3)[6]<35.48/119.35>~8.0~, =NK3L(3)[6]<35.48/119.35>~8.0~,=NR1K(3)[6]<35.48/119.35>~8.0~,=NR5NN(3)[6]<35.48/119.35>~8.0~, - =NT5A(3)[6]<35.48/119.35>~8.0~,=W0PE(3)[6]<35.48/119.35>~8.0~,=W0YK(3)[6]<35.48/119.35>~8.0~, - =W1MVY(3)[6]<35.48/119.35>~8.0~,=W1PR(3)[6]<35.48/119.35>~8.0~,=W1RH(3)[6]<35.48/119.35>~8.0~, - =W1SAV(3)[6]<35.48/119.35>~8.0~,=W1SRD(3)[6]<35.48/119.35>~8.0~,=W3FF(3)[6]<35.48/119.35>~8.0~, - =W4EF(3)[6]<35.48/119.35>~8.0~,=W4NJK(3)[6]<35.48/119.35>~8.0~,=W4UAT(3)[6]<35.48/119.35>~8.0~, - =W8GJK(3)[6]<35.48/119.35>~8.0~,=W9KKN(3)[6]<35.48/119.35>~8.0~,=W9MAK(3)[6]<35.48/119.35>~8.0~, + =NT5A(3)[6]<35.48/119.35>~8.0~,=W0PE(3)[6]<35.48/119.35>~8.0~,=W0PZ(3)[6]<35.48/119.35>~8.0~, + =W0YK(3)[6]<35.48/119.35>~8.0~,=W1MVY(3)[6]<35.48/119.35>~8.0~,=W1PR(3)[6]<35.48/119.35>~8.0~, + =W1RH(3)[6]<35.48/119.35>~8.0~,=W1SAV(3)[6]<35.48/119.35>~8.0~,=W1SRD(3)[6]<35.48/119.35>~8.0~, + =W3FF(3)[6]<35.48/119.35>~8.0~,=W3WRC(3)[6]<35.48/119.35>~8.0~,=W4EF(3)[6]<35.48/119.35>~8.0~, + =W4NJK(3)[6]<35.48/119.35>~8.0~,=W4UAT(3)[6]<35.48/119.35>~8.0~,=W5ABQ(3)[6]<35.48/119.35>~8.0~, + =W8EWL(3)[6]<35.48/119.35>~8.0~,=W8GJK(3)[6]<35.48/119.35>~8.0~,=W8SA(3)[6]<35.48/119.35>~8.0~, + =W9JXT(3)[6]<35.48/119.35>~8.0~,=W9MAK(3)[6]<35.48/119.35>~8.0~,=WA9JIB(3)[6]<35.48/119.35>~8.0~, =WB8YQJ(3)[6]<35.48/119.35>~8.0~,=WC2A(3)[6]<35.48/119.35>~8.0~,=WX5S(3)[6]<35.48/119.35>~8.0~, # AZ-ID-MT-NV-OR-UT-WA-WY AA7(3)[6]<41.30/116.60>~7.0~,AB7(3)[6]<41.30/116.60>~7.0~,AC7(3)[6]<41.30/116.60>~7.0~, @@ -3033,45 +3105,63 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WQ7(3)[6]<41.30/116.60>~7.0~,WR7(3)[6]<41.30/116.60>~7.0~,WS7(3)[6]<41.30/116.60>~7.0~, WT7(3)[6]<41.30/116.60>~7.0~,WU7(3)[6]<41.30/116.60>~7.0~,WV7(3)[6]<41.30/116.60>~7.0~, WW7(3)[6]<41.30/116.60>~7.0~,WX7(3)[6]<41.30/116.60>~7.0~,WY7(3)[6]<41.30/116.60>~7.0~, - WZ7(3)[6]<41.30/116.60>~7.0~,=AA0Y(3)[6]<33.37/111.88>~7.0~,=AA5TL(3)[6]<44.75/122.58>~7.0~, - =AB9BH(3)[6]<47.33/121.63>~7.0~,=AG2TH(3)[6]<33.37/111.88>~7.0~,=AH6EZ(3)[6]<47.33/121.63>~7.0~, - =AH6JS(3)[6]<44.22/115.22>~7.0~,=AH6LE(3)[6]<44.75/122.58>~7.0~,=AH6P(3)[6]<37.02/116.17>~7.0~, - =AI1K(3)[6]<33.37/111.88>~7.0~,=AL1VE(3)[6]<47.33/121.63>~7.0~,=AL7BX(3)[6]<40.38/111.95>~7.0~, - =AL7CR(3)[6]<44.75/122.58>~7.0~,=AL7LI(3)[6]<33.37/111.88>~7.0~,=AL7RF(3)[6]<37.02/116.17>~7.0~, - =K0IP(3)[6]<44.22/115.22>~7.0~,=K0MP(3)[6]<33.37/111.88>~7.0~,=K0NG(3)[6]<47.33/121.63>~7.0~, - =K2AK(3)[6]<33.37/111.88>~7.0~,=K2PO(3)[6]<44.75/122.58>~7.0~,=K2RD(3)[6]<37.02/116.17>~7.0~, - =K4XU(3)[6]<44.75/122.58>~7.0~,=K4YO(3)[6]<40.38/111.95>~7.0~,=K5HDU(3)[6]<40.38/111.95>~7.0~, - =K5ML(3)[6]<33.37/111.88>~7.0~,=K8IA(3)[6]<33.37/111.88>~7.0~,=K9JF(3)[6]<47.33/121.63>~7.0~, - =K9PY(3)[6]<44.75/122.58>~7.0~,=K9RZ(3)[6]<33.37/111.88>~7.0~,=K9VIT(3)[6]<40.38/111.95>~7.0~, - =K9WZB(3)[6]<33.37/111.88>~7.0~,=KC1BB(3)[6]<33.37/111.88>~7.0~,=KD2FSH(3)[6]<33.37/111.88>~7.0~, - =KD5RBU(3)[6]<47.33/121.63>~7.0~,=KE2VB(3)[6]<33.37/111.88>~7.0~,=KE4EW(3)[6]<44.22/115.22>~7.0~, - =KH6ND(3)[6]<41.30/116.60>~7.0~,=KH6NO(3)[6]<37.02/116.17>~7.0~,=KH6VM(3)[6]<47.33/121.63>~7.0~, - =KL1JF(3)[6]<44.75/122.58>~7.0~,=KL5CS(3)[6]<44.75/122.58>~7.0~,=KL7FDQ(3)[6]<47.33/121.63>~7.0~, - =KL7IKV(3)[6]<47.33/121.63>~7.0~,=KL7OF(3)[6]<47.33/121.63>~7.0~,=KL7SK(3)[6]<47.33/121.63>~7.0~, - =KL7UT(3)[6]<44.22/115.22>~7.0~,=KN0W(3)[6]<47.33/121.63>~7.0~,=KU1CW(3)[6]<47.33/121.63>~7.0~, + WZ7(3)[6]<41.30/116.60>~7.0~,=AA0Y(3)[6]<33.37/111.88>~7.0~,=AA4Q(3)[6]<33.37/111.88>~7.0~, + =AA5TL(3)[6]<44.75/122.58>~7.0~,=AB9BH(3)[6]<47.33/121.63>~7.0~,=AF9W(3)[6]<47.33/121.63>~7.0~, + =AG2TH(3)[6]<33.37/111.88>~7.0~,=AH6EZ(3)[6]<47.33/121.63>~7.0~,=AH6JS(3)[6]<44.22/115.22>~7.0~, + =AH6LE(3)[6]<44.75/122.58>~7.0~,=AH6P(3)[6]<37.02/116.17>~7.0~,=AH6X(3)[6]<44.22/115.22>~7.0~, + =AI1K(3)[6]<33.37/111.88>~7.0~,=AK9D(3)[6]<47.33/121.63>~7.0~,=AL1VE(3)[6]<47.33/121.63>~7.0~, + =AL2B(3)[6]<44.22/115.22>~7.0~,=AL7BX(3)[6]<40.38/111.95>~7.0~,=AL7CR(3)[6]<44.75/122.58>~7.0~, + =AL7LI(3)[6]<33.37/111.88>~7.0~,=AL7RF(3)[6]<37.02/116.17>~7.0~,=K0AMY(3)[6]<37.02/116.17>~7.0~, + =K0IP(3)[6]<44.22/115.22>~7.0~,=K0JJ(3)[6]<44.75/122.58>~7.0~,=K0MP(3)[6]<33.37/111.88>~7.0~, + =K0NG(3)[6]<47.33/121.63>~7.0~,=K2AK(3)[6]<33.37/111.88>~7.0~,=K2AMF(3)[6]<47.33/121.63>~7.0~, + =K2PO(3)[6]<44.75/122.58>~7.0~,=K2RD(3)[6]<37.02/116.17>~7.0~,=K4XU(3)[6]<44.75/122.58>~7.0~, + =K4YO(3)[6]<40.38/111.95>~7.0~,=K5DTC(3)[6]<47.33/121.63>~7.0~,=K5EM(3)[6]<47.33/121.63>~7.0~, + =K5HDU(3)[6]<40.38/111.95>~7.0~,=K5ML(3)[6]<33.37/111.88>~7.0~,=K5PSN(3)[6]<44.22/115.22>~7.0~, + =K5RC(3)[6]<37.02/116.17>~7.0~,=K5TT(3)[6]<33.37/111.88>~7.0~,=K8FB(3)[6]<33.37/111.88>~7.0~, + =K8IA(3)[6]<33.37/111.88>~7.0~,=K9JF(3)[6]<47.33/121.63>~7.0~,=K9PY(3)[6]<44.75/122.58>~7.0~, + =K9RK(3)[6]<33.37/111.88>~7.0~,=K9RZ(3)[6]<33.37/111.88>~7.0~,=K9VIT(3)[6]<40.38/111.95>~7.0~, + =K9WZB(3)[6]<33.37/111.88>~7.0~,=KB9LHT(3)[6]<33.37/111.88>~7.0~,=KC1BB(3)[6]<33.37/111.88>~7.0~, + =KC1EO(3)[6]<40.38/111.95>~7.0~,=KD2FSH(3)[6]<33.37/111.88>~7.0~,=KD5RBU(3)[6]<47.33/121.63>~7.0~, + =KD9Z(3)[6]<37.02/116.17>~7.0~,=KE2VB(3)[6]<33.37/111.88>~7.0~,=KE4EW(3)[6]<44.22/115.22>~7.0~, + =KH6CN(3)[6]<47.33/121.63>~7.0~,=KH6HU(3)[6]<33.37/111.88>~7.0~,=KH6ND(3)[6]<41.30/116.60>~7.0~, + =KH6NO(3)[6]<37.02/116.17>~7.0~,=KH6VM(3)[6]<47.33/121.63>~7.0~,=KH7X(3)[6]<41.30/116.60>~7.0~, + =KI0E(3)[6]<44.22/115.22>~7.0~,=KL1JF(3)[6]<44.75/122.58>~7.0~,=KL1SF(3)[6]<33.37/111.88>~7.0~, + =KL5CS(3)[6]<44.75/122.58>~7.0~,=KL7FDQ(3)[6]<47.33/121.63>~7.0~,=KL7HB(3)[6]<44.75/122.58>~7.0~, + =KL7IKV(3)[6]<47.33/121.63>~7.0~,=KL7KWA(3)[6]<40.38/111.95>~7.0~,=KL7OF(3)[6]<47.33/121.63>~7.0~, + =KL7SK(3)[6]<47.33/121.63>~7.0~,=KL7UT(3)[6]<44.22/115.22>~7.0~,=KM9R(3)[6]<37.02/116.17>~7.0~, + =KN0W(3)[6]<47.33/121.63>~7.0~,=KN9K(3)[6]<33.37/111.88>~7.0~,=KU1CW(3)[6]<47.33/121.63>~7.0~, =KZ1W(3)[6]<47.33/121.63>~7.0~,=N0KRE(3)[6]<33.37/111.88>~7.0~,=N1AL(3)[6]<40.38/111.95>~7.0~, - =N1JM(3)[6]<33.37/111.88>~7.0~,=N3AIU(3)[6]<33.37/111.88>~7.0~,=N3EG(3)[6]<47.33/121.63>~7.0~, + =N1AV(3)[6]<33.37/111.88>~7.0~,=N1CC(3)[6]<33.37/111.88>~7.0~,=N1JM(3)[6]<33.37/111.88>~7.0~, + =N1KEZ(3)[6]<44.75/122.58>~7.0~,=N3AIU(3)[6]<33.37/111.88>~7.0~,=N3EG(3)[6]<47.33/121.63>~7.0~, =N4CC(3)[6]<44.22/115.22>~7.0~,=N5CR(3)[6]<47.33/121.63>~7.0~,=N8ELA(3)[6]<33.37/111.88>~7.0~, =N8WCR(3)[6]<47.33/121.63>~7.0~,=N9NA(3)[6]<33.37/111.88>~7.0~,=NA2U(3)[6]<33.37/111.88>~7.0~, - =NE7DX(3)[7]<33.37/111.88>~7.0~,=NH6Z(3)[6]<44.75/122.58>~7.0~,=NI5L(3)[7]<33.37/111.88>~7.0~, + =ND8N(3)[6]<33.37/111.88>~7.0~,=NE7DX(3)[7]<33.37/111.88>~7.0~,=NG2G(3)[6]<47.33/121.63>~7.0~, + =NH2JE(3)[6]<44.75/122.58>~7.0~,=NH6HE(3)[6]<47.33/121.63>~7.0~,=NH6Z(3)[6]<44.75/122.58>~7.0~, + =NI5L(3)[7]<33.37/111.88>~7.0~,=NK2J(3)[6]<33.37/111.88>~7.0~,=NK9I(3)[6]<33.37/111.88>~7.0~, =NL7D(3)[6]<33.37/111.88>~7.0~,=NL7GN(3)[6]<44.75/122.58>~7.0~,=NL7GW(3)[6]<44.75/122.58>~7.0~, =NW5H(3)[6]<37.02/116.17>~7.0~,=NX1P(3)[6]<44.75/122.58>~7.0~,=NZ2S(3)[6]<47.33/121.63>~7.0~, =W0AO(3)[6]<47.33/121.63>~7.0~,=W0BF(3)[6]<33.37/111.88>~7.0~,=W0FLZ(3)[6]<47.33/121.63>~7.0~, - =W0NF(3)[6]<33.37/111.88>~7.0~,=W0VQ(3)[6]<47.33/121.63>~7.0~,=W0ZZ(3)[6]<33.37/111.88>~7.0~, - =W1DGL(3)[6]<33.37/111.88>~7.0~,=W1ESE(3)[6]<33.37/111.88>~7.0~,=W1YY(3)[6]<47.33/121.63>~7.0~, - =W2AA(3)[6]<37.02/116.17>~7.0~,=W2FV(3)[6]<47.33/121.63>~7.0~,=W2HZ(3)[6]<33.37/111.88>~7.0~, - =W2NQ(3)[6]<44.75/122.58>~7.0~,=W2VJN(3)[6]<44.75/122.58>~7.0~,=W3NX(3)[6]<33.37/111.88>~7.0~, - =W4IDX(3)[6]<33.37/111.88>~7.0~,=W4IX(3)[6]<33.37/111.88>~7.0~,=W4LOO(3)[6]<40.38/111.95>~7.0~, - =W5OBT(3)[6]<33.37/111.88>~7.0~,=W5OT(3)[6]<33.37/111.88>~7.0~,=W7DMW(3)[7]<40.38/111.95>~7.0~, + =W0NF(3)[6]<33.37/111.88>~7.0~,=W0RIC(3)[6]<33.37/111.88>~7.0~,=W0VQ(3)[6]<47.33/121.63>~7.0~, + =W0ZZ(3)[6]<33.37/111.88>~7.0~,=W1DGL(3)[6]<33.37/111.88>~7.0~,=W1ESE(3)[6]<33.37/111.88>~7.0~, + =W1RO(3)[6]<37.02/116.17>~7.0~,=W1YY(3)[6]<47.33/121.63>~7.0~,=W2AA(3)[6]<37.02/116.17>~7.0~, + =W2FV(3)[6]<47.33/121.63>~7.0~,=W2HZ(3)[6]<33.37/111.88>~7.0~,=W2NC(3)[6]<33.37/111.88>~7.0~, + =W2NQ(3)[6]<44.75/122.58>~7.0~,=W2VJN(3)[6]<44.75/122.58>~7.0~,=W2XX(3)[6]<37.02/116.17>~7.0~, + =W3NX(3)[6]<33.37/111.88>~7.0~,=W4IDX(3)[6]<33.37/111.88>~7.0~,=W4LOO(3)[6]<40.38/111.95>~7.0~, + =W4SIG(3)[6]<40.38/111.95>~7.0~,=W5OBT(3)[6]<33.37/111.88>~7.0~,=W5OT(3)[6]<33.37/111.88>~7.0~, + =W5UJ(3)[6]<33.37/111.88>~7.0~,=W7DMW(3)[7]<40.38/111.95>~7.0~,=W8BFX(3)[6]<47.33/121.63>~7.0~, =W8KA(3)[6]<33.37/111.88>~7.0~,=W8NOR(3)[6]<33.37/111.88>~7.0~,=W8TJM(3)[6]<47.33/121.63>~7.0~, - =W8TK(3)[6]<33.37/111.88>~7.0~,=W9CF(3)[6]<33.37/111.88>~7.0~,=W9PL(3)[6]<47.33/121.63>~7.0~, - =WA0PFC(3)[6]<40.38/111.95>~7.0~,=WA0WWW(3)[6]<47.33/121.63>~7.0~, - =WA2EDJ(3)[6]<33.37/111.88>~7.0~,=WA8ZNC(3)[6]<47.33/121.63>~7.0~, - =WB2AWQ(3)[6]<37.02/116.17>~7.0~,=WB3JFS(3)[6]<37.02/116.17>~7.0~, + =W8TK(3)[6]<33.37/111.88>~7.0~,=W9CF(3)[6]<33.37/111.88>~7.0~,=W9EN(3)[6]<33.37/111.88>~7.0~, + =W9JH(3)[6]<33.37/111.88>~7.0~,=W9PL(3)[6]<47.33/121.63>~7.0~,=WA0PFC(3)[6]<40.38/111.95>~7.0~, + =WA0WWW(3)[6]<47.33/121.63>~7.0~,=WA2EDJ(3)[6]<33.37/111.88>~7.0~, + =WA4ELK(3)[6]<47.33/121.63>~7.0~,=WA8ZID(3)[6]<33.37/111.88>~7.0~, + =WA8ZNC(3)[6]<47.33/121.63>~7.0~,=WB2AWQ(3)[6]<37.02/116.17>~7.0~, + =WB2JEP(3)[6]<33.37/111.88>~7.0~,=WB3JFS(3)[6]<37.02/116.17>~7.0~, =WB5NOE(3)[6]<40.38/111.95>~7.0~,=WB7UOF(3)[7]<33.37/111.88>~7.0~, - =WH6CPT(3)[6]<44.22/115.22>~7.0~,=WH6FZY(3)[6]<47.33/121.63>~7.0~,=WJ9B(3)[6]<44.22/115.22>~7.0~, - =WN9J(3)[6]<47.33/121.63>~7.0~,=WR5J(3)[6]<47.33/121.63>~7.0~,=WT8P(3)[6]<47.33/121.63>~7.0~, - =WU9B(3)[6]<33.37/111.88>~7.0~,=WZ8T(3)[6]<47.33/121.63>~7.0~, + =WB8VLC(3)[6]<44.75/122.58>~7.0~,=WF4U(3)[6]<40.38/111.95>~7.0~,=WH6CPT(3)[6]<44.22/115.22>~7.0~, + =WH6FZY(3)[6]<47.33/121.63>~7.0~,=WH6X(3)[6]<40.38/111.95>~7.0~,=WJ9B(3)[6]<44.22/115.22>~7.0~, + =WN9J(3)[6]<47.33/121.63>~7.0~,=WO1S(3)[6]<33.37/111.88>~7.0~,=WQ3U(3)[6]<44.75/122.58>~7.0~, + =WR5J(3)[6]<47.33/121.63>~7.0~,=WT8P(3)[6]<47.33/121.63>~7.0~,=WU9B(3)[6]<33.37/111.88>~7.0~, + =WZ8T(3)[6]<47.33/121.63>~7.0~, # MI-OH-WV AA8(4)<41.35/83.23>,AB8(4)<41.35/83.23>,AC8(4)<41.35/83.23>,AD8(4)<41.35/83.23>, AE8(4)<41.35/83.23>,AF8(4)<41.35/83.23>,AG8(4)<41.35/83.23>,AI8(4)<41.35/83.23>, @@ -3093,21 +3183,26 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WK8(4)<41.35/83.23>,WM8(4)<41.35/83.23>,WN8(4)<41.35/83.23>,WO8(4)<41.35/83.23>, WQ8(4)<41.35/83.23>,WR8(4)<41.35/83.23>,WS8(4)<41.35/83.23>,WT8(4)<41.35/83.23>, WU8(4)<41.35/83.23>,WV8(4)<41.35/83.23>,WW8(4)<41.35/83.23>,WX8(4)<41.35/83.23>, - WY8(4)<41.35/83.23>,WZ8(4)<41.35/83.23>,=AA4R(4)<42.87/84.22>,=AA5TA(4)<40.43/82.80>, - =AH2AV(4)<42.87/84.22>,=K1CCN(4)<40.43/82.80>,=K1LT(4)<40.43/82.80>,=K2CUB(4)<42.87/84.22>, - =K2KMC(4)<40.43/82.80>,=K2YAZ(4)<42.87/84.22>,=K3DMG(4)<40.43/82.80>,=K3GP(4)<40.43/82.80>, + WY8(4)<41.35/83.23>,WZ8(4)<41.35/83.23>,=AA1JM(4)<42.87/84.22>,=AA4R(4)<42.87/84.22>, + =AA5TA(4)<40.43/82.80>,=AH2AV(4)<42.87/84.22>,=K0ACP(4)<42.87/84.22>,=K1CCN(4)<40.43/82.80>, + =K1LT(4)<40.43/82.80>,=K1ND(4)<42.87/84.22>,=K2CUB(4)<42.87/84.22>,=K2KMC(4)<40.43/82.80>, + =K2PM(4)<42.87/84.22>,=K2YAZ(4)<42.87/84.22>,=K3DMG(4)<40.43/82.80>,=K3GP(4)<40.43/82.80>, =K3USC(4)<40.43/82.80>,=K3VIN(4)<40.43/82.80>,=K3YP(4)<40.43/82.80>,=K4YJ(4)<40.43/82.80>, - =K7DR(4)<42.87/84.22>,=KA0AZS(4)<40.43/82.80>,=KA1LDD(4)<40.43/82.80>,=KA1RUE(4)<40.43/82.80>, - =KB4TLH(4)<40.43/82.80>,=KB6NU(4)<42.87/84.22>,=KE3K(4)<42.87/84.22>,=KI6DY(4)<40.43/82.80>, - =KL2YE(4)<42.87/84.22>,=KP4VZ(4)<40.43/82.80>,=N0FW(4)<40.43/82.80>,=N3RA(4)<40.43/82.80>, - =N4EL(4)<40.43/82.80>,=N4HAI(4)<40.43/82.80>,=N4LSJ(4)<40.43/82.80>,=N5JED(4)<40.43/82.80>, - =N5MKY(4)<42.87/84.22>,=N5WCS(4)<42.87/84.22>,=N6FS(4)<42.87/84.22>,=N6JRL(4)<40.43/82.80>, - =N6VF(4)<40.43/82.80>,=ND3N(4)<40.43/82.80>,=W0CG(4)<40.43/82.80>,=W0JX(4)<40.43/82.80>, - =W1CHL(4)<40.43/82.80>,=W1NN(4)<40.43/82.80>,=W1PD(4)<40.43/82.80>,=W1SKU(4)<42.87/84.22>, - =W3CB(4)<42.87/84.22>,=W3CRZ(4)<40.43/82.80>,=W3HKK(4)<40.43/82.80>,=W3USA(4)<40.43/82.80>, - =W4KD(4)<40.43/82.80>,=W4YPW(4)<40.43/82.80>,=W5DT(4)<42.87/84.22>,=W5HIO(4)<40.43/82.80>, - =W5KBW(4)<40.43/82.80>,=W5UHQ(4)<40.43/82.80>,=WA1UJU(4)<42.87/84.22>,=WA2DHG(4)<40.43/82.80>, - =WA3C(4)<40.43/82.80>,=WA3JAT(4)<40.43/82.80>,=WL7AM(4)<42.87/84.22>,=WO3X(4)<40.43/82.80>, + =K6HRU(4)<40.43/82.80>,=K7TAR(4)<40.43/82.80>,=KA0AZS(4)<40.43/82.80>,=KA1LDD(4)<40.43/82.80>, + =KA1RUE(4)<40.43/82.80>,=KB4TLH(4)<40.43/82.80>,=KB5BGC(4)<42.87/84.22>,=KB6NU(4)<42.87/84.22>, + =KE3K(4)<42.87/84.22>,=KI6DY(4)<40.43/82.80>,=KK0L(4)<40.43/82.80>,=KL2YE(4)<42.87/84.22>, + =KP4VZ(4)<40.43/82.80>,=KQ4YC(4)<40.43/82.80>,=KS4OP(4)<40.43/82.80>,=N0FW(4)<40.43/82.80>, + =N0TTI(4)<42.87/84.22>,=N0VRS(4)<40.43/82.80>,=N1LB(4)<40.43/82.80>,=N2CB(4)<42.87/84.22>, + =N2CCG(4)<42.87/84.22>,=N3JJT(4)<40.43/82.80>,=N3RA(4)<40.43/82.80>,=N3WVB(4)<40.43/82.80>, + =N4CSV(4)<40.43/82.80>,=N4DBR(4)<42.87/84.22>,=N4EL(4)<40.43/82.80>,=N4HAI(4)<40.43/82.80>, + =N4LSJ(4)<40.43/82.80>,=N5JED(4)<40.43/82.80>,=N5MKY(4)<42.87/84.22>,=N5WCS(4)<42.87/84.22>, + =N6FS(4)<42.87/84.22>,=N6JRL(4)<40.43/82.80>,=N6VF(4)<40.43/82.80>,=ND3N(4)<40.43/82.80>, + =NG3Q(4)<40.43/82.80>,=W0CG(4)<40.43/82.80>,=W0JX(4)<40.43/82.80>,=W1CHL(4)<40.43/82.80>, + =W1NN(4)<40.43/82.80>,=W1PD(4)<40.43/82.80>,=W1SKU(4)<42.87/84.22>,=W3CB(4)<42.87/84.22>, + =W3CRZ(4)<40.43/82.80>,=W3HKK(4)<40.43/82.80>,=W3USA(4)<40.43/82.80>,=W4KD(4)<40.43/82.80>, + =W4YPW(4)<40.43/82.80>,=W5DT(4)<42.87/84.22>,=W5HIO(4)<40.43/82.80>,=W5KBW(4)<40.43/82.80>, + =W5UHQ(4)<40.43/82.80>,=WA1UJU(4)<42.87/84.22>,=WA2DHG(4)<40.43/82.80>,=WA3C(4)<40.43/82.80>, + =WA3JAT(4)<40.43/82.80>,=WA4MLD(4)<42.87/84.22>,=WB5WAH(4)<40.43/82.80>,=WO3X(4)<40.43/82.80>, =WR4T(4)<40.43/82.80>,=WS6K(4)<40.43/82.80>, # IL-IN-WI AA9(4)<41.55/87.97>~6.0~,AB9(4)<41.55/87.97>~6.0~,AC9(4)<41.55/87.97>~6.0~, @@ -3137,174 +3232,248 @@ United States: 05: 08: NA: 37.60: 91.87: 5.0: K: WQ9(4)<41.55/87.97>~6.0~,WR9(4)<41.55/87.97>~6.0~,WS9(4)<41.55/87.97>~6.0~, WT9(4)<41.55/87.97>~6.0~,WU9(4)<41.55/87.97>~6.0~,WV9(4)<41.55/87.97>~6.0~, WW9(4)<41.55/87.97>~6.0~,WX9(4)<41.55/87.97>~6.0~,WY9(4)<41.55/87.97>~6.0~, - WZ9(4)<41.55/87.97>~6.0~,=AC4HI(4)<40.15/86.25>~6.0~,=AC9TO(4)[7]<43.72/89.03>~6.0~, - =AG9G(4)[7]<43.72/89.03>~6.0~,=AI9K(4)[7]<41.32/88.37>~6.0~,=K0PG(4)<41.32/88.37>~6.0~, + WZ9(4)<41.55/87.97>~6.0~,=AA2Q(4)<40.15/86.25>~6.0~,=AB0ZO(4)<43.72/89.03>~6.0~, + =AC4HI(4)<40.15/86.25>~6.0~,=AC9TO(4)[7]<43.72/89.03>~6.0~,=AG9G(4)[7]<43.72/89.03>~6.0~, + =AI9K(4)[7]<41.32/88.37>~6.0~,=K0DSC(4)<43.72/89.03>~6.0~,=K0PG(4)<41.32/88.37>~6.0~, =K0PJ(4)<43.72/89.03>~6.0~,=K0TQ(4)<40.15/86.25>~6.0~,=K2DRH(4)[7]<41.32/88.37>~6.0~, - =K4NAX(4)<40.15/86.25>~6.0~,=K6PVZ(4)<41.32/88.37>~6.0~,=K7CS(4)<41.32/88.37>~6.0~, - =K9ILS(4)[7]<41.32/88.37>~6.0~,=K9MU(4)[7]<43.72/89.03>~6.0~,=K9QC(4)[7]<43.72/89.03>~6.0~, - =K9VD(4)[7]<41.32/88.37>~6.0~,=K9WA(4)[7]<41.32/88.37>~6.0~,=KA2MLH(4)<41.32/88.37>~6.0~, - =KA9FOX(4)[7]<43.72/89.03>~6.0~,=KA9VVQ(4)[7]<43.72/89.03>~6.0~,=KB9RUG(4)[7]<41.32/88.37>~6.0~, - =KB9S(4)[7]<43.72/89.03>~6.0~,=KC9K(4)[7]<41.32/88.37>~6.0~,=KD0EE(4)<40.15/86.25>~6.0~, - =KD4ULW(4)<40.15/86.25>~6.0~,=KD9LTN(4)[7]<41.32/88.37>~6.0~,=KE0YI(4)<41.32/88.37>~6.0~, - =KF0CT(4)<43.72/89.03>~6.0~,=KM9DX(4)[7]<41.32/88.37>~6.0~,=KO4YIN(4)<43.72/89.03>~6.0~, - =KP2XX(4)[7]<43.72/89.03>~6.0~,=KQ9J(4)[7]<43.72/89.03>~6.0~,=KV3T(4)<41.32/88.37>~6.0~, - =KW9A(4)[7]<41.32/88.37>~6.0~,=KY0Q(4)<41.32/88.37>~6.0~,=KY6AA(4)<41.32/88.37>~6.0~, - =KZ9V(4)[7]<43.72/89.03>~6.0~,=N1KW(4)<41.32/88.37>~6.0~,=N2BJ(4)<41.32/88.37>~6.0~, - =N4BAA(4)<40.15/86.25>~6.0~,=N4SV(4)<40.15/86.25>~6.0~,=N4TZ(4)<40.15/86.25>~6.0~, - =N5EP(4)<41.32/88.37>~6.0~,=N5RP(4)<41.32/88.37>~6.0~,=N7US(4)<41.32/88.37>~6.0~, - =N7ZZ(4)<43.72/89.03>~6.0~,=N9ATF(4)[7]<41.32/88.37>~6.0~,=N9CHA(4)[7]<43.72/89.03>~6.0~, - =N9CIQ(4)[7]<43.72/89.03>~6.0~,=N9EA(4)[7]<41.32/88.37>~6.0~,=N9JF(4)[7]<41.32/88.37>~6.0~, - =N9SB(4)[7]<41.32/88.37>~6.0~,=N9VPV(4)[7]<41.32/88.37>~6.0~,=NA9RB(4)[7]<41.32/88.37>~6.0~, - =NE9U(4)[7]<43.72/89.03>~6.0~,=NL7QC(4)[7]<43.72/89.03>~6.0~,=NL7XT(4)<40.15/86.25>~6.0~, - =NP2WJ(4)<41.32/88.37>~6.0~,=NQ6N(4)<41.32/88.37>~6.0~,=NR9Q(4)[7]<41.32/88.37>~6.0~, - =NV9J(4)[7]<43.72/89.03>~6.0~,=NY1V(4)<40.15/86.25>~6.0~,=W0ZP(4)<40.15/86.25>~6.0~, - =W1CLM(4)<41.32/88.37>~6.0~,=W1QC(4)<43.72/89.03>~6.0~,=W3HDH(4)<41.32/88.37>~6.0~, - =W3LZ(4)<43.72/89.03>~6.0~,=W7FW(4)<41.32/88.37>~6.0~,=W9AVM(4)[7]<43.72/89.03>~6.0~, - =W9AWE(4)[7]<41.32/88.37>~6.0~,=W9DKB(4)[7]<43.72/89.03>~6.0~,=W9ET(4)[7]<43.72/89.03>~6.0~, - =W9FZ(4)[7]<43.72/89.03>~6.0~,=W9JA(4)[7]<43.72/89.03>~6.0~,=W9JFK(4)[7]<43.72/89.03>~6.0~, - =W9MVA(4)[7]<43.72/89.03>~6.0~,=W9RNY(4)[7]<41.32/88.37>~6.0~,=W9WE(4)[7]<41.32/88.37>~6.0~, - =W9XG(4)[7]<41.32/88.37>~6.0~,=W9YZR(4)[7]<43.72/89.03>~6.0~,=WA2USA(4)<40.15/86.25>~6.0~, - =WA9TZW(4)[7]<41.32/88.37>~6.0~,=WH0AI(4)[7]<43.72/89.03>~6.0~,=WQ5O(4)<43.72/89.03>~6.0~, + =K3KO(4)<41.32/88.37>~6.0~,=K4NAX(4)<40.15/86.25>~6.0~,=K6PVZ(4)<41.32/88.37>~6.0~, + =K7CS(4)<41.32/88.37>~6.0~,=K7DZE(4)<41.32/88.37>~6.0~,=K9ILS(4)[7]<41.32/88.37>~6.0~, + =K9IVN(4)[7]<41.32/88.37>~6.0~,=K9MU(4)[7]<43.72/89.03>~6.0~,=K9OT(4)[7]<43.72/89.03>~6.0~, + =K9QC(4)[7]<43.72/89.03>~6.0~,=K9VD(4)[7]<41.32/88.37>~6.0~,=K9WA(4)[7]<41.32/88.37>~6.0~, + =K9WKJ(4)[7]<43.72/89.03>~6.0~,=K9WM(4)[7]<41.32/88.37>~6.0~,=K9ZA(4)[7]<41.32/88.37>~6.0~, + =K9ZMU(4)[7]<43.72/89.03>~6.0~,=KA2MLH(4)<41.32/88.37>~6.0~,=KA9FOX(4)[7]<43.72/89.03>~6.0~, + =KA9VVQ(4)[7]<43.72/89.03>~6.0~,=KB0TTL(4)<40.15/86.25>~6.0~,=KB9DAK(4)[7]<41.32/88.37>~6.0~, + =KB9HGI(4)[7]<41.32/88.37>~6.0~,=KB9JJA(4)[7]<41.32/88.37>~6.0~,=KB9RUG(4)[7]<41.32/88.37>~6.0~, + =KB9S(4)[7]<43.72/89.03>~6.0~,=KB9TBB(4)[7]<43.72/89.03>~6.0~,=KC9K(4)[7]<41.32/88.37>~6.0~, + =KD0EE(4)<40.15/86.25>~6.0~,=KD4ULW(4)<40.15/86.25>~6.0~,=KD4ZSX(4)<40.15/86.25>~6.0~, + =KD9LTN(4)[7]<41.32/88.37>~6.0~,=KD9MLG(4)[7]<43.72/89.03>~6.0~,=KD9RBY(4)[7]<43.72/89.03>~6.0~, + =KD9TMY(4)[7]<43.72/89.03>~6.0~,=KE0YI(4)<41.32/88.37>~6.0~,=KF0CT(4)<43.72/89.03>~6.0~, + =KG9JF(4)[7]<41.32/88.37>~6.0~,=KK9U(4)[7]<41.32/88.37>~6.0~,=KL1US(4)<43.72/89.03>~6.0~, + =KM9DX(4)[7]<41.32/88.37>~6.0~,=KP2XX(4)[7]<43.72/89.03>~6.0~,=KQ9J(4)[7]<43.72/89.03>~6.0~, + =KV3T(4)<41.32/88.37>~6.0~,=KW9A(4)[7]<41.32/88.37>~6.0~,=KX3H(4)<43.72/89.03>~6.0~, + =KY0Q(4)<41.32/88.37>~6.0~,=KY6AA(4)<41.32/88.37>~6.0~,=KZ9V(4)[7]<43.72/89.03>~6.0~, + =N0AE(4)<41.32/88.37>~6.0~,=N0GAF(4)<43.72/89.03>~6.0~,=N0GLK(4)<41.32/88.37>~6.0~, + =N1KW(4)<41.32/88.37>~6.0~,=N2BJ(4)<41.32/88.37>~6.0~,=N4BAA(4)<40.15/86.25>~6.0~, + =N4IY(4)<40.15/86.25>~6.0~,=N4SV(4)<40.15/86.25>~6.0~,=N4TZ(4)<40.15/86.25>~6.0~, + =N4UCM(4)[7]<43.72/89.03>~6.0~,=N5EP(4)<41.32/88.37>~6.0~,=N5RP(4)<41.32/88.37>~6.0~, + =N7US(4)<41.32/88.37>~6.0~,=N7ZZ(4)<43.72/89.03>~6.0~,=N9ATF(4)[7]<41.32/88.37>~6.0~, + =N9BEL(4)[7]<41.32/88.37>~6.0~,=N9CDX(4)[7]<41.32/88.37>~6.0~,=N9CIQ(4)[7]<43.72/89.03>~6.0~, + =N9EA(4)[7]<41.32/88.37>~6.0~,=N9EAT(4)[7]<41.32/88.37>~6.0~,=N9FDE(4)[7]<43.72/89.03>~6.0~, + =N9ISN(4)[7]<43.72/89.03>~6.0~,=N9JF(4)[7]<41.32/88.37>~6.0~,=N9SB(4)[7]<41.32/88.37>~6.0~, + =N9VAO(4)[7]<43.72/89.03>~6.0~,=N9VPV(4)[7]<41.32/88.37>~6.0~,=NA9RB(4)[7]<41.32/88.37>~6.0~, + =NE9U(4)[7]<43.72/89.03>~6.0~,=NG9B(4)[7]<43.72/89.03>~6.0~,=NJ0U(4)<40.15/86.25>~6.0~, + =NL7QC(4)[7]<43.72/89.03>~6.0~,=NL7XT(4)<40.15/86.25>~6.0~,=NP2WJ(4)<41.32/88.37>~6.0~, + =NQ6N(4)<41.32/88.37>~6.0~,=NR9Q(4)[7]<41.32/88.37>~6.0~,=NV9J(4)[7]<43.72/89.03>~6.0~, + =NY1V(4)<40.15/86.25>~6.0~,=W1CLM(4)<41.32/88.37>~6.0~,=W1QC(4)<43.72/89.03>~6.0~, + =W3HDH(4)<41.32/88.37>~6.0~,=W3LZ(4)<43.72/89.03>~6.0~,=W7FW(4)<41.32/88.37>~6.0~, + =W9AVM(4)[7]<43.72/89.03>~6.0~,=W9AWE(4)[7]<41.32/88.37>~6.0~,=W9BED(4)[7]<41.32/88.37>~6.0~, + =W9DKB(4)[7]<43.72/89.03>~6.0~,=W9DP(4)[7]<41.32/88.37>~6.0~,=W9DX(4)[7]<41.32/88.37>~6.0~, + =W9ET(4)[7]<43.72/89.03>~6.0~,=W9FZ(4)[7]<43.72/89.03>~6.0~,=W9GM(4)[7]<43.72/89.03>~6.0~, + =W9JA(4)[7]<43.72/89.03>~6.0~,=W9MEG(4)[7]<41.32/88.37>~6.0~,=W9MVA(4)[7]<43.72/89.03>~6.0~, + =W9RNY(4)[7]<41.32/88.37>~6.0~,=W9UP(4)[7]<43.72/89.03>~6.0~,=W9WE(4)[7]<41.32/88.37>~6.0~, + =W9XG(4)[7]<41.32/88.37>~6.0~,=W9YV(4)[7]<43.72/89.03>~6.0~,=W9YZR(4)[7]<43.72/89.03>~6.0~, + =WA0LIS(4)<41.32/88.37>~6.0~,=WA2USA(4)<40.15/86.25>~6.0~,=WA9LT(4)[7]<41.32/88.37>~6.0~, + =WA9TZW(4)[7]<41.32/88.37>~6.0~,=WA9ZZ(4)[7]<43.72/89.03>~6.0~,=WD6BNY(4)<43.72/89.03>~6.0~, + =WH0AI(4)[7]<43.72/89.03>~6.0~,=WQ0X(4)<40.15/86.25>~6.0~,=WQ5O(4)<43.72/89.03>~6.0~, =WQ9T(4)[7]<41.32/88.37>~6.0~,=WT2P(4)<41.32/88.37>~6.0~, # AL-KY-TN - =AA2MA(4)<33.02/86.75>~6.0~,=AA4DD(4)<35.82/86.33>~6.0~,=AA4MB(4)<35.82/86.33>~6.0~, - =AA4NU(4)<35.82/86.33>~6.0~,=AA4U(4)<33.02/86.75>~6.0~,=AA4WW(4)<37.83/85.27>~6.0~, - =AB4B(4)<33.02/86.75>~6.0~,=AB4EJ(4)<33.02/86.75>~6.0~,=AB4GG(4)<35.82/86.33>~6.0~, - =AB4IQ(4)<37.83/85.27>~6.0~,=AC4G(4)<35.82/86.33>~6.0~,=AC6NT(4)<35.82/86.33>~6.0~, - =AC6ZM(4)<35.82/86.33>~6.0~,=AD4EB(4)<35.82/86.33>~6.0~,=AD4GG(4)<35.82/86.33>~6.0~, - =AD4TA(4)<37.83/85.27>~6.0~,=AE4ED(4)<33.02/86.75>~6.0~,=AF1US(4)<35.82/86.33>~6.0~, - =AF4T(4)<35.82/86.33>~6.0~,=AG4W(4)<33.02/86.75>~6.0~,=AG5AT(4)<33.02/86.75>~6.0~, - =AH6FF(4)<33.02/86.75>~6.0~,=AI4DB(4)<35.82/86.33>~6.0~,=AJ4A(4)<37.83/85.27>~6.0~, - =AJ4SB(4)<35.82/86.33>~6.0~,=AJ6T(4)<35.82/86.33>~6.0~,=AK4I(4)<35.82/86.33>~6.0~, - =AK4R(4)<35.82/86.33>~6.0~,=AK4Z(4)<35.82/86.33>~6.0~,=AL4B(4)<35.82/86.33>~6.0~, - =AL4US(4)<35.82/86.33>~6.0~,=K0EJ(4)<35.82/86.33>~6.0~,=K0IE(4)<35.82/86.33>~6.0~, - =K0RGI(4)<35.82/86.33>~6.0~,=K1GU(4)<35.82/86.33>~6.0~,=K1MWH(4)<35.82/86.33>~6.0~, - =K1VX(4)<35.82/86.33>~6.0~,=K3IE(4)<35.82/86.33>~6.0~,=K3JWI(4)<35.82/86.33>~6.0~, - =K3OB(4)<37.83/85.27>~6.0~,=K4AB(4)<33.02/86.75>~6.0~,=K4AFE(4)<35.82/86.33>~6.0~, - =K4AL(4)<35.82/86.33>~6.0~,=K4AMC(4)<35.82/86.33>~6.0~,=K4AVX(4)<37.83/85.27>~6.0~, - =K4BFT(4)<33.02/86.75>~6.0~,=K4BWP(4)<37.83/85.27>~6.0~,=K4BX(4)<35.82/86.33>~6.0~, - =K4CNY(4)<33.02/86.75>~6.0~,=K4CWW(4)<33.02/86.75>~6.0~,=K4DR(4)<35.82/86.33>~6.0~, + =AA2MA(4)<33.02/86.75>~6.0~,=AA4CW(4)<33.02/86.75>~6.0~,=AA4DD(4)<35.82/86.33>~6.0~, + =AA4HV(4)<35.82/86.33>~6.0~,=AA4MB(4)<35.82/86.33>~6.0~,=AA4NU(4)<35.82/86.33>~6.0~, + =AA4U(4)<33.02/86.75>~6.0~,=AA4WW(4)<37.83/85.27>~6.0~,=AB4EJ(4)<33.02/86.75>~6.0~, + =AB4GG(4)<35.82/86.33>~6.0~,=AB4IQ(4)<37.83/85.27>~6.0~,=AB4WL(4)<33.02/86.75>~6.0~, + =AC4G(4)<35.82/86.33>~6.0~,=AC6NT(4)<35.82/86.33>~6.0~,=AC6ZM(4)<35.82/86.33>~6.0~, + =AD4DQ(4)<37.83/85.27>~6.0~,=AD4EB(4)<35.82/86.33>~6.0~,=AD4FL(4)<35.82/86.33>~6.0~, + =AD4GG(4)<35.82/86.33>~6.0~,=AD4TA(4)<37.83/85.27>~6.0~,=AE2V(4)<35.82/86.33>~6.0~, + =AE4ED(4)<33.02/86.75>~6.0~,=AF1US(4)<35.82/86.33>~6.0~,=AF4T(4)<35.82/86.33>~6.0~, + =AG4P(4)<35.82/86.33>~6.0~,=AG4W(4)<33.02/86.75>~6.0~,=AG5AT(4)<33.02/86.75>~6.0~, + =AH6FF(4)<33.02/86.75>~6.0~,=AI4DB(4)<35.82/86.33>~6.0~,=AI4LU(4)<37.83/85.27>~6.0~, + =AJ4A(4)<37.83/85.27>~6.0~,=AJ4SB(4)<35.82/86.33>~6.0~,=AJ6T(4)<35.82/86.33>~6.0~, + =AK4I(4)<35.82/86.33>~6.0~,=AK4PJ(4)<35.82/86.33>~6.0~,=AK4R(4)<35.82/86.33>~6.0~, + =AK4Z(4)<35.82/86.33>~6.0~,=AL4B(4)<35.82/86.33>~6.0~,=AL4ST(4)<33.02/86.75>~6.0~, + =AL4US(4)<35.82/86.33>~6.0~,=AL7KT(4)<35.82/86.33>~6.0~,=K0EJ(4)<35.82/86.33>~6.0~, + =K0IE(4)<35.82/86.33>~6.0~,=K0RGI(4)<35.82/86.33>~6.0~,=K1GU(4)<35.82/86.33>~6.0~, + =K1MWH(4)<35.82/86.33>~6.0~,=K1NA(4)<33.02/86.75>~6.0~,=K1VX(4)<35.82/86.33>~6.0~, + =K2LAT(4)<33.02/86.75>~6.0~,=K2VL(4)<33.02/86.75>~6.0~,=K3IE(4)<35.82/86.33>~6.0~, + =K3JWI(4)<35.82/86.33>~6.0~,=K3OB(4)<37.83/85.27>~6.0~,=K4AB(4)<33.02/86.75>~6.0~, + =K4AFE(4)<35.82/86.33>~6.0~,=K4AII(4)<35.82/86.33>~6.0~,=K4AL(4)<35.82/86.33>~6.0~, + =K4AMC(4)<35.82/86.33>~6.0~,=K4AVX(4)<37.83/85.27>~6.0~,=K4BAD(4)<33.02/86.75>~6.0~, + =K4BFT(4)<33.02/86.75>~6.0~,=K4BX(4)<35.82/86.33>~6.0~,=K4CNY(4)<33.02/86.75>~6.0~, + =K4CPO(4)<35.82/86.33>~6.0~,=K4CWW(4)<33.02/86.75>~6.0~,=K4DR(4)<35.82/86.33>~6.0~, =K4DXV(4)<35.82/86.33>~6.0~,=K4DZR(4)<35.82/86.33>~6.0~,=K4EES(4)<33.02/86.75>~6.0~, - =K4FN(4)<37.83/85.27>~6.0~,=K4GIG(4)<33.02/86.75>~6.0~,=K4HAL(4)<33.02/86.75>~6.0~, - =K4IE(4)<37.83/85.27>~6.0~,=K4KCG(4)<37.83/85.27>~6.0~,=K4KO(4)<35.82/86.33>~6.0~, + =K4FBC(4)<33.02/86.75>~6.0~,=K4FN(4)<37.83/85.27>~6.0~,=K4FTY(4)<33.02/86.75>~6.0~, + =K4GIG(4)<33.02/86.75>~6.0~,=K4HAL(4)<33.02/86.75>~6.0~,=K4HWS(4)<35.82/86.33>~6.0~, + =K4HY(4)<37.83/85.27>~6.0~,=K4IE(4)<37.83/85.27>~6.0~,=K4ISV(4)<37.83/85.27>~6.0~, + =K4KCG(4)<37.83/85.27>~6.0~,=K4KKI(4)<35.82/86.33>~6.0~,=K4KO(4)<35.82/86.33>~6.0~, =K4KSV(4)<33.02/86.75>~6.0~,=K4KYN(4)<35.82/86.33>~6.0~,=K4LEN(4)<35.82/86.33>~6.0~, - =K4NO(4)<33.02/86.75>~6.0~,=K4OAQ(4)<35.82/86.33>~6.0~,=K4PO(4)<33.02/86.75>~6.0~, - =K4RO(4)<35.82/86.33>~6.0~,=K4SHA(4)<33.02/86.75>~6.0~,=K4SPO(4)<37.83/85.27>~6.0~, + =K4MSU(4)<37.83/85.27>~6.0~,=K4NO(4)<33.02/86.75>~6.0~,=K4OAQ(4)<35.82/86.33>~6.0~, + =K4PJ(4)<35.82/86.33>~6.0~,=K4PKM(4)<37.83/85.27>~6.0~,=K4PO(4)<33.02/86.75>~6.0~, + =K4RFT(4)<35.82/86.33>~6.0~,=K4RO(4)<35.82/86.33>~6.0~,=K4ROJ(4)<35.82/86.33>~6.0~, + =K4RST(4)<35.82/86.33>~6.0~,=K4SHA(4)<33.02/86.75>~6.0~,=K4SPO(4)<37.83/85.27>~6.0~, =K4TCG(4)<35.82/86.33>~6.0~,=K4TEC(4)<37.83/85.27>~6.0~,=K4TG(4)<37.83/85.27>~6.0~, - =K4TO(4)<37.83/85.27>~6.0~,=K4TZ(4)<37.83/85.27>~6.0~,=K4VIG(4)<35.82/86.33>~6.0~, + =K4TIN(4)<33.02/86.75>~6.0~,=K4TNN(4)<35.82/86.33>~6.0~,=K4TO(4)<37.83/85.27>~6.0~, + =K4TXL(4)<35.82/86.33>~6.0~,=K4TZ(4)<37.83/85.27>~6.0~,=K4VIG(4)<35.82/86.33>~6.0~, =K4WG(4)<33.02/86.75>~6.0~,=K4WI(4)<33.02/86.75>~6.0~,=K4WW(4)<37.83/85.27>~6.0~, - =K4XXX(4)<37.83/85.27>~6.0~,=K4ZGB(4)<33.02/86.75>~6.0~,=K5VBA(4)<33.02/86.75>~6.0~, - =K5WP(4)<33.02/86.75>~6.0~,=K5ZQ(4)<37.83/85.27>~6.0~,=KA3MTT(4)<37.83/85.27>~6.0~, - =KA4J(4)<35.82/86.33>~6.0~,=KA4SCV(4)<35.82/86.33>~6.0~,=KA5VZG(4)<35.82/86.33>~6.0~, - =KB4QZH(4)<37.83/85.27>~6.0~,=KB4VL(4)<35.82/86.33>~6.0~,=KC1DWP(4)<35.82/86.33>~6.0~, - =KC4HW(4)<33.02/86.75>~6.0~,=KC4OBX(4)<37.83/85.27>~6.0~,=KC4SAW(4)<35.82/86.33>~6.0~, - =KC4TEO(4)<33.02/86.75>~6.0~,=KC4TNQ(4)<35.82/86.33>~6.0~,=KC4WQ(4)<37.83/85.27>~6.0~, - =KD4EE(4)<37.83/85.27>~6.0~,=KD4LT(4)<35.82/86.33>~6.0~,=KE0L(4)<35.82/86.33>~6.0~, - =KE4KY(4)<37.83/85.27>~6.0~,=KE4WE(4)<35.82/86.33>~6.0~,=KF4AV(4)<37.83/85.27>~6.0~, - =KF4FMQ(4)<37.83/85.27>~6.0~,=KF4RWA(4)<33.02/86.75>~6.0~,=KF5MU(4)<37.83/85.27>~6.0~, - =KF7CG(4)<35.82/86.33>~6.0~,=KG2MD(4)<33.02/86.75>~6.0~,=KG4CDL(4)<35.82/86.33>~6.0~, - =KG4SRK(4)<37.83/85.27>~6.0~,=KG4STL(4)<35.82/86.33>~6.0~,=KH2AR(4)[7]<35.82/86.33>~6.0~, - =KH2GM(4)<33.02/86.75>~6.0~,=KI0EB(4)<37.83/85.27>~6.0~,=KI4KWR(4)<33.02/86.75>~6.0~, - =KJ4A(4)<37.83/85.27>~6.0~,=KJ4AOM(4)<37.83/85.27>~6.0~,=KJ4BIX(4)<35.82/86.33>~6.0~, + =K4XXX(4)<37.83/85.27>~6.0~,=K4YA(4)<35.82/86.33>~6.0~,=K4ZGB(4)<33.02/86.75>~6.0~, + =K5VBA(4)<33.02/86.75>~6.0~,=K5WP(4)<33.02/86.75>~6.0~,=K5ZQ(4)<37.83/85.27>~6.0~, + =KA3MTT(4)<37.83/85.27>~6.0~,=KA4J(4)<35.82/86.33>~6.0~,=KA4SCV(4)<35.82/86.33>~6.0~, + =KA5VZG(4)<35.82/86.33>~6.0~,=KB3A(4)<33.02/86.75>~6.0~,=KB4QZH(4)<37.83/85.27>~6.0~, + =KB4VL(4)<35.82/86.33>~6.0~,=KC1DWP(4)<35.82/86.33>~6.0~,=KC1RVY(4)<35.82/86.33>~6.0~, + =KC4BB(4)<33.02/86.75>~6.0~,=KC4FLT(4)<33.02/86.75>~6.0~,=KC4HW(4)<33.02/86.75>~6.0~, + =KC4NX(4)<35.82/86.33>~6.0~,=KC4OBX(4)<37.83/85.27>~6.0~,=KC4RNF(4)<33.02/86.75>~6.0~, + =KC4TEO(4)<33.02/86.75>~6.0~,=KC4TNQ(4)<35.82/86.33>~6.0~,=KC4WPS(4)<37.83/85.27>~6.0~, + =KC4WQ(4)<37.83/85.27>~6.0~,=KD4ADC(4)<33.02/86.75>~6.0~,=KD4EE(4)<37.83/85.27>~6.0~, + =KD4LT(4)<35.82/86.33>~6.0~,=KD4ULD(4)<37.83/85.27>~6.0~,=KD5USA(4)<33.02/86.75>~6.0~, + =KE0L(4)<35.82/86.33>~6.0~,=KE4BFG(4)<35.82/86.33>~6.0~,=KE4GOI(4)<33.02/86.75>~6.0~, + =KE4KY(4)<37.83/85.27>~6.0~,=KE4MRX(4)<35.82/86.33>~6.0~,=KE4QCY(4)<33.02/86.75>~6.0~, + =KE4SVI(4)<33.02/86.75>~6.0~,=KE4WE(4)<35.82/86.33>~6.0~,=KF4AV(4)<37.83/85.27>~6.0~, + =KF4FMQ(4)<37.83/85.27>~6.0~,=KF4RWA(4)<33.02/86.75>~6.0~,=KF4TY(4)<35.82/86.33>~6.0~, + =KF5MU(4)<37.83/85.27>~6.0~,=KF7CG(4)<35.82/86.33>~6.0~,=KG2MD(4)<33.02/86.75>~6.0~, + =KG4BIG(4)<37.83/85.27>~6.0~,=KG4CDL(4)<35.82/86.33>~6.0~,=KG4DBM(4)<35.82/86.33>~6.0~, + =KG4LKY(4)<37.83/85.27>~6.0~,=KG4Q(4)<33.02/86.75>~6.0~,=KG4SRK(4)<37.83/85.27>~6.0~, + =KG4STL(4)<35.82/86.33>~6.0~,=KH2AR(4)[7]<35.82/86.33>~6.0~,=KH2GM(4)<33.02/86.75>~6.0~, + =KI0EB(4)<37.83/85.27>~6.0~,=KI4KWR(4)<33.02/86.75>~6.0~,=KI4PHE(4)<33.02/86.75>~6.0~, + =KI4RKM(4)<35.82/86.33>~6.0~,=KI4VLI(4)<37.83/85.27>~6.0~,=KI4ZZJ(4)<35.82/86.33>~6.0~, + =KI5GX(4)<33.02/86.75>~6.0~,=KJ4A(4)<37.83/85.27>~6.0~,=KJ4AOM(4)<37.83/85.27>~6.0~, + =KJ4BIX(4)<35.82/86.33>~6.0~,=KJ4JPV(4)<35.82/86.33>~6.0~,=KJ4LTA(4)<33.02/86.75>~6.0~, =KJ4M(4)<33.02/86.75>~6.0~,=KJ4ND(4)<37.83/85.27>~6.0~,=KJ4UGO(4)<33.02/86.75>~6.0~, =KJ4YLR(4)<37.83/85.27>~6.0~,=KJ6YXI(4)<35.82/86.33>~6.0~,=KK2A(4)<35.82/86.33>~6.0~, - =KK4JW(4)<37.83/85.27>~6.0~,=KK4OVW(4)<35.82/86.33>~6.0~,=KM1Z(4)<35.82/86.33>~6.0~, - =KM4CH(4)<37.83/85.27>~6.0~,=KM4FO(4)<37.83/85.27>~6.0~,=KM4JAD(4)<35.82/86.33>~6.0~, - =KM4RO(4)<37.83/85.27>~6.0~,=KM4VI(4)<35.82/86.33>~6.0~,=KN4CG(4)<37.83/85.27>~6.0~, - =KN4CNU(4)<35.82/86.33>~6.0~,=KN4LIU(4)<35.82/86.33>~6.0~,=KN4PHS(4)<33.02/86.75>~6.0~, - =KN4VKW(4)<35.82/86.33>~6.0~,=KO4AWC(4)<33.02/86.75>~6.0~,=KO4IFG(4)<35.82/86.33>~6.0~, - =KO4OL(4)<37.83/85.27>~6.0~,=KO4PZX(4)<35.82/86.33>~6.0~,=KO4XJ(4)<37.83/85.27>~6.0~, - =KO4YED(4)<35.82/86.33>~6.0~,=KO4Z(4)<35.82/86.33>~6.0~,=KP4X(4)<35.82/86.33>~6.0~, - =KR4F(4)<33.02/86.75>~6.0~,=KS4X(4)<35.82/86.33>~6.0~,=KT4DW(4)<35.82/86.33>~6.0~, - =KT4E(4)<35.82/86.33>~6.0~,=KT4O(4)<35.82/86.33>~6.0~,=KT4RH(4)<35.82/86.33>~6.0~, + =KK4JW(4)<37.83/85.27>~6.0~,=KK4OVW(4)<35.82/86.33>~6.0~,=KK4XA(4)<35.82/86.33>~6.0~, + =KL1SE(4)<37.83/85.27>~6.0~,=KM1Z(4)<35.82/86.33>~6.0~,=KM4CH(4)<37.83/85.27>~6.0~, + =KM4CRC(4)<35.82/86.33>~6.0~,=KM4FO(4)<37.83/85.27>~6.0~,=KM4JAD(4)<35.82/86.33>~6.0~, + =KM4RO(4)<37.83/85.27>~6.0~,=KM4RT(4)<35.82/86.33>~6.0~,=KM4VI(4)<35.82/86.33>~6.0~, + =KN4CG(4)<37.83/85.27>~6.0~,=KN4CNU(4)<35.82/86.33>~6.0~,=KN4COE(4)<37.83/85.27>~6.0~, + =KN4DUA(4)<35.82/86.33>~6.0~,=KN4IXT(4)<35.82/86.33>~6.0~,=KN4LIU(4)<35.82/86.33>~6.0~, + =KN4PHS(4)<33.02/86.75>~6.0~,=KN4VKW(4)<35.82/86.33>~6.0~,=KO4AWC(4)<33.02/86.75>~6.0~, + =KO4CTP(4)<35.82/86.33>~6.0~,=KO4IFG(4)<35.82/86.33>~6.0~,=KO4MAO(4)<35.82/86.33>~6.0~, + =KO4O(4)<33.02/86.75>~6.0~,=KO4OL(4)<37.83/85.27>~6.0~,=KO4PZX(4)<35.82/86.33>~6.0~, + =KO4SKK(4)<33.02/86.75>~6.0~,=KO4TFE(4)<37.83/85.27>~6.0~,=KO4UHE(4)<37.83/85.27>~6.0~, + =KO4UOJ(4)<35.82/86.33>~6.0~,=KO4XJ(4)<37.83/85.27>~6.0~,=KO4YED(4)<35.82/86.33>~6.0~, + =KO4Z(4)<35.82/86.33>~6.0~,=KP4X(4)<35.82/86.33>~6.0~,=KR4F(4)<33.02/86.75>~6.0~, + =KS4VOL(4)<35.82/86.33>~6.0~,=KS4X(4)<35.82/86.33>~6.0~,=KS4YT(4)<33.02/86.75>~6.0~, + =KT4DW(4)<35.82/86.33>~6.0~,=KT4E(4)<35.82/86.33>~6.0~,=KT4O(4)<35.82/86.33>~6.0~, + =KT4RH(4)<35.82/86.33>~6.0~,=KT4RSQ(4)<35.82/86.33>~6.0~,=KT4TN(4)<35.82/86.33>~6.0~, =KT4XA(4)<33.02/86.75>~6.0~,=KU4A(4)<37.83/85.27>~6.0~,=KU4H(4)<33.02/86.75>~6.0~, - =KV4T(4)<33.02/86.75>~6.0~,=KW4J(4)<33.02/86.75>~6.0~,=KW4LU(4)<35.82/86.33>~6.0~, - =KW4SW(4)<33.02/86.75>~6.0~,=KW4YA(4)<37.83/85.27>~6.0~,=KX4AV(4)<37.83/85.27>~6.0~, - =KX4X(4)<33.02/86.75>~6.0~,=KY4BG(4)<37.83/85.27>~6.0~,=KY4CU(4)<33.02/86.75>~6.0~, - =KY4G(4)<33.02/86.75>~6.0~,=KY4HV(4)<33.02/86.75>~6.0~,=KY4KY(4)<37.83/85.27>~6.0~, - =KY4L(4)<35.82/86.33>~6.0~,=KZ4KX(4)<37.83/85.27>~6.0~,=N1OKL(4)<35.82/86.33>~6.0~, - =N4ARO(4)<35.82/86.33>~6.0~,=N4ATU(4)<35.82/86.33>~6.0~,=N4AU(4)<33.02/86.75>~6.0~, - =N4BCD(4)<35.82/86.33>~6.0~,=N4CSV(4)<35.82/86.33>~6.0~,=N4DW(4)<35.82/86.33>~6.0~, - =N4FR(4)<35.82/86.33>~6.0~,=N4IDH(4)<33.02/86.75>~6.0~,=N4JDB(4)<33.02/86.75>~6.0~, - =N4JKO(4)<37.83/85.27>~6.0~,=N4JR(4)<33.02/86.75>~6.0~,=N4JRG(4)<37.83/85.27>~6.0~, - =N4KGL(4)<33.02/86.75>~6.0~,=N4KH(4)<33.02/86.75>~6.0~,=N4LT(4)<35.82/86.33>~6.0~, - =N4MCC(4)<35.82/86.33>~6.0~,=N4MTE(4)<35.82/86.33>~6.0~,=N4MZ(4)<33.02/86.75>~6.0~, + =KU4RN(4)<35.82/86.33>~6.0~,=KV4AC(4)<33.02/86.75>~6.0~,=KV4T(4)<33.02/86.75>~6.0~, + =KW4J(4)<33.02/86.75>~6.0~,=KW4LU(4)<35.82/86.33>~6.0~,=KW4SW(4)<33.02/86.75>~6.0~, + =KW4YA(4)<37.83/85.27>~6.0~,=KX3Y(4)<33.02/86.75>~6.0~,=KX4AV(4)<37.83/85.27>~6.0~, + =KX4BI(4)<33.02/86.75>~6.0~,=KX4I(4)<33.02/86.75>~6.0~,=KX4X(4)<33.02/86.75>~6.0~, + =KY3G(4)<37.83/85.27>~6.0~,=KY4AR(4)<37.83/85.27>~6.0~,=KY4ARC(4)<37.83/85.27>~6.0~, + =KY4BG(4)<37.83/85.27>~6.0~,=KY4BP(4)<37.83/85.27>~6.0~,=KY4G(4)<33.02/86.75>~6.0~, + =KY4HV(4)<33.02/86.75>~6.0~,=KY4KY(4)<37.83/85.27>~6.0~,=KY4L(4)<35.82/86.33>~6.0~, + =KY4MAK(4)<37.83/85.27>~6.0~,=KY4X(4)<37.83/85.27>~6.0~,=KZ4A(4)<33.02/86.75>~6.0~, + =N0ZO(4)<33.02/86.75>~6.0~,=N1OKL(4)<35.82/86.33>~6.0~,=N3CY(4)<33.02/86.75>~6.0~, + =N4AER(4)<35.82/86.33>~6.0~,=N4ARO(4)<35.82/86.33>~6.0~,=N4ATU(4)<35.82/86.33>~6.0~, + =N4AU(4)<33.02/86.75>~6.0~,=N4CVG(4)<37.83/85.27>~6.0~,=N4DTF(4)<35.82/86.33>~6.0~, + =N4DW(4)<35.82/86.33>~6.0~,=N4DXN(4)<35.82/86.33>~6.0~,=N4EMP(4)<33.02/86.75>~6.0~, + =N4FR(4)<35.82/86.33>~6.0~,=N4FZ(4)<37.83/85.27>~6.0~,=N4GO(4)<37.83/85.27>~6.0~, + =N4IDH(4)<33.02/86.75>~6.0~,=N4JDB(4)<33.02/86.75>~6.0~,=N4JEH(4)<33.02/86.75>~6.0~, + =N4JKO(4)<37.83/85.27>~6.0~,=N4JN(4)<33.02/86.75>~6.0~,=N4JR(4)<33.02/86.75>~6.0~, + =N4JRG(4)<37.83/85.27>~6.0~,=N4KGL(4)<33.02/86.75>~6.0~,=N4KH(4)<33.02/86.75>~6.0~, + =N4KJR(4)<37.83/85.27>~6.0~,=N4KZ(4)<37.83/85.27>~6.0~,=N4LS(4)<33.02/86.75>~6.0~, + =N4LT(4)<35.82/86.33>~6.0~,=N4MCC(4)<35.82/86.33>~6.0~,=N4MJ(4)<35.82/86.33>~6.0~, + =N4MRM(4)<37.83/85.27>~6.0~,=N4MTE(4)<35.82/86.33>~6.0~,=N4MZ(4)<33.02/86.75>~6.0~, =N4NA(4)<35.82/86.33>~6.0~,=N4NM(4)<33.02/86.75>~6.0~,=N4NP(4)<37.83/85.27>~6.0~, - =N4NT(4)<35.82/86.33>~6.0~,=N4OPI(4)<35.82/86.33>~6.0~,=N4PWG(4)<35.82/86.33>~6.0~, - =N4PX(4)<35.82/86.33>~6.0~,=N4QS(4)<37.83/85.27>~6.0~,=N4ROA(4)<37.83/85.27>~6.0~, - =N4RRR(4)<35.82/86.33>~6.0~,=N4RZ(4)<37.83/85.27>~6.0~,=N4SS(4)<37.83/85.27>~6.0~, + =N4NT(4)<35.82/86.33>~6.0~,=N4OG(4)<37.83/85.27>~6.0~,=N4OPI(4)<35.82/86.33>~6.0~, + =N4PWG(4)<35.82/86.33>~6.0~,=N4PX(4)<35.82/86.33>~6.0~,=N4QS(4)<37.83/85.27>~6.0~, + =N4ROA(4)<37.83/85.27>~6.0~,=N4RRR(4)<35.82/86.33>~6.0~,=N4RT(4)<33.02/86.75>~6.0~, + =N4RZ(4)<37.83/85.27>~6.0~,=N4SEV(4)<33.02/86.75>~6.0~,=N4SS(4)<37.83/85.27>~6.0~, =N4TY(4)<37.83/85.27>~6.0~,=N4UC(4)<33.02/86.75>~6.0~,=N4UL(4)<37.83/85.27>~6.0~, =N4UW(4)<35.82/86.33>~6.0~,=N4VN(4)<33.02/86.75>~6.0~,=N4WE(4)<33.02/86.75>~6.0~, - =N4ZZ(4)<35.82/86.33>~6.0~,=N6MA(4)<35.82/86.33>~6.0~,=N7CR(4)<33.02/86.75>~6.0~, - =N7KDT(4)<33.02/86.75>~6.0~,=N7LCT(4)<35.82/86.33>~6.0~,=NA4A(4)<33.02/86.75>~6.0~, - =NA4C(4)<35.82/86.33>~6.0~,=NA4MM(4)<33.02/86.75>~6.0~,=NA4W(4)<33.02/86.75>~6.0~, - =ND4U(4)<35.82/86.33>~6.0~,=ND4X(4)<37.83/85.27>~6.0~,=ND4Y(4)<37.83/85.27>~6.0~, - =NE5W(4)<33.02/86.75>~6.0~,=NF4J(4)<33.02/86.75>~6.0~,=NF7D(4)<33.02/86.75>~6.0~, - =NH6T(4)<33.02/86.75>~6.0~,=NJ4P(4)<35.82/86.33>~6.0~,=NK4I(4)<35.82/86.33>~6.0~, - =NK4T(4)<33.02/86.75>~6.0~,=NN4NT(4)<33.02/86.75>~6.0~,=NN4SA(4)<33.02/86.75>~6.0~, - =NN5SS(4)<35.82/86.33>~6.0~,=NP3FB(4)<33.02/86.75>~6.0~,=NR4L(4)<35.82/86.33>~6.0~, - =NS4X(4)<35.82/86.33>~6.0~,=NT4J(4)<35.82/86.33>~6.0~,=NT4W(4)<37.83/85.27>~6.0~, - =NU4B(4)<35.82/86.33>~6.0~,=NU4N(4)<37.83/85.27>~6.0~,=NV4B(4)<33.02/86.75>~6.0~, - =NV4G(4)<35.82/86.33>~6.0~,=W0AG(4)<35.82/86.33>~6.0~,=W0SK(4)<35.82/86.33>~6.0~, - =W1EG(4)<35.82/86.33>~6.0~,=W2BJN(4)<33.02/86.75>~6.0~,=W3DEV(4)<35.82/86.33>~6.0~, - =W3TB(4)<35.82/86.33>~6.0~,=W4AWE(4)<35.82/86.33>~6.0~,=W4BCG(4)<35.82/86.33>~6.0~, - =W4CMG(4)<35.82/86.33>~6.0~,=W4CN(4)<37.83/85.27>~6.0~,=W4CQE(4)<35.82/86.33>~6.0~, - =W4DAN(4)<35.82/86.33>~6.0~,=W4DTA(4)<35.82/86.33>~6.0~,=W4ER(4)<33.02/86.75>~6.0~, - =W4ETA(4)<35.82/86.33>~6.0~,=W4GKM(4)<35.82/86.33>~6.0~,=W4GON(4)<35.82/86.33>~6.0~, - =W4IL(4)<35.82/86.33>~6.0~,=W4IOD(4)<37.83/85.27>~6.0~,=W4JH(4)<35.82/86.33>~6.0~, - =W4JUU(4)<35.82/86.33>~6.0~,=W4KW(4)<35.82/86.33>~6.0~,=W4LC(4)<37.83/85.27>~6.0~, - =W4MRF(4)<37.83/85.27>~6.0~,=W4NBS(4)<33.02/86.75>~6.0~,=W4NI(4)<35.82/86.33>~6.0~, - =W4NJA(4)<37.83/85.27>~6.0~,=W4NNF(4)<33.02/86.75>~6.0~,=W4NZ(4)<35.82/86.33>~6.0~, - =W4PA(4)<35.82/86.33>~6.0~,=W4PF(4)<37.83/85.27>~6.0~,=W4RLB(4)<37.83/85.27>~6.0~, - =W4RYW(4)<33.02/86.75>~6.0~,=W4SDX(4)<35.82/86.33>~6.0~,=W4SIG(4)<35.82/86.33>~6.0~, - =W4SK(4)<35.82/86.33>~6.0~,=W4SSF(4)<35.82/86.33>~6.0~,=W4TLK(4)<35.82/86.33>~6.0~, - =W4UAL(4)<33.02/86.75>~6.0~,=W4UT(4)<35.82/86.33>~6.0~,=W4UWC(4)<37.83/85.27>~6.0~, - =W4VFF(4)<35.82/86.33>~6.0~,=W4WKU(4)<37.83/85.27>~6.0~,=W4WTS(4)<35.82/86.33>~6.0~, - =W4WWV(4)<35.82/86.33>~6.0~,=W4XK(4)<35.82/86.33>~6.0~,=W4YTO(4)<33.02/86.75>~6.0~, - =W4ZXT(4)<37.83/85.27>~6.0~,=W5ACQ(4)<35.82/86.33>~6.0~,=W5MX(4)<37.83/85.27>~6.0~, - =W5NZ(4)<33.02/86.75>~6.0~,=W5PET(4)<37.83/85.27>~6.0~,=W6LX(4)<37.83/85.27>~6.0~, - =W6NCB(4)<35.82/86.33>~6.0~,=W6UB(4)<35.82/86.33>~6.0~,=WA1FCN(4)<33.02/86.75>~6.0~, - =WA4GGK(4)<33.02/86.75>~6.0~,=WA4HR(4)<35.82/86.33>~6.0~,=WA4JA(4)<35.82/86.33>~6.0~, - =WA4JQS(4)<37.83/85.27>~6.0~,=WA4KY(4)<37.83/85.27>~6.0~,=WA4VEK(4)<33.02/86.75>~6.0~, - =WA4VGZ(4)<35.82/86.33>~6.0~,=WA4WZR(4)<35.82/86.33>~6.0~,=WA4ZXV(4)<33.02/86.75>~6.0~, + =N4ZZ(4)<35.82/86.33>~6.0~,=N5INV(4)<35.82/86.33>~6.0~,=N6MA(4)<35.82/86.33>~6.0~, + =N7CR(4)<33.02/86.75>~6.0~,=N7KDT(4)<33.02/86.75>~6.0~,=NA4A(4)<33.02/86.75>~6.0~, + =NA4C(4)<35.82/86.33>~6.0~,=NA4D(4)<37.83/85.27>~6.0~,=NA4MM(4)<33.02/86.75>~6.0~, + =NA4W(4)<33.02/86.75>~6.0~,=ND4U(4)<35.82/86.33>~6.0~,=ND4X(4)<37.83/85.27>~6.0~, + =ND4Y(4)<37.83/85.27>~6.0~,=NE5W(4)<33.02/86.75>~6.0~,=NF4J(4)<33.02/86.75>~6.0~, + =NF7D(4)<33.02/86.75>~6.0~,=NH6T(4)<33.02/86.75>~6.0~,=NJ4P(4)<35.82/86.33>~6.0~, + =NK4I(4)<35.82/86.33>~6.0~,=NK4T(4)<33.02/86.75>~6.0~,=NN4H(4)<37.83/85.27>~6.0~, + =NN4NT(4)<33.02/86.75>~6.0~,=NN4SA(4)<33.02/86.75>~6.0~,=NN5SS(4)<35.82/86.33>~6.0~, + =NP3FB(4)<33.02/86.75>~6.0~,=NP4AC(4)<35.82/86.33>~6.0~,=NQ4Y(4)<35.82/86.33>~6.0~, + =NR4L(4)<35.82/86.33>~6.0~,=NS2X(4)<35.82/86.33>~6.0~,=NS4X(4)<35.82/86.33>~6.0~, + =NT4J(4)<35.82/86.33>~6.0~,=NT4W(4)<37.83/85.27>~6.0~,=NU4B(4)<35.82/86.33>~6.0~, + =NU4N(4)<37.83/85.27>~6.0~,=NV4G(4)<35.82/86.33>~6.0~,=NY4JB(4)<35.82/86.33>~6.0~, + =W0AG(4)<35.82/86.33>~6.0~,=W0SK(4)<35.82/86.33>~6.0~,=W1EG(4)<35.82/86.33>~6.0~, + =W1GKT(4)<33.02/86.75>~6.0~,=W1LTC(4)<35.82/86.33>~6.0~,=W1WSF(4)<35.82/86.33>~6.0~, + =W2BJN(4)<33.02/86.75>~6.0~,=W2LAT(4)<33.02/86.75>~6.0~,=W2RSS(4)<37.83/85.27>~6.0~, + =W3DEV(4)<35.82/86.33>~6.0~,=W3TB(4)<35.82/86.33>~6.0~,=W4AWE(4)<35.82/86.33>~6.0~, + =W4BAX(4)<35.82/86.33>~6.0~,=W4BCG(4)<35.82/86.33>~6.0~,=W4BLT(4)<33.02/86.75>~6.0~, + =W4CDA(4)<37.83/85.27>~6.0~,=W4CMG(4)<35.82/86.33>~6.0~,=W4CN(4)<37.83/85.27>~6.0~, + =W4CQE(4)<35.82/86.33>~6.0~,=W4CRV(4)<35.82/86.33>~6.0~,=W4DAN(4)<35.82/86.33>~6.0~, + =W4DHN(4)<33.02/86.75>~6.0~,=W4DTA(4)<35.82/86.33>~6.0~,=W4EM(4)<35.82/86.33>~6.0~, + =W4ER(4)<33.02/86.75>~6.0~,=W4ETA(4)<35.82/86.33>~6.0~,=W4GGM(4)<35.82/86.33>~6.0~, + =W4GKM(4)<35.82/86.33>~6.0~,=W4GON(4)<35.82/86.33>~6.0~,=W4HLR(4)<35.82/86.33>~6.0~, + =W4IAX(4)<33.02/86.75>~6.0~,=W4IL(4)<35.82/86.33>~6.0~,=W4IOD(4)<37.83/85.27>~6.0~, + =W4JH(4)<35.82/86.33>~6.0~,=W4JNB(4)<33.02/86.75>~6.0~,=W4JUU(4)<35.82/86.33>~6.0~, + =W4KW(4)<35.82/86.33>~6.0~,=W4LC(4)<37.83/85.27>~6.0~,=W4MRF(4)<37.83/85.27>~6.0~, + =W4NBS(4)<33.02/86.75>~6.0~,=W4NI(4)<35.82/86.33>~6.0~,=W4NJA(4)<37.83/85.27>~6.0~, + =W4NNF(4)<33.02/86.75>~6.0~,=W4NZ(4)<35.82/86.33>~6.0~,=W4OLB(4)<35.82/86.33>~6.0~, + =W4PA(4)<35.82/86.33>~6.0~,=W4PCA(4)<35.82/86.33>~6.0~,=W4PF(4)<37.83/85.27>~6.0~, + =W4PUD(4)<35.82/86.33>~6.0~,=W4RLB(4)<37.83/85.27>~6.0~,=W4RYW(4)<33.02/86.75>~6.0~, + =W4SDX(4)<35.82/86.33>~6.0~,=W4SK(4)<35.82/86.33>~6.0~,=W4SSF(4)<35.82/86.33>~6.0~, + =W4SV(4)<35.82/86.33>~6.0~,=W4TLK(4)<35.82/86.33>~6.0~,=W4TRC(4)<35.82/86.33>~6.0~, + =W4UAL(4)<33.02/86.75>~6.0~,=W4UT(4)<35.82/86.33>~6.0~,=W4UW(4)<35.82/86.33>~6.0~, + =W4UWC(4)<37.83/85.27>~6.0~,=W4VFF(4)<35.82/86.33>~6.0~,=W4WC(4)<35.82/86.33>~6.0~, + =W4WKU(4)<37.83/85.27>~6.0~,=W4WTS(4)<35.82/86.33>~6.0~,=W4WWV(4)<35.82/86.33>~6.0~, + =W4XK(4)<35.82/86.33>~6.0~,=W4YTO(4)<33.02/86.75>~6.0~,=W5ACQ(4)<35.82/86.33>~6.0~, + =W5HVV(4)<35.82/86.33>~6.0~,=W5MX(4)<37.83/85.27>~6.0~,=W5NZ(4)<33.02/86.75>~6.0~, + =W5PET(4)<37.83/85.27>~6.0~,=W6AWL(4)<35.82/86.33>~6.0~,=W6EMM(4)<35.82/86.33>~6.0~, + =W6LX(4)<37.83/85.27>~6.0~,=W6UB(4)<35.82/86.33>~6.0~,=WA1FCN(4)<33.02/86.75>~6.0~, + =WA4AA(4)<35.82/86.33>~6.0~,=WA4CAX(4)<33.02/86.75>~6.0~,=WA4CDP(4)<33.02/86.75>~6.0~, + =WA4CQG(4)<33.02/86.75>~6.0~,=WA4GGK(4)<33.02/86.75>~6.0~,=WA4HR(4)<35.82/86.33>~6.0~, + =WA4JA(4)<35.82/86.33>~6.0~,=WA4JK(4)<33.02/86.75>~6.0~,=WA4JQS(4)<37.83/85.27>~6.0~, + =WA4KY(4)<37.83/85.27>~6.0~,=WA4VEK(4)<33.02/86.75>~6.0~,=WA4VGZ(4)<35.82/86.33>~6.0~, + =WA4WZR(4)<35.82/86.33>~6.0~,=WA4YJB(4)<37.83/85.27>~6.0~,=WA4ZXV(4)<33.02/86.75>~6.0~, =WA5POK(4)<35.82/86.33>~6.0~,=WB0CJB(4)<35.82/86.33>~6.0~,=WB4E(4)<35.82/86.33>~6.0~, - =WB4GHZ(4)<35.82/86.33>~6.0~,=WB4HMA(4)<35.82/86.33>~6.0~,=WB4IT(4)<33.02/86.75>~6.0~, - =WB4WXE(4)<33.02/86.75>~6.0~,=WB4YDL(4)<35.82/86.33>~6.0~,=WB4YDY(4)<35.82/86.33>~6.0~, - =WB5WAJ(4)<35.82/86.33>~6.0~,=WC4AR(4)<35.82/86.33>~6.0~,=WC4DC(4)<35.82/86.33>~6.0~, - =WD4CFN(4)<35.82/86.33>~6.0~,=WD4OHD(4)<35.82/86.33>~6.0~,=WD4PTJ(4)<35.82/86.33>~6.0~, - =WE5P(4)<37.83/85.27>~6.0~,=WF3T(4)<37.83/85.27>~6.0~,=WF7T(4)<35.82/86.33>~6.0~, - =WJ4T(4)<37.83/85.27>~6.0~,=WM4Q(4)<35.82/86.33>~6.0~,=WN4AT(4)<33.02/86.75>~6.0~, - =WR3O(4)<35.82/86.33>~6.0~,=WT4U(4)<35.82/86.33>~6.0~,=WU7Q(4)<35.82/86.33>~6.0~, - =WV4P(4)<35.82/86.33>~6.0~,=WW0CJ(4)<35.82/86.33>~6.0~,=WW4R(4)<35.82/86.33>~6.0~, - =WW5M(4)<35.82/86.33>~6.0~,=WW5X(4)<33.02/86.75>~6.0~,=WX4HP(4)<33.02/86.75>~6.0~, - =WX4W(4)<37.83/85.27>~6.0~,=WZ4F(4)<33.02/86.75>~6.0~, + =WB4FWQ(4)<35.82/86.33>~6.0~,=WB4GHZ(4)<35.82/86.33>~6.0~,=WB4HMA(4)<35.82/86.33>~6.0~, + =WB4IT(4)<33.02/86.75>~6.0~,=WB4WXE(4)<33.02/86.75>~6.0~,=WB4YDL(4)<35.82/86.33>~6.0~, + =WB4YDY(4)<35.82/86.33>~6.0~,=WB4ZBI(4)<35.82/86.33>~6.0~,=WB5WAJ(4)<35.82/86.33>~6.0~, + =WC4AR(4)<35.82/86.33>~6.0~,=WC4DC(4)<35.82/86.33>~6.0~,=WD4CFN(4)<35.82/86.33>~6.0~, + =WD4KTF(4)<37.83/85.27>~6.0~,=WD4OHD(4)<35.82/86.33>~6.0~,=WD4PTJ(4)<35.82/86.33>~6.0~, + =WD5FCA(4)<33.02/86.75>~6.0~,=WE5P(4)<37.83/85.27>~6.0~,=WF3T(4)<37.83/85.27>~6.0~, + =WF7T(4)<35.82/86.33>~6.0~,=WH6DM(4)<33.02/86.75>~6.0~,=WI4MPY(4)<37.83/85.27>~6.0~, + =WM4Q(4)<35.82/86.33>~6.0~,=WN4AT(4)<33.02/86.75>~6.0~,=WR3O(4)<35.82/86.33>~6.0~, + =WT4U(4)<35.82/86.33>~6.0~,=WT4W(4)<33.02/86.75>~6.0~,=WU7Q(4)<35.82/86.33>~6.0~, + =WV4P(4)<35.82/86.33>~6.0~,=WW0CJ(4)<35.82/86.33>~6.0~,=WW4N(4)<35.82/86.33>~6.0~, + =WW4R(4)<35.82/86.33>~6.0~,=WW5M(4)<35.82/86.33>~6.0~,=WW5X(4)<33.02/86.75>~6.0~, + =WX4HP(4)<33.02/86.75>~6.0~,=WX4W(4)<37.83/85.27>~6.0~,=WZ4F(4)<33.02/86.75>~6.0~, # MT-WY =AC7AF(4)[7]<42.70/106.98>~7.0~,=AE7AP(4)[6]<46.77/111.32>~7.0~,=AL7RT(4)[6]<46.77/111.32>~7.0~, - =K0SN(4)[6]<46.77/111.32>~7.0~,=K5MH(4)[6]<46.77/111.32>~7.0~,=K7ABV(4)[6]<46.77/111.32>~7.0~, - =K7KAR(4)[7]<46.77/111.32>~7.0~,=K7MTD(4)[6]<46.77/111.32>~7.0~,=K7QA(4)[6]<46.77/111.32>~7.0~, - =K7SHR(4)[7]<42.70/106.98>~7.0~,=K7VU(4)[7]<42.70/106.98>~7.0~,=K9DR(4)[7]<42.70/106.98>~7.0~, - =KD7HU(4)[7]<46.77/111.32>~7.0~,=KF7Z(4)[7]<42.70/106.98>~7.0~,=KI6QDH(4)[7]<42.70/106.98>~7.0~, - =KJ9C(4)[6]<46.77/111.32>~7.0~,=KM7W(4)[6]<46.77/111.32>~7.0~,=KR7Q(4)[6]<46.77/111.32>~7.0~, - =KS7T(4)[6]<46.77/111.32>~7.0~,=KT0P(4)[6]<46.77/111.32>~7.0~,=KZ7A(4)[7]<42.70/106.98>~7.0~, - =N7AGP(4)[6]<46.77/111.32>~7.0~,=N7CMJ(4)[6]<46.77/111.32>~7.0~,=N7MZW(4)[7]<42.70/106.98>~7.0~, + =K0SN(4)[6]<46.77/111.32>~7.0~,=K1AUS(4)[7]<46.77/111.32>~7.0~,=K5MH(4)[6]<46.77/111.32>~7.0~, + =K7ABV(4)[6]<46.77/111.32>~7.0~,=K7KAR(4)[7]<46.77/111.32>~7.0~,=K7MS(4)[6]<46.77/111.32>~7.0~, + =K7MTD(4)[6]<46.77/111.32>~7.0~,=K7NCK(4)[7]<42.70/106.98>~7.0~,=K7PAP(4)[7]<46.77/111.32>~7.0~, + =K7QA(4)[6]<46.77/111.32>~7.0~,=K7SHR(4)[7]<42.70/106.98>~7.0~,=K7TRT(4)[7]<46.77/111.32>~7.0~, + =K7VU(4)[7]<42.70/106.98>~7.0~,=K7ZKM(4)[7]<46.77/111.32>~7.0~,=K9DR(4)[7]<42.70/106.98>~7.0~, + =KA7PNH(4)[7]<42.70/106.98>~7.0~,=KC1NY(4)[7]<42.70/106.98>~7.0~,=KD7MT(4)[7]<46.77/111.32>~7.0~, + =KE7NO(4)[6]<46.77/111.32>~7.0~,=KF7HIL(4)[7]<42.70/106.98>~7.0~,=KF7Z(4)[7]<42.70/106.98>~7.0~, + =KG7VQ(4)[6]<46.77/111.32>~7.0~,=KI6QDH(4)[7]<42.70/106.98>~7.0~,=KJ9C(4)[6]<46.77/111.32>~7.0~, + =KK4NAW(4)[7]<42.70/106.98>~7.0~,=KK7CJV(4)[6]<46.77/111.32>~7.0~,=KM7W(4)[6]<46.77/111.32>~7.0~, + =KR7Q(4)[6]<46.77/111.32>~7.0~,=KS7T(4)[6]<46.77/111.32>~7.0~,=KT0P(4)[6]<46.77/111.32>~7.0~, + =KW7EET(4)[7]<46.77/111.32>~7.0~,=KZ7A(4)[7]<42.70/106.98>~7.0~,=N1NYT(4)[6]<46.77/111.32>~7.0~, + =N3CMI(4)[7]<42.70/106.98>~7.0~,=N7AGP(4)[6]<46.77/111.32>~7.0~,=N7CMJ(4)[6]<46.77/111.32>~7.0~, + =N7LCT(4)[7]<42.70/106.98>~7.0~,=N7MZW(4)[7]<42.70/106.98>~7.0~,=N7NG(4)[7]<46.77/111.32>~7.0~, =N7PMS(4)[6]<46.77/111.32>~7.0~,=N7QAX(4)[7]<42.70/106.98>~7.0~,=N7WY(4)[7]<42.70/106.98>~7.0~, - =N9RV(4)[6]<46.77/111.32>~7.0~,=NM7W(4)[7]<42.70/106.98>~7.0~,=NR7DX(4)[6]<46.77/111.32>~7.0~, - =NX7W(4)[6]<46.77/111.32>~7.0~,=W6KGP(4)[7]<42.70/106.98>~7.0~,=W7DGR(4)[7]<42.70/106.98>~7.0~, - =W7EE(4)[6]<46.77/111.32>~7.0~,=W7EY(4)[6]<46.77/111.32>~7.0~,=W7KK(4)[6]<46.77/111.32>~7.0~, + =N7YDH(4)[7]<42.70/106.98>~7.0~,=N9RV(4)[6]<46.77/111.32>~7.0~,=NE7R(4)[6]<46.77/111.32>~7.0~, + =NG7IL(4)[7]<46.77/111.32>~7.0~,=NM7W(4)[7]<42.70/106.98>~7.0~,=NN7V(4)[7]<46.77/111.32>~7.0~, + =NR7DX(4)[6]<46.77/111.32>~7.0~,=NX7W(4)[6]<46.77/111.32>~7.0~,=W6KGP(4)[7]<42.70/106.98>~7.0~, + =W7DGR(4)[7]<42.70/106.98>~7.0~,=W7EE(4)[6]<46.77/111.32>~7.0~,=W7EY(4)[6]<46.77/111.32>~7.0~, + =W7KF(4)[6]<46.77/111.32>~7.0~,=W7KK(4)[6]<46.77/111.32>~7.0~,=W7PX(4)[6]<46.77/111.32>~7.0~, =W7RIP(4)[6]<46.77/111.32>~7.0~,=W7VNE(4)[6]<46.77/111.32>~7.0~,=W7XT(4)[6]<46.77/111.32>~7.0~, =W8MYL(4)[7]<42.70/106.98>~7.0~,=WA1TYB(4)[6]<46.77/111.32>~7.0~,=WB6UIA(4)[7]<42.70/106.98>~7.0~, - =WB7GR(4)[7]<42.70/106.98>~7.0~,=WB7S(4)[7]<42.70/106.98>~7.0~,=WC7S(4)[7]<42.70/106.98>~7.0~, - =WN7Y(4)[7]<46.77/111.32>~7.0~,=WX7F(4)[6]<46.77/111.32>~7.0~,=WY7DT(4)[7]<42.70/106.98>~7.0~, - =WY7FD(4)[7]<42.70/106.98>~7.0~,=WY7M(4)[7]<42.70/106.98>~7.0~, + =WB7BWZ(4)[7]<46.77/111.32>~7.0~,=WB7GR(4)[7]<42.70/106.98>~7.0~,=WB7S(4)[7]<42.70/106.98>~7.0~, + =WC7S(4)[7]<42.70/106.98>~7.0~,=WN7Y(4)[7]<46.77/111.32>~7.0~,=WR7AY(4)[7]<42.70/106.98>~7.0~, + =WX7F(4)[6]<46.77/111.32>~7.0~,=WY7AA(4)[7]<42.70/106.98>~7.0~,=WY7DT(4)[7]<42.70/106.98>~7.0~, + =WY7FD(4)[7]<42.70/106.98>~7.0~,=WY7KY(4)[7]<42.70/106.98>~7.0~,=WY7M(4)[7]<42.70/106.98>~7.0~, # West Virginia =AA8UL<38.82/80.67>,=AB8RL<38.82/80.67>,=K8DF<38.82/80.67>,=K8HC<38.82/80.67>,=K8JQ<38.82/80.67>, =K8NYG<38.82/80.67>,=K8RRT<38.82/80.67>,=K8WV<38.82/80.67>,=KA8NJW<38.82/80.67>, - =KB8DX<38.82/80.67>,=KB8KMH<38.82/80.67>,=KE8AE<38.82/80.67>,=KI8I<38.82/80.67>, - =N8BL<38.82/80.67>,=N8II<38.82/80.67>,=N8OZY<38.82/80.67>,=N8UOA<38.82/80.67>,=N8ZR<38.82/80.67>, - =NR5N<38.82/80.67>,=NW8U<38.82/80.67>,=W8AKS<38.82/80.67>,=W8BAR<38.82/80.67>,=W8RKW<38.82/80.67>, - =W8SP<38.82/80.67>,=W8WEJ<38.82/80.67>,=W8WVA<38.82/80.67>,=WA8KAN<38.82/80.67>, - =WB8III<38.82/80.67>,=WC8L<38.82/80.67>,=WJ8L<38.82/80.67>,=WR8AA<38.82/80.67>, - =WT8WV<38.82/80.67>; + =KB8DX<38.82/80.67>,=KB8ERA<38.82/80.67>,=KB8KMH<38.82/80.67>,=KD8YWF<38.82/80.67>, + =KE8AE<38.82/80.67>,=KE8KMX<38.82/80.67>,=KE8UOH<38.82/80.67>,=KE8YIK<38.82/80.67>, + =KI8I<38.82/80.67>,=N8BL<38.82/80.67>,=N8GB<38.82/80.67>,=N8II<38.82/80.67>,=N8OZY<38.82/80.67>, + =N8UOA<38.82/80.67>,=N8ZR<38.82/80.67>,=NR5N<38.82/80.67>,=NW8U<38.82/80.67>,=W8AKS<38.82/80.67>, + =W8BAR<38.82/80.67>,=W8CUL<38.82/80.67>,=W8GK<38.82/80.67>,=W8OP<38.82/80.67>,=W8PAR<38.82/80.67>, + =W8RKW<38.82/80.67>,=W8SP<38.82/80.67>,=W8VA<38.82/80.67>,=W8VZ<38.82/80.67>,=W8WEJ<38.82/80.67>, + =W8WVA<38.82/80.67>,=WA8KAN<38.82/80.67>,=WB8BEL<38.82/80.67>,=WB8EKG<38.82/80.67>, + =WC8L<38.82/80.67>,=WJ8L<38.82/80.67>,=WR8AA<38.82/80.67>,=WT8WV<38.82/80.67>,=WV7MS<38.82/80.67>, + =WV8AR<38.82/80.67>; # ADIF 105 Guantanamo Bay: 08: 11: NA: 20.00: 75.00: 5.0: KG4: KG4,=KG4NE; @@ -3316,8 +3485,7 @@ Baker & Howland Islands: 31: 61: OC: 0.00: 176.00: 12.0: KH1: AH1,KH1,NH1,WH1; # ADIF 103 Guam: 27: 64: OC: 13.37: -144.70: -10.0: KH2: - AH2,KH2,NH2,WH2,=KF7BMU,=KF7GTT,=KG6DX,=KG6JDX,=KH0P,=KH6KK,=KO4EGC,=KO4JB,=N1GU,=N6MSK,=N6WBN, - =WA0OII; + AH2,KH2,NH2,WH2,=AB2JF,=KC9GMO,=KG6DX,=KG6JDX,=KH6KK,=W0WDW,=WA0OII,=WO7USA; # ADIF 123 Johnston Island: 31: 61: OC: 16.72: 169.53: 10.0: KH3: AH3,KH3,NH3,WH3; @@ -3329,11 +3497,11 @@ Palmyra & Jarvis Islands: 31: 61: OC: 5.87: 162.07: 11.0: KH5: AH5,KH5,NH5,WH5; # ADIF 110 Hawaii: 31: 61: OC: 21.12: 157.48: 10.0: KH6: - AH6,AH7,KH6,KH7,NH6,NH7,WH6,WH7,=AA2TT,=AA3CM,=AB7RT,=K0RIV,=K2GT,=K4RBK,=K4XV,=K5ZYO,=K6DCA, - =K7DWJ,=K7WTH,=KA6MCS,=KB6EGA,=KB6LDF,=KC6REO,=KC8JNV,=KC9CVX,=KC9WIB,=KD0OLJ,=KD9IAH,=KD9ISN, - =KE7HKK,=KE8QB,=KF0FMQ,=KG5HMM,=KG6JSH,=KG7VWF,=KH0WJ,=KH3AE,=KI7NAU,=KJ6THQ,=KJ6THS,=KK4KPX, - =KK4KXS,=KK4QAX,=KM6NFS,=KN6CID,=KN6NAH,=KO4LNN,=KO4ZYO,=KX4ES,=KZ6T,=N3GWR,=W1ZWC,=W2DK,=W6KCH, - =W6SPO,=W8EBR,=WA6QDQ,=WB2CAT,=WB4JTT,=WG1A; + AH6,AH7,KH6,KH7,NH6,NH7,WH6,WH7,=AA2TT,=AA3CM,=AB7RT,=K1ENT,=K2GT,=K3RW,=K4XV,=K5ZYO,=K6ARS, + =K6BDN,=K6DCA,=K6HI,=K7DWJ,=KA1MRC,=KA6MCS,=KB6EGA,=KC8UHF,=KC9WIB,=KD0OLJ,=KD0VQY,=KD6NFT, + =KE0TCW,=KE6AEZ,=KE8LGD,=KF0FMQ,=KF5QMN,=KF5VYL,=KF6PHC,=KF7SEE,=KG6HWF,=KG6JSH,=KG7ART,=KH0WJ, + =KH3AE,=KI5YDR,=KJ6LVS,=KJ6WIE,=KK6CSE,=KK6YBW,=KM6NFS,=KM6RJA,=KO4LNN,=KO4ZYO,=KR3BLK,=KX4ES, + =N3GWR,=N3QIP,=N8KGB,=W2DK,=W8EBR,=WA0CMY,=WA6QDQ,=WB2CAT,=WB4JTT,=WK1K,=WW7CC; # ADIF 138 Kure Island: 31: 61: OC: 29.00: 178.00: 10.0: KH7K: AH7K,KH7K,NH7K,WH7K; @@ -3342,26 +3510,27 @@ American Samoa: 32: 62: OC: -14.32: 170.78: 11.0: KH8: AH8,KH8,NH8,WH8; # ADIF 515 Swains Island: 32: 62: OC: -11.05: 171.25: 11.0: KH8/s: - =K9CS/KH8S; + =W8S; # ADIF 297 Wake Island: 31: 65: OC: 19.28: -166.63: -12.0: KH9: AH9,KH9,NH9,WH9; # ADIF 6 Alaska: 01: 01: NA: 61.40: 148.87: 8.0: KL: - AL,KL,NL,WL,=AC2UJ,=AC7EV,=AD0DK,=AE6FK,=AI4SV,=K6NYB,=K6VH,=K7TWN,=K8VEZ,=K9UL,=K9YJW,=KA1NCN, - =KA2ZSD,=KA3FZH,=KB1UPV,=KD0OXY,=KD7CTV,=KD7OTW,=KE0PRX,=KE0RWP,=KE6FNQ,=KF7WUC,=KG4SUE,=KG7AUD, - =KG7BFK,=KI5HPI,=KJ6EHV,=KJ6GDW,=KJ7FOI,=KJ7OKC,=KJ7YTO,=KK6NRF,=KK7BVD,=KN6JOY,=KN6LTY,=N1TX, - =N2KJU,=N4IJB,=N5UC,=N5WPR,=N7CGC,=N7DKL,=N7XBY,=N7ZXJ,=NA9Z,=W4BZB,=W7ORR,=WA3LEE; + AL,KL,NL,WL,=AC7EV,=AD0DK,=AG6PI,=K3RCJ,=K5GEC,=K7TWN,=K7WJH,=KA1NCN,=KA2ZSD,=KA7TOM,=KB1BED, + =KC0QOB,=KC2LHD,=KD2ZZV,=KD7OTW,=KD7RF,=KD7UZB,=KD8SOV,=KE0PRX,=KE0RWP,=KE0WDR,=KE6FNQ,=KE8BZA, + =KF0EXR,=KF7PFN,=KF7WUC,=KG5WFF,=KG5WFG,=KG7ARV,=KG7AUD,=KG7BFK,=KG7GSU,=KI5HPI,=KI6ZYO,=KI7CPI, + =KI7DUW,=KI7HOC,=KI7SUU,=KJ6EHV,=KJ7AXV,=KJ7IXG,=KJ7VMN,=KK6BVH,=KK6CAU,=KK6IMB,=KK7GPT,=KN6OEF, + =N0SN,=N1TX,=N2KJU,=N7DKL,=W3MKG,=W5MSC,=W7ORR,=WA7MOS; # ADIF 182 Navassa Island: 08: 11: NA: 18.40: 75.00: 5.0: KP1: KP1,NP1,WP1; # ADIF 285 US Virgin Islands: 08: 11: NA: 17.73: 64.80: 4.0: KP2: - KP2,NP2,WP2,=K9VV,=KD4CDL,=KV4BT,=KW2G,=N2JVO,=N8V,=NN0Y,=W4LIS; + KP2,NP2,WP2,=K2ATZ,=K8RF,=K9VV,=KB9OFP,=KQ4HSP,=KV4BT,=N2JVO,=W4LIS; # ADIF 202 Puerto Rico: 08: 11: NA: 18.18: 66.55: 4.0: KP4: - KP3,KP4,NP3,NP4,WP3,WP4,=AL7KI,=K1QM,=K4VIC,=K4W,=KD2BK,=KD2VEC,=KD9PLJ,=KH2RU,=KK4GKZ,=KK4HLB, - =KN4GYF,=KP2H,=KP2Z,=N5YIZ,=N5YXK,=WB2HMY; + KP3,KP4,NP3,NP4,WP3,WP4,=AC3HI,=K4VIC,=KC1RDY,=KC1TBC,=KD7LEI,=KD9PLJ,=KH2RU,=KP2H,=N1JDX,=N2ZXE, + =N3JAB,=WB2HMY,=WH6GRD; # ADIF 43 Desecheo Island: 08: 11: NA: 18.08: 67.88: 4.0: KP5: KP5,NP5,WP5; @@ -3563,12 +3732,8 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LW2E<-33.70/61.00>,LW3D<-33.70/61.00>,LW3E<-33.70/61.00>,LW4D<-33.70/61.00>,LW4E<-33.70/61.00>, LW5D<-33.70/61.00>,LW5E<-33.70/61.00>,LW6D<-33.70/61.00>,LW6E<-33.70/61.00>,LW7D<-33.70/61.00>, LW7E<-33.70/61.00>,LW8D<-33.70/61.00>,LW8E<-33.70/61.00>,LW9D<-33.70/61.00>,LW9E<-33.70/61.00>, - =LU1COP/E<-33.70/61.00>,=LU1EPC/E<-33.70/61.00>,=LU1MAW/D<-33.70/61.00>,=LU2CJV/D<-33.70/61.00>, - =LU3EU/E<-33.70/61.00>,=LU4ARU/D<-33.70/61.00>,=LU4BAN/D<-33.70/61.00>,=LU4DLL/D<-33.70/61.00>, - =LU4DX/D<-33.70/61.00>,=LU5BBV/D<-33.70/61.00>,=LU5DMG/D<-33.70/61.00>,=LU6DM/D<-33.70/61.00>, - =LU6DTJ/D<-33.70/61.00>,=LU7CC/E<-33.70/61.00>,=LU7HW/D<-33.70/61.00>,=LU8ALE/D<-33.70/61.00>, - =LU8DCH/D<-33.70/61.00>,=LU8DRA/D<-33.70/61.00>,=LU8DZH/D<-33.70/61.00>,=LU9DEW/D<-33.70/61.00>, - =LU9DX/D<-33.70/61.00>,=LW3DJC/D<-33.70/61.00>,=LW9EVV/D<-33.70/61.00>, + =LT2F/D<-33.70/61.00>,=LU1DUA/D<-33.70/61.00>,=LU3EU/D<-33.70/61.00>,=LU4ARU/D<-33.70/61.00>, + =LU7CC/E<-33.70/61.00>, # Santa Fe AY0F<-33.72/62.23>,AY1F<-33.72/62.23>,AY2F<-33.72/62.23>,AY3F<-33.72/62.23>,AY4F<-33.72/62.23>, AY5F<-33.72/62.23>,AY6F<-33.72/62.23>,AY7F<-33.72/62.23>,AY8F<-33.72/62.23>,AY9F<-33.72/62.23>, @@ -3608,6 +3773,7 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5F<-33.72/62.23>,LV6F<-33.72/62.23>,LV7F<-33.72/62.23>,LV8F<-33.72/62.23>,LV9F<-33.72/62.23>, LW0F<-33.72/62.23>,LW1F<-33.72/62.23>,LW2F<-33.72/62.23>,LW3F<-33.72/62.23>,LW4F<-33.72/62.23>, LW5F<-33.72/62.23>,LW6F<-33.72/62.23>,LW7F<-33.72/62.23>,LW8F<-33.72/62.23>,LW9F<-33.72/62.23>, + =LT2F/F<-33.72/62.23>, # Chaco and Formosa AY0G<-26.95/58.72>,AY1G<-26.95/58.72>,AY2G<-26.95/58.72>,AY3G<-26.95/58.72>,AY4G<-26.95/58.72>, AY5G<-26.95/58.72>,AY6G<-26.95/58.72>,AY7G<-26.95/58.72>,AY8G<-26.95/58.72>,AY9G<-26.95/58.72>, @@ -3647,6 +3813,7 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5G<-26.95/58.72>,LV6G<-26.95/58.72>,LV7G<-26.95/58.72>,LV8G<-26.95/58.72>,LV9G<-26.95/58.72>, LW0G<-26.95/58.72>,LW1G<-26.95/58.72>,LW2G<-26.95/58.72>,LW3G<-26.95/58.72>,LW4G<-26.95/58.72>, LW5G<-26.95/58.72>,LW6G<-26.95/58.72>,LW7G<-26.95/58.72>,LW8G<-26.95/58.72>,LW9G<-26.95/58.72>, + =LW3EMP/GA<-26.95/58.72>, # Cordoba AY0H<-31.42/64.18>,AY1H<-31.42/64.18>,AY2H<-31.42/64.18>,AY3H<-31.42/64.18>,AY4H<-31.42/64.18>, AY5H<-31.42/64.18>,AY6H<-31.42/64.18>,AY7H<-31.42/64.18>,AY8H<-31.42/64.18>,AY9H<-31.42/64.18>, @@ -3686,7 +3853,7 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5H<-31.42/64.18>,LV6H<-31.42/64.18>,LV7H<-31.42/64.18>,LV8H<-31.42/64.18>,LV9H<-31.42/64.18>, LW0H<-31.42/64.18>,LW1H<-31.42/64.18>,LW2H<-31.42/64.18>,LW3H<-31.42/64.18>,LW4H<-31.42/64.18>, LW5H<-31.42/64.18>,LW6H<-31.42/64.18>,LW7H<-31.42/64.18>,LW8H<-31.42/64.18>,LW9H<-31.42/64.18>, - =LU2DVI/H<-31.42/64.18>, + =LU4HCH/H<-31.42/64.18>,=LU4HK/H<-31.42/64.18>, # Misiones AY0I<-26.92/54.52>,AY1I<-26.92/54.52>,AY2I<-26.92/54.52>,AY3I<-26.92/54.52>,AY4I<-26.92/54.52>, AY5I<-26.92/54.52>,AY6I<-26.92/54.52>,AY7I<-26.92/54.52>,AY8I<-26.92/54.52>,AY9I<-26.92/54.52>, @@ -3726,6 +3893,8 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5I<-26.92/54.52>,LV6I<-26.92/54.52>,LV7I<-26.92/54.52>,LV8I<-26.92/54.52>,LV9I<-26.92/54.52>, LW0I<-26.92/54.52>,LW1I<-26.92/54.52>,LW2I<-26.92/54.52>,LW3I<-26.92/54.52>,LW4I<-26.92/54.52>, LW5I<-26.92/54.52>,LW6I<-26.92/54.52>,LW7I<-26.92/54.52>,LW8I<-26.92/54.52>,LW9I<-26.92/54.52>, + =LU5JAH/I<-26.92/54.52>,=LU5JIB/I<-26.92/54.52>,=LU5JSB/I<-26.92/54.52>,=LU9JDZ/I<-26.92/54.52>, + =LU9JZX/I<-26.92/54.52>,=LU9JZY/I<-26.92/54.52>, # Entre Rios AY0J<-32.05/60.28>,AY1J<-32.05/60.28>,AY2J<-32.05/60.28>,AY3J<-32.05/60.28>,AY4J<-32.05/60.28>, AY5J<-32.05/60.28>,AY6J<-32.05/60.28>,AY7J<-32.05/60.28>,AY8J<-32.05/60.28>,AY9J<-32.05/60.28>, @@ -3843,6 +4012,7 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5L<-28.67/57.63>,LV6L<-28.67/57.63>,LV7L<-28.67/57.63>,LV8L<-28.67/57.63>,LV9L<-28.67/57.63>, LW0L<-28.67/57.63>,LW1L<-28.67/57.63>,LW2L<-28.67/57.63>,LW3L<-28.67/57.63>,LW4L<-28.67/57.63>, LW5L<-28.67/57.63>,LW6L<-28.67/57.63>,LW7L<-28.67/57.63>,LW8L<-28.67/57.63>,LW9L<-28.67/57.63>, + =LU8LCT/L<-28.67/57.63>,=LU9LMD/L<-28.67/57.63>, # Mendoza AY0M<-32.88/68.85>,AY1M<-32.88/68.85>,AY2M<-32.88/68.85>,AY3M<-32.88/68.85>,AY4M<-32.88/68.85>, AY5M<-32.88/68.85>,AY6M<-32.88/68.85>,AY7M<-32.88/68.85>,AY8M<-32.88/68.85>,AY9M<-32.88/68.85>, @@ -4194,7 +4364,6 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV5U<-36.62/64.28>,LV6U<-36.62/64.28>,LV7U<-36.62/64.28>,LV8U<-36.62/64.28>,LV9U<-36.62/64.28>, LW0U<-36.62/64.28>,LW1U<-36.62/64.28>,LW2U<-36.62/64.28>,LW3U<-36.62/64.28>,LW4U<-36.62/64.28>, LW5U<-36.62/64.28>,LW6U<-36.62/64.28>,LW7U<-36.62/64.28>,LW8U<-36.62/64.28>,LW9U<-36.62/64.28>, - =LU7AA/U<-36.62/64.28>, # Rio Negro AY0V[16]<-40.80/63.00>,AY1V[16]<-40.80/63.00>,AY2V[16]<-40.80/63.00>,AY3V[16]<-40.80/63.00>, AY4V[16]<-40.80/63.00>,AY5V[16]<-40.80/63.00>,AY6V[16]<-40.80/63.00>,AY7V[16]<-40.80/63.00>, @@ -4243,7 +4412,8 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV6V[16]<-40.80/63.00>,LV7V[16]<-40.80/63.00>,LV8V[16]<-40.80/63.00>,LV9V[16]<-40.80/63.00>, LW0V[16]<-40.80/63.00>,LW1V[16]<-40.80/63.00>,LW2V[16]<-40.80/63.00>,LW3V[16]<-40.80/63.00>, LW4V[16]<-40.80/63.00>,LW5V[16]<-40.80/63.00>,LW6V[16]<-40.80/63.00>,LW7V[16]<-40.80/63.00>, - LW8V[16]<-40.80/63.00>,LW9V[16]<-40.80/63.00>,=LU9VEA/V[16]<-40.80/63.00>, + LW8V[16]<-40.80/63.00>,LW9V[16]<-40.80/63.00>,=LU1VOF/V[16]<-40.80/63.00>, + =LW6EGE/V[16]<-40.80/63.00>, # Chubut AY0W[16]<-43.30/65.10>,AY1W[16]<-43.30/65.10>,AY2W[16]<-43.30/65.10>,AY3W[16]<-43.30/65.10>, AY4W[16]<-43.30/65.10>,AY5W[16]<-43.30/65.10>,AY6W[16]<-43.30/65.10>,AY7W[16]<-43.30/65.10>, @@ -4292,8 +4462,7 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV6W[16]<-43.30/65.10>,LV7W[16]<-43.30/65.10>,LV8W[16]<-43.30/65.10>,LV9W[16]<-43.30/65.10>, LW0W[16]<-43.30/65.10>,LW1W[16]<-43.30/65.10>,LW2W[16]<-43.30/65.10>,LW3W[16]<-43.30/65.10>, LW4W[16]<-43.30/65.10>,LW5W[16]<-43.30/65.10>,LW6W[16]<-43.30/65.10>,LW7W[16]<-43.30/65.10>, - LW8W[16]<-43.30/65.10>,LW9W[16]<-43.30/65.10>,=LU1XOP/W[16]<-43.30/65.10>, - =LU8WVA/W[16]<-43.30/65.10>, + LW8W[16]<-43.30/65.10>,LW9W[16]<-43.30/65.10>, # Santa Cruz & Tierra del Fuego AY0X[16]<-50.43/69.25>,AY1X[16]<-50.43/69.25>,AY2X[16]<-50.43/69.25>,AY3X[16]<-50.43/69.25>, AY4X[16]<-50.43/69.25>,AY5X[16]<-50.43/69.25>,AY6X[16]<-50.43/69.25>,AY7X[16]<-50.43/69.25>, @@ -4342,9 +4511,8 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV6X[16]<-50.43/69.25>,LV7X[16]<-50.43/69.25>,LV8X[16]<-50.43/69.25>,LV9X[16]<-50.43/69.25>, LW0X[16]<-50.43/69.25>,LW1X[16]<-50.43/69.25>,LW2X[16]<-50.43/69.25>,LW3X[16]<-50.43/69.25>, LW4X[16]<-50.43/69.25>,LW5X[16]<-50.43/69.25>,LW6X[16]<-50.43/69.25>,LW7X[16]<-50.43/69.25>, - LW8X[16]<-50.43/69.25>,LW9X[16]<-50.43/69.25>,=LT2F/XP[16]<-50.43/69.25>, - =LU1AW/X[16]<-50.43/69.25>,=LU1VYL/XO[16]<-50.43/69.25>,=LU1XBK/XA[16]<-50.43/69.25>, - =LU3DVN/X[16]<-50.43/69.25>,=LU8XW/XP[16]<-50.43/69.25>, + LW8X[16]<-50.43/69.25>,LW9X[16]<-50.43/69.25>,=LU1AW/X[16]<-50.43/69.25>, + =LU1XA/XA[16]<-50.43/69.25>,=LU3XCC/XA[16]<-50.43/69.25>, # Neuquen AY0Y[16]<-38.95/68.07>,AY1Y[16]<-38.95/68.07>,AY2Y[16]<-38.95/68.07>,AY3Y[16]<-38.95/68.07>, AY4Y[16]<-38.95/68.07>,AY5Y[16]<-38.95/68.07>,AY6Y[16]<-38.95/68.07>,AY7Y[16]<-38.95/68.07>, @@ -4393,10 +4561,10 @@ Argentina: 13: 14: SA: -32.50: 62.13: 3.0: LU: LV6Y[16]<-38.95/68.07>,LV7Y[16]<-38.95/68.07>,LV8Y[16]<-38.95/68.07>,LV9Y[16]<-38.95/68.07>, LW0Y[16]<-38.95/68.07>,LW1Y[16]<-38.95/68.07>,LW2Y[16]<-38.95/68.07>,LW3Y[16]<-38.95/68.07>, LW4Y[16]<-38.95/68.07>,LW5Y[16]<-38.95/68.07>,LW6Y[16]<-38.95/68.07>,LW7Y[16]<-38.95/68.07>, - LW8Y[16]<-38.95/68.07>,LW9Y[16]<-38.95/68.07>; + LW8Y[16]<-38.95/68.07>,LW9Y[16]<-38.95/68.07>,=LU3YZ/Y[16]<-38.95/68.07>; # ADIF 254 Luxembourg: 14: 27: EU: 50.00: -6.00: -1.0: LX: - LX; + LX,=LX9S/J; # ADIF 146 Lithuania: 15: 29: EU: 55.45: -23.63: -2.0: LY: LY; @@ -4429,7 +4597,7 @@ Lebanon: 20: 39: AS: 33.83: -35.83: -2.0: OD: OD; # ADIF 206 Austria: 15: 28: EU: 47.33: -13.33: -1.0: OE: - OE,=4U0R,=4U1A,=4U1VIC,=4U2U,=4UNR,=4Y1A,=C7A, + OE,=4U0R,=4U100QO,=4U1A,=4U1VIC,=4U2U,=4Y1A,=C7A, # Vienna OE1<48.22/-16.37>, # Salzburg @@ -4520,7 +4688,7 @@ DPR of Korea: 25: 44: AS: 39.78: -126.30: -9.0: P5: P5,P6,P7,P8,P9; # ADIF 263 Netherlands: 14: 27: EU: 52.28: -5.47: -1.0: PA: - PA,PB,PC,PD,PE,PF,PG,PH,PI; + PA,PB,PC,PD,PE,PF,PG,PH,PI,=PA1AW/J,=PC6RH/J,=PE1NIL/J,=PI4CQ/J,=PI4SHV/J; # ADIF 517 Curacao: 09: 11: SA: 12.17: 69.00: 4.0: PJ2: PJ2; @@ -4661,7 +4829,7 @@ Bangladesh: 22: 41: AS: 24.12: -89.65: -6.0: S2: S2,S3; # ADIF 499 Slovenia: 15: 28: EU: 46.00: -14.00: -1.0: S5: - S5; + S5,=VERSION; # ADIF 379 Seychelles: 39: 53: AF: -4.67: -55.47: -4.0: S7: S7; @@ -4741,17 +4909,17 @@ Egypt: 34: 38: AF: 26.28: -28.60: -2.0: SU: 6A,6B,SS,SU; # ADIF 236 Greece: 20: 28: EU: 39.78: -21.78: -2.0: SV: - J4,SV,SW,SX,SY,SZ, -# Sterea Ellada + J4,SV,SW,SX,SY,SZ,=SX52OA, +# Central Greece J41<37.97/-23.72>,SV1<37.97/-23.72>,SW1<37.97/-23.72>,SX1<37.97/-23.72>,SY1<37.97/-23.72>, SZ1<37.97/-23.72>, # West and Central Macedonia J42<40.80/-22.50>,SV2<40.80/-22.50>,SW2<40.80/-22.50>,SX2<40.80/-22.50>,SY2<40.80/-22.50>, - SZ2<40.80/-22.50>, -# Peloponnisos + SZ2<40.80/-22.50>,=SV2JAO/J<40.80/-22.50>,=SX2IMA/J<40.80/-22.50>, +# Peloponnese J43<37.23/-21.80>,SV3<37.23/-21.80>,SW3<37.23/-21.80>,SX3<37.23/-21.80>,SY3<37.23/-21.80>, SZ3<37.23/-21.80>, -# Thessalia +# Thessaly J44<39.63/-22.42>,SV4<39.63/-22.42>,SW4<39.63/-22.42>,SX4<39.63/-22.42>,SY4<39.63/-22.42>, SZ4<39.63/-22.42>, # Epirus @@ -4801,7 +4969,7 @@ Asiatic Turkey: 20: 39: AS: 39.18: -35.65: -2.0: TA: # Turkish Islands TA0<38.95/-26.58>,TB0<38.95/-26.58>,TC0<38.95/-26.58>,YM0<38.95/-26.58>, # Nortwestern Anatolia - TA2<39.92/-32.83>,TB2<39.92/-32.83>,TC2<39.92/-32.83>,YM2<39.92/-32.83>,=TA1C/2<39.92/-32.83>, + TA2<39.92/-32.83>,TB2<39.92/-32.83>,TC2<39.92/-32.83>,YM2<39.92/-32.83>, # Western Anatolia TA3<38.42/-27.12>,TB3<38.42/-27.12>,TC3<38.42/-27.12>,YM3<38.42/-27.12>, # Southwestern Anatolia @@ -4818,7 +4986,7 @@ Asiatic Turkey: 20: 39: AS: 39.18: -35.65: -2.0: TA: TA9<39.95/-41.28>,TB9<39.95/-41.28>,TC9<39.95/-41.28>,YM9<39.95/-41.28>; # ADIF 390 European Turkey: 20: 39: EU: 41.02: -28.97: -2.0: *TA1: - TA1,TB1,TC1,YM1,=TA6CQ/1; + TA1,TB1,TC1,YM1; # ADIF 242 Iceland: 40: 17: EU: 64.80: 18.73: 0.0: TF: TF; @@ -4874,7 +5042,7 @@ Mali: 35: 46: AF: 18.00: 2.58: 0.0: TZ: TZ; # ADIF 54 European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: - R,U, + R,U,=R7AB/P,=RI0SP(40),=RI41POL(40), # Saint Petersburg (SP) R1A<59.95/-30.30>,R1B<59.95/-30.30>,R1F<59.95/-30.30>,R1H<59.95/-30.30>,R1J<59.95/-30.30>, R1L<59.95/-30.30>,R1M<59.95/-30.30>,RA1A<59.95/-30.30>,RA1B<59.95/-30.30>,RA1F<59.95/-30.30>, @@ -4919,7 +5087,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG1J<59.95/-30.30>,UG1L<59.95/-30.30>,UG1M<59.95/-30.30>,UH1A<59.95/-30.30>,UH1B<59.95/-30.30>, UH1F<59.95/-30.30>,UH1H<59.95/-30.30>,UH1J<59.95/-30.30>,UH1L<59.95/-30.30>,UH1M<59.95/-30.30>, UI1A<59.95/-30.30>,UI1B<59.95/-30.30>,UI1F<59.95/-30.30>,UI1H<59.95/-30.30>,UI1J<59.95/-30.30>, - UI1L<59.95/-30.30>,UI1M<59.95/-30.30>,=R150SP<59.95/-30.30>,=R900RO<59.95/-30.30>, + UI1L<59.95/-30.30>,UI1M<59.95/-30.30>, # Leningradskaya (LO) R1C<60.05/-31.75>,R1D<60.05/-31.75>,RA1C<60.05/-31.75>,RA1D<60.05/-31.75>,RC1C<60.05/-31.75>, RC1D<60.05/-31.75>,RD1C<60.05/-31.75>,RD1D<60.05/-31.75>,RE1C<60.05/-31.75>,RE1D<60.05/-31.75>, @@ -4933,7 +5101,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA1D<60.05/-31.75>,UB1C<60.05/-31.75>,UB1D<60.05/-31.75>,UC1C<60.05/-31.75>,UC1D<60.05/-31.75>, UD1C<60.05/-31.75>,UD1D<60.05/-31.75>,UE1C<60.05/-31.75>,UE1D<60.05/-31.75>,UF1C<60.05/-31.75>, UF1D<60.05/-31.75>,UG1C<60.05/-31.75>,UG1D<60.05/-31.75>,UH1C<60.05/-31.75>,UH1D<60.05/-31.75>, - UI1C<60.05/-31.75>,UI1D<60.05/-31.75>,=R900DM<60.05/-31.75>,=R900DV<60.05/-31.75>, + UI1C<60.05/-31.75>,UI1D<60.05/-31.75>, # Karelia (KL) R1N[19]<63.82/-33.00>,RA1N[19]<63.82/-33.00>,RC1N[19]<63.82/-33.00>,RD1N[19]<63.82/-33.00>, RE1N[19]<63.82/-33.00>,RF1N[19]<63.82/-33.00>,RG1N[19]<63.82/-33.00>,RJ1N[19]<63.82/-33.00>, @@ -4951,7 +5119,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: RV1O[19]<63.50/-43.00>,RW1O[19]<63.50/-43.00>,RX1O[19]<63.50/-43.00>,RY1O[19]<63.50/-43.00>, RZ1O[19]<63.50/-43.00>,U1O[19]<63.50/-43.00>,UA1O[19]<63.50/-43.00>,UB1O[19]<63.50/-43.00>, UC1O[19]<63.50/-43.00>,UD1O[19]<63.50/-43.00>,UE1O[19]<63.50/-43.00>,UF1O[19]<63.50/-43.00>, - UG1O[19]<63.50/-43.00>,UH1O[19]<63.50/-43.00>,UI1O[19]<63.50/-43.00>, + UG1O[19]<63.50/-43.00>,UH1O[19]<63.50/-43.00>,UI1O[19]<63.50/-43.00>,=UA9XK/1[19]<63.50/-43.00>, # Nenetsky (NO) R1P[20]<68.83/-54.83>,RA1P[20]<68.83/-54.83>,RC1P[20]<68.83/-54.83>,RD1P[20]<68.83/-54.83>, RE1P[20]<68.83/-54.83>,RF1P[20]<68.83/-54.83>,RG1P[20]<68.83/-54.83>,RJ1P[20]<68.83/-54.83>, @@ -4980,7 +5148,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UD1Q<60.08/-40.45>,UD1R<60.08/-40.45>,UD1S<60.08/-40.45>,UE1Q<60.08/-40.45>,UE1R<60.08/-40.45>, UE1S<60.08/-40.45>,UF1Q<60.08/-40.45>,UF1R<60.08/-40.45>,UF1S<60.08/-40.45>,UG1Q<60.08/-40.45>, UG1R<60.08/-40.45>,UG1S<60.08/-40.45>,UH1Q<60.08/-40.45>,UH1R<60.08/-40.45>,UH1S<60.08/-40.45>, - UI1Q<60.08/-40.45>,UI1R<60.08/-40.45>,UI1S<60.08/-40.45>, + UI1Q<60.08/-40.45>,UI1R<60.08/-40.45>,UI1S<60.08/-40.45>,=R25RDM<60.08/-40.45>, # Novgorodskaya (NV) R1T<58.43/-32.38>,RA1T<58.43/-32.38>,RC1T<58.43/-32.38>,RD1T<58.43/-32.38>,RE1T<58.43/-32.38>, RF1T<58.43/-32.38>,RG1T<58.43/-32.38>,RJ1T<58.43/-32.38>,RK1T<58.43/-32.38>,RL1T<58.43/-32.38>, @@ -5011,7 +5179,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: RV1Z[19]<68.03/-34.57>,RW1Z[19]<68.03/-34.57>,RX1Z[19]<68.03/-34.57>,RY1Z[19]<68.03/-34.57>, RZ1Z[19]<68.03/-34.57>,U1Z[19]<68.03/-34.57>,UA1Z[19]<68.03/-34.57>,UB1Z[19]<68.03/-34.57>, UC1Z[19]<68.03/-34.57>,UD1Z[19]<68.03/-34.57>,UE1Z[19]<68.03/-34.57>,UF1Z[19]<68.03/-34.57>, - UG1Z[19]<68.03/-34.57>,UH1Z[19]<68.03/-34.57>,UI1Z[19]<68.03/-34.57>, + UG1Z[19]<68.03/-34.57>,UH1Z[19]<68.03/-34.57>,UI1Z[19]<68.03/-34.57>,=RN2F/1[19]<68.03/-34.57>, # Moscow city (MA) R2A<55.75/-37.62>,R2B<55.75/-37.62>,R2C<55.75/-37.62>,R3A<55.75/-37.62>,R3B<55.75/-37.62>, R3C<55.75/-37.62>,R5A<55.75/-37.62>,R5B<55.75/-37.62>,R5C<55.75/-37.62>,RA3A<55.75/-37.62>, @@ -5062,7 +5230,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG3C<55.75/-37.62>,UG5A<55.75/-37.62>,UG5B<55.75/-37.62>,UG5C<55.75/-37.62>,UH3A<55.75/-37.62>, UH3B<55.75/-37.62>,UH3C<55.75/-37.62>,UH5A<55.75/-37.62>,UH5B<55.75/-37.62>,UH5C<55.75/-37.62>, UI3A<55.75/-37.62>,UI3B<55.75/-37.62>,UI3C<55.75/-37.62>,UI5A<55.75/-37.62>,UI5B<55.75/-37.62>, - UI5C<55.75/-37.62>,=R150SM<55.75/-37.62>, + UI5C<55.75/-37.62>, # Moskovskaya (MO) R2D<55.70/-36.97>,R2H<55.70/-36.97>,R3D<55.70/-36.97>,R3F<55.70/-36.97>,R3H<55.70/-36.97>, R5D<55.70/-36.97>,R5F<55.70/-36.97>,R5H<55.70/-36.97>,RA3D<55.70/-36.97>,RA3F<55.70/-36.97>, @@ -5109,7 +5277,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG5D<55.70/-36.97>,UG5F<55.70/-36.97>,UG5H<55.70/-36.97>,UH3D<55.70/-36.97>,UH3F<55.70/-36.97>, UH3H<55.70/-36.97>,UH5D<55.70/-36.97>,UH5F<55.70/-36.97>,UH5H<55.70/-36.97>,UI3D<55.70/-36.97>, UI3F<55.70/-36.97>,UI3H<55.70/-36.97>,UI5D<55.70/-36.97>,UI5F<55.70/-36.97>,UI5H<55.70/-36.97>, - =R100GA<55.70/-36.97>,=R105KGB<55.70/-36.97>,=R150SMO<55.70/-36.97>, + =R8FF/3<55.70/-36.97>,=R9UG/3<55.70/-36.97>, # Orlovskaya (OR) R2E<52.85/-36.43>,R3E<52.85/-36.43>,R5E<52.85/-36.43>,RA3E<52.85/-36.43>,RA5E<52.85/-36.43>, RC2E<52.85/-36.43>,RC3E<52.85/-36.43>,RC5E<52.85/-36.43>,RD2E<52.85/-36.43>,RD3E<52.85/-36.43>, @@ -5197,7 +5365,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5L<55.00/-33.00>,UB3L<55.00/-33.00>,UB5L<55.00/-33.00>,UC3L<55.00/-33.00>,UC5L<55.00/-33.00>, UD3L<55.00/-33.00>,UD5L<55.00/-33.00>,UE3L<55.00/-33.00>,UE5L<55.00/-33.00>,UF3L<55.00/-33.00>, UF5L<55.00/-33.00>,UG3L<55.00/-33.00>,UG5L<55.00/-33.00>,UH3L<55.00/-33.00>,UH5L<55.00/-33.00>, - UI3L<55.00/-33.00>,UI5L<55.00/-33.00>,=UA3LMR/P<55.00/-33.00>, + UI3L<55.00/-33.00>,UI5L<55.00/-33.00>,=R80OSM<55.00/-33.00>, # Yaroslavskaya (YR) R2M<57.87/-39.20>,R3M<57.87/-39.20>,R5M<57.87/-39.20>,RA3M<57.87/-39.20>,RA5M<57.87/-39.20>, RC2M<57.87/-39.20>,RC3M<57.87/-39.20>,RC5M<57.87/-39.20>,RD2M<57.87/-39.20>,RD3M<57.87/-39.20>, @@ -5215,7 +5383,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5M<57.87/-39.20>,UB3M<57.87/-39.20>,UB5M<57.87/-39.20>,UC3M<57.87/-39.20>,UC5M<57.87/-39.20>, UD3M<57.87/-39.20>,UD5M<57.87/-39.20>,UE3M<57.87/-39.20>,UE5M<57.87/-39.20>,UF3M<57.87/-39.20>, UF5M<57.87/-39.20>,UG3M<57.87/-39.20>,UG5M<57.87/-39.20>,UH3M<57.87/-39.20>,UH5M<57.87/-39.20>, - UI3M<57.87/-39.20>,UI5M<57.87/-39.20>,=RM8W/3<57.87/-39.20>, + UI3M<57.87/-39.20>,UI5M<57.87/-39.20>, # Kostromskaya (KS) R2N<58.55/-43.68>,R3N<58.55/-43.68>,R5N<58.55/-43.68>,RA3N<58.55/-43.68>,RA5N<58.55/-43.68>, RC2N<58.55/-43.68>,RC3N<58.55/-43.68>,RC5N<58.55/-43.68>,RD2N<58.55/-43.68>,RD3N<58.55/-43.68>, @@ -5251,7 +5419,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5P<53.92/-37.58>,UB3P<53.92/-37.58>,UB5P<53.92/-37.58>,UC3P<53.92/-37.58>,UC5P<53.92/-37.58>, UD3P<53.92/-37.58>,UD5P<53.92/-37.58>,UE3P<53.92/-37.58>,UE5P<53.92/-37.58>,UF3P<53.92/-37.58>, UF5P<53.92/-37.58>,UG3P<53.92/-37.58>,UG5P<53.92/-37.58>,UH3P<53.92/-37.58>,UH5P<53.92/-37.58>, - UI3P<53.92/-37.58>,UI5P<53.92/-37.58>,=R310TOZ<53.92/-37.58>, + UI3P<53.92/-37.58>,UI5P<53.92/-37.58>, # Voronezhskaya (VR) R2O<51.05/-40.15>,R2Q<51.05/-40.15>,R3K<51.05/-40.15>,R3O<51.05/-40.15>,R3Q<51.05/-40.15>, R5K<51.05/-40.15>,R5O<51.05/-40.15>,R5Q<51.05/-40.15>,RA3K<51.05/-40.15>,RA3O<51.05/-40.15>, @@ -5298,7 +5466,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG5K<51.05/-40.15>,UG5O<51.05/-40.15>,UG5Q<51.05/-40.15>,UH3K<51.05/-40.15>,UH3O<51.05/-40.15>, UH3Q<51.05/-40.15>,UH5K<51.05/-40.15>,UH5O<51.05/-40.15>,UH5Q<51.05/-40.15>,UI3K<51.05/-40.15>, UI3O<51.05/-40.15>,UI3Q<51.05/-40.15>,UI5K<51.05/-40.15>,UI5O<51.05/-40.15>,UI5Q<51.05/-40.15>, - =RA80OW<51.05/-40.15>,=RN80OW<51.05/-40.15>,=RO80OW<51.05/-40.15>,=RU80OW<51.05/-40.15>, + =R75AAR<51.05/-40.15>, # Tambovskaya (TB) R2R<52.72/-41.57>,R3R<52.72/-41.57>,R5R<52.72/-41.57>,RA3R<52.72/-41.57>,RA5R<52.72/-41.57>, RC2R<52.72/-41.57>,RC3R<52.72/-41.57>,RC5R<52.72/-41.57>,RD2R<52.72/-41.57>,RD3R<52.72/-41.57>, @@ -5316,7 +5484,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5R<52.72/-41.57>,UB3R<52.72/-41.57>,UB5R<52.72/-41.57>,UC3R<52.72/-41.57>,UC5R<52.72/-41.57>, UD3R<52.72/-41.57>,UD5R<52.72/-41.57>,UE3R<52.72/-41.57>,UE5R<52.72/-41.57>,UF3R<52.72/-41.57>, UF5R<52.72/-41.57>,UG3R<52.72/-41.57>,UG5R<52.72/-41.57>,UH3R<52.72/-41.57>,UH5R<52.72/-41.57>, - UI3R<52.72/-41.57>,UI5R<52.72/-41.57>, + UI3R<52.72/-41.57>,UI5R<52.72/-41.57>,=R9CZ/3<52.72/-41.57>, # Ryazanskaya (RA) R2S<54.40/-40.60>,R3S<54.40/-40.60>,R5S<54.40/-40.60>,RA3S<54.40/-40.60>,RA5S<54.40/-40.60>, RC2S<54.40/-40.60>,RC3S<54.40/-40.60>,RC5S<54.40/-40.60>,RD2S<54.40/-40.60>,RD3S<54.40/-40.60>, @@ -5352,7 +5520,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5T<56.48/-44.53>,UB3T<56.48/-44.53>,UB5T<56.48/-44.53>,UC3T<56.48/-44.53>,UC5T<56.48/-44.53>, UD3T<56.48/-44.53>,UD5T<56.48/-44.53>,UE3T<56.48/-44.53>,UE5T<56.48/-44.53>,UF3T<56.48/-44.53>, UF5T<56.48/-44.53>,UG3T<56.48/-44.53>,UG5T<56.48/-44.53>,UH3T<56.48/-44.53>,UH5T<56.48/-44.53>, - UI3T<56.48/-44.53>,UI5T<56.48/-44.53>,=R150SNN<56.48/-44.53>, + UI3T<56.48/-44.53>,UI5T<56.48/-44.53>, # Ivanovskaya (IV) R2U<57.02/-41.52>,R3U<57.02/-41.52>,R5U<57.02/-41.52>,RA3U<57.02/-41.52>,RA5U<57.02/-41.52>, RC2U<57.02/-41.52>,RC3U<57.02/-41.52>,RC5U<57.02/-41.52>,RD2U<57.02/-41.52>,RD3U<57.02/-41.52>, @@ -5442,7 +5610,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA5Y<52.95/-33.40>,UB3Y<52.95/-33.40>,UB5Y<52.95/-33.40>,UC3Y<52.95/-33.40>,UC5Y<52.95/-33.40>, UD3Y<52.95/-33.40>,UD5Y<52.95/-33.40>,UE3Y<52.95/-33.40>,UE5Y<52.95/-33.40>,UF3Y<52.95/-33.40>, UF5Y<52.95/-33.40>,UG3Y<52.95/-33.40>,UG5Y<52.95/-33.40>,UH3Y<52.95/-33.40>,UH5Y<52.95/-33.40>, - UI3Y<52.95/-33.40>,UI5Y<52.95/-33.40>, + UI3Y<52.95/-33.40>,UI5Y<52.95/-33.40>,=R90BAK<52.95/-33.40>, # Belgorodskaya (BO) R2Z<50.77/-37.45>,R3Z<50.77/-37.45>,R5Z<50.77/-37.45>,RA3Z<50.77/-37.45>,RA5Z<50.77/-37.45>, RC2Z<50.77/-37.45>,RC3Z<50.77/-37.45>,RC5Z<50.77/-37.45>,RD2Z<50.77/-37.45>,RD3Z<50.77/-37.45>, @@ -5474,7 +5642,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA4B<49.73/-44.12>,UB4A<49.73/-44.12>,UB4B<49.73/-44.12>,UC4A<49.73/-44.12>,UC4B<49.73/-44.12>, UD4A<49.73/-44.12>,UD4B<49.73/-44.12>,UE4A<49.73/-44.12>,UE4B<49.73/-44.12>,UF4A<49.73/-44.12>, UF4B<49.73/-44.12>,UG4A<49.73/-44.12>,UG4B<49.73/-44.12>,UH4A<49.73/-44.12>,UH4B<49.73/-44.12>, - UI4A<49.73/-44.12>,UI4B<49.73/-44.12>,=RU80SB<49.73/-44.12>,=UE80SK<49.73/-44.12>, + UI4A<49.73/-44.12>,UI4B<49.73/-44.12>, # Saratovskaya (SA) R4C<51.78/-46.73>,R4D<51.78/-46.73>,RA4C<51.78/-46.73>,RA4D<51.78/-46.73>,RC4C<51.78/-46.73>, RC4D<51.78/-46.73>,RD4C<51.78/-46.73>,RD4D<51.78/-46.73>,RE4C<51.78/-46.73>,RE4D<51.78/-46.73>, @@ -5513,8 +5681,8 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UC4H[30]<53.45/-50.45>,UC4I[30]<53.45/-50.45>,UD4H[30]<53.45/-50.45>,UD4I[30]<53.45/-50.45>, UE4H[30]<53.45/-50.45>,UE4I[30]<53.45/-50.45>,UF4H[30]<53.45/-50.45>,UF4I[30]<53.45/-50.45>, UG4H[30]<53.45/-50.45>,UG4I[30]<53.45/-50.45>,UH4H[30]<53.45/-50.45>,UH4I[30]<53.45/-50.45>, - UI4H[30]<53.45/-50.45>,UI4I[30]<53.45/-50.45>,=R2023EN[30]<53.45/-50.45>,=R4HAT[29]<53.45/-50.45>, - =R4HC[29]<53.45/-50.45>,=R4HCE[29]<53.45/-50.45>,=R4HCZ[29]<53.45/-50.45>,=R4HD[29]<53.45/-50.45>, + UI4H[30]<53.45/-50.45>,UI4I[30]<53.45/-50.45>,=R4HAT[29]<53.45/-50.45>,=R4HC[29]<53.45/-50.45>, + =R4HCE[29]<53.45/-50.45>,=R4HCZ[29]<53.45/-50.45>,=R4HD[29]<53.45/-50.45>, =R4HDC[29]<53.45/-50.45>,=R4HDR[29]<53.45/-50.45>,=R4HL[29]<53.45/-50.45>,=R4IC[29]<53.45/-50.45>, =R4ID[29]<53.45/-50.45>,=R4II[29]<53.45/-50.45>,=R4IK[29]<53.45/-50.45>,=R4IM[29]<53.45/-50.45>, =R4IN[29]<53.45/-50.45>,=R4IO[29]<53.45/-50.45>,=R4IT[29]<53.45/-50.45>,=RA4HL[29]<53.45/-50.45>, @@ -5522,7 +5690,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: =RM4I[29]<53.45/-50.45>,=RN4HFJ[29]<53.45/-50.45>,=RN4HIF[29]<53.45/-50.45>, =RU4HD[29]<53.45/-50.45>,=RU4HP[29]<53.45/-50.45>,=RU4I[29]<53.45/-50.45>, =RW4HM[29]<53.45/-50.45>,=RW4HTK[29]<53.45/-50.45>,=RW4HW[29]<53.45/-50.45>, - =RW4HZ[29]<53.45/-50.45>,=RW9WJ/4[30]<53.45/-50.45>,=UA4H[29]<53.45/-50.45>, + =RW4HZ[29]<53.45/-50.45>,=UA4H[29]<53.45/-50.45>,=UA4HAZ/P[30]<53.45/-50.45>, =UA4HBM[29]<53.45/-50.45>,=UA4HGL[29]<53.45/-50.45>,=UA4HIP[29]<53.45/-50.45>, =UA4HRZ[29]<53.45/-50.45>,=UA4HY[29]<53.45/-50.45>,=UC4I[29]<53.45/-50.45>, =UI4I[29]<53.45/-50.45>, @@ -5553,7 +5721,8 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA4O<58.77/-49.83>,UB4N<58.77/-49.83>,UB4O<58.77/-49.83>,UC4N<58.77/-49.83>,UC4O<58.77/-49.83>, UD4N<58.77/-49.83>,UD4O<58.77/-49.83>,UE4N<58.77/-49.83>,UE4O<58.77/-49.83>,UF4N<58.77/-49.83>, UF4O<58.77/-49.83>,UG4N<58.77/-49.83>,UG4O<58.77/-49.83>,UH4N<58.77/-49.83>,UH4O<58.77/-49.83>, - UI4N<58.77/-49.83>,UI4O<58.77/-49.83>,=UA4NF[30]<58.77/-49.83>, + UI4N<58.77/-49.83>,UI4O<58.77/-49.83>,=R9FCS/4<58.77/-49.83>,=RA4NCC[30]<58.77/-49.83>, + =UA4NF[30]<58.77/-49.83>, # Tatarstan (TA) R4P<55.55/-50.93>,R4Q<55.55/-50.93>,R4R<55.55/-50.93>,RA4P<55.55/-50.93>,RA4Q<55.55/-50.93>, RA4R<55.55/-50.93>,RC4P<55.55/-50.93>,RC4Q<55.55/-50.93>,RC4R<55.55/-50.93>,RD4P<55.55/-50.93>, @@ -5573,9 +5742,11 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UD4P<55.55/-50.93>,UD4Q<55.55/-50.93>,UD4R<55.55/-50.93>,UE4P<55.55/-50.93>,UE4Q<55.55/-50.93>, UE4R<55.55/-50.93>,UF4P<55.55/-50.93>,UF4Q<55.55/-50.93>,UF4R<55.55/-50.93>,UG4P<55.55/-50.93>, UG4Q<55.55/-50.93>,UG4R<55.55/-50.93>,UH4P<55.55/-50.93>,UH4Q<55.55/-50.93>,UH4R<55.55/-50.93>, - UI4P<55.55/-50.93>,UI4Q<55.55/-50.93>,UI4R<55.55/-50.93>,=R150RS<55.55/-50.93>, - =R150SF<55.55/-50.93>,=R22SGK<55.55/-50.93>,=RJ4P[30]<55.55/-50.93>,=RK4P[30]<55.55/-50.93>, - =UA4PN[30]<55.55/-50.93>, + UI4P<55.55/-50.93>,UI4Q<55.55/-50.93>,UI4R<55.55/-50.93>,=R4PH[30]<55.55/-50.93>, + =R4RB[30]<55.55/-50.93>,=R4RM[30]<55.55/-50.93>,=RJ4P[30]<55.55/-50.93>,=RK4P[30]<55.55/-50.93>, + =RT4Q[30]<55.55/-50.93>,=RZ4PXP[30]<55.55/-50.93>,=UA4FMQ/P<55.55/-50.93>, + =UA4PN[30]<55.55/-50.93>,=UA4PRU[30]<55.55/-50.93>,=UA4Q[30]<55.55/-50.93>, + =UG4P[30]<55.55/-50.93>, # Marij-El (MR) R4S<56.70/-47.87>,R4T<56.70/-47.87>,RA4S<56.70/-47.87>,RA4T<56.70/-47.87>,RC4S<56.70/-47.87>, RC4T<56.70/-47.87>,RD4S<56.70/-47.87>,RD4T<56.70/-47.87>,RE4S<56.70/-47.87>,RE4T<56.70/-47.87>, @@ -5589,7 +5760,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA4T<56.70/-47.87>,UB4S<56.70/-47.87>,UB4T<56.70/-47.87>,UC4S<56.70/-47.87>,UC4T<56.70/-47.87>, UD4S<56.70/-47.87>,UD4T<56.70/-47.87>,UE4S<56.70/-47.87>,UE4T<56.70/-47.87>,UF4S<56.70/-47.87>, UF4T<56.70/-47.87>,UG4S<56.70/-47.87>,UG4T<56.70/-47.87>,UH4S<56.70/-47.87>,UH4T<56.70/-47.87>, - UI4S<56.70/-47.87>,UI4T<56.70/-47.87>,=UA5B/4<56.70/-47.87>, + UI4S<56.70/-47.87>,UI4T<56.70/-47.87>, # Mordoviya (MD) R4U<54.43/-44.45>,RA4U<54.43/-44.45>,RC4U<54.43/-44.45>,RD4U<54.43/-44.45>,RE4U<54.43/-44.45>, RF4U<54.43/-44.45>,RG4U<54.43/-44.45>,RJ4U<54.43/-44.45>,RK4U<54.43/-44.45>,RL4U<54.43/-44.45>, @@ -5606,7 +5777,8 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: RV4W[30]<57.28/-52.75>,RW4W[30]<57.28/-52.75>,RX4W[30]<57.28/-52.75>,RY4W[30]<57.28/-52.75>, RZ4W[30]<57.28/-52.75>,U4W[30]<57.28/-52.75>,UA4W[30]<57.28/-52.75>,UB4W[30]<57.28/-52.75>, UC4W[30]<57.28/-52.75>,UD4W[30]<57.28/-52.75>,UE4W[30]<57.28/-52.75>,UF4W[30]<57.28/-52.75>, - UG4W[30]<57.28/-52.75>,UH4W[30]<57.28/-52.75>,UI4W[30]<57.28/-52.75>, + UG4W[30]<57.28/-52.75>,UH4W[30]<57.28/-52.75>,UI4W[30]<57.28/-52.75>,=R0CM/4[30]<57.28/-52.75>, + =R100FP[30]<57.28/-52.75>,=R4WAN/P[30]<57.28/-52.75>, # Chuvashiya (CU) R4Y<55.55/-47.10>,R4Z<55.55/-47.10>,RA4Y<55.55/-47.10>,RA4Z<55.55/-47.10>,RC4Y<55.55/-47.10>, RC4Z<55.55/-47.10>,RD4Y<55.55/-47.10>,RD4Z<55.55/-47.10>,RE4Y<55.55/-47.10>,RE4Z<55.55/-47.10>, @@ -5620,7 +5792,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UA4Z<55.55/-47.10>,UB4Y<55.55/-47.10>,UB4Z<55.55/-47.10>,UC4Y<55.55/-47.10>,UC4Z<55.55/-47.10>, UD4Y<55.55/-47.10>,UD4Z<55.55/-47.10>,UE4Y<55.55/-47.10>,UE4Z<55.55/-47.10>,UF4Y<55.55/-47.10>, UF4Z<55.55/-47.10>,UG4Y<55.55/-47.10>,UG4Z<55.55/-47.10>,UH4Y<55.55/-47.10>,UH4Z<55.55/-47.10>, - UI4Y<55.55/-47.10>,UI4Z<55.55/-47.10>,=R136YWI<55.55/-47.10>, + UI4Y<55.55/-47.10>,UI4Z<55.55/-47.10>, # Krasnodarskiy (KR) R6A<45.37/-39.43>,R6B<45.37/-39.43>,R6C<45.37/-39.43>,R6D<45.37/-39.43>,R7A<45.37/-39.43>, R7B<45.37/-39.43>,R7C<45.37/-39.43>,R7D<45.37/-39.43>,RA6A<45.37/-39.43>,RA6B<45.37/-39.43>, @@ -5671,9 +5843,8 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG7C<45.37/-39.43>,UG7D<45.37/-39.43>,UH6A<45.37/-39.43>,UH6B<45.37/-39.43>,UH6C<45.37/-39.43>, UH6D<45.37/-39.43>,UH7A<45.37/-39.43>,UH7B<45.37/-39.43>,UH7C<45.37/-39.43>,UH7D<45.37/-39.43>, UI6A<45.37/-39.43>,UI6B<45.37/-39.43>,UI6C<45.37/-39.43>,UI6D<45.37/-39.43>,UI7A<45.37/-39.43>, - UI7B<45.37/-39.43>,UI7C<45.37/-39.43>,UI7D<45.37/-39.43>,=R0SBC/6<45.37/-39.43>, - =R9GM/6<45.37/-39.43>,=R9OM/6<45.37/-39.43>,=RA9ULL/6<45.37/-39.43>,=RA9UUY/6<45.37/-39.43>, - =RT9K/6<45.37/-39.43>, + UI7B<45.37/-39.43>,UI7C<45.37/-39.43>,UI7D<45.37/-39.43>,=R9GM/6<45.37/-39.43>, + =R9OM/6<45.37/-39.43>,=RA9ULL/6<45.37/-39.43>,=RJ9I/6<45.37/-39.43>, # Karachay-Cherkessia (KC) R6E<43.92/-41.78>,R7E<43.92/-41.78>,RA6E<43.92/-41.78>,RA7E<43.92/-41.78>,RC6E<43.92/-41.78>, RC7E<43.92/-41.78>,RD6E<43.92/-41.78>,RD7E<43.92/-41.78>,RE6E<43.92/-41.78>,RE7E<43.92/-41.78>, @@ -5738,7 +5909,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG7H<45.05/-43.27>,UG7T<45.05/-43.27>,UH6F<45.05/-43.27>,UH6G<45.05/-43.27>,UH6H<45.05/-43.27>, UH6T<45.05/-43.27>,UH7F<45.05/-43.27>,UH7G<45.05/-43.27>,UH7H<45.05/-43.27>,UH7T<45.05/-43.27>, UI6F<45.05/-43.27>,UI6G<45.05/-43.27>,UI6H<45.05/-43.27>,UI6T<45.05/-43.27>,UI7F<45.05/-43.27>, - UI7G<45.05/-43.27>,UI7H<45.05/-43.27>,UI7T<45.05/-43.27>, + UI7G<45.05/-43.27>,UI7H<45.05/-43.27>,UI7T<45.05/-43.27>,=RU9CK/7<45.05/-43.27>, # Kalmykiya (KM) R6I<46.57/-45.32>,R7I<46.57/-45.32>,RA6I<46.57/-45.32>,RA7I<46.57/-45.32>,RC6I<46.57/-45.32>, RC7I<46.57/-45.32>,RD6I<46.57/-45.32>,RD7I<46.57/-45.32>,RE6I<46.57/-45.32>,RE7I<46.57/-45.32>, @@ -5805,8 +5976,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UG6N<47.87/-41.18>,UG7L<47.87/-41.18>,UG7M<47.87/-41.18>,UG7N<47.87/-41.18>,UH6L<47.87/-41.18>, UH6M<47.87/-41.18>,UH6N<47.87/-41.18>,UH7L<47.87/-41.18>,UH7M<47.87/-41.18>,UH7N<47.87/-41.18>, UI6L<47.87/-41.18>,UI6M<47.87/-41.18>,UI6N<47.87/-41.18>,UI7L<47.87/-41.18>,UI7M<47.87/-41.18>, - UI7N<47.87/-41.18>,=R100AE<47.87/-41.18>,=R100ME<47.87/-41.18>,=R2023NY<47.87/-41.18>, - =UE23NY<47.87/-41.18>,=UE80M<47.87/-41.18>,=UE80ML<47.87/-41.18>, + UI7N<47.87/-41.18>,=RM8W/6<47.87/-41.18>,=RV9WB/6<47.87/-41.18>,=UE37EUF<47.87/-41.18>, # Chechnya (CN) R6P<43.40/-45.72>,R7P<43.40/-45.72>,RA6P<43.40/-45.72>,RA7P<43.40/-45.72>,RC6P<43.40/-45.72>, RC7P<43.40/-45.72>,RD6P<43.40/-45.72>,RD7P<43.40/-45.72>,RE6P<43.40/-45.72>,RE7P<43.40/-45.72>, @@ -5860,7 +6030,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UE6V<47.23/-47.23>,UE7U<47.23/-47.23>,UE7V<47.23/-47.23>,UF6U<47.23/-47.23>,UF7U<47.23/-47.23>, UF7V<47.23/-47.23>,UG6U<47.23/-47.23>,UG6V<47.23/-47.23>,UG7U<47.23/-47.23>,UG7V<47.23/-47.23>, UH6U<47.23/-47.23>,UH6V<47.23/-47.23>,UH7U<47.23/-47.23>,UH7V<47.23/-47.23>,UI6U<47.23/-47.23>, - UI6V<47.23/-47.23>,UI7U<47.23/-47.23>,UI7V<47.23/-47.23>, + UI6V<47.23/-47.23>,UI7U<47.23/-47.23>,UI7V<47.23/-47.23>,=R465AO<47.23/-47.23>, # Dagestan (DA) R6W<43.10/-46.88>,R7W<43.10/-46.88>,RA6W<43.10/-46.88>,RA7W<43.10/-46.88>,RC6W<43.10/-46.88>, RC7W<43.10/-46.88>,RD6W<43.10/-46.88>,RD7W<43.10/-46.88>,RE6W<43.10/-46.88>,RE7W<43.10/-46.88>, @@ -6038,8 +6208,7 @@ European Russia: 16: 29: EU: 53.65: -41.37: -4.0: UA: UF8X(17)[20]<64.28/-54.47>,UF9X(17)[20]<64.28/-54.47>,UG1I(17)[20]<64.28/-54.47>, UG8X(17)[20]<64.28/-54.47>,UG9X(17)[20]<64.28/-54.47>,UH1I(17)[20]<64.28/-54.47>, UH8X(17)[20]<64.28/-54.47>,UH9X(17)[20]<64.28/-54.47>,UI1I(17)[20]<64.28/-54.47>, - UI8X(17)[20]<64.28/-54.47>,UI9X(17)[20]<64.28/-54.47>,=R8MB/1(17)[20]<64.28/-54.47>, - =RA3X/1(17)[20]<64.28/-54.47>,=RL1I/P(17)[20]<64.28/-54.47>; + UI8X(17)[20]<64.28/-54.47>,UI9X(17)[20]<64.28/-54.47>,=RA3X/1(17)[20]<64.28/-54.47>; # ADIF 126 Kaliningrad: 15: 29: EU: 54.72: -20.52: -3.0: UA2: R2F,R2K,RA2,RC2F,RC2K,RD2F,RD2K,RE2F,RE2K,RF2F,RF2K,RG2F,RG2K,RJ2F,RJ2K,RK2F,RK2K,RL2F,RL2K,RM2F, @@ -6052,7 +6221,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: RN0(19),RN8,RN9,RO0(19),RO8,RO9,RQ0(19),RQ8,RQ9,RT0(19),RT8,RT9,RU0(19),RU8,RU9,RV0(19),RV8,RV9, RW0(19),RW8,RW9,RX0(19),RX8,RX9,RY0(19),RY8,RY9,RZ0(19),RZ8,RZ9,U0(19),U8,U9,UA0(19),UA8,UA9, UB0(19),UB8,UB9,UC0(19),UC8,UC9,UD0(19),UD8,UD9,UE0(19),UE8,UE9,UF0(19),UF8,UF9,UG0(19),UG8,UG9, - UH0(19),UH8,UH9,UI0(19),UI8,UI9,=RI41POL(19), + UH0(19),UH8,UH9,UI0(19),UI8,UI9,=RF9C/P, # Chelyabinskaya (CB) R8A<54.75/-60.70>~-6.0~,R8B<54.75/-60.70>~-6.0~,R9A<54.75/-60.70>~-6.0~,R9B<54.75/-60.70>~-6.0~, RA8A<54.75/-60.70>~-6.0~,RA8B<54.75/-60.70>~-6.0~,RA9A<54.75/-60.70>~-6.0~, @@ -6094,7 +6263,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG9A<54.75/-60.70>~-6.0~,UG9B<54.75/-60.70>~-6.0~,UH8A<54.75/-60.70>~-6.0~, UH8B<54.75/-60.70>~-6.0~,UH9A<54.75/-60.70>~-6.0~,UH9B<54.75/-60.70>~-6.0~, UI8A<54.75/-60.70>~-6.0~,UI8B<54.75/-60.70>~-6.0~,UI9A<54.75/-60.70>~-6.0~, - UI9B<54.75/-60.70>~-6.0~,=RA0QK/8<54.75/-60.70>~-6.0~, + UI9B<54.75/-60.70>~-6.0~,=RA0QK/8<54.75/-60.70>~-6.0~,=UA9AR/P<54.75/-60.70>~-6.0~, # Sverdlovskaya (SV) R8C<58.70/-61.33>~-6.0~,R8D<58.70/-61.33>~-6.0~,R8E<58.70/-61.33>~-6.0~,R9C<58.70/-61.33>~-6.0~, R9D<58.70/-61.33>~-6.0~,R9E<58.70/-61.33>~-6.0~,RA8C<58.70/-61.33>~-6.0~,RA8D<58.70/-61.33>~-6.0~, @@ -6156,7 +6325,8 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UH8D<58.70/-61.33>~-6.0~,UH8E<58.70/-61.33>~-6.0~,UH9C<58.70/-61.33>~-6.0~, UH9D<58.70/-61.33>~-6.0~,UH9E<58.70/-61.33>~-6.0~,UI8C<58.70/-61.33>~-6.0~, UI8D<58.70/-61.33>~-6.0~,UI8E<58.70/-61.33>~-6.0~,UI9C<58.70/-61.33>~-6.0~, - UI9D<58.70/-61.33>~-6.0~,UI9E<58.70/-61.33>~-6.0~,=RW9C[20]<58.70/-61.33>~-6.0~, + UI9D<58.70/-61.33>~-6.0~,UI9E<58.70/-61.33>~-6.0~,=R9CS/P<58.70/-61.33>~-6.0~, + =RW9C[20]<58.70/-61.33>~-6.0~, # Tomskaya (TO) R8H(18)[31]<58.75/-82.13>,R8I(18)[31]<58.75/-82.13>,R9H(18)[31]<58.75/-82.13>, R9I(18)[31]<58.75/-82.13>,RA8H(18)[31]<58.75/-82.13>,RA8I(18)[31]<58.75/-82.13>, @@ -6199,7 +6369,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG9H(18)[31]<58.75/-82.13>,UG9I(18)[31]<58.75/-82.13>,UH8H(18)[31]<58.75/-82.13>, UH8I(18)[31]<58.75/-82.13>,UH9H(18)[31]<58.75/-82.13>,UH9I(18)[31]<58.75/-82.13>, UI8H(18)[31]<58.75/-82.13>,UI8I(18)[31]<58.75/-82.13>,UI9H(18)[31]<58.75/-82.13>, - UI9I(18)[31]<58.75/-82.13>,=RAEM(18)[31]<58.75/-82.13>, + UI9I(18)[31]<58.75/-82.13>, # Khanty-Mansyisky (HM) R8J[20]<62.25/-70.17>~-6.0~,R9J[20]<62.25/-70.17>~-6.0~,RA8J[20]<62.25/-70.17>~-6.0~, RA9J[20]<62.25/-70.17>~-6.0~,RC8J[20]<62.25/-70.17>~-6.0~,RC9J[20]<62.25/-70.17>~-6.0~, @@ -6221,8 +6391,9 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UD9J[20]<62.25/-70.17>~-6.0~,UE8J[20]<62.25/-70.17>~-6.0~,UE9J[20]<62.25/-70.17>~-6.0~, UF8J[20]<62.25/-70.17>~-6.0~,UF9J[20]<62.25/-70.17>~-6.0~,UG8J[20]<62.25/-70.17>~-6.0~, UG9J[20]<62.25/-70.17>~-6.0~,UH8J[20]<62.25/-70.17>~-6.0~,UH9J[20]<62.25/-70.17>~-6.0~, - UI8J[20]<62.25/-70.17>~-6.0~,UI9J[20]<62.25/-70.17>~-6.0~,=R9SAO/P[20]<62.25/-70.17>~-6.0~, - =RK4PA/9[20]<62.25/-70.17>~-6.0~, + UI8J[20]<62.25/-70.17>~-6.0~,UI9J[20]<62.25/-70.17>~-6.0~,=RA9J[21]<62.25/-70.17>~-6.0~, + =RA9JM[21]<62.25/-70.17>~-6.0~,=RC9J[21]<62.25/-70.17>~-6.0~,=RK4PA/9[20]<62.25/-70.17>~-6.0~, + =RT9J[21]<62.25/-70.17>~-6.0~,=UA8J[21]<62.25/-70.17>~-6.0~,=UA9JNT[21]<62.25/-70.17>~-6.0~, # Yamalo-Nenetsky (YN) R8K[20]<65.30/-74.03>~-6.0~,R9K[20]<65.30/-74.03>~-6.0~,RA8K[20]<65.30/-74.03>~-6.0~, RA9K[20]<65.30/-74.03>~-6.0~,RC8K[20]<65.30/-74.03>~-6.0~,RC9K[20]<65.30/-74.03>~-6.0~, @@ -6245,6 +6416,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UE9K[20]<65.30/-74.03>~-6.0~,UF8K[20]<65.30/-74.03>~-6.0~,UF9K[20]<65.30/-74.03>~-6.0~, UG8K[20]<65.30/-74.03>~-6.0~,UG9K[20]<65.30/-74.03>~-6.0~,UH8K[20]<65.30/-74.03>~-6.0~, UH9K[20]<65.30/-74.03>~-6.0~,UI8K[20]<65.30/-74.03>~-6.0~,UI9K[20]<65.30/-74.03>~-6.0~, + =R2023BA[20]<65.30/-74.03>~-6.0~,=R9XD/9[20]<65.30/-74.03>~-6.0~,=RJ6N/8[20]<65.30/-74.03>~-6.0~, =RV7B/9[20]<65.30/-74.03>~-6.0~, # Tyumenskaya (TN) R8L<57.83/-69.00>~-6.0~,R9L<57.83/-69.00>~-6.0~,RA8L<57.83/-69.00>~-6.0~,RA9L<57.83/-69.00>~-6.0~, @@ -6293,6 +6465,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UF9M<56.22/-73.27>,UF9N<56.22/-73.27>,UG8M<56.22/-73.27>,UG8N<56.22/-73.27>,UG9M<56.22/-73.27>, UG9N<56.22/-73.27>,UH8M<56.22/-73.27>,UH8N<56.22/-73.27>,UH9M<56.22/-73.27>,UH9N<56.22/-73.27>, UI8M<56.22/-73.27>,UI8N<56.22/-73.27>,UI9M<56.22/-73.27>,UI9N<56.22/-73.27>, + =R9MA[31]<56.22/-73.27>, # Novosibirskaya (NS) R8O(18)[31]<55.45/-79.55>,R8P(18)[31]<55.45/-79.55>,R9O(18)[31]<55.45/-79.55>, R9P(18)[31]<55.45/-79.55>,RA8O(18)[31]<55.45/-79.55>,RA8P(18)[31]<55.45/-79.55>, @@ -6335,8 +6508,8 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG9O(18)[31]<55.45/-79.55>,UG9P(18)[31]<55.45/-79.55>,UH8O(18)[31]<55.45/-79.55>, UH8P(18)[31]<55.45/-79.55>,UH9O(18)[31]<55.45/-79.55>,UH9P(18)[31]<55.45/-79.55>, UI8O(18)[31]<55.45/-79.55>,UI8P(18)[31]<55.45/-79.55>,UI9O(18)[31]<55.45/-79.55>, - UI9P(18)[31]<55.45/-79.55>,=R2ET/9(18)[31]<55.45/-79.55>,=RC7LE/9(18)[31]<55.45/-79.55>, - =RO9O(18)[31]<55.45/-79.55>,=RR9O(18)[31]<55.45/-79.55>, + UI9P(18)[31]<55.45/-79.55>,=R2ET/9(18)[31]<55.45/-79.55>,=RO9O(18)[31]<55.45/-79.55>, + =RR9O(18)[31]<55.45/-79.55>, # Kurganskaya (KN) R8Q<55.57/-64.75>~-6.0~,R8R<55.57/-64.75>~-6.0~,R9Q<55.57/-64.75>~-6.0~,R9R<55.57/-64.75>~-6.0~, RA8Q<55.57/-64.75>~-6.0~,RA8R<55.57/-64.75>~-6.0~,RA9Q<55.57/-64.75>~-6.0~, @@ -6378,7 +6551,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG9Q<55.57/-64.75>~-6.0~,UG9R<55.57/-64.75>~-6.0~,UH8Q<55.57/-64.75>~-6.0~, UH8R<55.57/-64.75>~-6.0~,UH9Q<55.57/-64.75>~-6.0~,UH9R<55.57/-64.75>~-6.0~, UI8Q<55.57/-64.75>~-6.0~,UI8R<55.57/-64.75>~-6.0~,UI9Q<55.57/-64.75>~-6.0~, - UI9R<55.57/-64.75>~-6.0~,=UA9AR/P<55.57/-64.75>~-6.0~, + UI9R<55.57/-64.75>~-6.0~, # Orenburgskaya (OB) R8S(16)<52.13/-55.60>~-6.0~,R8T(16)<52.13/-55.60>~-6.0~,R9S(16)<52.13/-55.60>~-6.0~, R9T(16)<52.13/-55.60>~-6.0~,RA8S(16)<52.13/-55.60>~-6.0~,RA8T(16)<52.13/-55.60>~-6.0~, @@ -6421,7 +6594,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG9S(16)<52.13/-55.60>~-6.0~,UG9T(16)<52.13/-55.60>~-6.0~,UH8S(16)<52.13/-55.60>~-6.0~, UH8T(16)<52.13/-55.60>~-6.0~,UH9S(16)<52.13/-55.60>~-6.0~,UH9T(16)<52.13/-55.60>~-6.0~, UI8S(16)<52.13/-55.60>~-6.0~,UI8T(16)<52.13/-55.60>~-6.0~,UI9S(16)<52.13/-55.60>~-6.0~, - UI9T(16)<52.13/-55.60>~-6.0~, + UI9T(16)<52.13/-55.60>~-6.0~,=RN3QOP/4(16)<52.13/-55.60>~-6.0~, # Kemerovskaya (KE) R8U(18)[31]<54.93/-87.23>,R8V(18)[31]<54.93/-87.23>,R9U(18)[31]<54.93/-87.23>, R9V(18)[31]<54.93/-87.23>,RA8U(18)[31]<54.93/-87.23>,RA8V(18)[31]<54.93/-87.23>, @@ -6486,8 +6659,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UD9W(16)<54.47/-56.27>~-6.0~,UE8W(16)<54.47/-56.27>~-6.0~,UE9W(16)<54.47/-56.27>~-6.0~, UF8W(16)<54.47/-56.27>~-6.0~,UF9W(16)<54.47/-56.27>~-6.0~,UG8W(16)<54.47/-56.27>~-6.0~, UG9W(16)<54.47/-56.27>~-6.0~,UH8W(16)<54.47/-56.27>~-6.0~,UH9W(16)<54.47/-56.27>~-6.0~, - UI8W(16)<54.47/-56.27>~-6.0~,UI9W(16)<54.47/-56.27>~-6.0~,=R150SU(16)<54.47/-56.27>~-6.0~, - =RX9WT/P(16)<54.47/-56.27>~-6.0~, + UI8W(16)<54.47/-56.27>~-6.0~,UI9W(16)<54.47/-56.27>~-6.0~, # Altaysky (AL) R8Y(18)[31]<52.77/-82.62>,R9Y(18)[31]<52.77/-82.62>,RA8Y(18)[31]<52.77/-82.62>, RA9Y(18)[31]<52.77/-82.62>,RC8Y(18)[31]<52.77/-82.62>,RC9Y(18)[31]<52.77/-82.62>, @@ -6510,7 +6682,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UF8Y(18)[31]<52.77/-82.62>,UF9Y(18)[31]<52.77/-82.62>,UG8Y(18)[31]<52.77/-82.62>, UG9Y(18)[31]<52.77/-82.62>,UH8Y(18)[31]<52.77/-82.62>,UH9Y(18)[31]<52.77/-82.62>, UI8Y(18)[31]<52.77/-82.62>,UI9Y(18)[31]<52.77/-82.62>,=R0FBA/9(18)[31]<52.77/-82.62>, - =RQ1A(18)[31]<52.77/-82.62>,=RQ1A/9(18)[31]<52.77/-82.62>, + =R0QAW/P(18)[31]<52.77/-82.62>, # Gorno Altayskaya (GA) R8Z(18)[31]<50.92/-86.92>,R9Z(18)[31]<50.92/-86.92>,RA8Z(18)[31]<50.92/-86.92>, RA9Z(18)[31]<50.92/-86.92>,RC8Z(18)[31]<50.92/-86.92>,RC9Z(18)[31]<50.92/-86.92>, @@ -6580,7 +6752,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG0H(18)[32]<59.88/-91.67>~-8.0~,UH0A(18)[32]<59.88/-91.67>~-8.0~, UH0B(18)[32]<59.88/-91.67>~-8.0~,UH0H(18)[32]<59.88/-91.67>~-8.0~, UI0A(18)[32]<59.88/-91.67>~-8.0~,UI0B(18)[32]<59.88/-91.67>~-8.0~, - UI0H(18)[32]<59.88/-91.67>~-8.0~,=R105FSB(18)[32]<59.88/-91.67>~-8.0~, + UI0H(18)[32]<59.88/-91.67>~-8.0~,=UA9CTT/P(18)[32]<59.88/-91.67>~-8.0~, # Khabarovsky (HK) R0C(19)[34]<54.80/-136.83>~-11.0~,RA0C(19)[34]<54.80/-136.83>~-11.0~, RC0C(19)[34]<54.80/-136.83>~-11.0~,RD0C(19)[34]<54.80/-136.83>~-11.0~, @@ -6598,6 +6770,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UD0C(19)[34]<54.80/-136.83>~-11.0~,UE0C(19)[34]<54.80/-136.83>~-11.0~, UF0C(19)[34]<54.80/-136.83>~-11.0~,UG0C(19)[34]<54.80/-136.83>~-11.0~, UH0C(19)[34]<54.80/-136.83>~-11.0~,UI0C(19)[34]<54.80/-136.83>~-11.0~, + =RA4RT/0(19)[34]<54.80/-136.83>~-11.0~, # Yevreyskaya (EA) R0D(19)[33]<48.60/-132.20>~-11.0~,RA0D(19)[33]<48.60/-132.20>~-11.0~, RC0D(19)[33]<48.60/-132.20>~-11.0~,RD0D(19)[33]<48.60/-132.20>~-11.0~, @@ -6715,6 +6888,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UD0K(19)[25]<66.67/-171.00>~-12.0~,UE0K(19)[25]<66.67/-171.00>~-12.0~, UF0K(19)[25]<66.67/-171.00>~-12.0~,UG0K(19)[25]<66.67/-171.00>~-12.0~, UH0K(19)[25]<66.67/-171.00>~-12.0~,UI0K(19)[25]<66.67/-171.00>~-12.0~, + =RU9MV/0(19)[25]<66.67/-171.00>~-12.0~, # Primorsky (PK) R0L(19)[34]<45.33/-134.67>~-11.0~,R0M(19)[34]<45.33/-134.67>~-11.0~, R0N(19)[34]<45.33/-134.67>~-11.0~,RA0L(19)[34]<45.33/-134.67>~-11.0~, @@ -6763,7 +6937,8 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UH0L(19)[34]<45.33/-134.67>~-11.0~,UH0M(19)[34]<45.33/-134.67>~-11.0~, UH0N(19)[34]<45.33/-134.67>~-11.0~,UI0L(19)[34]<45.33/-134.67>~-11.0~, UI0M(19)[34]<45.33/-134.67>~-11.0~,UI0N(19)[34]<45.33/-134.67>~-11.0~, - =R195JV(19)[34]<45.33/-134.67>~-11.0~, + =R5AF/0(19)[34]<45.33/-134.67>~-11.0~,=RV3DSA/0(19)[34]<45.33/-134.67>~-11.0~, + =RX3X/0(19)[34]<45.33/-134.67>~-11.0~, # Buryatiya (BU) R0O(18)[32]<53.80/-109.33>~-9.0~,RA0O(18)[32]<53.80/-109.33>~-9.0~, RC0O(18)[32]<53.80/-109.33>~-9.0~,RD0O(18)[32]<53.80/-109.33>~-9.0~, @@ -6798,6 +6973,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UD0Q(19)[23]<66.40/-129.17>~-11.0~,UE0Q(19)[23]<66.40/-129.17>~-11.0~, UF0Q(19)[23]<66.40/-129.17>~-11.0~,UG0Q(19)[23]<66.40/-129.17>~-11.0~, UH0Q(19)[23]<66.40/-129.17>~-11.0~,UI0Q(19)[23]<66.40/-129.17>~-11.0~, + =RA1WS/0(19)[23]<66.40/-129.17>~-11.0~, # Irkutskaya (IR) R0R(18)[32]<57.37/-106.00>~-9.0~,R0S(18)[32]<57.37/-106.00>~-9.0~, R0T(18)[32]<57.37/-106.00>~-9.0~,RA0R(18)[32]<57.37/-106.00>~-9.0~, @@ -6845,7 +7021,7 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG0T(18)[32]<57.37/-106.00>~-9.0~,UH0R(18)[32]<57.37/-106.00>~-9.0~, UH0S(18)[32]<57.37/-106.00>~-9.0~,UH0T(18)[32]<57.37/-106.00>~-9.0~, UI0R(18)[32]<57.37/-106.00>~-9.0~,UI0S(18)[32]<57.37/-106.00>~-9.0~, - UI0T(18)[32]<57.37/-106.00>~-9.0~,=R700SSR(18)[32]<57.37/-106.00>~-9.0~, + UI0T(18)[32]<57.37/-106.00>~-9.0~, # Khakassiya (HA) R0W(18)[31]<53.50/-90.00>~-8.0~,RA0W(18)[31]<53.50/-90.00>~-8.0~,RC0W(18)[31]<53.50/-90.00>~-8.0~, RD0W(18)[31]<53.50/-90.00>~-8.0~,RE0W(18)[31]<53.50/-90.00>~-8.0~, @@ -6879,39 +7055,39 @@ Asiatic Russia: 17: 30: AS: 55.88: -84.08: -7.0: UA9: UG0Y(23)[32]<51.78/-94.75>~-8.0~,UH0Y(23)[32]<51.78/-94.75>~-8.0~, UI0Y(23)[32]<51.78/-94.75>~-8.0~, # Kamchatskaya (KT) - R0X(19)[35]<55.00/-159.00>~-12.0~,R0Z(19)[35]<55.00/-159.00>~-12.0~, - RA0X(19)[35]<55.00/-159.00>~-12.0~,RA0Z(19)[35]<55.00/-159.00>~-12.0~, - RC0X(19)[35]<55.00/-159.00>~-12.0~,RC0Z(19)[35]<55.00/-159.00>~-12.0~, - RD0X(19)[35]<55.00/-159.00>~-12.0~,RD0Z(19)[35]<55.00/-159.00>~-12.0~, - RE0X(19)[35]<55.00/-159.00>~-12.0~,RE0Z(19)[35]<55.00/-159.00>~-12.0~, - RF0X(19)[35]<55.00/-159.00>~-12.0~,RF0Z(19)[35]<55.00/-159.00>~-12.0~, - RG0X(19)[35]<55.00/-159.00>~-12.0~,RG0Z(19)[35]<55.00/-159.00>~-12.0~, - RI0X(19)[35]<55.00/-159.00>~-12.0~,RI0Z(19)[35]<55.00/-159.00>~-12.0~, - RJ0X(19)[35]<55.00/-159.00>~-12.0~,RJ0Z(19)[35]<55.00/-159.00>~-12.0~, - RK0X(19)[35]<55.00/-159.00>~-12.0~,RK0Z(19)[35]<55.00/-159.00>~-12.0~, - RL0X(19)[35]<55.00/-159.00>~-12.0~,RL0Z(19)[35]<55.00/-159.00>~-12.0~, - RM0X(19)[35]<55.00/-159.00>~-12.0~,RM0Z(19)[35]<55.00/-159.00>~-12.0~, - RN0X(19)[35]<55.00/-159.00>~-12.0~,RN0Z(19)[35]<55.00/-159.00>~-12.0~, - RO0X(19)[35]<55.00/-159.00>~-12.0~,RO0Z(19)[35]<55.00/-159.00>~-12.0~, - RQ0X(19)[35]<55.00/-159.00>~-12.0~,RQ0Z(19)[35]<55.00/-159.00>~-12.0~, - RT0X(19)[35]<55.00/-159.00>~-12.0~,RT0Z(19)[35]<55.00/-159.00>~-12.0~, - RU0X(19)[35]<55.00/-159.00>~-12.0~,RU0Z(19)[35]<55.00/-159.00>~-12.0~, - RV0X(19)[35]<55.00/-159.00>~-12.0~,RV0Z(19)[35]<55.00/-159.00>~-12.0~, - RW0X(19)[35]<55.00/-159.00>~-12.0~,RW0Z(19)[35]<55.00/-159.00>~-12.0~, - RX0X(19)[35]<55.00/-159.00>~-12.0~,RX0Z(19)[35]<55.00/-159.00>~-12.0~, - RY0X(19)[35]<55.00/-159.00>~-12.0~,RY0Z(19)[35]<55.00/-159.00>~-12.0~, - RZ0X(19)[35]<55.00/-159.00>~-12.0~,RZ0Z(19)[35]<55.00/-159.00>~-12.0~, - U0X(19)[35]<55.00/-159.00>~-12.0~,U0Z(19)[35]<55.00/-159.00>~-12.0~, - UA0X(19)[35]<55.00/-159.00>~-12.0~,UA0Z(19)[35]<55.00/-159.00>~-12.0~, - UB0X(19)[35]<55.00/-159.00>~-12.0~,UB0Z(19)[35]<55.00/-159.00>~-12.0~, - UC0X(19)[35]<55.00/-159.00>~-12.0~,UC0Z(19)[35]<55.00/-159.00>~-12.0~, - UD0X(19)[35]<55.00/-159.00>~-12.0~,UD0Z(19)[35]<55.00/-159.00>~-12.0~, - UE0X(19)[35]<55.00/-159.00>~-12.0~,UE0Z(19)[35]<55.00/-159.00>~-12.0~, - UF0X(19)[35]<55.00/-159.00>~-12.0~,UF0Z(19)[35]<55.00/-159.00>~-12.0~, - UG0X(19)[35]<55.00/-159.00>~-12.0~,UG0Z(19)[35]<55.00/-159.00>~-12.0~, - UH0X(19)[35]<55.00/-159.00>~-12.0~,UH0Z(19)[35]<55.00/-159.00>~-12.0~, - UI0X(19)[35]<55.00/-159.00>~-12.0~,UI0Z(19)[35]<55.00/-159.00>~-12.0~, - =UD6AOP/0(19)[35]<55.00/-159.00>~-12.0~, + R0X(19)[35]<56.00/-159.00>~-12.0~,R0Z(19)[35]<56.00/-159.00>~-12.0~, + RA0X(19)[35]<56.00/-159.00>~-12.0~,RA0Z(19)[35]<56.00/-159.00>~-12.0~, + RC0X(19)[35]<56.00/-159.00>~-12.0~,RC0Z(19)[35]<56.00/-159.00>~-12.0~, + RD0X(19)[35]<56.00/-159.00>~-12.0~,RD0Z(19)[35]<56.00/-159.00>~-12.0~, + RE0X(19)[35]<56.00/-159.00>~-12.0~,RE0Z(19)[35]<56.00/-159.00>~-12.0~, + RF0X(19)[35]<56.00/-159.00>~-12.0~,RF0Z(19)[35]<56.00/-159.00>~-12.0~, + RG0X(19)[35]<56.00/-159.00>~-12.0~,RG0Z(19)[35]<56.00/-159.00>~-12.0~, + RI0X(19)[35]<56.00/-159.00>~-12.0~,RI0Z(19)[35]<56.00/-159.00>~-12.0~, + RJ0X(19)[35]<56.00/-159.00>~-12.0~,RJ0Z(19)[35]<56.00/-159.00>~-12.0~, + RK0X(19)[35]<56.00/-159.00>~-12.0~,RK0Z(19)[35]<56.00/-159.00>~-12.0~, + RL0X(19)[35]<56.00/-159.00>~-12.0~,RL0Z(19)[35]<56.00/-159.00>~-12.0~, + RM0X(19)[35]<56.00/-159.00>~-12.0~,RM0Z(19)[35]<56.00/-159.00>~-12.0~, + RN0X(19)[35]<56.00/-159.00>~-12.0~,RN0Z(19)[35]<56.00/-159.00>~-12.0~, + RO0X(19)[35]<56.00/-159.00>~-12.0~,RO0Z(19)[35]<56.00/-159.00>~-12.0~, + RQ0X(19)[35]<56.00/-159.00>~-12.0~,RQ0Z(19)[35]<56.00/-159.00>~-12.0~, + RT0X(19)[35]<56.00/-159.00>~-12.0~,RT0Z(19)[35]<56.00/-159.00>~-12.0~, + RU0X(19)[35]<56.00/-159.00>~-12.0~,RU0Z(19)[35]<56.00/-159.00>~-12.0~, + RV0X(19)[35]<56.00/-159.00>~-12.0~,RV0Z(19)[35]<56.00/-159.00>~-12.0~, + RW0X(19)[35]<56.00/-159.00>~-12.0~,RW0Z(19)[35]<56.00/-159.00>~-12.0~, + RX0X(19)[35]<56.00/-159.00>~-12.0~,RX0Z(19)[35]<56.00/-159.00>~-12.0~, + RY0X(19)[35]<56.00/-159.00>~-12.0~,RY0Z(19)[35]<56.00/-159.00>~-12.0~, + RZ0X(19)[35]<56.00/-159.00>~-12.0~,RZ0Z(19)[35]<56.00/-159.00>~-12.0~, + U0X(19)[35]<56.00/-159.00>~-12.0~,U0Z(19)[35]<56.00/-159.00>~-12.0~, + UA0X(19)[35]<56.00/-159.00>~-12.0~,UA0Z(19)[35]<56.00/-159.00>~-12.0~, + UB0X(19)[35]<56.00/-159.00>~-12.0~,UB0Z(19)[35]<56.00/-159.00>~-12.0~, + UC0X(19)[35]<56.00/-159.00>~-12.0~,UC0Z(19)[35]<56.00/-159.00>~-12.0~, + UD0X(19)[35]<56.00/-159.00>~-12.0~,UD0Z(19)[35]<56.00/-159.00>~-12.0~, + UE0X(19)[35]<56.00/-159.00>~-12.0~,UE0Z(19)[35]<56.00/-159.00>~-12.0~, + UF0X(19)[35]<56.00/-159.00>~-12.0~,UF0Z(19)[35]<56.00/-159.00>~-12.0~, + UG0X(19)[35]<56.00/-159.00>~-12.0~,UG0Z(19)[35]<56.00/-159.00>~-12.0~, + UH0X(19)[35]<56.00/-159.00>~-12.0~,UH0Z(19)[35]<56.00/-159.00>~-12.0~, + UI0X(19)[35]<56.00/-159.00>~-12.0~,UI0Z(19)[35]<56.00/-159.00>~-12.0~, + =RD9U/0(19)[35]<56.00/-159.00>~-12.0~,=UD6AOP/0(19)[35]<56.00/-159.00>~-12.0~, # Zabaykalsky (ZK) R0U(18)[32]<54.00/-118.00>~-10.0~,R0V(18)[32]<54.00/-118.00>~-10.0~, RA0U(18)[32]<54.00/-118.00>~-10.0~,RA0V(18)[32]<54.00/-118.00>~-10.0~, @@ -7078,249 +7254,262 @@ Uzbekistan: 17: 30: AS: 41.40: -63.97: -5.0: UK: Kazakhstan: 17: 30: AS: 48.17: -65.18: -5.0: UN: UN,UO,UP,UQ, # Mangystau - UN0A<43.87/-52.00>,UN2A<43.87/-52.00>,UN3A<43.87/-52.00>,UN4A<43.87/-52.00>,UN5A<43.87/-52.00>, - UN6A<43.87/-52.00>,UN7A<43.87/-52.00>,UN8A<43.87/-52.00>,UN9A<43.87/-52.00>,UO0A<43.87/-52.00>, - UO1A<43.87/-52.00>,UO2A<43.87/-52.00>,UO3A<43.87/-52.00>,UO4A<43.87/-52.00>,UO5A<43.87/-52.00>, - UO6A<43.87/-52.00>,UO7A<43.87/-52.00>,UO8A<43.87/-52.00>,UO9A<43.87/-52.00>,UP0A<43.87/-52.00>, - UP1A<43.87/-52.00>,UP2A<43.87/-52.00>,UP3A<43.87/-52.00>,UP4A<43.87/-52.00>,UP5A<43.87/-52.00>, - UP6A<43.87/-52.00>,UP7A<43.87/-52.00>,UP8A<43.87/-52.00>,UP9A<43.87/-52.00>,UQ0A<43.87/-52.00>, - UQ1A<43.87/-52.00>,UQ2A<43.87/-52.00>,UQ3A<43.87/-52.00>,UQ4A<43.87/-52.00>,UQ5A<43.87/-52.00>, - UQ6A<43.87/-52.00>,UQ7A<43.87/-52.00>,UQ8A<43.87/-52.00>,UQ9A<43.87/-52.00>, + UN0A<43.87/-52.00>,UN1A<43.87/-52.00>,UN2A<43.87/-52.00>,UN3A<43.87/-52.00>,UN4A<43.87/-52.00>, + UN5A<43.87/-52.00>,UN6A<43.87/-52.00>,UN7A<43.87/-52.00>,UN8A<43.87/-52.00>,UN9A<43.87/-52.00>, + UO0A<43.87/-52.00>,UO1A<43.87/-52.00>,UO2A<43.87/-52.00>,UO3A<43.87/-52.00>,UO4A<43.87/-52.00>, + UO5A<43.87/-52.00>,UO6A<43.87/-52.00>,UO7A<43.87/-52.00>,UO8A<43.87/-52.00>,UO9A<43.87/-52.00>, + UP0A<43.87/-52.00>,UP1A<43.87/-52.00>,UP2A<43.87/-52.00>,UP3A<43.87/-52.00>,UP4A<43.87/-52.00>, + UP5A<43.87/-52.00>,UP6A<43.87/-52.00>,UP7A<43.87/-52.00>,UP8A<43.87/-52.00>,UP9A<43.87/-52.00>, + UQ0A<43.87/-52.00>,UQ1A<43.87/-52.00>,UQ2A<43.87/-52.00>,UQ3A<43.87/-52.00>,UQ4A<43.87/-52.00>, + UQ5A<43.87/-52.00>,UQ6A<43.87/-52.00>,UQ7A<43.87/-52.00>,UQ8A<43.87/-52.00>,UQ9A<43.87/-52.00>, # Akmola - UN0B<53.28/-69.38>~-6.0~,UN0E<53.28/-69.38>~-6.0~,UN2B<53.28/-69.38>~-6.0~, - UN2E<53.28/-69.38>~-6.0~,UN3B<53.28/-69.38>~-6.0~,UN3E<53.28/-69.38>~-6.0~, - UN4B<53.28/-69.38>~-6.0~,UN4E<53.28/-69.38>~-6.0~,UN5B<53.28/-69.38>~-6.0~, - UN5E<53.28/-69.38>~-6.0~,UN6B<53.28/-69.38>~-6.0~,UN6E<53.28/-69.38>~-6.0~, - UN7B<53.28/-69.38>~-6.0~,UN7E<53.28/-69.38>~-6.0~,UN8B<53.28/-69.38>~-6.0~, - UN8E<53.28/-69.38>~-6.0~,UN9B<53.28/-69.38>~-6.0~,UN9E<53.28/-69.38>~-6.0~, - UO0B<53.28/-69.38>~-6.0~,UO0E<53.28/-69.38>~-6.0~,UO1B<53.28/-69.38>~-6.0~, - UO1E<53.28/-69.38>~-6.0~,UO2B<53.28/-69.38>~-6.0~,UO2E<53.28/-69.38>~-6.0~, - UO3B<53.28/-69.38>~-6.0~,UO3E<53.28/-69.38>~-6.0~,UO4B<53.28/-69.38>~-6.0~, - UO4E<53.28/-69.38>~-6.0~,UO5B<53.28/-69.38>~-6.0~,UO5E<53.28/-69.38>~-6.0~, - UO6B<53.28/-69.38>~-6.0~,UO6E<53.28/-69.38>~-6.0~,UO7B<53.28/-69.38>~-6.0~, - UO7E<53.28/-69.38>~-6.0~,UO8B<53.28/-69.38>~-6.0~,UO8E<53.28/-69.38>~-6.0~, - UO9B<53.28/-69.38>~-6.0~,UO9E<53.28/-69.38>~-6.0~,UP0B<53.28/-69.38>~-6.0~, - UP0E<53.28/-69.38>~-6.0~,UP1B<53.28/-69.38>~-6.0~,UP1E<53.28/-69.38>~-6.0~, - UP2B<53.28/-69.38>~-6.0~,UP2E<53.28/-69.38>~-6.0~,UP3B<53.28/-69.38>~-6.0~, - UP3E<53.28/-69.38>~-6.0~,UP4B<53.28/-69.38>~-6.0~,UP4E<53.28/-69.38>~-6.0~, - UP5B<53.28/-69.38>~-6.0~,UP5E<53.28/-69.38>~-6.0~,UP6B<53.28/-69.38>~-6.0~, - UP6E<53.28/-69.38>~-6.0~,UP7B<53.28/-69.38>~-6.0~,UP7E<53.28/-69.38>~-6.0~, - UP8B<53.28/-69.38>~-6.0~,UP8E<53.28/-69.38>~-6.0~,UP9B<53.28/-69.38>~-6.0~, - UP9E<53.28/-69.38>~-6.0~,UQ0B<53.28/-69.38>~-6.0~,UQ0E<53.28/-69.38>~-6.0~, - UQ1B<53.28/-69.38>~-6.0~,UQ1E<53.28/-69.38>~-6.0~,UQ2B<53.28/-69.38>~-6.0~, - UQ2E<53.28/-69.38>~-6.0~,UQ3B<53.28/-69.38>~-6.0~,UQ3E<53.28/-69.38>~-6.0~, - UQ4B<53.28/-69.38>~-6.0~,UQ4E<53.28/-69.38>~-6.0~,UQ5B<53.28/-69.38>~-6.0~, - UQ5E<53.28/-69.38>~-6.0~,UQ6B<53.28/-69.38>~-6.0~,UQ6E<53.28/-69.38>~-6.0~, - UQ7B<53.28/-69.38>~-6.0~,UQ7E<53.28/-69.38>~-6.0~,UQ8B<53.28/-69.38>~-6.0~, - UQ8E<53.28/-69.38>~-6.0~,UQ9B<53.28/-69.38>~-6.0~,UQ9E<53.28/-69.38>~-6.0~, + UN0B<53.28/-69.38>~-6.0~,UN0E<53.28/-69.38>~-6.0~,UN1B<53.28/-69.38>~-6.0~, + UN1E<53.28/-69.38>~-6.0~,UN2B<53.28/-69.38>~-6.0~,UN2E<53.28/-69.38>~-6.0~, + UN3B<53.28/-69.38>~-6.0~,UN3E<53.28/-69.38>~-6.0~,UN4B<53.28/-69.38>~-6.0~, + UN4E<53.28/-69.38>~-6.0~,UN5B<53.28/-69.38>~-6.0~,UN5E<53.28/-69.38>~-6.0~, + UN6B<53.28/-69.38>~-6.0~,UN6E<53.28/-69.38>~-6.0~,UN7B<53.28/-69.38>~-6.0~, + UN7E<53.28/-69.38>~-6.0~,UN8B<53.28/-69.38>~-6.0~,UN8E<53.28/-69.38>~-6.0~, + UN9B<53.28/-69.38>~-6.0~,UN9E<53.28/-69.38>~-6.0~,UO0B<53.28/-69.38>~-6.0~, + UO0E<53.28/-69.38>~-6.0~,UO1B<53.28/-69.38>~-6.0~,UO1E<53.28/-69.38>~-6.0~, + UO2B<53.28/-69.38>~-6.0~,UO2E<53.28/-69.38>~-6.0~,UO3B<53.28/-69.38>~-6.0~, + UO3E<53.28/-69.38>~-6.0~,UO4B<53.28/-69.38>~-6.0~,UO4E<53.28/-69.38>~-6.0~, + UO5B<53.28/-69.38>~-6.0~,UO5E<53.28/-69.38>~-6.0~,UO6B<53.28/-69.38>~-6.0~, + UO6E<53.28/-69.38>~-6.0~,UO7B<53.28/-69.38>~-6.0~,UO7E<53.28/-69.38>~-6.0~, + UO8B<53.28/-69.38>~-6.0~,UO8E<53.28/-69.38>~-6.0~,UO9B<53.28/-69.38>~-6.0~, + UO9E<53.28/-69.38>~-6.0~,UP0B<53.28/-69.38>~-6.0~,UP0E<53.28/-69.38>~-6.0~, + UP1B<53.28/-69.38>~-6.0~,UP1E<53.28/-69.38>~-6.0~,UP2B<53.28/-69.38>~-6.0~, + UP2E<53.28/-69.38>~-6.0~,UP3B<53.28/-69.38>~-6.0~,UP3E<53.28/-69.38>~-6.0~, + UP4B<53.28/-69.38>~-6.0~,UP4E<53.28/-69.38>~-6.0~,UP5B<53.28/-69.38>~-6.0~, + UP5E<53.28/-69.38>~-6.0~,UP6B<53.28/-69.38>~-6.0~,UP6E<53.28/-69.38>~-6.0~, + UP7B<53.28/-69.38>~-6.0~,UP7E<53.28/-69.38>~-6.0~,UP8B<53.28/-69.38>~-6.0~, + UP8E<53.28/-69.38>~-6.0~,UP9B<53.28/-69.38>~-6.0~,UP9E<53.28/-69.38>~-6.0~, + UQ0B<53.28/-69.38>~-6.0~,UQ0E<53.28/-69.38>~-6.0~,UQ1B<53.28/-69.38>~-6.0~, + UQ1E<53.28/-69.38>~-6.0~,UQ2B<53.28/-69.38>~-6.0~,UQ2E<53.28/-69.38>~-6.0~, + UQ3B<53.28/-69.38>~-6.0~,UQ3E<53.28/-69.38>~-6.0~,UQ4B<53.28/-69.38>~-6.0~, + UQ4E<53.28/-69.38>~-6.0~,UQ5B<53.28/-69.38>~-6.0~,UQ5E<53.28/-69.38>~-6.0~, + UQ6B<53.28/-69.38>~-6.0~,UQ6E<53.28/-69.38>~-6.0~,UQ7B<53.28/-69.38>~-6.0~, + UQ7E<53.28/-69.38>~-6.0~,UQ8B<53.28/-69.38>~-6.0~,UQ8E<53.28/-69.38>~-6.0~, + UQ9B<53.28/-69.38>~-6.0~,UQ9E<53.28/-69.38>~-6.0~, # North Kazakhstan - UN0C<54.88/-69.17>~-6.0~,UN2C<54.88/-69.17>~-6.0~,UN3C<54.88/-69.17>~-6.0~, - UN4C<54.88/-69.17>~-6.0~,UN5C<54.88/-69.17>~-6.0~,UN6C<54.88/-69.17>~-6.0~, - UN7C<54.88/-69.17>~-6.0~,UN8C<54.88/-69.17>~-6.0~,UN9C<54.88/-69.17>~-6.0~, - UO0C<54.88/-69.17>~-6.0~,UO1C<54.88/-69.17>~-6.0~,UO2C<54.88/-69.17>~-6.0~, - UO3C<54.88/-69.17>~-6.0~,UO4C<54.88/-69.17>~-6.0~,UO5C<54.88/-69.17>~-6.0~, - UO6C<54.88/-69.17>~-6.0~,UO7C<54.88/-69.17>~-6.0~,UO8C<54.88/-69.17>~-6.0~, - UO9C<54.88/-69.17>~-6.0~,UP0C<54.88/-69.17>~-6.0~,UP1C<54.88/-69.17>~-6.0~, - UP2C<54.88/-69.17>~-6.0~,UP3C<54.88/-69.17>~-6.0~,UP4C<54.88/-69.17>~-6.0~, - UP5C<54.88/-69.17>~-6.0~,UP6C<54.88/-69.17>~-6.0~,UP7C<54.88/-69.17>~-6.0~, - UP8C<54.88/-69.17>~-6.0~,UP9C<54.88/-69.17>~-6.0~,UQ0C<54.88/-69.17>~-6.0~, - UQ1C<54.88/-69.17>~-6.0~,UQ2C<54.88/-69.17>~-6.0~,UQ3C<54.88/-69.17>~-6.0~, - UQ4C<54.88/-69.17>~-6.0~,UQ5C<54.88/-69.17>~-6.0~,UQ6C<54.88/-69.17>~-6.0~, - UQ7C<54.88/-69.17>~-6.0~,UQ8C<54.88/-69.17>~-6.0~,UQ9C<54.88/-69.17>~-6.0~, + UN0C<54.88/-69.17>~-6.0~,UN1C<54.88/-69.17>~-6.0~,UN2C<54.88/-69.17>~-6.0~, + UN3C<54.88/-69.17>~-6.0~,UN4C<54.88/-69.17>~-6.0~,UN5C<54.88/-69.17>~-6.0~, + UN6C<54.88/-69.17>~-6.0~,UN7C<54.88/-69.17>~-6.0~,UN8C<54.88/-69.17>~-6.0~, + UN9C<54.88/-69.17>~-6.0~,UO0C<54.88/-69.17>~-6.0~,UO1C<54.88/-69.17>~-6.0~, + UO2C<54.88/-69.17>~-6.0~,UO3C<54.88/-69.17>~-6.0~,UO4C<54.88/-69.17>~-6.0~, + UO5C<54.88/-69.17>~-6.0~,UO6C<54.88/-69.17>~-6.0~,UO7C<54.88/-69.17>~-6.0~, + UO8C<54.88/-69.17>~-6.0~,UO9C<54.88/-69.17>~-6.0~,UP0C<54.88/-69.17>~-6.0~, + UP1C<54.88/-69.17>~-6.0~,UP2C<54.88/-69.17>~-6.0~,UP3C<54.88/-69.17>~-6.0~, + UP4C<54.88/-69.17>~-6.0~,UP5C<54.88/-69.17>~-6.0~,UP6C<54.88/-69.17>~-6.0~, + UP7C<54.88/-69.17>~-6.0~,UP8C<54.88/-69.17>~-6.0~,UP9C<54.88/-69.17>~-6.0~, + UQ0C<54.88/-69.17>~-6.0~,UQ1C<54.88/-69.17>~-6.0~,UQ2C<54.88/-69.17>~-6.0~, + UQ3C<54.88/-69.17>~-6.0~,UQ4C<54.88/-69.17>~-6.0~,UQ5C<54.88/-69.17>~-6.0~, + UQ6C<54.88/-69.17>~-6.0~,UQ7C<54.88/-69.17>~-6.0~,UQ8C<54.88/-69.17>~-6.0~, + UQ9C<54.88/-69.17>~-6.0~, # Pavlodar - UN0F[31]<52.30/-76.95>~-6.0~,UN2F[31]<52.30/-76.95>~-6.0~,UN3F[31]<52.30/-76.95>~-6.0~, - UN4F[31]<52.30/-76.95>~-6.0~,UN5F[31]<52.30/-76.95>~-6.0~,UN6F[31]<52.30/-76.95>~-6.0~, - UN7F[31]<52.30/-76.95>~-6.0~,UN8F[31]<52.30/-76.95>~-6.0~,UN9F[31]<52.30/-76.95>~-6.0~, - UO0F[31]<52.30/-76.95>~-6.0~,UO1F[31]<52.30/-76.95>~-6.0~,UO2F[31]<52.30/-76.95>~-6.0~, - UO3F[31]<52.30/-76.95>~-6.0~,UO4F[31]<52.30/-76.95>~-6.0~,UO5F[31]<52.30/-76.95>~-6.0~, - UO6F[31]<52.30/-76.95>~-6.0~,UO7F[31]<52.30/-76.95>~-6.0~,UO8F[31]<52.30/-76.95>~-6.0~, - UO9F[31]<52.30/-76.95>~-6.0~,UP0F[31]<52.30/-76.95>~-6.0~,UP1F[31]<52.30/-76.95>~-6.0~, - UP2F[31]<52.30/-76.95>~-6.0~,UP3F[31]<52.30/-76.95>~-6.0~,UP4F[31]<52.30/-76.95>~-6.0~, - UP5F[31]<52.30/-76.95>~-6.0~,UP6F[31]<52.30/-76.95>~-6.0~,UP7F[31]<52.30/-76.95>~-6.0~, - UP8F[31]<52.30/-76.95>~-6.0~,UP9F[31]<52.30/-76.95>~-6.0~,UQ0F[31]<52.30/-76.95>~-6.0~, - UQ1F[31]<52.30/-76.95>~-6.0~,UQ2F[31]<52.30/-76.95>~-6.0~,UQ3F[31]<52.30/-76.95>~-6.0~, - UQ4F[31]<52.30/-76.95>~-6.0~,UQ5F[31]<52.30/-76.95>~-6.0~,UQ6F[31]<52.30/-76.95>~-6.0~, - UQ7F[31]<52.30/-76.95>~-6.0~,UQ8F[31]<52.30/-76.95>~-6.0~,UQ9F[31]<52.30/-76.95>~-6.0~, + UN0F[31]<52.30/-76.95>~-6.0~,UN1F[31]<52.30/-76.95>~-6.0~,UN2F[31]<52.30/-76.95>~-6.0~, + UN3F[31]<52.30/-76.95>~-6.0~,UN4F[31]<52.30/-76.95>~-6.0~,UN5F[31]<52.30/-76.95>~-6.0~, + UN6F[31]<52.30/-76.95>~-6.0~,UN7F[31]<52.30/-76.95>~-6.0~,UN8F[31]<52.30/-76.95>~-6.0~, + UN9F[31]<52.30/-76.95>~-6.0~,UO0F[31]<52.30/-76.95>~-6.0~,UO1F[31]<52.30/-76.95>~-6.0~, + UO2F[31]<52.30/-76.95>~-6.0~,UO3F[31]<52.30/-76.95>~-6.0~,UO4F[31]<52.30/-76.95>~-6.0~, + UO5F[31]<52.30/-76.95>~-6.0~,UO6F[31]<52.30/-76.95>~-6.0~,UO7F[31]<52.30/-76.95>~-6.0~, + UO8F[31]<52.30/-76.95>~-6.0~,UO9F[31]<52.30/-76.95>~-6.0~,UP0F[31]<52.30/-76.95>~-6.0~, + UP1F[31]<52.30/-76.95>~-6.0~,UP2F[31]<52.30/-76.95>~-6.0~,UP3F[31]<52.30/-76.95>~-6.0~, + UP4F[31]<52.30/-76.95>~-6.0~,UP5F[31]<52.30/-76.95>~-6.0~,UP6F[31]<52.30/-76.95>~-6.0~, + UP7F[31]<52.30/-76.95>~-6.0~,UP8F[31]<52.30/-76.95>~-6.0~,UP9F[31]<52.30/-76.95>~-6.0~, + UQ0F[31]<52.30/-76.95>~-6.0~,UQ1F[31]<52.30/-76.95>~-6.0~,UQ2F[31]<52.30/-76.95>~-6.0~, + UQ3F[31]<52.30/-76.95>~-6.0~,UQ4F[31]<52.30/-76.95>~-6.0~,UQ5F[31]<52.30/-76.95>~-6.0~, + UQ6F[31]<52.30/-76.95>~-6.0~,UQ7F[31]<52.30/-76.95>~-6.0~,UQ8F[31]<52.30/-76.95>~-6.0~, + UQ9F[31]<52.30/-76.95>~-6.0~, # Almaty City - UN0G[31]<43.27/-76.88>~-6.0~,UN2G[31]<43.27/-76.88>~-6.0~,UN3G[31]<43.27/-76.88>~-6.0~, - UN4G[31]<43.27/-76.88>~-6.0~,UN5G[31]<43.27/-76.88>~-6.0~,UN6G[31]<43.27/-76.88>~-6.0~, - UN7G[31]<43.27/-76.88>~-6.0~,UN8G[31]<43.27/-76.88>~-6.0~,UN9G[31]<43.27/-76.88>~-6.0~, - UO0G[31]<43.27/-76.88>~-6.0~,UO1G[31]<43.27/-76.88>~-6.0~,UO2G[31]<43.27/-76.88>~-6.0~, - UO3G[31]<43.27/-76.88>~-6.0~,UO4G[31]<43.27/-76.88>~-6.0~,UO5G[31]<43.27/-76.88>~-6.0~, - UO6G[31]<43.27/-76.88>~-6.0~,UO7G[31]<43.27/-76.88>~-6.0~,UO8G[31]<43.27/-76.88>~-6.0~, - UO9G[31]<43.27/-76.88>~-6.0~,UP0G[31]<43.27/-76.88>~-6.0~,UP1G[31]<43.27/-76.88>~-6.0~, - UP2G[31]<43.27/-76.88>~-6.0~,UP3G[31]<43.27/-76.88>~-6.0~,UP4G[31]<43.27/-76.88>~-6.0~, - UP5G[31]<43.27/-76.88>~-6.0~,UP6G[31]<43.27/-76.88>~-6.0~,UP7G[31]<43.27/-76.88>~-6.0~, - UP8G[31]<43.27/-76.88>~-6.0~,UP9G[31]<43.27/-76.88>~-6.0~,UQ0G[31]<43.27/-76.88>~-6.0~, - UQ1G[31]<43.27/-76.88>~-6.0~,UQ2G[31]<43.27/-76.88>~-6.0~,UQ3G[31]<43.27/-76.88>~-6.0~, - UQ4G[31]<43.27/-76.88>~-6.0~,UQ5G[31]<43.27/-76.88>~-6.0~,UQ6G[31]<43.27/-76.88>~-6.0~, - UQ7G[31]<43.27/-76.88>~-6.0~,UQ8G[31]<43.27/-76.88>~-6.0~,UQ9G[31]<43.27/-76.88>~-6.0~, + UN0G[31]<43.27/-76.88>~-6.0~,UN1G[31]<43.27/-76.88>~-6.0~,UN2G[31]<43.27/-76.88>~-6.0~, + UN3G[31]<43.27/-76.88>~-6.0~,UN4G[31]<43.27/-76.88>~-6.0~,UN5G[31]<43.27/-76.88>~-6.0~, + UN6G[31]<43.27/-76.88>~-6.0~,UN7G[31]<43.27/-76.88>~-6.0~,UN8G[31]<43.27/-76.88>~-6.0~, + UN9G[31]<43.27/-76.88>~-6.0~,UO0G[31]<43.27/-76.88>~-6.0~,UO1G[31]<43.27/-76.88>~-6.0~, + UO2G[31]<43.27/-76.88>~-6.0~,UO3G[31]<43.27/-76.88>~-6.0~,UO4G[31]<43.27/-76.88>~-6.0~, + UO5G[31]<43.27/-76.88>~-6.0~,UO6G[31]<43.27/-76.88>~-6.0~,UO7G[31]<43.27/-76.88>~-6.0~, + UO8G[31]<43.27/-76.88>~-6.0~,UO9G[31]<43.27/-76.88>~-6.0~,UP0G[31]<43.27/-76.88>~-6.0~, + UP1G[31]<43.27/-76.88>~-6.0~,UP2G[31]<43.27/-76.88>~-6.0~,UP3G[31]<43.27/-76.88>~-6.0~, + UP4G[31]<43.27/-76.88>~-6.0~,UP5G[31]<43.27/-76.88>~-6.0~,UP6G[31]<43.27/-76.88>~-6.0~, + UP7G[31]<43.27/-76.88>~-6.0~,UP8G[31]<43.27/-76.88>~-6.0~,UP9G[31]<43.27/-76.88>~-6.0~, + UQ0G[31]<43.27/-76.88>~-6.0~,UQ1G[31]<43.27/-76.88>~-6.0~,UQ2G[31]<43.27/-76.88>~-6.0~, + UQ3G[31]<43.27/-76.88>~-6.0~,UQ4G[31]<43.27/-76.88>~-6.0~,UQ5G[31]<43.27/-76.88>~-6.0~, + UQ6G[31]<43.27/-76.88>~-6.0~,UQ7G[31]<43.27/-76.88>~-6.0~,UQ8G[31]<43.27/-76.88>~-6.0~, + UQ9G[31]<43.27/-76.88>~-6.0~, # Aktobe - UN0I<50.28/-57.17>,UN2I<50.28/-57.17>,UN3I<50.28/-57.17>,UN4I<50.28/-57.17>,UN5I<50.28/-57.17>, - UN6I<50.28/-57.17>,UN7I<50.28/-57.17>,UN8I<50.28/-57.17>,UN9I<50.28/-57.17>,UO0I<50.28/-57.17>, - UO1I<50.28/-57.17>,UO2I<50.28/-57.17>,UO3I<50.28/-57.17>,UO4I<50.28/-57.17>,UO5I<50.28/-57.17>, - UO6I<50.28/-57.17>,UO7I<50.28/-57.17>,UO8I<50.28/-57.17>,UO9I<50.28/-57.17>,UP0I<50.28/-57.17>, - UP1I<50.28/-57.17>,UP2I<50.28/-57.17>,UP3I<50.28/-57.17>,UP4I<50.28/-57.17>,UP5I<50.28/-57.17>, - UP6I<50.28/-57.17>,UP7I<50.28/-57.17>,UP8I<50.28/-57.17>,UP9I<50.28/-57.17>,UQ0I<50.28/-57.17>, - UQ1I<50.28/-57.17>,UQ2I<50.28/-57.17>,UQ3I<50.28/-57.17>,UQ4I<50.28/-57.17>,UQ5I<50.28/-57.17>, - UQ6I<50.28/-57.17>,UQ7I<50.28/-57.17>,UQ8I<50.28/-57.17>,UQ9I<50.28/-57.17>, + UN0I<50.28/-57.17>,UN1I<50.28/-57.17>,UN2I<50.28/-57.17>,UN3I<50.28/-57.17>,UN4I<50.28/-57.17>, + UN5I<50.28/-57.17>,UN6I<50.28/-57.17>,UN7I<50.28/-57.17>,UN8I<50.28/-57.17>,UN9I<50.28/-57.17>, + UO0I<50.28/-57.17>,UO1I<50.28/-57.17>,UO2I<50.28/-57.17>,UO3I<50.28/-57.17>,UO4I<50.28/-57.17>, + UO5I<50.28/-57.17>,UO6I<50.28/-57.17>,UO7I<50.28/-57.17>,UO8I<50.28/-57.17>,UO9I<50.28/-57.17>, + UP0I<50.28/-57.17>,UP1I<50.28/-57.17>,UP2I<50.28/-57.17>,UP3I<50.28/-57.17>,UP4I<50.28/-57.17>, + UP5I<50.28/-57.17>,UP6I<50.28/-57.17>,UP7I<50.28/-57.17>,UP8I<50.28/-57.17>,UP9I<50.28/-57.17>, + UQ0I<50.28/-57.17>,UQ1I<50.28/-57.17>,UQ2I<50.28/-57.17>,UQ3I<50.28/-57.17>,UQ4I<50.28/-57.17>, + UQ5I<50.28/-57.17>,UQ6I<50.28/-57.17>,UQ7I<50.28/-57.17>,UQ8I<50.28/-57.17>,UQ9I<50.28/-57.17>, # East Kazakhstan - UN0J[31]<49.98/-82.62>~-6.0~,UN2J[31]<49.98/-82.62>~-6.0~,UN3J[31]<49.98/-82.62>~-6.0~, - UN4J[31]<49.98/-82.62>~-6.0~,UN5J[31]<49.98/-82.62>~-6.0~,UN6J[31]<49.98/-82.62>~-6.0~, - UN7J[31]<49.98/-82.62>~-6.0~,UN8J[31]<49.98/-82.62>~-6.0~,UN9J[31]<49.98/-82.62>~-6.0~, - UO0J[31]<49.98/-82.62>~-6.0~,UO1J[31]<49.98/-82.62>~-6.0~,UO2J[31]<49.98/-82.62>~-6.0~, - UO3J[31]<49.98/-82.62>~-6.0~,UO4J[31]<49.98/-82.62>~-6.0~,UO5J[31]<49.98/-82.62>~-6.0~, - UO6J[31]<49.98/-82.62>~-6.0~,UO7J[31]<49.98/-82.62>~-6.0~,UO8J[31]<49.98/-82.62>~-6.0~, - UO9J[31]<49.98/-82.62>~-6.0~,UP0J[31]<49.98/-82.62>~-6.0~,UP1J[31]<49.98/-82.62>~-6.0~, - UP2J[31]<49.98/-82.62>~-6.0~,UP3J[31]<49.98/-82.62>~-6.0~,UP4J[31]<49.98/-82.62>~-6.0~, - UP5J[31]<49.98/-82.62>~-6.0~,UP6J[31]<49.98/-82.62>~-6.0~,UP7J[31]<49.98/-82.62>~-6.0~, - UP8J[31]<49.98/-82.62>~-6.0~,UP9J[31]<49.98/-82.62>~-6.0~,UQ0J[31]<49.98/-82.62>~-6.0~, - UQ1J[31]<49.98/-82.62>~-6.0~,UQ2J[31]<49.98/-82.62>~-6.0~,UQ3J[31]<49.98/-82.62>~-6.0~, - UQ4J[31]<49.98/-82.62>~-6.0~,UQ5J[31]<49.98/-82.62>~-6.0~,UQ6J[31]<49.98/-82.62>~-6.0~, - UQ7J[31]<49.98/-82.62>~-6.0~,UQ8J[31]<49.98/-82.62>~-6.0~,UQ9J[31]<49.98/-82.62>~-6.0~, + UN0J[31]<49.98/-82.62>~-6.0~,UN1J[31]<49.98/-82.62>~-6.0~,UN2J[31]<49.98/-82.62>~-6.0~, + UN3J[31]<49.98/-82.62>~-6.0~,UN4J[31]<49.98/-82.62>~-6.0~,UN5J[31]<49.98/-82.62>~-6.0~, + UN6J[31]<49.98/-82.62>~-6.0~,UN7J[31]<49.98/-82.62>~-6.0~,UN8J[31]<49.98/-82.62>~-6.0~, + UN9J[31]<49.98/-82.62>~-6.0~,UO0J[31]<49.98/-82.62>~-6.0~,UO1J[31]<49.98/-82.62>~-6.0~, + UO2J[31]<49.98/-82.62>~-6.0~,UO3J[31]<49.98/-82.62>~-6.0~,UO4J[31]<49.98/-82.62>~-6.0~, + UO5J[31]<49.98/-82.62>~-6.0~,UO6J[31]<49.98/-82.62>~-6.0~,UO7J[31]<49.98/-82.62>~-6.0~, + UO8J[31]<49.98/-82.62>~-6.0~,UO9J[31]<49.98/-82.62>~-6.0~,UP0J[31]<49.98/-82.62>~-6.0~, + UP1J[31]<49.98/-82.62>~-6.0~,UP2J[31]<49.98/-82.62>~-6.0~,UP3J[31]<49.98/-82.62>~-6.0~, + UP4J[31]<49.98/-82.62>~-6.0~,UP5J[31]<49.98/-82.62>~-6.0~,UP6J[31]<49.98/-82.62>~-6.0~, + UP7J[31]<49.98/-82.62>~-6.0~,UP8J[31]<49.98/-82.62>~-6.0~,UP9J[31]<49.98/-82.62>~-6.0~, + UQ0J[31]<49.98/-82.62>~-6.0~,UQ1J[31]<49.98/-82.62>~-6.0~,UQ2J[31]<49.98/-82.62>~-6.0~, + UQ3J[31]<49.98/-82.62>~-6.0~,UQ4J[31]<49.98/-82.62>~-6.0~,UQ5J[31]<49.98/-82.62>~-6.0~, + UQ6J[31]<49.98/-82.62>~-6.0~,UQ7J[31]<49.98/-82.62>~-6.0~,UQ8J[31]<49.98/-82.62>~-6.0~, + UQ9J[31]<49.98/-82.62>~-6.0~, # Kzylorda - UN0K<44.85/-65.52>~-6.0~,UN2K<44.85/-65.52>~-6.0~,UN3K<44.85/-65.52>~-6.0~, - UN4K<44.85/-65.52>~-6.0~,UN5K<44.85/-65.52>~-6.0~,UN6K<44.85/-65.52>~-6.0~, - UN7K<44.85/-65.52>~-6.0~,UN8K<44.85/-65.52>~-6.0~,UN9K<44.85/-65.52>~-6.0~, - UO0K<44.85/-65.52>~-6.0~,UO1K<44.85/-65.52>~-6.0~,UO2K<44.85/-65.52>~-6.0~, - UO3K<44.85/-65.52>~-6.0~,UO4K<44.85/-65.52>~-6.0~,UO5K<44.85/-65.52>~-6.0~, - UO6K<44.85/-65.52>~-6.0~,UO7K<44.85/-65.52>~-6.0~,UO8K<44.85/-65.52>~-6.0~, - UO9K<44.85/-65.52>~-6.0~,UP0K<44.85/-65.52>~-6.0~,UP1K<44.85/-65.52>~-6.0~, - UP2K<44.85/-65.52>~-6.0~,UP3K<44.85/-65.52>~-6.0~,UP4K<44.85/-65.52>~-6.0~, - UP5K<44.85/-65.52>~-6.0~,UP6K<44.85/-65.52>~-6.0~,UP7K<44.85/-65.52>~-6.0~, - UP8K<44.85/-65.52>~-6.0~,UP9K<44.85/-65.52>~-6.0~,UQ0K<44.85/-65.52>~-6.0~, - UQ1K<44.85/-65.52>~-6.0~,UQ2K<44.85/-65.52>~-6.0~,UQ3K<44.85/-65.52>~-6.0~, - UQ4K<44.85/-65.52>~-6.0~,UQ5K<44.85/-65.52>~-6.0~,UQ6K<44.85/-65.52>~-6.0~, - UQ7K<44.85/-65.52>~-6.0~,UQ8K<44.85/-65.52>~-6.0~,UQ9K<44.85/-65.52>~-6.0~, + UN0K<44.85/-65.52>~-6.0~,UN1K<44.85/-65.52>~-6.0~,UN2K<44.85/-65.52>~-6.0~, + UN3K<44.85/-65.52>~-6.0~,UN4K<44.85/-65.52>~-6.0~,UN5K<44.85/-65.52>~-6.0~, + UN6K<44.85/-65.52>~-6.0~,UN7K<44.85/-65.52>~-6.0~,UN8K<44.85/-65.52>~-6.0~, + UN9K<44.85/-65.52>~-6.0~,UO0K<44.85/-65.52>~-6.0~,UO1K<44.85/-65.52>~-6.0~, + UO2K<44.85/-65.52>~-6.0~,UO3K<44.85/-65.52>~-6.0~,UO4K<44.85/-65.52>~-6.0~, + UO5K<44.85/-65.52>~-6.0~,UO6K<44.85/-65.52>~-6.0~,UO7K<44.85/-65.52>~-6.0~, + UO8K<44.85/-65.52>~-6.0~,UO9K<44.85/-65.52>~-6.0~,UP0K<44.85/-65.52>~-6.0~, + UP1K<44.85/-65.52>~-6.0~,UP2K<44.85/-65.52>~-6.0~,UP3K<44.85/-65.52>~-6.0~, + UP4K<44.85/-65.52>~-6.0~,UP5K<44.85/-65.52>~-6.0~,UP6K<44.85/-65.52>~-6.0~, + UP7K<44.85/-65.52>~-6.0~,UP8K<44.85/-65.52>~-6.0~,UP9K<44.85/-65.52>~-6.0~, + UQ0K<44.85/-65.52>~-6.0~,UQ1K<44.85/-65.52>~-6.0~,UQ2K<44.85/-65.52>~-6.0~, + UQ3K<44.85/-65.52>~-6.0~,UQ4K<44.85/-65.52>~-6.0~,UQ5K<44.85/-65.52>~-6.0~, + UQ6K<44.85/-65.52>~-6.0~,UQ7K<44.85/-65.52>~-6.0~,UQ8K<44.85/-65.52>~-6.0~, + UQ9K<44.85/-65.52>~-6.0~, # Kostanay - UN0L<53.12/-63.38>~-6.0~,UN2L<53.12/-63.38>~-6.0~,UN3L<53.12/-63.38>~-6.0~, - UN4L<53.12/-63.38>~-6.0~,UN5L<53.12/-63.38>~-6.0~,UN6L<53.12/-63.38>~-6.0~, - UN7L<53.12/-63.38>~-6.0~,UN8L<53.12/-63.38>~-6.0~,UN9L<53.12/-63.38>~-6.0~, - UO0L<53.12/-63.38>~-6.0~,UO1L<53.12/-63.38>~-6.0~,UO2L<53.12/-63.38>~-6.0~, - UO3L<53.12/-63.38>~-6.0~,UO4L<53.12/-63.38>~-6.0~,UO5L<53.12/-63.38>~-6.0~, - UO6L<53.12/-63.38>~-6.0~,UO7L<53.12/-63.38>~-6.0~,UO8L<53.12/-63.38>~-6.0~, - UO9L<53.12/-63.38>~-6.0~,UP0L<53.12/-63.38>~-6.0~,UP1L<53.12/-63.38>~-6.0~, - UP2L<53.12/-63.38>~-6.0~,UP3L<53.12/-63.38>~-6.0~,UP4L<53.12/-63.38>~-6.0~, - UP5L<53.12/-63.38>~-6.0~,UP6L<53.12/-63.38>~-6.0~,UP7L<53.12/-63.38>~-6.0~, - UP8L<53.12/-63.38>~-6.0~,UP9L<53.12/-63.38>~-6.0~,UQ0L<53.12/-63.38>~-6.0~, - UQ1L<53.12/-63.38>~-6.0~,UQ2L<53.12/-63.38>~-6.0~,UQ3L<53.12/-63.38>~-6.0~, - UQ4L<53.12/-63.38>~-6.0~,UQ5L<53.12/-63.38>~-6.0~,UQ6L<53.12/-63.38>~-6.0~, - UQ7L<53.12/-63.38>~-6.0~,UQ8L<53.12/-63.38>~-6.0~,UQ9L<53.12/-63.38>~-6.0~, + UN0L<53.12/-63.38>~-6.0~,UN1L<53.12/-63.38>~-6.0~,UN2L<53.12/-63.38>~-6.0~, + UN3L<53.12/-63.38>~-6.0~,UN4L<53.12/-63.38>~-6.0~,UN5L<53.12/-63.38>~-6.0~, + UN6L<53.12/-63.38>~-6.0~,UN7L<53.12/-63.38>~-6.0~,UN8L<53.12/-63.38>~-6.0~, + UN9L<53.12/-63.38>~-6.0~,UO0L<53.12/-63.38>~-6.0~,UO1L<53.12/-63.38>~-6.0~, + UO2L<53.12/-63.38>~-6.0~,UO3L<53.12/-63.38>~-6.0~,UO4L<53.12/-63.38>~-6.0~, + UO5L<53.12/-63.38>~-6.0~,UO6L<53.12/-63.38>~-6.0~,UO7L<53.12/-63.38>~-6.0~, + UO8L<53.12/-63.38>~-6.0~,UO9L<53.12/-63.38>~-6.0~,UP0L<53.12/-63.38>~-6.0~, + UP1L<53.12/-63.38>~-6.0~,UP2L<53.12/-63.38>~-6.0~,UP3L<53.12/-63.38>~-6.0~, + UP4L<53.12/-63.38>~-6.0~,UP5L<53.12/-63.38>~-6.0~,UP6L<53.12/-63.38>~-6.0~, + UP7L<53.12/-63.38>~-6.0~,UP8L<53.12/-63.38>~-6.0~,UP9L<53.12/-63.38>~-6.0~, + UQ0L<53.12/-63.38>~-6.0~,UQ1L<53.12/-63.38>~-6.0~,UQ2L<53.12/-63.38>~-6.0~, + UQ3L<53.12/-63.38>~-6.0~,UQ4L<53.12/-63.38>~-6.0~,UQ5L<53.12/-63.38>~-6.0~, + UQ6L<53.12/-63.38>~-6.0~,UQ7L<53.12/-63.38>~-6.0~,UQ8L<53.12/-63.38>~-6.0~, + UQ9L<53.12/-63.38>~-6.0~, # West Kazakhstan - UN0M<51.23/-51.37>,UN2M<51.23/-51.37>,UN3M<51.23/-51.37>,UN4M<51.23/-51.37>,UN5M<51.23/-51.37>, - UN6M<51.23/-51.37>,UN7M<51.23/-51.37>,UN8M<51.23/-51.37>,UN9M<51.23/-51.37>,UO0M<51.23/-51.37>, - UO1M<51.23/-51.37>,UO2M<51.23/-51.37>,UO3M<51.23/-51.37>,UO4M<51.23/-51.37>,UO5M<51.23/-51.37>, - UO6M<51.23/-51.37>,UO7M<51.23/-51.37>,UO8M<51.23/-51.37>,UO9M<51.23/-51.37>,UP0M<51.23/-51.37>, - UP1M<51.23/-51.37>,UP2M<51.23/-51.37>,UP3M<51.23/-51.37>,UP4M<51.23/-51.37>,UP5M<51.23/-51.37>, - UP6M<51.23/-51.37>,UP7M<51.23/-51.37>,UP8M<51.23/-51.37>,UP9M<51.23/-51.37>,UQ0M<51.23/-51.37>, - UQ1M<51.23/-51.37>,UQ2M<51.23/-51.37>,UQ3M<51.23/-51.37>,UQ4M<51.23/-51.37>,UQ5M<51.23/-51.37>, - UQ6M<51.23/-51.37>,UQ7M<51.23/-51.37>,UQ8M<51.23/-51.37>,UQ9M<51.23/-51.37>, + UN0M<51.23/-51.37>,UN1M<51.23/-51.37>,UN2M<51.23/-51.37>,UN3M<51.23/-51.37>,UN4M<51.23/-51.37>, + UN5M<51.23/-51.37>,UN6M<51.23/-51.37>,UN7M<51.23/-51.37>,UN8M<51.23/-51.37>,UN9M<51.23/-51.37>, + UO0M<51.23/-51.37>,UO1M<51.23/-51.37>,UO2M<51.23/-51.37>,UO3M<51.23/-51.37>,UO4M<51.23/-51.37>, + UO5M<51.23/-51.37>,UO6M<51.23/-51.37>,UO7M<51.23/-51.37>,UO8M<51.23/-51.37>,UO9M<51.23/-51.37>, + UP0M<51.23/-51.37>,UP1M<51.23/-51.37>,UP2M<51.23/-51.37>,UP3M<51.23/-51.37>,UP4M<51.23/-51.37>, + UP5M<51.23/-51.37>,UP6M<51.23/-51.37>,UP7M<51.23/-51.37>,UP8M<51.23/-51.37>,UP9M<51.23/-51.37>, + UQ0M<51.23/-51.37>,UQ1M<51.23/-51.37>,UQ2M<51.23/-51.37>,UQ3M<51.23/-51.37>,UQ4M<51.23/-51.37>, + UQ5M<51.23/-51.37>,UQ6M<51.23/-51.37>,UQ7M<51.23/-51.37>,UQ8M<51.23/-51.37>,UQ9M<51.23/-51.37>, # South Kazakhstan - UN0N<42.32/-69.58>~-6.0~,UN2N<42.32/-69.58>~-6.0~,UN3N<42.32/-69.58>~-6.0~, - UN4N<42.32/-69.58>~-6.0~,UN5N<42.32/-69.58>~-6.0~,UN6N<42.32/-69.58>~-6.0~, - UN7N<42.32/-69.58>~-6.0~,UN8N<42.32/-69.58>~-6.0~,UN9N<42.32/-69.58>~-6.0~, - UO0N<42.32/-69.58>~-6.0~,UO1N<42.32/-69.58>~-6.0~,UO2N<42.32/-69.58>~-6.0~, - UO3N<42.32/-69.58>~-6.0~,UO4N<42.32/-69.58>~-6.0~,UO5N<42.32/-69.58>~-6.0~, - UO6N<42.32/-69.58>~-6.0~,UO7N<42.32/-69.58>~-6.0~,UO8N<42.32/-69.58>~-6.0~, - UO9N<42.32/-69.58>~-6.0~,UP0N<42.32/-69.58>~-6.0~,UP1N<42.32/-69.58>~-6.0~, - UP2N<42.32/-69.58>~-6.0~,UP3N<42.32/-69.58>~-6.0~,UP4N<42.32/-69.58>~-6.0~, - UP5N<42.32/-69.58>~-6.0~,UP6N<42.32/-69.58>~-6.0~,UP7N<42.32/-69.58>~-6.0~, - UP8N<42.32/-69.58>~-6.0~,UP9N<42.32/-69.58>~-6.0~,UQ0N<42.32/-69.58>~-6.0~, - UQ1N<42.32/-69.58>~-6.0~,UQ2N<42.32/-69.58>~-6.0~,UQ3N<42.32/-69.58>~-6.0~, - UQ4N<42.32/-69.58>~-6.0~,UQ5N<42.32/-69.58>~-6.0~,UQ6N<42.32/-69.58>~-6.0~, - UQ7N<42.32/-69.58>~-6.0~,UQ8N<42.32/-69.58>~-6.0~,UQ9N<42.32/-69.58>~-6.0~, + UN0N<42.32/-69.58>~-6.0~,UN1N<42.32/-69.58>~-6.0~,UN2N<42.32/-69.58>~-6.0~, + UN3N<42.32/-69.58>~-6.0~,UN4N<42.32/-69.58>~-6.0~,UN5N<42.32/-69.58>~-6.0~, + UN6N<42.32/-69.58>~-6.0~,UN7N<42.32/-69.58>~-6.0~,UN8N<42.32/-69.58>~-6.0~, + UN9N<42.32/-69.58>~-6.0~,UO0N<42.32/-69.58>~-6.0~,UO1N<42.32/-69.58>~-6.0~, + UO2N<42.32/-69.58>~-6.0~,UO3N<42.32/-69.58>~-6.0~,UO4N<42.32/-69.58>~-6.0~, + UO5N<42.32/-69.58>~-6.0~,UO6N<42.32/-69.58>~-6.0~,UO7N<42.32/-69.58>~-6.0~, + UO8N<42.32/-69.58>~-6.0~,UO9N<42.32/-69.58>~-6.0~,UP0N<42.32/-69.58>~-6.0~, + UP1N<42.32/-69.58>~-6.0~,UP2N<42.32/-69.58>~-6.0~,UP3N<42.32/-69.58>~-6.0~, + UP4N<42.32/-69.58>~-6.0~,UP5N<42.32/-69.58>~-6.0~,UP6N<42.32/-69.58>~-6.0~, + UP7N<42.32/-69.58>~-6.0~,UP8N<42.32/-69.58>~-6.0~,UP9N<42.32/-69.58>~-6.0~, + UQ0N<42.32/-69.58>~-6.0~,UQ1N<42.32/-69.58>~-6.0~,UQ2N<42.32/-69.58>~-6.0~, + UQ3N<42.32/-69.58>~-6.0~,UQ4N<42.32/-69.58>~-6.0~,UQ5N<42.32/-69.58>~-6.0~, + UQ6N<42.32/-69.58>~-6.0~,UQ7N<42.32/-69.58>~-6.0~,UQ8N<42.32/-69.58>~-6.0~, + UQ9N<42.32/-69.58>~-6.0~, # Atyrau - UN0O<47.12/-51.88>,UN2O<47.12/-51.88>,UN3O<47.12/-51.88>,UN4O<47.12/-51.88>,UN5O<47.12/-51.88>, - UN6O<47.12/-51.88>,UN7O<47.12/-51.88>,UN8O<47.12/-51.88>,UN9O<47.12/-51.88>,UO0O<47.12/-51.88>, - UO1O<47.12/-51.88>,UO2O<47.12/-51.88>,UO3O<47.12/-51.88>,UO4O<47.12/-51.88>,UO5O<47.12/-51.88>, - UO6O<47.12/-51.88>,UO7O<47.12/-51.88>,UO8O<47.12/-51.88>,UO9O<47.12/-51.88>,UP0O<47.12/-51.88>, - UP1O<47.12/-51.88>,UP2O<47.12/-51.88>,UP3O<47.12/-51.88>,UP4O<47.12/-51.88>,UP5O<47.12/-51.88>, - UP6O<47.12/-51.88>,UP7O<47.12/-51.88>,UP8O<47.12/-51.88>,UP9O<47.12/-51.88>,UQ0O<47.12/-51.88>, - UQ1O<47.12/-51.88>,UQ2O<47.12/-51.88>,UQ3O<47.12/-51.88>,UQ4O<47.12/-51.88>,UQ5O<47.12/-51.88>, - UQ6O<47.12/-51.88>,UQ7O<47.12/-51.88>,UQ8O<47.12/-51.88>,UQ9O<47.12/-51.88>, + UN0O<47.12/-51.88>,UN1O<47.12/-51.88>,UN2O<47.12/-51.88>,UN3O<47.12/-51.88>,UN4O<47.12/-51.88>, + UN5O<47.12/-51.88>,UN6O<47.12/-51.88>,UN7O<47.12/-51.88>,UN8O<47.12/-51.88>,UN9O<47.12/-51.88>, + UO0O<47.12/-51.88>,UO1O<47.12/-51.88>,UO2O<47.12/-51.88>,UO3O<47.12/-51.88>,UO4O<47.12/-51.88>, + UO5O<47.12/-51.88>,UO6O<47.12/-51.88>,UO7O<47.12/-51.88>,UO8O<47.12/-51.88>,UO9O<47.12/-51.88>, + UP0O<47.12/-51.88>,UP1O<47.12/-51.88>,UP2O<47.12/-51.88>,UP3O<47.12/-51.88>,UP4O<47.12/-51.88>, + UP5O<47.12/-51.88>,UP6O<47.12/-51.88>,UP7O<47.12/-51.88>,UP8O<47.12/-51.88>,UP9O<47.12/-51.88>, + UQ0O<47.12/-51.88>,UQ1O<47.12/-51.88>,UQ2O<47.12/-51.88>,UQ3O<47.12/-51.88>,UQ4O<47.12/-51.88>, + UQ5O<47.12/-51.88>,UQ6O<47.12/-51.88>,UQ7O<47.12/-51.88>,UQ8O<47.12/-51.88>,UQ9O<47.12/-51.88>, # Karagandy - UN0P<49.83/-73.17>~-6.0~,UN0R<49.83/-73.17>~-6.0~,UN2P<49.83/-73.17>~-6.0~, - UN2R<49.83/-73.17>~-6.0~,UN3P<49.83/-73.17>~-6.0~,UN3R<49.83/-73.17>~-6.0~, - UN4P<49.83/-73.17>~-6.0~,UN4R<49.83/-73.17>~-6.0~,UN5P<49.83/-73.17>~-6.0~, - UN5R<49.83/-73.17>~-6.0~,UN6P<49.83/-73.17>~-6.0~,UN6R<49.83/-73.17>~-6.0~, - UN7P<49.83/-73.17>~-6.0~,UN7R<49.83/-73.17>~-6.0~,UN8P<49.83/-73.17>~-6.0~, - UN8R<49.83/-73.17>~-6.0~,UN9P<49.83/-73.17>~-6.0~,UN9R<49.83/-73.17>~-6.0~, - UO0P<49.83/-73.17>~-6.0~,UO0R<49.83/-73.17>~-6.0~,UO1P<49.83/-73.17>~-6.0~, - UO1R<49.83/-73.17>~-6.0~,UO2P<49.83/-73.17>~-6.0~,UO2R<49.83/-73.17>~-6.0~, - UO3P<49.83/-73.17>~-6.0~,UO3R<49.83/-73.17>~-6.0~,UO4P<49.83/-73.17>~-6.0~, - UO4R<49.83/-73.17>~-6.0~,UO5P<49.83/-73.17>~-6.0~,UO5R<49.83/-73.17>~-6.0~, - UO6P<49.83/-73.17>~-6.0~,UO6R<49.83/-73.17>~-6.0~,UO7P<49.83/-73.17>~-6.0~, - UO7R<49.83/-73.17>~-6.0~,UO8P<49.83/-73.17>~-6.0~,UO8R<49.83/-73.17>~-6.0~, - UO9P<49.83/-73.17>~-6.0~,UO9R<49.83/-73.17>~-6.0~,UP0P<49.83/-73.17>~-6.0~, - UP0R<49.83/-73.17>~-6.0~,UP1P<49.83/-73.17>~-6.0~,UP1R<49.83/-73.17>~-6.0~, - UP2P<49.83/-73.17>~-6.0~,UP2R<49.83/-73.17>~-6.0~,UP3P<49.83/-73.17>~-6.0~, - UP3R<49.83/-73.17>~-6.0~,UP4P<49.83/-73.17>~-6.0~,UP4R<49.83/-73.17>~-6.0~, - UP5P<49.83/-73.17>~-6.0~,UP5R<49.83/-73.17>~-6.0~,UP6P<49.83/-73.17>~-6.0~, - UP6R<49.83/-73.17>~-6.0~,UP7P<49.83/-73.17>~-6.0~,UP7R<49.83/-73.17>~-6.0~, - UP8P<49.83/-73.17>~-6.0~,UP8R<49.83/-73.17>~-6.0~,UP9P<49.83/-73.17>~-6.0~, - UP9R<49.83/-73.17>~-6.0~,UQ0P<49.83/-73.17>~-6.0~,UQ0R<49.83/-73.17>~-6.0~, - UQ1P<49.83/-73.17>~-6.0~,UQ1R<49.83/-73.17>~-6.0~,UQ2P<49.83/-73.17>~-6.0~, - UQ2R<49.83/-73.17>~-6.0~,UQ3P<49.83/-73.17>~-6.0~,UQ3R<49.83/-73.17>~-6.0~, - UQ4P<49.83/-73.17>~-6.0~,UQ4R<49.83/-73.17>~-6.0~,UQ5P<49.83/-73.17>~-6.0~, - UQ5R<49.83/-73.17>~-6.0~,UQ6P<49.83/-73.17>~-6.0~,UQ6R<49.83/-73.17>~-6.0~, - UQ7P<49.83/-73.17>~-6.0~,UQ7R<49.83/-73.17>~-6.0~,UQ8P<49.83/-73.17>~-6.0~, - UQ8R<49.83/-73.17>~-6.0~,UQ9P<49.83/-73.17>~-6.0~,UQ9R<49.83/-73.17>~-6.0~, + UN0P<49.83/-73.17>~-6.0~,UN0R<49.83/-73.17>~-6.0~,UN1P<49.83/-73.17>~-6.0~, + UN1R<49.83/-73.17>~-6.0~,UN2P<49.83/-73.17>~-6.0~,UN2R<49.83/-73.17>~-6.0~, + UN3P<49.83/-73.17>~-6.0~,UN3R<49.83/-73.17>~-6.0~,UN4P<49.83/-73.17>~-6.0~, + UN4R<49.83/-73.17>~-6.0~,UN5P<49.83/-73.17>~-6.0~,UN5R<49.83/-73.17>~-6.0~, + UN6P<49.83/-73.17>~-6.0~,UN6R<49.83/-73.17>~-6.0~,UN7P<49.83/-73.17>~-6.0~, + UN7R<49.83/-73.17>~-6.0~,UN8P<49.83/-73.17>~-6.0~,UN8R<49.83/-73.17>~-6.0~, + UN9P<49.83/-73.17>~-6.0~,UN9R<49.83/-73.17>~-6.0~,UO0P<49.83/-73.17>~-6.0~, + UO0R<49.83/-73.17>~-6.0~,UO1P<49.83/-73.17>~-6.0~,UO1R<49.83/-73.17>~-6.0~, + UO2P<49.83/-73.17>~-6.0~,UO2R<49.83/-73.17>~-6.0~,UO3P<49.83/-73.17>~-6.0~, + UO3R<49.83/-73.17>~-6.0~,UO4P<49.83/-73.17>~-6.0~,UO4R<49.83/-73.17>~-6.0~, + UO5P<49.83/-73.17>~-6.0~,UO5R<49.83/-73.17>~-6.0~,UO6P<49.83/-73.17>~-6.0~, + UO6R<49.83/-73.17>~-6.0~,UO7P<49.83/-73.17>~-6.0~,UO7R<49.83/-73.17>~-6.0~, + UO8P<49.83/-73.17>~-6.0~,UO8R<49.83/-73.17>~-6.0~,UO9P<49.83/-73.17>~-6.0~, + UO9R<49.83/-73.17>~-6.0~,UP0P<49.83/-73.17>~-6.0~,UP0R<49.83/-73.17>~-6.0~, + UP1P<49.83/-73.17>~-6.0~,UP1R<49.83/-73.17>~-6.0~,UP2P<49.83/-73.17>~-6.0~, + UP2R<49.83/-73.17>~-6.0~,UP3P<49.83/-73.17>~-6.0~,UP3R<49.83/-73.17>~-6.0~, + UP4P<49.83/-73.17>~-6.0~,UP4R<49.83/-73.17>~-6.0~,UP5P<49.83/-73.17>~-6.0~, + UP5R<49.83/-73.17>~-6.0~,UP6P<49.83/-73.17>~-6.0~,UP6R<49.83/-73.17>~-6.0~, + UP7P<49.83/-73.17>~-6.0~,UP7R<49.83/-73.17>~-6.0~,UP8P<49.83/-73.17>~-6.0~, + UP8R<49.83/-73.17>~-6.0~,UP9P<49.83/-73.17>~-6.0~,UP9R<49.83/-73.17>~-6.0~, + UQ0P<49.83/-73.17>~-6.0~,UQ0R<49.83/-73.17>~-6.0~,UQ1P<49.83/-73.17>~-6.0~, + UQ1R<49.83/-73.17>~-6.0~,UQ2P<49.83/-73.17>~-6.0~,UQ2R<49.83/-73.17>~-6.0~, + UQ3P<49.83/-73.17>~-6.0~,UQ3R<49.83/-73.17>~-6.0~,UQ4P<49.83/-73.17>~-6.0~, + UQ4R<49.83/-73.17>~-6.0~,UQ5P<49.83/-73.17>~-6.0~,UQ5R<49.83/-73.17>~-6.0~, + UQ6P<49.83/-73.17>~-6.0~,UQ6R<49.83/-73.17>~-6.0~,UQ7P<49.83/-73.17>~-6.0~, + UQ7R<49.83/-73.17>~-6.0~,UQ8P<49.83/-73.17>~-6.0~,UQ8R<49.83/-73.17>~-6.0~, + UQ9P<49.83/-73.17>~-6.0~,UQ9R<49.83/-73.17>~-6.0~, # Almaty - UN0Q[31]<43.27/-76.88>~-6.0~,UN2Q[31]<43.27/-76.88>~-6.0~,UN3Q[31]<43.27/-76.88>~-6.0~, - UN4Q[31]<43.27/-76.88>~-6.0~,UN5Q[31]<43.27/-76.88>~-6.0~,UN6Q[31]<43.27/-76.88>~-6.0~, - UN7Q[31]<43.27/-76.88>~-6.0~,UN8Q[31]<43.27/-76.88>~-6.0~,UN9Q[31]<43.27/-76.88>~-6.0~, - UO0Q[31]<43.27/-76.88>~-6.0~,UO1Q[31]<43.27/-76.88>~-6.0~,UO2Q[31]<43.27/-76.88>~-6.0~, - UO3Q[31]<43.27/-76.88>~-6.0~,UO4Q[31]<43.27/-76.88>~-6.0~,UO5Q[31]<43.27/-76.88>~-6.0~, - UO6Q[31]<43.27/-76.88>~-6.0~,UO7Q[31]<43.27/-76.88>~-6.0~,UO8Q[31]<43.27/-76.88>~-6.0~, - UO9Q[31]<43.27/-76.88>~-6.0~,UP0Q[31]<43.27/-76.88>~-6.0~,UP1Q[31]<43.27/-76.88>~-6.0~, - UP2Q[31]<43.27/-76.88>~-6.0~,UP3Q[31]<43.27/-76.88>~-6.0~,UP4Q[31]<43.27/-76.88>~-6.0~, - UP5Q[31]<43.27/-76.88>~-6.0~,UP6Q[31]<43.27/-76.88>~-6.0~,UP7Q[31]<43.27/-76.88>~-6.0~, - UP8Q[31]<43.27/-76.88>~-6.0~,UP9Q[31]<43.27/-76.88>~-6.0~,UQ0Q[31]<43.27/-76.88>~-6.0~, - UQ1Q[31]<43.27/-76.88>~-6.0~,UQ2Q[31]<43.27/-76.88>~-6.0~,UQ3Q[31]<43.27/-76.88>~-6.0~, - UQ4Q[31]<43.27/-76.88>~-6.0~,UQ5Q[31]<43.27/-76.88>~-6.0~,UQ6Q[31]<43.27/-76.88>~-6.0~, - UQ7Q[31]<43.27/-76.88>~-6.0~,UQ8Q[31]<43.27/-76.88>~-6.0~,UQ9Q[31]<43.27/-76.88>~-6.0~, + UN0Q[31]<43.27/-76.88>~-6.0~,UN1Q[31]<43.27/-76.88>~-6.0~,UN2Q[31]<43.27/-76.88>~-6.0~, + UN3Q[31]<43.27/-76.88>~-6.0~,UN4Q[31]<43.27/-76.88>~-6.0~,UN5Q[31]<43.27/-76.88>~-6.0~, + UN6Q[31]<43.27/-76.88>~-6.0~,UN7Q[31]<43.27/-76.88>~-6.0~,UN8Q[31]<43.27/-76.88>~-6.0~, + UN9Q[31]<43.27/-76.88>~-6.0~,UO0Q[31]<43.27/-76.88>~-6.0~,UO1Q[31]<43.27/-76.88>~-6.0~, + UO2Q[31]<43.27/-76.88>~-6.0~,UO3Q[31]<43.27/-76.88>~-6.0~,UO4Q[31]<43.27/-76.88>~-6.0~, + UO5Q[31]<43.27/-76.88>~-6.0~,UO6Q[31]<43.27/-76.88>~-6.0~,UO7Q[31]<43.27/-76.88>~-6.0~, + UO8Q[31]<43.27/-76.88>~-6.0~,UO9Q[31]<43.27/-76.88>~-6.0~,UP0Q[31]<43.27/-76.88>~-6.0~, + UP1Q[31]<43.27/-76.88>~-6.0~,UP2Q[31]<43.27/-76.88>~-6.0~,UP3Q[31]<43.27/-76.88>~-6.0~, + UP4Q[31]<43.27/-76.88>~-6.0~,UP5Q[31]<43.27/-76.88>~-6.0~,UP6Q[31]<43.27/-76.88>~-6.0~, + UP7Q[31]<43.27/-76.88>~-6.0~,UP8Q[31]<43.27/-76.88>~-6.0~,UP9Q[31]<43.27/-76.88>~-6.0~, + UQ0Q[31]<43.27/-76.88>~-6.0~,UQ1Q[31]<43.27/-76.88>~-6.0~,UQ2Q[31]<43.27/-76.88>~-6.0~, + UQ3Q[31]<43.27/-76.88>~-6.0~,UQ4Q[31]<43.27/-76.88>~-6.0~,UQ5Q[31]<43.27/-76.88>~-6.0~, + UQ6Q[31]<43.27/-76.88>~-6.0~,UQ7Q[31]<43.27/-76.88>~-6.0~,UQ8Q[31]<43.27/-76.88>~-6.0~, + UQ9Q[31]<43.27/-76.88>~-6.0~, # Baikonur - UN0S<45.00/-64.00>~-6.0~,UN2S<45.00/-64.00>~-6.0~,UN3S<45.00/-64.00>~-6.0~, - UN4S<45.00/-64.00>~-6.0~,UN5S<45.00/-64.00>~-6.0~,UN6S<45.00/-64.00>~-6.0~, - UN7S<45.00/-64.00>~-6.0~,UN8S<45.00/-64.00>~-6.0~,UN9S<45.00/-64.00>~-6.0~, - UO0S<45.00/-64.00>~-6.0~,UO1S<45.00/-64.00>~-6.0~,UO2S<45.00/-64.00>~-6.0~, - UO3S<45.00/-64.00>~-6.0~,UO4S<45.00/-64.00>~-6.0~,UO5S<45.00/-64.00>~-6.0~, - UO6S<45.00/-64.00>~-6.0~,UO7S<45.00/-64.00>~-6.0~,UO8S<45.00/-64.00>~-6.0~, - UO9S<45.00/-64.00>~-6.0~,UP0S<45.00/-64.00>~-6.0~,UP1S<45.00/-64.00>~-6.0~, - UP2S<45.00/-64.00>~-6.0~,UP3S<45.00/-64.00>~-6.0~,UP4S<45.00/-64.00>~-6.0~, - UP5S<45.00/-64.00>~-6.0~,UP6S<45.00/-64.00>~-6.0~,UP7S<45.00/-64.00>~-6.0~, - UP8S<45.00/-64.00>~-6.0~,UP9S<45.00/-64.00>~-6.0~,UQ0S<45.00/-64.00>~-6.0~, - UQ1S<45.00/-64.00>~-6.0~,UQ2S<45.00/-64.00>~-6.0~,UQ3S<45.00/-64.00>~-6.0~, - UQ4S<45.00/-64.00>~-6.0~,UQ5S<45.00/-64.00>~-6.0~,UQ6S<45.00/-64.00>~-6.0~, - UQ7S<45.00/-64.00>~-6.0~,UQ8S<45.00/-64.00>~-6.0~,UQ9S<45.00/-64.00>~-6.0~, + UN0S<45.00/-64.00>~-6.0~,UN1S<45.00/-64.00>~-6.0~,UN2S<45.00/-64.00>~-6.0~, + UN3S<45.00/-64.00>~-6.0~,UN4S<45.00/-64.00>~-6.0~,UN5S<45.00/-64.00>~-6.0~, + UN6S<45.00/-64.00>~-6.0~,UN7S<45.00/-64.00>~-6.0~,UN8S<45.00/-64.00>~-6.0~, + UN9S<45.00/-64.00>~-6.0~,UO0S<45.00/-64.00>~-6.0~,UO1S<45.00/-64.00>~-6.0~, + UO2S<45.00/-64.00>~-6.0~,UO3S<45.00/-64.00>~-6.0~,UO4S<45.00/-64.00>~-6.0~, + UO5S<45.00/-64.00>~-6.0~,UO6S<45.00/-64.00>~-6.0~,UO7S<45.00/-64.00>~-6.0~, + UO8S<45.00/-64.00>~-6.0~,UO9S<45.00/-64.00>~-6.0~,UP0S<45.00/-64.00>~-6.0~, + UP1S<45.00/-64.00>~-6.0~,UP2S<45.00/-64.00>~-6.0~,UP3S<45.00/-64.00>~-6.0~, + UP4S<45.00/-64.00>~-6.0~,UP5S<45.00/-64.00>~-6.0~,UP6S<45.00/-64.00>~-6.0~, + UP7S<45.00/-64.00>~-6.0~,UP8S<45.00/-64.00>~-6.0~,UP9S<45.00/-64.00>~-6.0~, + UQ0S<45.00/-64.00>~-6.0~,UQ1S<45.00/-64.00>~-6.0~,UQ2S<45.00/-64.00>~-6.0~, + UQ3S<45.00/-64.00>~-6.0~,UQ4S<45.00/-64.00>~-6.0~,UQ5S<45.00/-64.00>~-6.0~, + UQ6S<45.00/-64.00>~-6.0~,UQ7S<45.00/-64.00>~-6.0~,UQ8S<45.00/-64.00>~-6.0~, + UQ9S<45.00/-64.00>~-6.0~, # Jambyl - UN0T<42.90/-71.37>~-6.0~,UN2T<42.90/-71.37>~-6.0~,UN3T<42.90/-71.37>~-6.0~, - UN4T<42.90/-71.37>~-6.0~,UN5T<42.90/-71.37>~-6.0~,UN6T<42.90/-71.37>~-6.0~, - UN7T<42.90/-71.37>~-6.0~,UN8T<42.90/-71.37>~-6.0~,UN9T<42.90/-71.37>~-6.0~, - UO0T<42.90/-71.37>~-6.0~,UO1T<42.90/-71.37>~-6.0~,UO2T<42.90/-71.37>~-6.0~, - UO3T<42.90/-71.37>~-6.0~,UO4T<42.90/-71.37>~-6.0~,UO5T<42.90/-71.37>~-6.0~, - UO6T<42.90/-71.37>~-6.0~,UO7T<42.90/-71.37>~-6.0~,UO8T<42.90/-71.37>~-6.0~, - UO9T<42.90/-71.37>~-6.0~,UP0T<42.90/-71.37>~-6.0~,UP1T<42.90/-71.37>~-6.0~, - UP2T<42.90/-71.37>~-6.0~,UP3T<42.90/-71.37>~-6.0~,UP4T<42.90/-71.37>~-6.0~, - UP5T<42.90/-71.37>~-6.0~,UP6T<42.90/-71.37>~-6.0~,UP7T<42.90/-71.37>~-6.0~, - UP8T<42.90/-71.37>~-6.0~,UP9T<42.90/-71.37>~-6.0~,UQ0T<42.90/-71.37>~-6.0~, - UQ1T<42.90/-71.37>~-6.0~,UQ2T<42.90/-71.37>~-6.0~,UQ3T<42.90/-71.37>~-6.0~, - UQ4T<42.90/-71.37>~-6.0~,UQ5T<42.90/-71.37>~-6.0~,UQ6T<42.90/-71.37>~-6.0~, - UQ7T<42.90/-71.37>~-6.0~,UQ8T<42.90/-71.37>~-6.0~,UQ9T<42.90/-71.37>~-6.0~, + UN0T<42.90/-71.37>~-6.0~,UN1T<42.90/-71.37>~-6.0~,UN2T<42.90/-71.37>~-6.0~, + UN3T<42.90/-71.37>~-6.0~,UN4T<42.90/-71.37>~-6.0~,UN5T<42.90/-71.37>~-6.0~, + UN6T<42.90/-71.37>~-6.0~,UN7T<42.90/-71.37>~-6.0~,UN8T<42.90/-71.37>~-6.0~, + UN9T<42.90/-71.37>~-6.0~,UO0T<42.90/-71.37>~-6.0~,UO1T<42.90/-71.37>~-6.0~, + UO2T<42.90/-71.37>~-6.0~,UO3T<42.90/-71.37>~-6.0~,UO4T<42.90/-71.37>~-6.0~, + UO5T<42.90/-71.37>~-6.0~,UO6T<42.90/-71.37>~-6.0~,UO7T<42.90/-71.37>~-6.0~, + UO8T<42.90/-71.37>~-6.0~,UO9T<42.90/-71.37>~-6.0~,UP0T<42.90/-71.37>~-6.0~, + UP1T<42.90/-71.37>~-6.0~,UP2T<42.90/-71.37>~-6.0~,UP3T<42.90/-71.37>~-6.0~, + UP4T<42.90/-71.37>~-6.0~,UP5T<42.90/-71.37>~-6.0~,UP6T<42.90/-71.37>~-6.0~, + UP7T<42.90/-71.37>~-6.0~,UP8T<42.90/-71.37>~-6.0~,UP9T<42.90/-71.37>~-6.0~, + UQ0T<42.90/-71.37>~-6.0~,UQ1T<42.90/-71.37>~-6.0~,UQ2T<42.90/-71.37>~-6.0~, + UQ3T<42.90/-71.37>~-6.0~,UQ4T<42.90/-71.37>~-6.0~,UQ5T<42.90/-71.37>~-6.0~, + UQ6T<42.90/-71.37>~-6.0~,UQ7T<42.90/-71.37>~-6.0~,UQ8T<42.90/-71.37>~-6.0~, + UQ9T<42.90/-71.37>~-6.0~, # Astana City - UN0Z<51.17/-71.43>~-6.0~,UN2Z<51.17/-71.43>~-6.0~,UN3Z<51.17/-71.43>~-6.0~, - UN4Z<51.17/-71.43>~-6.0~,UN5Z<51.17/-71.43>~-6.0~,UN6Z<51.17/-71.43>~-6.0~, - UN7Z<51.17/-71.43>~-6.0~,UN8Z<51.17/-71.43>~-6.0~,UN9Z<51.17/-71.43>~-6.0~, - UO0Z<51.17/-71.43>~-6.0~,UO1Z<51.17/-71.43>~-6.0~,UO2Z<51.17/-71.43>~-6.0~, - UO3Z<51.17/-71.43>~-6.0~,UO4Z<51.17/-71.43>~-6.0~,UO5Z<51.17/-71.43>~-6.0~, - UO6Z<51.17/-71.43>~-6.0~,UO7Z<51.17/-71.43>~-6.0~,UO8Z<51.17/-71.43>~-6.0~, - UO9Z<51.17/-71.43>~-6.0~,UP0Z<51.17/-71.43>~-6.0~,UP1Z<51.17/-71.43>~-6.0~, - UP2Z<51.17/-71.43>~-6.0~,UP3Z<51.17/-71.43>~-6.0~,UP4Z<51.17/-71.43>~-6.0~, - UP5Z<51.17/-71.43>~-6.0~,UP6Z<51.17/-71.43>~-6.0~,UP7Z<51.17/-71.43>~-6.0~, - UP8Z<51.17/-71.43>~-6.0~,UP9Z<51.17/-71.43>~-6.0~,UQ0Z<51.17/-71.43>~-6.0~, - UQ1Z<51.17/-71.43>~-6.0~,UQ2Z<51.17/-71.43>~-6.0~,UQ3Z<51.17/-71.43>~-6.0~, - UQ4Z<51.17/-71.43>~-6.0~,UQ5Z<51.17/-71.43>~-6.0~,UQ6Z<51.17/-71.43>~-6.0~, - UQ7Z<51.17/-71.43>~-6.0~,UQ8Z<51.17/-71.43>~-6.0~,UQ9Z<51.17/-71.43>~-6.0~; + UN0Z<51.17/-71.43>~-6.0~,UN1Z<51.17/-71.43>~-6.0~,UN2Z<51.17/-71.43>~-6.0~, + UN3Z<51.17/-71.43>~-6.0~,UN4Z<51.17/-71.43>~-6.0~,UN5Z<51.17/-71.43>~-6.0~, + UN6Z<51.17/-71.43>~-6.0~,UN7Z<51.17/-71.43>~-6.0~,UN8Z<51.17/-71.43>~-6.0~, + UN9Z<51.17/-71.43>~-6.0~,UO0Z<51.17/-71.43>~-6.0~,UO1Z<51.17/-71.43>~-6.0~, + UO2Z<51.17/-71.43>~-6.0~,UO3Z<51.17/-71.43>~-6.0~,UO4Z<51.17/-71.43>~-6.0~, + UO5Z<51.17/-71.43>~-6.0~,UO6Z<51.17/-71.43>~-6.0~,UO7Z<51.17/-71.43>~-6.0~, + UO8Z<51.17/-71.43>~-6.0~,UO9Z<51.17/-71.43>~-6.0~,UP0Z<51.17/-71.43>~-6.0~, + UP1Z<51.17/-71.43>~-6.0~,UP2Z<51.17/-71.43>~-6.0~,UP3Z<51.17/-71.43>~-6.0~, + UP4Z<51.17/-71.43>~-6.0~,UP5Z<51.17/-71.43>~-6.0~,UP6Z<51.17/-71.43>~-6.0~, + UP7Z<51.17/-71.43>~-6.0~,UP8Z<51.17/-71.43>~-6.0~,UP9Z<51.17/-71.43>~-6.0~, + UQ0Z<51.17/-71.43>~-6.0~,UQ1Z<51.17/-71.43>~-6.0~,UQ2Z<51.17/-71.43>~-6.0~, + UQ3Z<51.17/-71.43>~-6.0~,UQ4Z<51.17/-71.43>~-6.0~,UQ5Z<51.17/-71.43>~-6.0~, + UQ6Z<51.17/-71.43>~-6.0~,UQ7Z<51.17/-71.43>~-6.0~,UQ8Z<51.17/-71.43>~-6.0~, + UQ9Z<51.17/-71.43>~-6.0~; # ADIF 288 Ukraine: 16: 29: EU: 50.00: -30.00: -2.0: UR: EM,EN,EO,U5,UR,US,UT,UU,UV,UW,UX,UY,UZ, @@ -7925,7 +8114,7 @@ Brunei Darussalam: 28: 54: OC: 4.50: -114.60: -8.0: V8: V8; # ADIF 1 Canada: 05: 09: NA: 44.35: 78.75: 5.0: VE: - CF,CG,CJ,CK,VA,VB,VC,VE,VG,VX,VY9,XL,XM,=VER20230204, + CF,CG,CJ,CK,VA,VB,VC,VE,VG,VX,VY9,XL,XM,=VER20231103, # Nova Scotia (NS) CF1<45.13/62.48>~4.0~,CG1<45.13/62.48>~4.0~,CJ1<45.13/62.48>~4.0~,CK1<45.13/62.48>~4.0~, VA1<45.13/62.48>~4.0~,VB1<45.13/62.48>~4.0~,VC1<45.13/62.48>~4.0~,VE1<45.13/62.48>~4.0~, @@ -7985,12 +8174,12 @@ Canada: 05: 09: NA: 44.35: 78.75: 5.0: VE: CI2<46.37/63.43>~4.0~,CZ2<46.37/63.43>~4.0~,VF2<46.37/63.43>~4.0~,VY2<46.37/63.43>~4.0~, XK2<46.37/63.43>~4.0~,XO2<46.37/63.43>~4.0~, # Quebec North (QC) - =VA2RC(2)[4]<52.73/70.18>,=VA2VVV(2)[4]<52.73/70.18>,=VE2BFR(2)[4]<52.73/70.18>, - =VE2CSI(2)[4]<52.73/70.18>,=VE2EKA(2)[4]<52.73/70.18>,=VE2IDX(2)[4]<52.73/70.18>, - =VE2IM(2)[4]<52.73/70.18>,=VE2TKH(2)[4]<52.73/70.18>; + =VA2VVV(2)[4]<52.73/70.18>,=VE2CSI(2)[4]<52.73/70.18>,=VE2DXY(2)[4]<52.73/70.18>, + =VE2EKA(2)[4]<52.73/70.18>,=VE2IDX(2)[4]<52.73/70.18>,=VE2IM(2)[4]<52.73/70.18>, + =VE2TKH(2)[4]<52.73/70.18>; # ADIF 150 Australia: 30: 59: OC: -23.70: -132.33: -10.0: VK: - AX,VI,VJ,VK,VL,=VK90ABC, + AX,VI,VJ,VK,VL,=VK90AR, # Australian Capital Territory (ACT) AX1<-35.50/-149.00>,VI1<-35.50/-149.00>,VJ1<-35.50/-149.00>,VK1<-35.50/-149.00>, VL1<-35.50/-149.00>, @@ -8025,7 +8214,7 @@ Macquarie Island: 30: 60: OC: -54.60: -158.88: -10.0: VK0M: =VK0MQ; # ADIF 38 Cocos (Keeling) Islands: 29: 54: OC: -12.15: -96.82: -6.5: VK9C: - AX9C,AX9Y,VI9C,VI9Y,VK9C,VK9FC,VK9KC,VK9Y,VK9ZY,VZ9Y; + AX9C,AX9Y,VI9C,VI9Y,VK9C,VK9FC,VK9KC,VK9Y,VK9ZY,VZ9Y,=VK9QO; # ADIF 147 Lord Howe Island: 30: 60: OC: -31.55: -159.08: -10.5: VK9L: AX9L,VI9L,VK9FL,VK9L,VK9ZL,VZ9L; @@ -8034,7 +8223,7 @@ Mellish Reef: 30: 56: OC: -17.40: -155.85: -10.0: VK9M: AX9M,VI9M,VK9M,VZ9M; # ADIF 189 Norfolk Island: 32: 60: OC: -29.03: -167.93: -11.5: VK9N: - AX9,VI9,VK9,=VK2NOW/9,=VK9MTO; + AX9,VI9,VK9,=VK2NOW/9; # ADIF 303 Willis Island: 30: 55: OC: -16.22: -150.02: -10.0: VK9W: AX9W,AX9Z,VI9W,VI9Z,VK9FW,VK9W,VK9Z,VZ9W; @@ -8058,22 +8247,22 @@ Pitcairn Island: 32: 63: OC: -25.07: 130.10: 8.0: VP6: VP6; # ADIF 513 Ducie Island: 32: 63: OC: -24.70: 124.80: 8.0: VP6/d: - =VP6D; + =VP6A; # ADIF 141 Falkland Islands: 13: 16: SA: -51.63: 58.72: 4.0: VP8: VP8; # ADIF 235 South Georgia Island: 13: 73: SA: -54.48: 37.08: 2.0: VP8/g: - =VP8DXU; + VP0G; # ADIF 241 South Shetland Islands: 13: 73: SA: -62.08: 58.67: 4.0: VP8/h: - CE9,XR9,=HF0POL,=LU1ZI; + CE9,XR9,=HF0POL; # ADIF 238 South Orkney Islands: 13: 73: SA: -60.60: 45.55: 3.0: VP8/o: =VP8PJ; # ADIF 240 South Sandwich Islands: 13: 73: SA: -58.43: 26.33: 2.0: VP8/s: - =VP8STI; + VP0S; # ADIF 64 Bermuda: 05: 11: NA: 32.32: 64.73: 4.0: VP9: VP9; @@ -8133,92 +8322,74 @@ Myanmar: 26: 49: AS: 20.00: -96.37: -6.5: XZ: Afghanistan: 21: 40: AS: 34.70: -65.80: -4.5: YA: T6,YA; # ADIF 327 -Indonesia: 28: 51: OC: -7.30: -109.88: -7.0: YB: +Indonesia: 28: 54: OC: -7.30: -109.88: -7.0: YB: 7A,7B,7C,7D,7E,7F,7G,7H,7I,8A,8B,8C,8D,8E,8F,8G,8H,8I,PK,PL,PM,PN,PO,YB,YC,YD,YE,YF,YG,YH, # Jakarta - 7A0[54]<-6.20/-106.80>,7B0[54]<-6.20/-106.80>,7C0[54]<-6.20/-106.80>,7D0[54]<-6.20/-106.80>, - 7E0[54]<-6.20/-106.80>,7F0[54]<-6.20/-106.80>,7G0[54]<-6.20/-106.80>,7H0[54]<-6.20/-106.80>, - 7I0[54]<-6.20/-106.80>,8A0[54]<-6.20/-106.80>,8B0[54]<-6.20/-106.80>,8C0[54]<-6.20/-106.80>, - 8D0[54]<-6.20/-106.80>,8E0[54]<-6.20/-106.80>,8F0[54]<-6.20/-106.80>,8G0[54]<-6.20/-106.80>, - 8H0[54]<-6.20/-106.80>,8I0[54]<-6.20/-106.80>,YB0[54]<-6.20/-106.80>,YC0[54]<-6.20/-106.80>, - YD0[54]<-6.20/-106.80>,YE0[54]<-6.20/-106.80>,YF0[54]<-6.20/-106.80>,YG0[54]<-6.20/-106.80>, - YH0[54]<-6.20/-106.80>, + 7A0<-6.20/-106.80>,7B0<-6.20/-106.80>,7C0<-6.20/-106.80>,7D0<-6.20/-106.80>,7E0<-6.20/-106.80>, + 7F0<-6.20/-106.80>,7G0<-6.20/-106.80>,7H0<-6.20/-106.80>,7I0<-6.20/-106.80>,8A0<-6.20/-106.80>, + 8B0<-6.20/-106.80>,8C0<-6.20/-106.80>,8D0<-6.20/-106.80>,8E0<-6.20/-106.80>,8F0<-6.20/-106.80>, + 8G0<-6.20/-106.80>,8H0<-6.20/-106.80>,8I0<-6.20/-106.80>,YB0<-6.20/-106.80>,YC0<-6.20/-106.80>, + YD0<-6.20/-106.80>,YE0<-6.20/-106.80>,YF0<-6.20/-106.80>,YG0<-6.20/-106.80>,YH0<-6.20/-106.80>, # West Java/Banten - 7A1[54]<-6.77/-107.57>,7B1[54]<-6.77/-107.57>,7C1[54]<-6.77/-107.57>,7D1[54]<-6.77/-107.57>, - 7E1[54]<-6.77/-107.57>,7F1[54]<-6.77/-107.57>,7G1[54]<-6.77/-107.57>,7H1[54]<-6.77/-107.57>, - 7I1[54]<-6.77/-107.57>,8A1[54]<-6.77/-107.57>,8B1[54]<-6.77/-107.57>,8C1[54]<-6.77/-107.57>, - 8D1[54]<-6.77/-107.57>,8E1[54]<-6.77/-107.57>,8F1[54]<-6.77/-107.57>,8G1[54]<-6.77/-107.57>, - 8H1[54]<-6.77/-107.57>,8I1[54]<-6.77/-107.57>,YB1[54]<-6.77/-107.57>,YC1[54]<-6.77/-107.57>, - YD1[54]<-6.77/-107.57>,YE1[54]<-6.77/-107.57>,YF1[54]<-6.77/-107.57>,YG1[54]<-6.77/-107.57>, - YH1[54]<-6.77/-107.57>, + 7A1<-6.77/-107.57>,7B1<-6.77/-107.57>,7C1<-6.77/-107.57>,7D1<-6.77/-107.57>,7E1<-6.77/-107.57>, + 7F1<-6.77/-107.57>,7G1<-6.77/-107.57>,7H1<-6.77/-107.57>,7I1<-6.77/-107.57>,8A1<-6.77/-107.57>, + 8B1<-6.77/-107.57>,8C1<-6.77/-107.57>,8D1<-6.77/-107.57>,8E1<-6.77/-107.57>,8F1<-6.77/-107.57>, + 8G1<-6.77/-107.57>,8H1<-6.77/-107.57>,8I1<-6.77/-107.57>,YB1<-6.77/-107.57>,YC1<-6.77/-107.57>, + YD1<-6.77/-107.57>,YE1<-6.77/-107.57>,YF1<-6.77/-107.57>,YG1<-6.77/-107.57>,YH1<-6.77/-107.57>, # Central Java/Yogyakarta - 7A2[54]<-7.32/-110.17>,7B2[54]<-7.32/-110.17>,7C2[54]<-7.32/-110.17>,7D2[54]<-7.32/-110.17>, - 7E2[54]<-7.32/-110.17>,7F2[54]<-7.32/-110.17>,7G2[54]<-7.32/-110.17>,7H2[54]<-7.32/-110.17>, - 7I2[54]<-7.32/-110.17>,8A2[54]<-7.32/-110.17>,8B2[54]<-7.32/-110.17>,8C2[54]<-7.32/-110.17>, - 8D2[54]<-7.32/-110.17>,8E2[54]<-7.32/-110.17>,8F2[54]<-7.32/-110.17>,8G2[54]<-7.32/-110.17>, - 8H2[54]<-7.32/-110.17>,8I2[54]<-7.32/-110.17>,YB2[54]<-7.32/-110.17>,YC2[54]<-7.32/-110.17>, - YD2[54]<-7.32/-110.17>,YE2[54]<-7.32/-110.17>,YF2[54]<-7.32/-110.17>,YG2[54]<-7.32/-110.17>, - YH2[54]<-7.32/-110.17>, + 7A2<-7.32/-110.17>,7B2<-7.32/-110.17>,7C2<-7.32/-110.17>,7D2<-7.32/-110.17>,7E2<-7.32/-110.17>, + 7F2<-7.32/-110.17>,7G2<-7.32/-110.17>,7H2<-7.32/-110.17>,7I2<-7.32/-110.17>,8A2<-7.32/-110.17>, + 8B2<-7.32/-110.17>,8C2<-7.32/-110.17>,8D2<-7.32/-110.17>,8E2<-7.32/-110.17>,8F2<-7.32/-110.17>, + 8G2<-7.32/-110.17>,8H2<-7.32/-110.17>,8I2<-7.32/-110.17>,YB2<-7.32/-110.17>,YC2<-7.32/-110.17>, + YD2<-7.32/-110.17>,YE2<-7.32/-110.17>,YF2<-7.32/-110.17>,YG2<-7.32/-110.17>,YH2<-7.32/-110.17>, # East Java - 7A3[54]<-7.97/-112.02>,7B3[54]<-7.97/-112.02>,7C3[54]<-7.97/-112.02>,7D3[54]<-7.97/-112.02>, - 7E3[54]<-7.97/-112.02>,7F3[54]<-7.97/-112.02>,7G3[54]<-7.97/-112.02>,7H3[54]<-7.97/-112.02>, - 7I3[54]<-7.97/-112.02>,8A3[54]<-7.97/-112.02>,8B3[54]<-7.97/-112.02>,8C3[54]<-7.97/-112.02>, - 8D3[54]<-7.97/-112.02>,8E3[54]<-7.97/-112.02>,8F3[54]<-7.97/-112.02>,8G3[54]<-7.97/-112.02>, - 8H3[54]<-7.97/-112.02>,8I3[54]<-7.97/-112.02>,YB3[54]<-7.97/-112.02>,YC3[54]<-7.97/-112.02>, - YD3[54]<-7.97/-112.02>,YE3[54]<-7.97/-112.02>,YF3[54]<-7.97/-112.02>,YG3[54]<-7.97/-112.02>, - YH3[54]<-7.97/-112.02>, + 7A3<-7.97/-112.02>,7B3<-7.97/-112.02>,7C3<-7.97/-112.02>,7D3<-7.97/-112.02>,7E3<-7.97/-112.02>, + 7F3<-7.97/-112.02>,7G3<-7.97/-112.02>,7H3<-7.97/-112.02>,7I3<-7.97/-112.02>,8A3<-7.97/-112.02>, + 8B3<-7.97/-112.02>,8C3<-7.97/-112.02>,8D3<-7.97/-112.02>,8E3<-7.97/-112.02>,8F3<-7.97/-112.02>, + 8G3<-7.97/-112.02>,8H3<-7.97/-112.02>,8I3<-7.97/-112.02>,YB3<-7.97/-112.02>,YC3<-7.97/-112.02>, + YD3<-7.97/-112.02>,YE3<-7.97/-112.02>,YF3<-7.97/-112.02>,YG3<-7.97/-112.02>,YH3<-7.97/-112.02>, # South Sumatra/Lampung/Jambi/Bengkulu - 7A4[54]<-3.07/-103.50>,7B4[54]<-3.07/-103.50>,7C4[54]<-3.07/-103.50>,7D4[54]<-3.07/-103.50>, - 7E4[54]<-3.07/-103.50>,7F4[54]<-3.07/-103.50>,7G4[54]<-3.07/-103.50>,7H4[54]<-3.07/-103.50>, - 7I4[54]<-3.07/-103.50>,8A4[54]<-3.07/-103.50>,8B4[54]<-3.07/-103.50>,8C4[54]<-3.07/-103.50>, - 8D4[54]<-3.07/-103.50>,8E4[54]<-3.07/-103.50>,8F4[54]<-3.07/-103.50>,8G4[54]<-3.07/-103.50>, - 8H4[54]<-3.07/-103.50>,8I4[54]<-3.07/-103.50>,YB4[54]<-3.07/-103.50>,YC4[54]<-3.07/-103.50>, - YD4[54]<-3.07/-103.50>,YE4[54]<-3.07/-103.50>,YF4[54]<-3.07/-103.50>,YG4[54]<-3.07/-103.50>, - YH4[54]<-3.07/-103.50>, + 7A4<-3.07/-103.50>,7B4<-3.07/-103.50>,7C4<-3.07/-103.50>,7D4<-3.07/-103.50>,7E4<-3.07/-103.50>, + 7F4<-3.07/-103.50>,7G4<-3.07/-103.50>,7H4<-3.07/-103.50>,7I4<-3.07/-103.50>,8A4<-3.07/-103.50>, + 8B4<-3.07/-103.50>,8C4<-3.07/-103.50>,8D4<-3.07/-103.50>,8E4<-3.07/-103.50>,8F4<-3.07/-103.50>, + 8G4<-3.07/-103.50>,8H4<-3.07/-103.50>,8I4<-3.07/-103.50>,YB4<-3.07/-103.50>,YC4<-3.07/-103.50>, + YD4<-3.07/-103.50>,YE4<-3.07/-103.50>,YF4<-3.07/-103.50>,YG4<-3.07/-103.50>,YH4<-3.07/-103.50>, # West Sumatra/Riau - 7A5[54]<0.75/-101.75>,7B5[54]<0.75/-101.75>,7C5[54]<0.75/-101.75>,7D5[54]<0.75/-101.75>, - 7E5[54]<0.75/-101.75>,7F5[54]<0.75/-101.75>,7G5[54]<0.75/-101.75>,7H5[54]<0.75/-101.75>, - 7I5[54]<0.75/-101.75>,8A5[54]<0.75/-101.75>,8B5[54]<0.75/-101.75>,8C5[54]<0.75/-101.75>, - 8D5[54]<0.75/-101.75>,8E5[54]<0.75/-101.75>,8F5[54]<0.75/-101.75>,8G5[54]<0.75/-101.75>, - 8H5[54]<0.75/-101.75>,8I5[54]<0.75/-101.75>,YB5[54]<0.75/-101.75>,YC5[54]<0.75/-101.75>, - YD5[54]<0.75/-101.75>,YE5[54]<0.75/-101.75>,YF5[54]<0.75/-101.75>,YG5[54]<0.75/-101.75>, - YH5[54]<0.75/-101.75>, + 7A5<0.75/-101.75>,7B5<0.75/-101.75>,7C5<0.75/-101.75>,7D5<0.75/-101.75>,7E5<0.75/-101.75>, + 7F5<0.75/-101.75>,7G5<0.75/-101.75>,7H5<0.75/-101.75>,7I5<0.75/-101.75>,8A5<0.75/-101.75>, + 8B5<0.75/-101.75>,8C5<0.75/-101.75>,8D5<0.75/-101.75>,8E5<0.75/-101.75>,8F5<0.75/-101.75>, + 8G5<0.75/-101.75>,8H5<0.75/-101.75>,8I5<0.75/-101.75>,YB5<0.75/-101.75>,YC5<0.75/-101.75>, + YD5<0.75/-101.75>,YE5<0.75/-101.75>,YF5<0.75/-101.75>,YG5<0.75/-101.75>,YH5<0.75/-101.75>, # Aceh/North Sumatra - 7A6[54]<2.97/-99.77>,7B6[54]<2.97/-99.77>,7C6[54]<2.97/-99.77>,7D6[54]<2.97/-99.77>, - 7E6[54]<2.97/-99.77>,7F6[54]<2.97/-99.77>,7G6[54]<2.97/-99.77>,7H6[54]<2.97/-99.77>, - 7I6[54]<2.97/-99.77>,8A6[54]<2.97/-99.77>,8B6[54]<2.97/-99.77>,8C6[54]<2.97/-99.77>, - 8D6[54]<2.97/-99.77>,8E6[54]<2.97/-99.77>,8F6[54]<2.97/-99.77>,8G6[54]<2.97/-99.77>, - 8H6[54]<2.97/-99.77>,8I6[54]<2.97/-99.77>,YB6[54]<2.97/-99.77>,YC6[54]<2.97/-99.77>, - YD6[54]<2.97/-99.77>,YE6[54]<2.97/-99.77>,YF6[54]<2.97/-99.77>,YG6[54]<2.97/-99.77>, - YH6[54]<2.97/-99.77>, + 7A6<2.97/-99.77>,7B6<2.97/-99.77>,7C6<2.97/-99.77>,7D6<2.97/-99.77>,7E6<2.97/-99.77>, + 7F6<2.97/-99.77>,7G6<2.97/-99.77>,7H6<2.97/-99.77>,7I6<2.97/-99.77>,8A6<2.97/-99.77>, + 8B6<2.97/-99.77>,8C6<2.97/-99.77>,8D6<2.97/-99.77>,8E6<2.97/-99.77>,8F6<2.97/-99.77>, + 8G6<2.97/-99.77>,8H6<2.97/-99.77>,8I6<2.97/-99.77>,YB6<2.97/-99.77>,YC6<2.97/-99.77>, + YD6<2.97/-99.77>,YE6<2.97/-99.77>,YF6<2.97/-99.77>,YG6<2.97/-99.77>,YH6<2.97/-99.77>, # Borneo - 7A7[54]<-2.20/-113.75>,7B7[54]<-2.20/-113.75>,7C7[54]<-2.20/-113.75>,7D7[54]<-2.20/-113.75>, - 7E7[54]<-2.20/-113.75>,7F7[54]<-2.20/-113.75>,7G7[54]<-2.20/-113.75>,7H7[54]<-2.20/-113.75>, - 7I7[54]<-2.20/-113.75>,8A7[54]<-2.20/-113.75>,8B7[54]<-2.20/-113.75>,8C7[54]<-2.20/-113.75>, - 8D7[54]<-2.20/-113.75>,8E7[54]<-2.20/-113.75>,8F7[54]<-2.20/-113.75>,8G7[54]<-2.20/-113.75>, - 8H7[54]<-2.20/-113.75>,8I7[54]<-2.20/-113.75>,YB7[54]<-2.20/-113.75>,YC7[54]<-2.20/-113.75>, - YD7[54]<-2.20/-113.75>,YE7[54]<-2.20/-113.75>,YF7[54]<-2.20/-113.75>,YG7[54]<-2.20/-113.75>, - YH7[54]<-2.20/-113.75>, + 7A7<-2.20/-113.75>,7B7<-2.20/-113.75>,7C7<-2.20/-113.75>,7D7<-2.20/-113.75>,7E7<-2.20/-113.75>, + 7F7<-2.20/-113.75>,7G7<-2.20/-113.75>,7H7<-2.20/-113.75>,7I7<-2.20/-113.75>,8A7<-2.20/-113.75>, + 8B7<-2.20/-113.75>,8C7<-2.20/-113.75>,8D7<-2.20/-113.75>,8E7<-2.20/-113.75>,8F7<-2.20/-113.75>, + 8G7<-2.20/-113.75>,8H7<-2.20/-113.75>,8I7<-2.20/-113.75>,YB7<-2.20/-113.75>,YC7<-2.20/-113.75>, + YD7<-2.20/-113.75>,YE7<-2.20/-113.75>,YF7<-2.20/-113.75>,YG7<-2.20/-113.75>,YH7<-2.20/-113.75>, # Celebes/Maluku - 7A8[54]<0.55/-123.08>~-8.0~,7B8[54]<0.55/-123.08>~-8.0~,7C8[54]<0.55/-123.08>~-8.0~, - 7D8[54]<0.55/-123.08>~-8.0~,7E8[54]<0.55/-123.08>~-8.0~,7F8[54]<0.55/-123.08>~-8.0~, - 7G8[54]<0.55/-123.08>~-8.0~,7H8[54]<0.55/-123.08>~-8.0~,7I8[54]<0.55/-123.08>~-8.0~, - 8A8[54]<0.55/-123.08>~-8.0~,8B8[54]<0.55/-123.08>~-8.0~,8C8[54]<0.55/-123.08>~-8.0~, - 8D8[54]<0.55/-123.08>~-8.0~,8E8[54]<0.55/-123.08>~-8.0~,8F8[54]<0.55/-123.08>~-8.0~, - 8G8[54]<0.55/-123.08>~-8.0~,8H8[54]<0.55/-123.08>~-8.0~,8I8[54]<0.55/-123.08>~-8.0~, - YB8[54]<0.55/-123.08>~-8.0~,YC8[54]<0.55/-123.08>~-8.0~,YD8[54]<0.55/-123.08>~-8.0~, - YE8[54]<0.55/-123.08>~-8.0~,YF8[54]<0.55/-123.08>~-8.0~,YG8[54]<0.55/-123.08>~-8.0~, - YH8[54]<0.55/-123.08>~-8.0~, + 7A8<0.55/-123.08>~-8.0~,7B8<0.55/-123.08>~-8.0~,7C8<0.55/-123.08>~-8.0~,7D8<0.55/-123.08>~-8.0~, + 7E8<0.55/-123.08>~-8.0~,7F8<0.55/-123.08>~-8.0~,7G8<0.55/-123.08>~-8.0~,7H8<0.55/-123.08>~-8.0~, + 7I8<0.55/-123.08>~-8.0~,8A8<0.55/-123.08>~-8.0~,8B8<0.55/-123.08>~-8.0~,8C8<0.55/-123.08>~-8.0~, + 8D8<0.55/-123.08>~-8.0~,8E8<0.55/-123.08>~-8.0~,8F8<0.55/-123.08>~-8.0~,8G8<0.55/-123.08>~-8.0~, + 8H8<0.55/-123.08>~-8.0~,8I8<0.55/-123.08>~-8.0~,YB8<0.55/-123.08>~-8.0~,YC8<0.55/-123.08>~-8.0~, + YD8<0.55/-123.08>~-8.0~,YE8<0.55/-123.08>~-8.0~,YF8<0.55/-123.08>~-8.0~,YG8<0.55/-123.08>~-8.0~, + YH8<0.55/-123.08>~-8.0~, # Bali/Sonda/West Timor/West New Guinea - 7A9<-2.52/-140.78>~-9.0~,7B9<-2.52/-140.78>~-9.0~,7C9<-2.52/-140.78>~-9.0~, - 7D9<-2.52/-140.78>~-9.0~,7E9<-2.52/-140.78>~-9.0~,7F9<-2.52/-140.78>~-9.0~, - 7G9<-2.52/-140.78>~-9.0~,7H9<-2.52/-140.78>~-9.0~,7I9<-2.52/-140.78>~-9.0~, - 8A9<-2.52/-140.78>~-9.0~,8B9<-2.52/-140.78>~-9.0~,8C9<-2.52/-140.78>~-9.0~, - 8D9<-2.52/-140.78>~-9.0~,8E9<-2.52/-140.78>~-9.0~,8F9<-2.52/-140.78>~-9.0~, - 8G9<-2.52/-140.78>~-9.0~,8H9<-2.52/-140.78>~-9.0~,8I9<-2.52/-140.78>~-9.0~, - YB9<-2.52/-140.78>~-9.0~,YC9<-2.52/-140.78>~-9.0~,YD9<-2.52/-140.78>~-9.0~, - YE9<-2.52/-140.78>~-9.0~,YF9<-2.52/-140.78>~-9.0~,YG9<-2.52/-140.78>~-9.0~, - YH9<-2.52/-140.78>~-9.0~; + 7A9[51]<-2.52/-140.78>~-9.0~,7B9[51]<-2.52/-140.78>~-9.0~,7C9[51]<-2.52/-140.78>~-9.0~, + 7D9[51]<-2.52/-140.78>~-9.0~,7E9[51]<-2.52/-140.78>~-9.0~,7F9[51]<-2.52/-140.78>~-9.0~, + 7G9[51]<-2.52/-140.78>~-9.0~,7H9[51]<-2.52/-140.78>~-9.0~,7I9[51]<-2.52/-140.78>~-9.0~, + 8A9[51]<-2.52/-140.78>~-9.0~,8B9[51]<-2.52/-140.78>~-9.0~,8C9[51]<-2.52/-140.78>~-9.0~, + 8D9[51]<-2.52/-140.78>~-9.0~,8E9[51]<-2.52/-140.78>~-9.0~,8F9[51]<-2.52/-140.78>~-9.0~, + 8G9[51]<-2.52/-140.78>~-9.0~,8H9[51]<-2.52/-140.78>~-9.0~,8I9[51]<-2.52/-140.78>~-9.0~, + YB9[51]<-2.52/-140.78>~-9.0~,YC9[51]<-2.52/-140.78>~-9.0~,YD9[51]<-2.52/-140.78>~-9.0~, + YE9[51]<-2.52/-140.78>~-9.0~,YF9[51]<-2.52/-140.78>~-9.0~,YG9[51]<-2.52/-140.78>~-9.0~, + YH9[51]<-2.52/-140.78>~-9.0~; # ADIF 333 Iraq: 21: 39: AS: 33.92: -42.78: -3.0: YI: HN,YI; @@ -8285,7 +8456,7 @@ Aves Island: 08: 11: NA: 15.67: 63.60: 4.0: YV0: 4M0,YV0,YW0,YX0,YY0; # ADIF 452 Zimbabwe: 38: 53: AF: -18.00: -31.00: -2.0: Z2: - Z2,=VERSION; + Z2; # ADIF 502 North Macedonia: 15: 28: EU: 41.60: -21.65: -1.0: Z3: Z3; @@ -8329,7 +8500,7 @@ Tokelau Islands: 31: 62: OC: -9.40: 171.20: -13.0: ZK3: New Zealand: 32: 60: OC: -39.03: -174.47: -12.0: ZL: ZK,ZL,ZL50,ZM, # Auckland - ZL1<-36.83/-174.73>,ZM1<-36.83/-174.73>,=ZL75WARC<-36.83/-174.73>, + ZL1<-36.83/-174.73>,ZM1<-36.83/-174.73>, # Wellington ZL2<-41.28/-174.78>,ZM2<-41.28/-174.78>, # Canterbury diff --git a/static/html/offline.html b/static/html/offline.html deleted file mode 100644 index a5877a6..0000000 --- a/static/html/offline.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - Spiderweb: OFFLINE - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
- -

WEB DX Cluster

-

Missing connection  

- -

Telnet access: none

-

For connect your cluster, write to none

-
- - - - - -
- - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/js/dev/common.js b/static/js/dev/common.js index ed6391c..502d27a 100644 --- a/static/js/dev/common.js +++ b/static/js/dev/common.js @@ -49,7 +49,7 @@ function getCookie(cname) { function get_last_refresh(data) { let dt_refresh = new Date(0); // The 0 there is the key, which sets the date to the epoch //var dt_refresh; - dt_refresh.setUTCSeconds(data["last_refresh"]); + dt_refresh.setUTCSeconds(data['last_refresh']); const pad = (n, s = 2) => (`${new Array(s).fill(0)}${n}`).slice(-s); const hours = pad(dt_refresh.getHours()); const minutes = pad(dt_refresh.getMinutes()); @@ -57,7 +57,7 @@ function get_last_refresh(data) { const month = months_names[dt_refresh.getMonth()]; const day = dt_refresh.getDate(); const year = dt_refresh.getFullYear(); - const last_refresh = "Data refresh: " + day + " of " + month + " " + year + " at " + hours + ":" + minutes; + const last_refresh = 'Data refresh: ' + day + ' of ' + month + ' ' + year + ' at ' + hours + ':' + minutes; return last_refresh; } @@ -145,29 +145,46 @@ function setText(id, newvalue) { s.innerHTML = newvalue; } -function showTime(){ - let date=new Date(); +function showTime() { + let date = new Date(); let utc = new Date(date.getTime() + date.getTimezoneOffset() * 60000); let time = utc.toTimeString().split(' ')[0]; - time = time.split(':')[0]+':'+time.split(':')[1]; - document.getElementById("MyClockDisplay").innerText = time; - document.getElementById("MyClockDisplay").textContent = time; - setTimeout(showTime, 1000); + time = time.split(':')[0] + ':' + time.split(':')[1]; + document.getElementById('MyClockDisplay').innerText = time; + document.getElementById('MyClockDisplay').textContent = time; + setTimeout(showTime, 1000); } -document.getElementById('MyClockDisplay').addEventListener('load',showTime()); -document.getElementById('copyDate').innerHTML='2020-'.concat(new Date().getFullYear()); -/* -function doRefresh(){ +document.getElementById('MyClockDisplay').addEventListener('load', showTime()); +document.getElementById('copyDate').innerHTML = '2020-'.concat(new Date().getFullYear()); -var chartDom = document.getElementById('chart-dx_spots_trend'); -var myChart = echarts.init(chartDom); -plot_dst.refresh(myChart,'/plot_get_dx_spots_trend'); +//Get the button for return to top page +let button_top = document.getElementById('btn-back-to-top'); -}; +// When the user scrolls down 20px from the top of the document, show the button +window.onscroll = function () { + scrollFunction(); +}; -setInterval(function(){doRefresh()}, 5000); +function scrollFunction() { + if ( + document.body.scrollTop > 20 || + document.documentElement.scrollTop > 20 + ) { + button_top.style.display = 'block'; + } else { + button_top.style.display = 'none'; + } +} +// When the user clicks on the button, scroll to the top of the document +//button_top.addEventListener('click', backToTop); -*/ +// When the user clicks on the button, scroll to the top of the document +button_top.addEventListener('click', backToTop); + +function backToTop() { + document.body.scrollTop = 0; + document.documentElement.scrollTop = 0; +} diff --git a/static/js/dev/index_inline.js b/static/js/dev/index_inline.js index f50f3d7..f347d30 100644 --- a/static/js/dev/index_inline.js +++ b/static/js/dev/index_inline.js @@ -14,4 +14,5 @@ window.onload = () => { document.getElementById('form-filters').addEventListener('submit', mySearch); }; + document.getElementById('MyClockDisplay').addEventListener('load',showTime()); \ No newline at end of file diff --git a/static/js/dev/table.js b/static/js/dev/table.js index 26cf264..e62b918 100644 --- a/static/js/dev/table.js +++ b/static/js/dev/table.js @@ -274,6 +274,8 @@ function findAdxo(adxo, callsign_to_find) { } } } + + /** * Function to filter spot when pressed the search button on filter * This function trigger the search, also triggered by timer diff --git a/static/js/rel/common.min.js b/static/js/rel/common.min.js index 88fcf98..e2ddbc2 100644 --- a/static/js/rel/common.min.js +++ b/static/js/rel/common.min.js @@ -1 +1 @@ -function setCookie(e,t,n){var o=new Date,n=(o.setTime(o.getTime()+24*n*60*60*1e3),"expires="+o.toUTCString());"https:"==location.protocol?document.cookie=e+"="+t+";"+n+";path=/;Samesite=Strict;Secure=True":(console.log("Warning: could not set secure cookie: try with Samsite Lax..."),document.cookie=e+"="+t+";"+n+";path=/;Samesite=Lax")}function getCookie(e){var n=e+"=",o=decodeURIComponent(document.cookie).split(";");for(let t=0;t(""+new Array(t).fill(0)+e).slice(-t)),n=e(t.getHours()),e=e(t.getMinutes()),o=get_months_names()[t.getMonth()];return"Data refresh: "+t.getDate()+" of "+o+" "+t.getFullYear()+" at "+n+":"+e}function get_months_names(){var t=[];for(let e=1;e<13;e++){var n=new Date;n.setMonth(e-1),t.push(n.toLocaleString("en-US",{month:"short"}))}return t}function format_u_k_m(e){let t,n=1;e<0&&(n=-1);e=Math.abs(e);return 0==e?t=e:0(""+new Array(t).fill(0)+e).slice(-t)),n=e(t.getHours()),e=e(t.getMinutes()),o=get_months_names()[t.getMonth()];return"Data refresh: "+t.getDate()+" of "+o+" "+t.getFullYear()+" at "+n+":"+e}function get_months_names(){var t=[];for(let e=1;e<13;e++){var n=new Date;n.setMonth(e-1),t.push(n.toLocaleString("en-US",{month:"short"}))}return t}function format_u_k_m(e){let t,n=1;e<0&&(n=-1);e=Math.abs(e);return 0==e?t=e:0 { .then(response => { if (response.status === 502) { console.log("response status: " + response.status); - return caches.match('/offline.html'); + return caches.match('/index.html'); } if (!response || response.status !== 200 || response.type !== 'basic') { console.log("response: " + response.status); @@ -80,7 +81,7 @@ self.addEventListener('fetch', event => { }) .catch(error => { console.log(error); - return caches.match('/offline.html'); + return caches.match('/index.html'); }); }) ); diff --git a/templates/_base.html b/templates/_base.html index 4e27df9..07bfe4d 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -17,9 +17,8 @@ - - {% endblock head %} @@ -44,13 +43,13 @@
 (UTC)  
@@ -92,10 +91,7 @@ © Copyleft: IU1BOW - Spiderweb - v2.4.4 - + v2.4.5 @@ -105,9 +101,11 @@ {% endblock app_data %} - + + {% block app_scripts %} {% endblock app_scripts %} @@ -119,7 +117,6 @@ {# then user has already consented so no requirement for consent banner #} {% else %} {# show a cookie consent banner #} - +
+ +
@@ -288,7 +295,6 @@ - diff --git a/templates/plots.html b/templates/plots.html index b626e06..f7c1265 100644 --- a/templates/plots.html +++ b/templates/plots.html @@ -86,8 +86,8 @@ var band_frequencies={{bands["bands"]|tojson|safe}}; {% block app_scripts %} {{ super() }} - {% endblock app_scripts %} \ No newline at end of file